@astonic-io/astonic-bindings-ts
Version:
Astonic type generation and npm package deployment repo
61 lines (60 loc) • 1.61 kB
JavaScript
;
/* Autogenerated file. Do not edit manually. */
/* tslint:disable */
/* eslint-disable */
Object.defineProperty(exports, "__esModule", { value: true });
exports.IProxyAdmin__factory = void 0;
var ethers_1 = require("ethers");
var _abi = [
{
type: "function",
name: "getProxyAdmin",
inputs: [
{
name: "proxy",
type: "address",
internalType: "address",
},
],
outputs: [
{
name: "",
type: "address",
internalType: "address",
},
],
stateMutability: "view",
},
{
type: "function",
name: "getProxyImplementation",
inputs: [
{
name: "proxy",
type: "address",
internalType: "address",
},
],
outputs: [
{
name: "",
type: "address",
internalType: "address",
},
],
stateMutability: "view",
},
];
var IProxyAdmin__factory = /** @class */ (function () {
function IProxyAdmin__factory() {
}
IProxyAdmin__factory.createInterface = function () {
return new ethers_1.utils.Interface(_abi);
};
IProxyAdmin__factory.connect = function (address, signerOrProvider) {
return new ethers_1.Contract(address, _abi, signerOrProvider);
};
IProxyAdmin__factory.abi = _abi;
return IProxyAdmin__factory;
}());
exports.IProxyAdmin__factory = IProxyAdmin__factory;