/* Autogenerated file. Do not edit manually. */ /* tslint:disable */ /* eslint-disable */ import { Contract, Signer, utils } from "ethers"; import { Provider } from "@ethersproject/providers"; import type { Initializable, InitializableInterface } from "../Initializable"; const _abi = [ { anonymous: false, inputs: [ { indexed: false, internalType: "address", name: "initializer", type: "address", }, ], name: "Initialized", type: "event", }, { inputs: [], name: "isInitialized", outputs: [ { internalType: "bool", name: "", type: "bool", }, ], stateMutability: "view", type: "function", }, ]; export class Initializable__factory { static readonly abi = _abi; static createInterface(): InitializableInterface { return new utils.Interface(_abi) as InitializableInterface; } static connect( address: string, signerOrProvider: Signer | Provider ): Initializable { return new Contract(address, _abi, signerOrProvider) as Initializable; } }