UNPKG

randomness-js

Version:

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

39 lines (35 loc) 916 B
/* Autogenerated file. Do not edit manually. */ /* tslint:disable */ /* eslint-disable */ import { Contract, Interface, type ContractRunner } from "ethers"; import type { IMulticall, IMulticallInterface } from "../IMulticall"; const _abi = [ { type: "function", name: "multicall", inputs: [ { name: "data", type: "bytes[]", internalType: "bytes[]", }, ], outputs: [ { name: "results", type: "bytes[]", internalType: "bytes[]", }, ], stateMutability: "payable", }, ] as const; export class IMulticall__factory { static readonly abi = _abi; static createInterface(): IMulticallInterface { return new Interface(_abi) as IMulticallInterface; } static connect(address: string, runner?: ContractRunner | null): IMulticall { return new Contract(address, _abi, runner) as unknown as IMulticall; } }