/* Autogenerated file. Do not edit manually. */ /* tslint:disable */ /* eslint-disable */ import { Contract, Signer, utils } from "ethers"; import { Provider } from "@ethersproject/providers"; import type { IERC173, IERC173Interface } from "../IERC173"; 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 IERC173__factory { static readonly abi = _abi; static createInterface(): IERC173Interface { return new utils.Interface(_abi) as IERC173Interface; } static connect( address: string, signerOrProvider: Signer | Provider ): IERC173 { return new Contract(address, _abi, signerOrProvider) as IERC173; } }