UNPKG

@etherspot/contracts

Version:

Etherspot Solidity contracts

43 lines (42 loc) 1.08 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Initializable__factory = void 0; const ethers_1 = require("ethers"); 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", }, ]; class Initializable__factory { static createInterface() { return new ethers_1.utils.Interface(_abi); } static connect(address, signerOrProvider) { return new ethers_1.Contract(address, _abi, signerOrProvider); } } exports.Initializable__factory = Initializable__factory; Initializable__factory.abi = _abi;