Documentation
    Preparing search index...

    Interface VerifyZkLoginSignatureParams

    Verify a zklogin signature for the given bytes, intent scope and author.

    interface VerifyZkLoginSignatureParams {
        author: string;
        bytes: string;
        intentScope: ZkLoginIntentScope;
        signal?: AbortSignal;
        signature: string;
    }
    Index

    Properties

    author: string

    The author of the signature.

    bytes: string

    The Base64 string of bcs bytes for raw transaction data or personal message indicated by intent_scope.

    intentScope: ZkLoginIntentScope

    The intent scope, either transaction data or personal message. Used to parse bytes.

    signal?: AbortSignal
    signature: string

    The Base64 string of the zklogin signature to verify.