UNPKG

ethers-multicall

Version:

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

4 lines (3 loc) 228 B
import { Provider } from '@ethersproject/providers'; import { ContractCall } from './types'; export declare function all<T extends any[] = any[]>(calls: ContractCall[], multicallAddress: string, provider: Provider): Promise<T>;