IdentityFlowEvent:
    | {
        type: "GENERATE";
        words: string[];
        seed: Uint8Array;
    }
    | {
        type: "IMPORT";
        seed: Uint8Array;
    }
    | {
        type: "CONFIRM_WORDS";
    }
    | {
        type: "RESET";
    }
    | {
        type: "FAIL";
        message: string;
    }