UNPKG

@q-dev/q-js-sdk

Version:

Typescript Library to interact with Q System Contracts

53 lines (52 loc) 1.78 kB
import { Signer } from "ethers"; import type { Provider } from "@ethersproject/providers"; import type { IPanel, IPanelInterface } from "../IPanel"; export declare class IPanel__factory { static readonly abi: readonly [{ readonly inputs: readonly [{ readonly internalType: "address"; readonly name: "_exp"; readonly type: "address"; }]; readonly name: "isMember"; readonly outputs: readonly [{ readonly internalType: "bool"; readonly name: ""; readonly type: "bool"; }]; readonly stateMutability: "view"; readonly type: "function"; }, { readonly inputs: readonly []; readonly name: "getMembers"; readonly outputs: readonly [{ readonly internalType: "address[]"; readonly name: ""; readonly type: "address[]"; }]; readonly stateMutability: "view"; readonly type: "function"; }, { readonly inputs: readonly []; readonly name: "getLimit"; readonly outputs: readonly [{ readonly internalType: "uint256"; readonly name: ""; readonly type: "uint256"; }]; readonly stateMutability: "view"; readonly type: "function"; }, { readonly inputs: readonly []; readonly name: "getSize"; readonly outputs: readonly [{ readonly internalType: "uint256"; readonly name: ""; readonly type: "uint256"; }]; readonly stateMutability: "view"; readonly type: "function"; }]; static createInterface(): IPanelInterface; static connect(address: string, signerOrProvider: Signer | Provider): IPanel; }