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

    Interface GrantValidationOptions

    Options for grant validation

    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)