UNPKG

blocklock-js

Version:

A library for encrypting and decrypting data for the future

22 lines (21 loc) 794 B
import { type ContractRunner } from "ethers"; import type { IMulticall, IMulticallInterface } from "../IMulticall"; export declare class IMulticall__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: "payable"; }]; static createInterface(): IMulticallInterface; static connect(address: string, runner?: ContractRunner | null): IMulticall; }