Type alias MulticallParameters<TContracts, TAllowFailure>

MulticallParameters<TContracts, TAllowFailure>: Pick<CallParameters, "blockNumber" | "blockTag"> & {
    allowFailure?: TAllowFailure;
    batchSize?: number;
    contracts: Narrow<readonly [...MulticallContracts<TContracts>]>;
    multicallAddress?: Address;
}

Type Parameters

Type declaration

Generated using TypeDoc