ufomarketplace-sdk-new
Version:
SDK to interact with set ufo marketplace contracts
29 lines (25 loc) • 767 B
text/typescript
/* Autogenerated file. Do not edit manually. */
/* tslint:disable */
/* eslint-disable */
import { Contract, Signer, utils } from "ethers";
import type { Provider } from "@ethersproject/providers";
import type { Proxy, ProxyInterface } from "../../Proxy.sol/Proxy";
const _abi = [
{
type: "fallback",
stateMutability: "payable",
},
{
type: "receive",
stateMutability: "payable",
},
] as const;
export class Proxy__factory {
static readonly abi = _abi;
static createInterface(): ProxyInterface {
return new utils.Interface(_abi) as ProxyInterface;
}
static connect(address: string, signerOrProvider: Signer | Provider): Proxy {
return new Contract(address, _abi, signerOrProvider) as Proxy;
}
}