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

11 lines (10 loc) 250 B
export interface AggregateResponse { blockNumber: number; results: Array<{ contractContextIndex: number; methodResults: Array<{ contractMethodIndex: number; result: any; }>; }>; }