ethers-tools
Version:
Contains tools for work with web3 contracts.
9 lines (8 loc) • 523 B
TypeScript
export interface PriorityCallOptions {
asynchronous?: boolean; // Can be a little faster if provider allows
chainId?: bigint; // Prevents replay attacks by ensuring the transaction is valid only for the intended blockchain network. Manually set
provideChainId?: boolean; // Prevents replay attacks by ensuring the transaction is valid only for the intended blockchain network. Automatic - async request
multiplier?: number; // Multiplier of gasPrise and gasLimits
signals?: AbortSignal[];
timeoutMs?: number;
}