Type Alias VerifyOptions

Source
Expand description

Verification options: extends FetchOptions with attestation-specific limits.

type VerifyOptions = FetchOptions & {
    maxJsonResponseBytes?: number;
    maxRekorEntries?: number;
    rekorLagBudgetMs?: number;
    rekorLagDelaysMs?: readonly number[];
    trustMaterial?: TrustMaterial;
    verifier?: BundleVerifier;
}