UNPKG

ethers-tools

Version:

Contains tools for work with web3 contracts.

18 lines (16 loc) 554 B
import { CallMutability } from './call-mutability'; import { PriorityCallOptions } from './priority-call-options'; // Used at the moment of creation and during execution export interface MulticallOptions { forceMutability?: CallMutability; waitForTxs?: boolean; highPriorityTxs?: boolean; priorityOptions?: PriorityCallOptions; maxStaticCallsStack?: number; maxMutableCallsStack?: number; signals?: AbortSignal[]; staticCallsTimeoutMs?: number; mutableCallsTimeoutMs?: number; waitCallsTimeoutMs?: number; batchDelayMs?: number; }