UNPKG

@astonic-io/astonic-bindings-ts

Version:

Astonic type generation and npm package deployment repo

56 lines (55 loc) 1.45 kB
"use strict"; /* Autogenerated file. Do not edit manually. */ /* tslint:disable */ /* eslint-disable */ Object.defineProperty(exports, "__esModule", { value: true }); exports.IOwnable__factory = void 0; var ethers_1 = require("ethers"); var _abi = [ { type: "function", name: "owner", inputs: [], outputs: [ { name: "", type: "address", internalType: "address", }, ], stateMutability: "view", }, { type: "function", name: "renounceOwnership", inputs: [], outputs: [], stateMutability: "nonpayable", }, { type: "function", name: "transferOwnership", inputs: [ { name: "newOwner", type: "address", internalType: "address", }, ], outputs: [], stateMutability: "nonpayable", }, ]; var IOwnable__factory = /** @class */ (function () { function IOwnable__factory() { } IOwnable__factory.createInterface = function () { return new ethers_1.utils.Interface(_abi); }; IOwnable__factory.connect = function (address, signerOrProvider) { return new ethers_1.Contract(address, _abi, signerOrProvider); }; IOwnable__factory.abi = _abi; return IOwnable__factory; }()); exports.IOwnable__factory = IOwnable__factory;