Type Alias: FetchVerificationsOpts
FetchVerificationsOpts = {
apiClient?:CCIPAPIClient|null;fetch?: typeofglobalThis.fetch;indexer?: readonlystring[] |NetworkType;pollInterval?:number;timeoutMs?:number;watch?:AbortSignal; }
Defined in: commits.ts:50
Options for fetchVerifications.
Properties
apiClient?
optionalapiClient?:CCIPAPIClient|null
Defined in: commits.ts:54
CCIP API client to race against the indexers; omit or pass null to skip.
fetch?
optionalfetch?: typeofglobalThis.fetch
Defined in: commits.ts:60
Custom fetch used for indexer requests; defaults to globalThis.fetch.
indexer?
optionalindexer?: readonlystring[] |NetworkType
Defined in: commits.ts:52
Indexer base URLs, or a NetworkType to use the built-in defaults.
pollInterval?
optionalpollInterval?:number
Defined in: commits.ts:58
Milliseconds between poll retries when watch is set (default: 5000).
timeoutMs?
optionaltimeoutMs?:number
Defined in: commits.ts:62
Per-request timeout in milliseconds for indexer requests (default: 30000).
watch?
optionalwatch?:AbortSignal
Defined in: commits.ts:56
AbortSignal that cancels in-flight requests and terminates the poll loop.