/* Autogenerated file. Do not edit manually. */ /* tslint:disable */ /* eslint-disable */ import { Contract, Signer, utils } from "ethers"; import type { Provider } from "@ethersproject/providers"; import type { OwnershipFacet, OwnershipFacetInterface, } from "../../../common/facets/OwnershipFacet"; const _abi = [ { inputs: [], name: "owner", outputs: [ { internalType: "address", name: "owner_", type: "address", }, ], stateMutability: "view", type: "function", }, { inputs: [ { internalType: "address", name: "_newOwner", type: "address", }, ], name: "transferOwnership", outputs: [], stateMutability: "nonpayable", type: "function", }, ]; export class OwnershipFacet__factory { static readonly abi = _abi; static createInterface(): OwnershipFacetInterface { return new utils.Interface(_abi) as OwnershipFacetInterface; } static connect( address: string, signerOrProvider: Signer | Provider ): OwnershipFacet { return new Contract(address, _abi, signerOrProvider) as OwnershipFacet; } }