interface ChangeUserEmailRequest {
    confirmationCode?: string;
    newEmail: string;
    oldEmail: string;
    pcd: SerializedPCD<SemaphoreSignaturePCD>;
}

Properties

confirmationCode?: string

If absent, requests a confirmation code; if present, redeems it.

newEmail: string
oldEmail: string

A semaphore signature from the user, used to verify their identity.

Generated using TypeDoc