ufomarketplace-sdk-new
Version:
SDK to interact with set ufo marketplace contracts
15 lines (14 loc) • 539 B
TypeScript
import { Signer } from "ethers";
import type { Provider } from "@ethersproject/providers";
import type { Proxy, ProxyInterface } from "../../Proxy.sol/Proxy";
export declare class Proxy__factory {
static readonly abi: readonly [{
readonly type: "fallback";
readonly stateMutability: "payable";
}, {
readonly type: "receive";
readonly stateMutability: "payable";
}];
static createInterface(): ProxyInterface;
static connect(address: string, signerOrProvider: Signer | Provider): Proxy;
}