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