Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: adding Vote Weighting deployment scripts #150

Merged
merged 1 commit into from
Jul 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
62 changes: 62 additions & 0 deletions scripts/deployment/deploy_23_vote_weighting.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
/*global process*/

const { expect } = require("chai");

Check warning on line 3 in scripts/deployment/deploy_23_vote_weighting.js

View workflow job for this annotation

GitHub Actions / build

'expect' is assigned a value but never used
const { ethers } = require("hardhat");
const { LedgerSigner } = require("@anders-t/ethers-ledger");

async function main() {
const fs = require("fs");
const globalsFile = "globals.json";
const dataFromJSON = fs.readFileSync(globalsFile, "utf8");
let parsedData = JSON.parse(dataFromJSON);
const derivationPath = parsedData.derivationPath;
const useLedger = parsedData.useLedger;
const providerName = parsedData.providerName;
let EOA;

const provider = await ethers.providers.getDefaultProvider(providerName);
const signers = await ethers.getSigners();

if (useLedger) {
EOA = new LedgerSigner(provider, derivationPath);
} else {
EOA = signers[0];
}
// EOA address
const deployer = await EOA.getAddress();
console.log("EOA is:", deployer);

// Transaction signing and execution
console.log("23. EOA to deploy VoteWeighting contract pointed to veOLAS");
const VoteWeighting = await ethers.getContractFactory("VoteWeighting");
console.log("You are signing the following transaction: VoteWeighting.connect(EOA).deploy(veOLAS)");
const voteWeighting = await VoteWeighting.connect(EOA).deploy(parsedData.veOLASAddress);
const result = await voteWeighting.deployed();

// Transaction details
console.log("Contract deployment: voteWeighting");
console.log("Contract address:", voteWeighting.address);
console.log("Transaction:", result.deployTransaction.hash);

// If on sepolia, wait half a minute for the transaction completion
if (providerName === "sepolia") {
await new Promise(r => setTimeout(r, 30000));
}

// Contract verification
if (parsedData.contractVerification) {
const execSync = require("child_process").execSync;
execSync("npx hardhat verify --constructor-args scripts/deployment/verify_23_vote_weighting.js --network " + providerName + " " + voteWeighting.address, { encoding: "utf-8" });
}

// Writing updated parameters back to the JSON file
parsedData.voteWeightingAddress = voteWeighting.address;
fs.writeFileSync(globalsFile, JSON.stringify(parsedData));
}

main()
.then(() => process.exit(0))
.catch((error) => {
console.error(error);
process.exit(1);
});
8 changes: 8 additions & 0 deletions scripts/deployment/verify_23_vote_weighting.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
const fs = require("fs");
const globalsFile = "globals.json";
const dataFromJSON = fs.readFileSync(globalsFile, "utf8");
const parsedData = JSON.parse(dataFromJSON);

module.exports = [
parsedData.veOLASAddress
];
Loading