@vechain/vebetterdao-contracts
Version:
Open-source repository that houses the smart contracts powering the decentralized VeBetterDAO on the VeChain Thor blockchain.
10 lines (9 loc) • 338 B
JavaScript
import { ethers } from "hardhat";
export const autoVotingLibraries = async () => {
const AutoVotingLogicV8Factory = await ethers.getContractFactory("AutoVotingLogicV8");
const AutoVotingLogic = await AutoVotingLogicV8Factory.deploy();
await AutoVotingLogic.waitForDeployment();
return {
AutoVotingLogic,
};
};