UNPKG

ethers-multicall

Version:

Make multiple Ethereum network requests in a single HTTP query. ethcall for ethers v5.

11 lines (10 loc) 218 B
import { ParamType } from '@ethersproject/abi'; export interface ContractCall { contract: { address: string; }; name: string; inputs: ParamType[]; outputs: ParamType[]; params: any[]; }