UNPKG

randomness-js

Version:

A library for consuming, verifying and using randomness from the dcipher network

34 lines (33 loc) 1.16 kB
import { type ContractRunner } from "ethers"; import type { Multicall, MulticallInterface } from "../Multicall"; export declare class Multicall__factory { static readonly abi: readonly [{ readonly type: "function"; readonly name: "multicall"; readonly inputs: readonly [{ readonly name: "data"; readonly type: "bytes[]"; readonly internalType: "bytes[]"; }]; readonly outputs: readonly [{ readonly name: "results"; readonly type: "bytes[]"; readonly internalType: "bytes[]"; }]; readonly stateMutability: "nonpayable"; }, { readonly type: "error"; readonly name: "AddressEmptyCode"; readonly inputs: readonly [{ readonly name: "target"; readonly type: "address"; readonly internalType: "address"; }]; }, { readonly type: "error"; readonly name: "FailedCall"; readonly inputs: readonly []; }]; static createInterface(): MulticallInterface; static connect(address: string, runner?: ContractRunner | null): Multicall; }