UNPKG

@morpho-labs/ethers-multicall

Version:

⚡🚀 Call multiple view functions, from multiple Smart Contracts, in a single RPC query!

43 lines (42 loc) 1.25 kB
import type { Multicall3, Multicall3Interface } from "../Multicall3"; import type { Provider } from "@ethersproject/providers"; import { Signer } from "ethers"; export declare class Multicall3__factory { static readonly abi: { inputs: ({ internalType: string; name: string; type: string; components?: undefined; } | { components: { internalType: string; name: string; type: string; }[]; internalType: string; name: string; type: string; })[]; name: string; outputs: ({ internalType: string; name: string; type: string; components?: undefined; } | { components: { internalType: string; name: string; type: string; }[]; internalType: string; name: string; type: string; })[]; stateMutability: string; type: string; }[]; static createInterface(): Multicall3Interface; static connect(address: string, signerOrProvider: Signer | Provider): Multicall3; }