UNPKG

@vechain/vebetterdao-contracts

Version:

Open-source repository that houses the smart contracts powering the decentralized VeBetterDAO on the VeChain Thor blockchain.

14 lines (13 loc) 511 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.autoVotingLibraries = void 0; const hardhat_1 = require("hardhat"); const autoVotingLibraries = async () => { const AutoVotingLogicV8Factory = await hardhat_1.ethers.getContractFactory("AutoVotingLogicV8"); const AutoVotingLogic = await AutoVotingLogicV8Factory.deploy(); await AutoVotingLogic.waitForDeployment(); return { AutoVotingLogic, }; }; exports.autoVotingLibraries = autoVotingLibraries;