Docs

Web3Wallet verification

The Web3Wallet object has methods that allow you to verify a user's web3 wallet.

prepareVerification()

Kick off the verification process for this web3 wallet. The user will be prompted to sign a generated nonce by the browser extension e.g MetaMask.

function prepareVerification(params: PrepareWeb3WalletVerificationParams): Promise<Web3Wallet>;
  • Name
    strategy
    Type
    'web3_metamask_signature'
    Description

    The verification strategy.
    Possible strategy values are:

    • web3_metamask_signature: User will need to sign a message and generate a signature using MetaMask browser extension.

prepareVerification() returns

TypeDescription
Promise<User>A Promise which resolves with the current Web3Wallet object.

attemptVerification()

Attempts to verify this web3 wallet, by passing the generated signature.

function attemptVerification(params: AttemptWeb3WalletVerificationParams): Promise<Web3Wallet>;
  • Name
    signature
    Type
    string
    Description

    The signature that was generated after prepareVerification was called.

attemptVerification() returns

TypeDescription
Promise<User>A Promise which resolves with the current Web3Wallet object.

Feedback

What did you think of this content?