Vana SDK - v2.2.2
    Preparing search index...

    Interface RevokePermissionTypedData

    Represents EIP-712 typed data for permission revocation.

    Used when revoking previously granted permissions through gasless transactions. The message contains a nonce and the permission ID to revoke.

    interface RevokePermissionTypedData {
        domain: PermissionGrantDomain;
        types: { RevokePermission: { name: string; type: string }[] };
        primaryType: "RevokePermission";
        message: RevokePermissionInput;
    }

    Hierarchy (View Summary)

    Index

    Properties

    EIP-712 domain

    types: { RevokePermission: { name: string; type: string }[] }

    EIP-712 type definitions for the RevokePermission structure

    primaryType: "RevokePermission"

    The primary type identifier for revocation operations

    The structured message containing revocation parameters