Vana SDK - v4.1.0
    Preparing search index...

    Interface WithdrawAuthorizationMessage

    EIP-712 message authorizing a withdrawal of an account's escrow balance.

    interface WithdrawAuthorizationMessage {
        account: `0x${string}`;
        asset: `0x${string}`;
        amount: bigint;
        withdrawNonce: bigint;
        deadline: bigint;
    }
    Index

    Properties

    account: `0x${string}`

    The escrow account to debit and the withdrawal recipient.

    asset: `0x${string}`

    Native VANA sentinel or the ERC-20 asset contract.

    amount: bigint

    Base-unit amount.

    withdrawNonce: bigint

    Caller-managed, strictly increasing nonce for newly accepted intents.

    deadline: bigint

    Unix seconds. Bounds first acceptance; exact accepted retries remain valid.