@q-dev/q-js-sdk
Version:
Typescript Library to interact with Q System Contracts
23 lines (22 loc) • 841 B
TypeScript
import { Signer } from "ethers";
import type { Provider } from "@ethersproject/providers";
import type { Multicall, MulticallInterface } from "../Multicall";
export declare class Multicall__factory {
static readonly abi: readonly [{
readonly inputs: readonly [{
readonly internalType: "bytes[]";
readonly name: "data";
readonly type: "bytes[]";
}];
readonly name: "multicall";
readonly outputs: readonly [{
readonly internalType: "bytes[]";
readonly name: "results";
readonly type: "bytes[]";
}];
readonly stateMutability: "nonpayable";
readonly type: "function";
}];
static createInterface(): MulticallInterface;
static connect(address: string, signerOrProvider: Signer | Provider): Multicall;
}