Skip to main content
Version: 1.7.1

Type Alias: FetchVerificationsOpts

FetchVerificationsOpts = { apiClient?: CCIPAPIClient | null; indexer?: readonly string[] | NetworkType; pollInterval?: number; watch?: AbortSignal; }

Defined in: commits.ts:48

Options for fetchVerifications.

Properties

apiClient?

optional apiClient?: CCIPAPIClient | null

Defined in: commits.ts:52

CCIP API client to race against the indexers; omit or pass null to skip.


indexer?

optional indexer?: readonly string[] | NetworkType

Defined in: commits.ts:50

Indexer base URLs, or a NetworkType to use the built-in defaults.


pollInterval?

optional pollInterval?: number

Defined in: commits.ts:56

Milliseconds between poll retries when watch is set (default: 5000).


watch?

optional watch?: AbortSignal

Defined in: commits.ts:54

AbortSignal that cancels in-flight requests and terminates the poll loop.