Interface GenericBlockinVerifyPayload

Generic route to verify any SIWBB request. Does not sign you in with the API. Used for custom SIWBB implementations.

interface GenericBlockinVerifyPayload {
    attestationsPresentations?: AttestationsProof<NumberType>[];
    message: string;
    options?: VerifyChallengeOptions;
    publicKey?: string;
    signature: string;
}

Hierarchy (view full)

Properties

attestationsPresentations?: AttestationsProof<NumberType>[]

Additional attestations to verify in the challenge.

message: string

The original message that was signed.

options?: VerifyChallengeOptions

Additional options for verifying the challenge.

publicKey?: string

Required for some chains (Cosmos) to verify signature. The public key of the signer.

signature: string

The signature of the message