UNPKG

ethers-tools

Version:

Contains tools for work with web3 contracts.

10 lines (8 loc) 230 B
import { ContractCall, Tagable } from '../entities'; export interface SplitCalls { staticCalls: ContractCall[]; staticIndexes: number[]; mutableCalls: ContractCall[]; mutableTags: Tagable[]; mutableIndexes: number[]; }