UNPKG

ufomarketplace-sdk

Version:

SDK to interact with set ufo marketplace contracts

34 lines (29 loc) 671 B
/* Autogenerated file. Do not edit manually. */ /* tslint:disable */ /* eslint-disable */ import { Contract, Signer } from "ethers"; import { Provider } from "@ethersproject/providers"; import type { IBeacon } from "../IBeacon"; export class IBeacon__factory { static connect( address: string, signerOrProvider: Signer | Provider ): IBeacon { return new Contract(address, _abi, signerOrProvider) as IBeacon; } } const _abi = [ { inputs: [], name: "implementation", outputs: [ { internalType: "address", name: "", type: "address", }, ], stateMutability: "view", type: "function", }, ];