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

    Interface GrantValidationOptions

    Configures grant validation behavior and scope.

    Controls which validations to perform and how to handle errors. Allows selective validation of specific aspects of a grant.

    interface GrantValidationOptions {
        schema?: boolean;
        grantee?: `0x${string}`;
        operation?: string;
        currentTime?: number;
        throwOnError?: boolean;
    }
    Index

    Properties

    schema?: boolean

    Enable JSON schema validation (default: true)

    grantee?: `0x${string}`

    Grantee address to validate access for

    operation?: string

    Operation to validate permission for

    currentTime?: number

    Override current time for expiry checking (Unix timestamp)

    throwOnError?: boolean

    Return detailed results instead of throwing (default: false)