UNPKG

@q-dev/q-js-sdk

Version:

Typescript Library to interact with Q System Contracts

15 lines (14 loc) 526 B
import { Signer } from "ethers"; import type { Provider } from "@ethersproject/providers"; import type { Proxy, ProxyInterface } from "../Proxy"; export declare class Proxy__factory { static readonly abi: readonly [{ readonly stateMutability: "payable"; readonly type: "fallback"; }, { readonly stateMutability: "payable"; readonly type: "receive"; }]; static createInterface(): ProxyInterface; static connect(address: string, signerOrProvider: Signer | Provider): Proxy; }