@lit-protocol/dcap-qvl-ts
    Preparing search index...

    Interface VerificationOptions

    Options for quote verification and collateral fetching (public API) Matches the Rust/TypeScript API design and CollateralFetchOptions.

    interface VerificationOptions {
        cacheResults?: boolean;
        isTdx?: boolean;
        pccsUrl?: string;
        retries?: number;
        timeout?: number;
        useIntelPCS?: boolean;
    }
    Index

    Properties

    cacheResults?: boolean

    Enable in-memory caching of collateral results (default: true)

    isTdx?: boolean

    Set to true for TDX quote/collateral support (default: true)

    pccsUrl?: string

    URL of the PCCS server (default: 'https://localhost:8081/sgx/certification/v4')

    retries?: number

    Number of retry attempts for collateral fetching (default: 3)

    timeout?: number

    Request timeout in milliseconds (default: 30000)

    useIntelPCS?: boolean

    Use Intel PCS instead of PCCS (default: true)