@vocdoni/davinci-contracts
Version:
Smart contracts powering DAVINCI's digital voting protocol
43 lines (42 loc) • 1.04 kB
JavaScript
;
/* Autogenerated file. Do not edit manually. */
/* tslint:disable */
/* eslint-disable */
Object.defineProperty(exports, "__esModule", { value: true });
exports.Initializable__factory = void 0;
const ethers_1 = require("ethers");
const _abi = [
{
inputs: [],
name: "InvalidInitialization",
type: "error",
},
{
inputs: [],
name: "NotInitializing",
type: "error",
},
{
anonymous: false,
inputs: [
{
indexed: false,
internalType: "uint64",
name: "version",
type: "uint64",
},
],
name: "Initialized",
type: "event",
},
];
class Initializable__factory {
static createInterface() {
return new ethers_1.Interface(_abi);
}
static connect(address, runner) {
return new ethers_1.Contract(address, _abi, runner);
}
}
exports.Initializable__factory = Initializable__factory;
Initializable__factory.abi = _abi;