import { AbiFunctionFragment, ContractMethodInputParameters, ContractMethodOutputParameters } from 'web3-types'; export type MulticallRequest = { address: string; abi: TAbiItem; args: ContractMethodInputParameters; }; export type MulticallResponse = T extends MulticallRequest ? ContractMethodOutputParameters : never;