UNPKG

ufomarketplace-sdk-new

Version:

SDK to interact with set ufo marketplace contracts

76 lines (72 loc) 1.64 kB
/* Autogenerated file. Do not edit manually. */ /* tslint:disable */ /* eslint-disable */ import { Contract, Signer, utils } from "ethers"; import type { Provider } from "@ethersproject/providers"; import type { Ownable, OwnableInterface } from "../Ownable"; const _abi = [ { type: "function", name: "owner", inputs: [], outputs: [ { name: "", type: "address", internalType: "address", }, ], stateMutability: "view", }, { type: "function", name: "renounceOwnership", inputs: [], outputs: [], stateMutability: "nonpayable", }, { type: "function", name: "transferOwnership", inputs: [ { name: "newOwner", type: "address", internalType: "address", }, ], outputs: [], stateMutability: "nonpayable", }, { type: "event", name: "OwnershipTransferred", inputs: [ { name: "previousOwner", type: "address", indexed: true, internalType: "address", }, { name: "newOwner", type: "address", indexed: true, internalType: "address", }, ], anonymous: false, }, ] as const; export class Ownable__factory { static readonly abi = _abi; static createInterface(): OwnableInterface { return new utils.Interface(_abi) as OwnableInterface; } static connect( address: string, signerOrProvider: Signer | Provider ): Ownable { return new Contract(address, _abi, signerOrProvider) as Ownable; } }