UNPKG

ethereum-multicall-extended

Version:

Multicall allows multiple smart contract constant function calls to be grouped into a single call and the results aggregated into a single result

15 lines (14 loc) 290 B
export interface CallContext { /** * Reference to this call context */ reference: string; /** * your contract method name */ methodName: string; /** * Method parameters you want it to pass in */ methodParameters: any[]; }