@vechain/vebetterdao-contracts
Version:
Open-source repository that houses the smart contracts powering the decentralized VeBetterDAO on the VeChain Thor blockchain.
1,301 lines • 95.4 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const local_1 = require("@repo/config/contracts/envs/local");
const chai_1 = require("chai");
const hardhat_1 = require("hardhat");
const mocha_1 = require("mocha");
const helpers_1 = require("../../../scripts/helpers");
const helpers_2 = require("../../helpers");
const common_1 = require("../../helpers/common");
const fixture_test_1 = require("../fixture.test");
//test is skipped for the time being as it is not working
(0, mocha_1.describe)("GrantsManager - V2 Upgrade - @shard4i", function () {
mocha_1.it.skip("Should preserve grant proposal data through V1 -> V2 upgrade with Governor V7 -> V8 upgrade", async () => {
const config = (0, local_1.createLocalConfig)();
const { owner, b3tr, timeLock, voterRewards, vot3, xAllocationVoting, veBetterPassport, minterAccount, otherAccounts, emissions, treasury, galaxyMember, governorClockLogicLibV1, governorConfiguratorLibV1, governorDepositLogicLibV1, governorFunctionRestrictionsLogicLibV1, governorProposalLogicLibV1, governorQuorumLogicLibV1, governorStateLogicLibV1, governorVotesLogicLibV1, governorClockLogicLibV3, governorConfiguratorLibV3, governorDepositLogicLibV3, governorFunctionRestrictionsLogicLibV3, governorProposalLogicLibV3, governorQuorumLogicLibV3, governorStateLogicLibV3, governorVotesLogicLibV3, governorClockLogicLibV4, governorConfiguratorLibV4, governorDepositLogicLibV4, governorFunctionRestrictionsLogicLibV4, governorProposalLogicLibV4, governorQuorumLogicLibV4, governorStateLogicLibV4, governorVotesLogicLibV4, governorClockLogicLibV5, governorConfiguratorLibV5, governorDepositLogicLibV5, governorFunctionRestrictionsLogicLibV5, governorProposalLogicLibV5, governorQuorumLogicLibV5, governorStateLogicLibV5, governorVotesLogicLibV5, governorClockLogicLibV6, governorConfiguratorLibV6, governorDepositLogicLibV6, governorFunctionRestrictionsLogicLibV6, governorProposalLogicLibV6, governorQuorumLogicLibV6, governorStateLogicLibV6, governorVotesLogicLibV6, governorClockLogicLibV7, governorConfiguratorLibV7, governorDepositLogicLibV7, governorFunctionRestrictionsLogicLibV7, governorProposalLogicLibV7, governorQuorumLogicLibV7, governorStateLogicLibV7, governorVotesLogicLibV7, governorConfiguratorLib, governorDepositLogicLib, governorFunctionRestrictionsLogicLib, governorProposalLogicLib, governorQuorumLogicLib, governorStateLogicLib, governorVotesLogicLib, governorClockLogicLib, timelockAdmin, } = (await (0, helpers_2.getOrDeployContractInstances)({
forceDeploy: true,
}));
// Setup proposer and voters
const proposer = otherAccounts[0];
await (0, fixture_test_1.setupProposer)(proposer, b3tr, vot3, minterAccount);
await (0, fixture_test_1.setupVoter)(proposer, b3tr, vot3, minterAccount, owner, veBetterPassport);
await (0, fixture_test_1.setupVoter)(otherAccounts[1], b3tr, vot3, minterAccount, owner, veBetterPassport);
await (0, fixture_test_1.setupVoter)(otherAccounts[2], b3tr, vot3, minterAccount, owner, veBetterPassport);
const treasuryAddress = await treasury.getAddress();
// Deploy GrantsManager V1
const grantsManagerV1 = (await (0, helpers_1.deployProxy)("GrantsManagerV1", [
owner.address, // temporary governor address
treasuryAddress,
owner.address,
await b3tr.getAddress(),
config.MINIMUM_MILESTONE_COUNT,
]));
(0, chai_1.expect)(await grantsManagerV1.version()).to.equal("1");
// Deploy Governor V1->V7
const governorV7 = (await (0, helpers_1.deployAndUpgrade)([
"B3TRGovernorV1",
"B3TRGovernorV2",
"B3TRGovernorV3",
"B3TRGovernorV4",
"B3TRGovernorV5",
"B3TRGovernorV6",
"B3TRGovernorV7",
], [
[
{
vot3Token: await vot3.getAddress(),
timelock: await timeLock.getAddress(),
xAllocationVoting: await xAllocationVoting.getAddress(),
b3tr: await b3tr.getAddress(),
quorumPercentage: config.B3TR_GOVERNOR_QUORUM_PERCENTAGE,
initialDepositThreshold: config.B3TR_GOVERNOR_DEPOSIT_THRESHOLD,
initialMinVotingDelay: config.B3TR_GOVERNOR_MIN_VOTING_DELAY,
initialVotingThreshold: config.B3TR_GOVERNOR_VOTING_THRESHOLD,
voterRewards: await voterRewards.getAddress(),
isFunctionRestrictionEnabled: true,
},
{
governorAdmin: owner.address,
pauser: owner.address,
contractsAddressManager: owner.address,
proposalExecutor: owner.address,
governorFunctionSettingsRoleAddress: owner.address,
},
],
[],
[],
[await veBetterPassport.getAddress()],
[],
[],
[
{
grantDepositThreshold: config.B3TR_GOVERNOR_GRANT_DEPOSIT_THRESHOLD,
grantVotingThreshold: config.B3TR_GOVERNOR_GRANT_VOTING_THRESHOLD,
grantQuorum: config.B3TR_GOVERNOR_GRANT_QUORUM_PERCENTAGE,
grantDepositThresholdCap: config.B3TR_GOVERNOR_GRANT_DEPOSIT_THRESHOLD_CAP,
standardDepositThresholdCap: config.B3TR_GOVERNOR_STANDARD_DEPOSIT_THRESHOLD_CAP,
standardGMWeight: config.B3TR_GOVERNOR_STANDARD_GM_WEIGHT,
grantGMWeight: config.B3TR_GOVERNOR_GRANT_GM_WEIGHT,
galaxyMember: await galaxyMember.getAddress(),
grantsManager: await grantsManagerV1.getAddress(),
},
],
], {
versions: [undefined, 2, 3, 4, 5, 6, 7],
libraries: [
{
GovernorClockLogicV1: await governorClockLogicLibV1.getAddress(),
GovernorConfiguratorV1: await governorConfiguratorLibV1.getAddress(),
GovernorDepositLogicV1: await governorDepositLogicLibV1.getAddress(),
GovernorFunctionRestrictionsLogicV1: await governorFunctionRestrictionsLogicLibV1.getAddress(),
GovernorProposalLogicV1: await governorProposalLogicLibV1.getAddress(),
GovernorQuorumLogicV1: await governorQuorumLogicLibV1.getAddress(),
GovernorStateLogicV1: await governorStateLogicLibV1.getAddress(),
GovernorVotesLogicV1: await governorVotesLogicLibV1.getAddress(),
},
{
GovernorClockLogicV1: await governorClockLogicLibV1.getAddress(),
GovernorConfiguratorV1: await governorConfiguratorLibV1.getAddress(),
GovernorDepositLogicV1: await governorDepositLogicLibV1.getAddress(),
GovernorFunctionRestrictionsLogicV1: await governorFunctionRestrictionsLogicLibV1.getAddress(),
GovernorProposalLogicV1: await governorProposalLogicLibV1.getAddress(),
GovernorQuorumLogicV1: await governorQuorumLogicLibV1.getAddress(),
GovernorStateLogicV1: await governorStateLogicLibV1.getAddress(),
GovernorVotesLogicV1: await governorVotesLogicLibV1.getAddress(),
},
{
GovernorClockLogicV3: await governorClockLogicLibV3.getAddress(),
GovernorConfiguratorV3: await governorConfiguratorLibV3.getAddress(),
GovernorDepositLogicV3: await governorDepositLogicLibV3.getAddress(),
GovernorFunctionRestrictionsLogicV3: await governorFunctionRestrictionsLogicLibV3.getAddress(),
GovernorProposalLogicV3: await governorProposalLogicLibV3.getAddress(),
GovernorQuorumLogicV3: await governorQuorumLogicLibV3.getAddress(),
GovernorStateLogicV3: await governorStateLogicLibV3.getAddress(),
GovernorVotesLogicV3: await governorVotesLogicLibV3.getAddress(),
},
{
GovernorClockLogicV4: await governorClockLogicLibV4.getAddress(),
GovernorConfiguratorV4: await governorConfiguratorLibV4.getAddress(),
GovernorDepositLogicV4: await governorDepositLogicLibV4.getAddress(),
GovernorFunctionRestrictionsLogicV4: await governorFunctionRestrictionsLogicLibV4.getAddress(),
GovernorProposalLogicV4: await governorProposalLogicLibV4.getAddress(),
GovernorQuorumLogicV4: await governorQuorumLogicLibV4.getAddress(),
GovernorStateLogicV4: await governorStateLogicLibV4.getAddress(),
GovernorVotesLogicV4: await governorVotesLogicLibV4.getAddress(),
},
{
GovernorClockLogicV5: await governorClockLogicLibV5.getAddress(),
GovernorConfiguratorV5: await governorConfiguratorLibV5.getAddress(),
GovernorDepositLogicV5: await governorDepositLogicLibV5.getAddress(),
GovernorFunctionRestrictionsLogicV5: await governorFunctionRestrictionsLogicLibV5.getAddress(),
GovernorProposalLogicV5: await governorProposalLogicLibV5.getAddress(),
GovernorQuorumLogicV5: await governorQuorumLogicLibV5.getAddress(),
GovernorStateLogicV5: await governorStateLogicLibV5.getAddress(),
GovernorVotesLogicV5: await governorVotesLogicLibV5.getAddress(),
},
{
GovernorClockLogicV6: await governorClockLogicLibV6.getAddress(),
GovernorConfiguratorV6: await governorConfiguratorLibV6.getAddress(),
GovernorDepositLogicV6: await governorDepositLogicLibV6.getAddress(),
GovernorFunctionRestrictionsLogicV6: await governorFunctionRestrictionsLogicLibV6.getAddress(),
GovernorProposalLogicV6: await governorProposalLogicLibV6.getAddress(),
GovernorQuorumLogicV6: await governorQuorumLogicLibV6.getAddress(),
GovernorStateLogicV6: await governorStateLogicLibV6.getAddress(),
GovernorVotesLogicV6: await governorVotesLogicLibV6.getAddress(),
},
{
GovernorClockLogicV7: await governorClockLogicLibV7.getAddress(),
GovernorConfiguratorV7: await governorConfiguratorLibV7.getAddress(),
GovernorDepositLogicV7: await governorDepositLogicLibV7.getAddress(),
GovernorFunctionRestrictionsLogicV7: await governorFunctionRestrictionsLogicLibV7.getAddress(),
GovernorProposalLogicV7: await governorProposalLogicLibV7.getAddress(),
GovernorQuorumLogicV7: await governorQuorumLogicLibV7.getAddress(),
GovernorStateLogicV7: await governorStateLogicLibV7.getAddress(),
GovernorVotesLogicV7: await governorVotesLogicLibV7.getAddress(),
},
],
}));
const selectorTransferB3TR = await treasury.interface.getFunction("transferB3TR")?.selector;
await governorV7.setWhitelistFunction(treasuryAddress, selectorTransferB3TR, true);
(0, chai_1.expect)(await governorV7.version()).to.equal("7");
// Set governor address in GrantsManager
await grantsManagerV1.connect(owner).setGovernorContract(await governorV7.getAddress());
await grantsManagerV1
.connect(owner)
.grantRole(await grantsManagerV1.GOVERNANCE_ROLE(), await governorV7.getAddress()); // prev initialized with (TEMP_GOVERNOR_ADDRESS= owner.address)
await grantsManagerV1.connect(owner).grantRole(await grantsManagerV1.DEFAULT_ADMIN_ROLE(), owner.address);
// Grant Vote registrar role to Governor
await voterRewards.connect(owner).grantRole(await voterRewards.VOTE_REGISTRAR_ROLE(), await governorV7.getAddress());
// Grant roles for proposal execution
const PROPOSER_ROLE = await timeLock.PROPOSER_ROLE();
const EXECUTOR_ROLE = await timeLock.EXECUTOR_ROLE();
const CANCELLER_ROLE = await timeLock.CANCELLER_ROLE();
await timeLock.connect(timelockAdmin).grantRole(PROPOSER_ROLE, await governorV7.getAddress());
await timeLock.connect(timelockAdmin).grantRole(EXECUTOR_ROLE, await governorV7.getAddress());
await timeLock.connect(timelockAdmin).grantRole(CANCELLER_ROLE, await governorV7.getAddress());
// Create a grant proposal in V7
const grantee = otherAccounts[3];
const values = [hardhat_1.ethers.parseEther("5000"), hardhat_1.ethers.parseEther("5000")];
const description = "Test grant for upgrade testing";
const milestonesDetailsMetadataURI = "https://ipfs.io/ipfs/Qm...test";
const roundId = await (0, common_1.getRoundId)({
emissions,
xAllocationVoting,
});
const grantsManagerAddress = await grantsManagerV1.getAddress();
const calldatas = [
treasury.interface.encodeFunctionData("transferB3TR", [grantsManagerAddress, values[0]]),
treasury.interface.encodeFunctionData("transferB3TR", [grantsManagerAddress, values[1]]),
];
// Create grant proposal
const tx = await governorV7
.connect(proposer)
.proposeGrant([treasuryAddress, treasuryAddress], [0n, 0n], calldatas, description, roundId, 0, grantee.address, milestonesDetailsMetadataURI, {
gasLimit: 10000000,
});
const proposalId = await (0, common_1.getProposalIdFromGrantsProposalTx)(tx);
// Support the proposal
const depositThreshold = await governorV7.proposalDepositThreshold(proposalId);
await (0, fixture_test_1.setupSupporter)(owner, vot3, depositThreshold, governorV7);
await governorV7.connect(owner).deposit(depositThreshold, proposalId);
(0, chai_1.expect)(await governorV7.proposalDepositReached(proposalId)).to.be.true;
// Start a new round to move proposal to active
await (0, common_1.waitForCurrentRoundToEnd)({ emissions, xAllocationVoting });
await (0, common_1.startNewAllocationRound)({
emissions,
xAllocationVoting,
minterAccount,
});
// Verify proposal is active
(0, chai_1.expect)(await governorV7.state(proposalId)).to.equal(hardhat_1.ethers.toBigInt(1)); // Active state
// Cast votes for the proposal
await governorV7.connect(proposer).castVote(proposalId, 1);
await governorV7.connect(otherAccounts[1]).castVote(proposalId, 1);
await governorV7.connect(otherAccounts[2]).castVote(proposalId, 1);
// Move to next round to finalize voting
await (0, common_1.waitForCurrentRoundToEnd)({ emissions, xAllocationVoting });
await (0, common_1.startNewAllocationRound)({
emissions,
xAllocationVoting,
minterAccount,
});
// Verify proposal succeeded
(0, chai_1.expect)(await governorV7.state(proposalId)).to.equal(hardhat_1.ethers.toBigInt(4)); // Succeeded state
// Verify grant proposal was created in V1
const grantProposalV1 = await grantsManagerV1.getGrantProposal(proposalId);
(0, chai_1.expect)(grantProposalV1.grantsReceiver).to.equal(grantee.address);
(0, chai_1.expect)(grantProposalV1.metadataURI).to.equal(milestonesDetailsMetadataURI);
// Verify milestones were created in V1
const milestonesV1 = await grantsManagerV1.getMilestones(proposalId);
(0, chai_1.expect)(milestonesV1.length).to.equal(2);
(0, chai_1.expect)(milestonesV1[0].amount).to.equal(values[0]);
(0, chai_1.expect)(milestonesV1[1].amount).to.equal(values[1]);
// Store V1 data for comparison after upgrade
const v1MinimumMilestoneCount = await grantsManagerV1.getMinimumMilestoneCount();
const v1GovernorContract = await grantsManagerV1.getGovernorContract();
const v1TreasuryContract = await grantsManagerV1.getTreasuryContract();
const v1B3trContract = await grantsManagerV1.getB3trContract();
const v1GrantState = await grantsManagerV1.grantState(proposalId);
await grantsManagerV1.connect(owner).grantRole(await grantsManagerV1.UPGRADER_ROLE(), owner.address);
// Upgrade GrantsManager V1 -> V2
const grantsManagerV2 = (await (0, helpers_1.upgradeProxy)("GrantsManagerV1", "GrantsManager", await grantsManagerV1.getAddress(), [], {
version: 2,
}));
(0, chai_1.expect)(await grantsManagerV2.version()).to.equal("2");
// Upgrade Governor V7 -> V8
const governorV8 = (await (0, helpers_1.upgradeProxy)("B3TRGovernorV7", "B3TRGovernor", await governorV7.getAddress(), [], {
version: 8,
libraries: {
GovernorClockLogic: await governorClockLogicLib.getAddress(),
GovernorConfigurator: await governorConfiguratorLib.getAddress(),
GovernorDepositLogic: await governorDepositLogicLib.getAddress(),
GovernorFunctionRestrictionsLogic: await governorFunctionRestrictionsLogicLib.getAddress(),
GovernorProposalLogic: await governorProposalLogicLib.getAddress(),
GovernorQuorumLogic: await governorQuorumLogicLib.getAddress(),
GovernorStateLogic: await governorStateLogicLib.getAddress(),
GovernorVotesLogic: await governorVotesLogicLib.getAddress(),
},
}));
(0, chai_1.expect)(await governorV8.version()).to.equal("8");
// Verify all grant proposal data persisted through upgrade
const grantProposalV2 = await grantsManagerV2.getGrantProposal(proposalId);
(0, chai_1.expect)(grantProposalV2.grantsReceiver).to.equal(grantProposalV1.grantsReceiver);
(0, chai_1.expect)(grantProposalV2.metadataURI).to.equal(grantProposalV1.metadataURI);
// Verify milestones persisted
const milestonesV2 = await grantsManagerV2.getMilestones(proposalId);
(0, chai_1.expect)(milestonesV2.length).to.equal(milestonesV1.length);
for (let i = 0; i < milestonesV1.length; i++) {
(0, chai_1.expect)(milestonesV2[i].amount).to.equal(milestonesV1[i].amount);
(0, chai_1.expect)(milestonesV2[i].isApproved).to.equal(milestonesV1[i].isApproved);
(0, chai_1.expect)(milestonesV2[i].isClaimed).to.equal(milestonesV1[i].isClaimed);
(0, chai_1.expect)(milestonesV2[i].isRejected).to.equal(milestonesV1[i].isRejected);
}
// Verify all contract addresses and settings persisted
(0, chai_1.expect)(await grantsManagerV2.getMinimumMilestoneCount()).to.equal(v1MinimumMilestoneCount);
(0, chai_1.expect)(await grantsManagerV2.getGovernorContract()).to.equal(v1GovernorContract);
(0, chai_1.expect)(await grantsManagerV2.getTreasuryContract()).to.equal(v1TreasuryContract);
(0, chai_1.expect)(await grantsManagerV2.getB3trContract()).to.equal(v1B3trContract);
// Verify grant state persisted
(0, chai_1.expect)(await grantsManagerV2.grantState(proposalId)).to.equal(v1GrantState);
// Verify proposal persisted in Governor
(0, chai_1.expect)(await governorV8.proposalProposer(proposalId)).to.equal(proposer.address);
(0, chai_1.expect)(await governorV8.state(proposalId)).to.equal(hardhat_1.ethers.toBigInt(4)); // Succeeded state
});
(0, mocha_1.it)("Should prevent claiming non-approved milestones after V1 -> V2 upgrade", async () => {
const config = (0, local_1.createLocalConfig)();
const { owner, b3tr, timeLock, voterRewards, vot3, xAllocationVoting, veBetterPassport, minterAccount, otherAccounts, emissions, treasury, galaxyMember, governorClockLogicLibV1, governorConfiguratorLibV1, governorDepositLogicLibV1, governorFunctionRestrictionsLogicLibV1, governorProposalLogicLibV1, governorQuorumLogicLibV1, governorStateLogicLibV1, governorVotesLogicLibV1, governorClockLogicLibV3, governorConfiguratorLibV3, governorDepositLogicLibV3, governorFunctionRestrictionsLogicLibV3, governorProposalLogicLibV3, governorQuorumLogicLibV3, governorStateLogicLibV3, governorVotesLogicLibV3, governorClockLogicLibV4, governorConfiguratorLibV4, governorDepositLogicLibV4, governorFunctionRestrictionsLogicLibV4, governorProposalLogicLibV4, governorQuorumLogicLibV4, governorStateLogicLibV4, governorVotesLogicLibV4, governorClockLogicLibV5, governorConfiguratorLibV5, governorDepositLogicLibV5, governorFunctionRestrictionsLogicLibV5, governorProposalLogicLibV5, governorQuorumLogicLibV5, governorStateLogicLibV5, governorVotesLogicLibV5, governorClockLogicLibV6, governorConfiguratorLibV6, governorDepositLogicLibV6, governorFunctionRestrictionsLogicLibV6, governorProposalLogicLibV6, governorQuorumLogicLibV6, governorStateLogicLibV6, governorVotesLogicLibV6, governorClockLogicLibV7, governorConfiguratorLibV7, governorDepositLogicLibV7, governorFunctionRestrictionsLogicLibV7, governorProposalLogicLibV7, governorQuorumLogicLibV7, governorStateLogicLibV7, governorVotesLogicLibV7, timelockAdmin, } = (await (0, helpers_2.getOrDeployContractInstances)({
forceDeploy: true,
}));
// Setup proposer and voters
const proposer = otherAccounts[0];
await (0, fixture_test_1.setupProposer)(proposer, b3tr, vot3, minterAccount);
await (0, fixture_test_1.setupVoter)(proposer, b3tr, vot3, minterAccount, owner, veBetterPassport);
await (0, fixture_test_1.setupVoter)(otherAccounts[1], b3tr, vot3, minterAccount, owner, veBetterPassport);
await (0, fixture_test_1.setupVoter)(otherAccounts[2], b3tr, vot3, minterAccount, owner, veBetterPassport);
const treasuryAddress = await treasury.getAddress();
// Deploy GrantsManager V1
const grantsManagerV1 = (await (0, helpers_1.deployProxy)("GrantsManagerV1", [
owner.address,
treasuryAddress,
owner.address,
await b3tr.getAddress(),
config.MINIMUM_MILESTONE_COUNT,
]));
// Deploy Governor V7
const governorV7 = (await (0, helpers_1.deployAndUpgrade)([
"B3TRGovernorV1",
"B3TRGovernorV2",
"B3TRGovernorV3",
"B3TRGovernorV4",
"B3TRGovernorV5",
"B3TRGovernorV6",
"B3TRGovernorV7",
], [
[
{
vot3Token: await vot3.getAddress(),
timelock: await timeLock.getAddress(),
xAllocationVoting: await xAllocationVoting.getAddress(),
b3tr: await b3tr.getAddress(),
quorumPercentage: config.B3TR_GOVERNOR_QUORUM_PERCENTAGE,
initialDepositThreshold: config.B3TR_GOVERNOR_DEPOSIT_THRESHOLD,
initialMinVotingDelay: config.B3TR_GOVERNOR_MIN_VOTING_DELAY,
initialVotingThreshold: config.B3TR_GOVERNOR_VOTING_THRESHOLD,
voterRewards: await voterRewards.getAddress(),
isFunctionRestrictionEnabled: true,
},
{
governorAdmin: owner.address,
pauser: owner.address,
contractsAddressManager: owner.address,
proposalExecutor: owner.address,
governorFunctionSettingsRoleAddress: owner.address,
},
],
[],
[],
[await veBetterPassport.getAddress()],
[],
[],
[
{
grantDepositThreshold: config.B3TR_GOVERNOR_GRANT_DEPOSIT_THRESHOLD,
grantVotingThreshold: config.B3TR_GOVERNOR_GRANT_VOTING_THRESHOLD,
grantQuorum: config.B3TR_GOVERNOR_GRANT_QUORUM_PERCENTAGE,
grantDepositThresholdCap: config.B3TR_GOVERNOR_GRANT_DEPOSIT_THRESHOLD_CAP,
standardDepositThresholdCap: config.B3TR_GOVERNOR_STANDARD_DEPOSIT_THRESHOLD_CAP,
standardGMWeight: config.B3TR_GOVERNOR_STANDARD_GM_WEIGHT,
grantGMWeight: config.B3TR_GOVERNOR_GRANT_GM_WEIGHT,
galaxyMember: await galaxyMember.getAddress(),
grantsManager: await grantsManagerV1.getAddress(),
},
],
], {
versions: [undefined, 2, 3, 4, 5, 6, 7],
libraries: [
{
GovernorClockLogicV1: await governorClockLogicLibV1.getAddress(),
GovernorConfiguratorV1: await governorConfiguratorLibV1.getAddress(),
GovernorDepositLogicV1: await governorDepositLogicLibV1.getAddress(),
GovernorFunctionRestrictionsLogicV1: await governorFunctionRestrictionsLogicLibV1.getAddress(),
GovernorProposalLogicV1: await governorProposalLogicLibV1.getAddress(),
GovernorQuorumLogicV1: await governorQuorumLogicLibV1.getAddress(),
GovernorStateLogicV1: await governorStateLogicLibV1.getAddress(),
GovernorVotesLogicV1: await governorVotesLogicLibV1.getAddress(),
},
{
GovernorClockLogicV1: await governorClockLogicLibV1.getAddress(),
GovernorConfiguratorV1: await governorConfiguratorLibV1.getAddress(),
GovernorDepositLogicV1: await governorDepositLogicLibV1.getAddress(),
GovernorFunctionRestrictionsLogicV1: await governorFunctionRestrictionsLogicLibV1.getAddress(),
GovernorProposalLogicV1: await governorProposalLogicLibV1.getAddress(),
GovernorQuorumLogicV1: await governorQuorumLogicLibV1.getAddress(),
GovernorStateLogicV1: await governorStateLogicLibV1.getAddress(),
GovernorVotesLogicV1: await governorVotesLogicLibV1.getAddress(),
},
{
GovernorClockLogicV3: await governorClockLogicLibV3.getAddress(),
GovernorConfiguratorV3: await governorConfiguratorLibV3.getAddress(),
GovernorDepositLogicV3: await governorDepositLogicLibV3.getAddress(),
GovernorFunctionRestrictionsLogicV3: await governorFunctionRestrictionsLogicLibV3.getAddress(),
GovernorProposalLogicV3: await governorProposalLogicLibV3.getAddress(),
GovernorQuorumLogicV3: await governorQuorumLogicLibV3.getAddress(),
GovernorStateLogicV3: await governorStateLogicLibV3.getAddress(),
GovernorVotesLogicV3: await governorVotesLogicLibV3.getAddress(),
},
{
GovernorClockLogicV4: await governorClockLogicLibV4.getAddress(),
GovernorConfiguratorV4: await governorConfiguratorLibV4.getAddress(),
GovernorDepositLogicV4: await governorDepositLogicLibV4.getAddress(),
GovernorFunctionRestrictionsLogicV4: await governorFunctionRestrictionsLogicLibV4.getAddress(),
GovernorProposalLogicV4: await governorProposalLogicLibV4.getAddress(),
GovernorQuorumLogicV4: await governorQuorumLogicLibV4.getAddress(),
GovernorStateLogicV4: await governorStateLogicLibV4.getAddress(),
GovernorVotesLogicV4: await governorVotesLogicLibV4.getAddress(),
},
{
GovernorClockLogicV5: await governorClockLogicLibV5.getAddress(),
GovernorConfiguratorV5: await governorConfiguratorLibV5.getAddress(),
GovernorDepositLogicV5: await governorDepositLogicLibV5.getAddress(),
GovernorFunctionRestrictionsLogicV5: await governorFunctionRestrictionsLogicLibV5.getAddress(),
GovernorProposalLogicV5: await governorProposalLogicLibV5.getAddress(),
GovernorQuorumLogicV5: await governorQuorumLogicLibV5.getAddress(),
GovernorStateLogicV5: await governorStateLogicLibV5.getAddress(),
GovernorVotesLogicV5: await governorVotesLogicLibV5.getAddress(),
},
{
GovernorClockLogicV6: await governorClockLogicLibV6.getAddress(),
GovernorConfiguratorV6: await governorConfiguratorLibV6.getAddress(),
GovernorDepositLogicV6: await governorDepositLogicLibV6.getAddress(),
GovernorFunctionRestrictionsLogicV6: await governorFunctionRestrictionsLogicLibV6.getAddress(),
GovernorProposalLogicV6: await governorProposalLogicLibV6.getAddress(),
GovernorQuorumLogicV6: await governorQuorumLogicLibV6.getAddress(),
GovernorStateLogicV6: await governorStateLogicLibV6.getAddress(),
GovernorVotesLogicV6: await governorVotesLogicLibV6.getAddress(),
},
{
GovernorClockLogicV7: await governorClockLogicLibV7.getAddress(),
GovernorConfiguratorV7: await governorConfiguratorLibV7.getAddress(),
GovernorDepositLogicV7: await governorDepositLogicLibV7.getAddress(),
GovernorFunctionRestrictionsLogicV7: await governorFunctionRestrictionsLogicLibV7.getAddress(),
GovernorProposalLogicV7: await governorProposalLogicLibV7.getAddress(),
GovernorQuorumLogicV7: await governorQuorumLogicLibV7.getAddress(),
GovernorStateLogicV7: await governorStateLogicLibV7.getAddress(),
GovernorVotesLogicV7: await governorVotesLogicLibV7.getAddress(),
},
],
}));
const selectorTransferB3TR = await treasury.interface.getFunction("transferB3TR")?.selector;
await governorV7.setWhitelistFunction(treasuryAddress, selectorTransferB3TR, true);
// Configure GrantsManager and Governor
await grantsManagerV1.connect(owner).setGovernorContract(await governorV7.getAddress());
await grantsManagerV1
.connect(owner)
.grantRole(await grantsManagerV1.GOVERNANCE_ROLE(), await governorV7.getAddress());
await grantsManagerV1.connect(owner).grantRole(await grantsManagerV1.DEFAULT_ADMIN_ROLE(), owner.address);
await voterRewards.connect(owner).grantRole(await voterRewards.VOTE_REGISTRAR_ROLE(), await governorV7.getAddress());
const PROPOSER_ROLE = await timeLock.PROPOSER_ROLE();
const EXECUTOR_ROLE = await timeLock.EXECUTOR_ROLE();
const CANCELLER_ROLE = await timeLock.CANCELLER_ROLE();
await timeLock.connect(timelockAdmin).grantRole(PROPOSER_ROLE, await governorV7.getAddress());
await timeLock.connect(timelockAdmin).grantRole(EXECUTOR_ROLE, await governorV7.getAddress());
await timeLock.connect(timelockAdmin).grantRole(CANCELLER_ROLE, await governorV7.getAddress());
// Create and execute grant proposal
const grantee = otherAccounts[3];
const values = [hardhat_1.ethers.parseEther("5000"), hardhat_1.ethers.parseEther("5000")];
const description = "Test grant for milestone claim blocking";
const roundId = await (0, common_1.getRoundId)({ emissions, xAllocationVoting });
const grantsManagerAddress = await grantsManagerV1.getAddress();
const calldatas = [
treasury.interface.encodeFunctionData("transferB3TR", [grantsManagerAddress, values[0]]),
treasury.interface.encodeFunctionData("transferB3TR", [grantsManagerAddress, values[1]]),
];
const tx = await governorV7
.connect(proposer)
.proposeGrant([treasuryAddress, treasuryAddress], [0n, 0n], calldatas, description, roundId, 0, grantee.address, "https://ipfs.io/ipfs/Qm...milestone", { gasLimit: 10000000 });
const proposalId = await (0, common_1.getProposalIdFromGrantsProposalTx)(tx);
// Support and vote
const depositThreshold = await governorV7.proposalDepositThreshold(proposalId);
await (0, fixture_test_1.setupSupporter)(owner, vot3, depositThreshold, governorV7);
await governorV7.connect(owner).deposit(depositThreshold, proposalId);
await (0, common_1.waitForCurrentRoundToEnd)({ emissions, xAllocationVoting });
await (0, common_1.startNewAllocationRound)({ emissions, xAllocationVoting, minterAccount });
await governorV7.connect(proposer).castVote(proposalId, 1);
await governorV7.connect(otherAccounts[1]).castVote(proposalId, 1);
await (0, common_1.waitForCurrentRoundToEnd)({ emissions, xAllocationVoting });
await (0, common_1.startNewAllocationRound)({ emissions, xAllocationVoting, minterAccount });
// Queue and execute proposal
const descriptionHash = hardhat_1.ethers.keccak256(hardhat_1.ethers.toUtf8Bytes(description));
await governorV7.connect(owner).queue([treasuryAddress, treasuryAddress], [0n, 0n], calldatas, descriptionHash);
const proposalEta = await governorV7.proposalEta(proposalId);
await hardhat_1.ethers.provider.send("evm_mine", [Number(proposalEta) + 1]);
await governorV7.connect(owner).execute([treasuryAddress, treasuryAddress], [0n, 0n], calldatas, descriptionHash);
// Verify milestone is not approved in V1
const milestonesV1 = await grantsManagerV1.getMilestones(proposalId);
(0, chai_1.expect)(milestonesV1[0].isApproved).to.be.false;
// Upgrade to V2
await grantsManagerV1.connect(owner).grantRole(await grantsManagerV1.UPGRADER_ROLE(), owner.address);
const grantsManagerV2 = (await (0, helpers_1.upgradeProxy)("GrantsManagerV1", "GrantsManager", await grantsManagerV1.getAddress(), [], { version: 2 }));
// Verify milestone still not approved in V2
const milestonesV2 = await grantsManagerV2.getMilestones(proposalId);
(0, chai_1.expect)(milestonesV2[0].isApproved).to.be.false;
(0, chai_1.expect)(milestonesV2[0].isClaimed).to.be.false;
(0, chai_1.expect)(milestonesV2[0].isRejected).to.be.false;
});
(0, mocha_1.it)("Should allow claiming approved milestones after V1 -> V2 upgrade", async () => {
const config = (0, local_1.createLocalConfig)();
const { owner, b3tr, timeLock, voterRewards, vot3, xAllocationVoting, veBetterPassport, minterAccount, otherAccounts, emissions, treasury, galaxyMember, governorClockLogicLibV1, governorConfiguratorLibV1, governorDepositLogicLibV1, governorFunctionRestrictionsLogicLibV1, governorProposalLogicLibV1, governorQuorumLogicLibV1, governorStateLogicLibV1, governorVotesLogicLibV1, governorClockLogicLibV3, governorConfiguratorLibV3, governorDepositLogicLibV3, governorFunctionRestrictionsLogicLibV3, governorProposalLogicLibV3, governorQuorumLogicLibV3, governorStateLogicLibV3, governorVotesLogicLibV3, governorClockLogicLibV4, governorConfiguratorLibV4, governorDepositLogicLibV4, governorFunctionRestrictionsLogicLibV4, governorProposalLogicLibV4, governorQuorumLogicLibV4, governorStateLogicLibV4, governorVotesLogicLibV4, governorClockLogicLibV5, governorConfiguratorLibV5, governorDepositLogicLibV5, governorFunctionRestrictionsLogicLibV5, governorProposalLogicLibV5, governorQuorumLogicLibV5, governorStateLogicLibV5, governorVotesLogicLibV5, governorClockLogicLibV6, governorConfiguratorLibV6, governorDepositLogicLibV6, governorFunctionRestrictionsLogicLibV6, governorProposalLogicLibV6, governorQuorumLogicLibV6, governorStateLogicLibV6, governorVotesLogicLibV6, governorClockLogicLibV7, governorConfiguratorLibV7, governorDepositLogicLibV7, governorFunctionRestrictionsLogicLibV7, governorProposalLogicLibV7, governorQuorumLogicLibV7, governorStateLogicLibV7, governorVotesLogicLibV7, timelockAdmin, } = (await (0, helpers_2.getOrDeployContractInstances)({
forceDeploy: true,
}));
// Setup proposer and voters
const proposer = otherAccounts[0];
await (0, fixture_test_1.setupProposer)(proposer, b3tr, vot3, minterAccount);
await (0, fixture_test_1.setupVoter)(proposer, b3tr, vot3, minterAccount, owner, veBetterPassport);
await (0, fixture_test_1.setupVoter)(otherAccounts[1], b3tr, vot3, minterAccount, owner, veBetterPassport);
await (0, fixture_test_1.setupVoter)(otherAccounts[2], b3tr, vot3, minterAccount, owner, veBetterPassport);
const treasuryAddress = await treasury.getAddress();
// Deploy GrantsManager V1
const grantsManagerV1 = (await (0, helpers_1.deployProxy)("GrantsManagerV1", [
owner.address,
treasuryAddress,
owner.address,
await b3tr.getAddress(),
config.MINIMUM_MILESTONE_COUNT,
]));
// Deploy Governor V7
const governorV7 = (await (0, helpers_1.deployAndUpgrade)([
"B3TRGovernorV1",
"B3TRGovernorV2",
"B3TRGovernorV3",
"B3TRGovernorV4",
"B3TRGovernorV5",
"B3TRGovernorV6",
"B3TRGovernorV7",
], [
[
{
vot3Token: await vot3.getAddress(),
timelock: await timeLock.getAddress(),
xAllocationVoting: await xAllocationVoting.getAddress(),
b3tr: await b3tr.getAddress(),
quorumPercentage: config.B3TR_GOVERNOR_QUORUM_PERCENTAGE,
initialDepositThreshold: config.B3TR_GOVERNOR_DEPOSIT_THRESHOLD,
initialMinVotingDelay: config.B3TR_GOVERNOR_MIN_VOTING_DELAY,
initialVotingThreshold: config.B3TR_GOVERNOR_VOTING_THRESHOLD,
voterRewards: await voterRewards.getAddress(),
isFunctionRestrictionEnabled: true,
},
{
governorAdmin: owner.address,
pauser: owner.address,
contractsAddressManager: owner.address,
proposalExecutor: owner.address,
governorFunctionSettingsRoleAddress: owner.address,
},
],
[],
[],
[await veBetterPassport.getAddress()],
[],
[],
[
{
grantDepositThreshold: config.B3TR_GOVERNOR_GRANT_DEPOSIT_THRESHOLD,
grantVotingThreshold: config.B3TR_GOVERNOR_GRANT_VOTING_THRESHOLD,
grantQuorum: config.B3TR_GOVERNOR_GRANT_QUORUM_PERCENTAGE,
grantDepositThresholdCap: config.B3TR_GOVERNOR_GRANT_DEPOSIT_THRESHOLD_CAP,
standardDepositThresholdCap: config.B3TR_GOVERNOR_STANDARD_DEPOSIT_THRESHOLD_CAP,
standardGMWeight: config.B3TR_GOVERNOR_STANDARD_GM_WEIGHT,
grantGMWeight: config.B3TR_GOVERNOR_GRANT_GM_WEIGHT,
galaxyMember: await galaxyMember.getAddress(),
grantsManager: await grantsManagerV1.getAddress(),
},
],
], {
versions: [undefined, 2, 3, 4, 5, 6, 7],
libraries: [
{
GovernorClockLogicV1: await governorClockLogicLibV1.getAddress(),
GovernorConfiguratorV1: await governorConfiguratorLibV1.getAddress(),
GovernorDepositLogicV1: await governorDepositLogicLibV1.getAddress(),
GovernorFunctionRestrictionsLogicV1: await governorFunctionRestrictionsLogicLibV1.getAddress(),
GovernorProposalLogicV1: await governorProposalLogicLibV1.getAddress(),
GovernorQuorumLogicV1: await governorQuorumLogicLibV1.getAddress(),
GovernorStateLogicV1: await governorStateLogicLibV1.getAddress(),
GovernorVotesLogicV1: await governorVotesLogicLibV1.getAddress(),
},
{
GovernorClockLogicV1: await governorClockLogicLibV1.getAddress(),
GovernorConfiguratorV1: await governorConfiguratorLibV1.getAddress(),
GovernorDepositLogicV1: await governorDepositLogicLibV1.getAddress(),
GovernorFunctionRestrictionsLogicV1: await governorFunctionRestrictionsLogicLibV1.getAddress(),
GovernorProposalLogicV1: await governorProposalLogicLibV1.getAddress(),
GovernorQuorumLogicV1: await governorQuorumLogicLibV1.getAddress(),
GovernorStateLogicV1: await governorStateLogicLibV1.getAddress(),
GovernorVotesLogicV1: await governorVotesLogicLibV1.getAddress(),
},
{
GovernorClockLogicV3: await governorClockLogicLibV3.getAddress(),
GovernorConfiguratorV3: await governorConfiguratorLibV3.getAddress(),
GovernorDepositLogicV3: await governorDepositLogicLibV3.getAddress(),
GovernorFunctionRestrictionsLogicV3: await governorFunctionRestrictionsLogicLibV3.getAddress(),
GovernorProposalLogicV3: await governorProposalLogicLibV3.getAddress(),
GovernorQuorumLogicV3: await governorQuorumLogicLibV3.getAddress(),
GovernorStateLogicV3: await governorStateLogicLibV3.getAddress(),
GovernorVotesLogicV3: await governorVotesLogicLibV3.getAddress(),
},
{
GovernorClockLogicV4: await governorClockLogicLibV4.getAddress(),
GovernorConfiguratorV4: await governorConfiguratorLibV4.getAddress(),
GovernorDepositLogicV4: await governorDepositLogicLibV4.getAddress(),
GovernorFunctionRestrictionsLogicV4: await governorFunctionRestrictionsLogicLibV4.getAddress(),
GovernorProposalLogicV4: await governorProposalLogicLibV4.getAddress(),
GovernorQuorumLogicV4: await governorQuorumLogicLibV4.getAddress(),
GovernorStateLogicV4: await governorStateLogicLibV4.getAddress(),
GovernorVotesLogicV4: await governorVotesLogicLibV4.getAddress(),
},
{
GovernorClockLogicV5: await governorClockLogicLibV5.getAddress(),
GovernorConfiguratorV5: await governorConfiguratorLibV5.getAddress(),
GovernorDepositLogicV5: await governorDepositLogicLibV5.getAddress(),
GovernorFunctionRestrictionsLogicV5: await governorFunctionRestrictionsLogicLibV5.getAddress(),
GovernorProposalLogicV5: await governorProposalLogicLibV5.getAddress(),
GovernorQuorumLogicV5: await governorQuorumLogicLibV5.getAddress(),
GovernorStateLogicV5: await governorStateLogicLibV5.getAddress(),
GovernorVotesLogicV5: await governorVotesLogicLibV5.getAddress(),
},
{
GovernorClockLogicV6: await governorClockLogicLibV6.getAddress(),
GovernorConfiguratorV6: await governorConfiguratorLibV6.getAddress(),
GovernorDepositLogicV6: await governorDepositLogicLibV6.getAddress(),
GovernorFunctionRestrictionsLogicV6: await governorFunctionRestrictionsLogicLibV6.getAddress(),
GovernorProposalLogicV6: await governorProposalLogicLibV6.getAddress(),
GovernorQuorumLogicV6: await governorQuorumLogicLibV6.getAddress(),
GovernorStateLogicV6: await governorStateLogicLibV6.getAddress(),
GovernorVotesLogicV6: await governorVotesLogicLibV6.getAddress(),
},
{
GovernorClockLogicV7: await governorClockLogicLibV7.getAddress(),
GovernorConfiguratorV7: await governorConfiguratorLibV7.getAddress(),
GovernorDepositLogicV7: await governorDepositLogicLibV7.getAddress(),
GovernorFunctionRestrictionsLogicV7: await governorFunctionRestrictionsLogicLibV7.getAddress(),
GovernorProposalLogicV7: await governorProposalLogicLibV7.getAddress(),
GovernorQuorumLogicV7: await governorQuorumLogicLibV7.getAddress(),
GovernorStateLogicV7: await governorStateLogicLibV7.getAddress(),
GovernorVotesLogicV7: await governorVotesLogicLibV7.getAddress(),
},
],
}));
const selectorTransferB3TR = await treasury.interface.getFunction("transferB3TR")?.selector;
await governorV7.setWhitelistFunction(treasuryAddress, selectorTransferB3TR, true);
// Configure GrantsManager and Governor
await grantsManagerV1.connect(owner).setGovernorContract(await governorV7.getAddress());
await grantsManagerV1
.connect(owner)
.grantRole(await grantsManagerV1.GOVERNANCE_ROLE(), await governorV7.getAddress());
await grantsManagerV1.connect(owner).grantRole(await grantsManagerV1.DEFAULT_ADMIN_ROLE(), owner.address);
await voterRewards.connect(owner).grantRole(await voterRewards.VOTE_REGISTRAR_ROLE(), await governorV7.getAddress());
const PROPOSER_ROLE = await timeLock.PROPOSER_ROLE();
const EXECUTOR_ROLE = await timeLock.EXECUTOR_ROLE();
const CANCELLER_ROLE = await timeLock.CANCELLER_ROLE();
await timeLock.connect(timelockAdmin).grantRole(PROPOSER_ROLE, await governorV7.getAddress());
await timeLock.connect(timelockAdmin).grantRole(EXECUTOR_ROLE, await governorV7.getAddress());
await timeLock.connect(timelockAdmin).grantRole(CANCELLER_ROLE, await governorV7.getAddress());
// Create and execute grant proposal
const grantee = otherAccounts[3];
const values = [hardhat_1.ethers.parseEther("5000"), hardhat_1.ethers.parseEther("5000")];
const description = "Test grant for approved milestone claim";
const roundId = await (0, common_1.getRoundId)({ emissions, xAllocationVoting });
const grantsManagerAddress = await grantsManagerV1.getAddress();
const calldatas = [
treasury.interface.encodeFunctionData("transferB3TR", [grantsManagerAddress, values[0]]),
treasury.interface.encodeFunctionData("transferB3TR", [grantsManagerAddress, values[1]]),
];
const tx = await governorV7
.connect(proposer)
.proposeGrant([treasuryAddress, treasuryAddress], [0n, 0n], calldatas, description, roundId, 0, grantee.address, "https://ipfs.io/ipfs/Qm...approved", { gasLimit: 10000000 });
const proposalId = await (0, common_1.getProposalIdFromGrantsProposalTx)(tx);
// Support and vote
const depositThreshold = await governorV7.proposalDepositThreshold(proposalId);
await (0, fixture_test_1.setupSupporter)(owner, vot3, depositThreshold, governorV7);
await governorV7.connect(owner).deposit(depositThreshold, proposalId);
await (0, common_1.waitForCurrentRoundToEnd)({ emissions, xAllocationVoting });
await (0, common_1.startNewAllocationRound)({ emissions, xAllocationVoting, minterAccount });
await governorV7.connect(proposer).castVote(proposalId, 1);
await governorV7.connect(otherAccounts[1]).castVote(proposalId, 1);
await (0, common_1.waitForCurrentRoundToEnd)({ emissions, xAllocationVoting });
await (0, common_1.startNewAllocationRound)({ emissions, xAllocationVoting, minterAccount });
// Queue and execute proposal
const descriptionHash = hardhat_1.ethers.keccak256(hardhat_1.ethers.toUtf8Bytes(description));
await governorV7.connect(owner).queue([treasuryAddress, treasuryAddress], [0n, 0n], calldatas, descriptionHash);
const proposalEta = await governorV7.proposalEta(proposalId);
await hardhat_1.ethers.provider.send("evm_mine", [Number(proposalEta) + 1]);
await governorV7.connect(owner).execute([treasuryAddress, treasuryAddress], [0n, 0n], calldatas, descriptionHash);
// Approve milestone in V1
await grantsManagerV1.connect(owner).approveMilestones(proposalId, 0);
const milestonesV1 = await grantsManagerV1.getMilestones(proposalId);
(0, chai_1.expect)(milestonesV1[0].isApproved).to.be.true;
// Upgrade to V2
await grantsManagerV1.connect(owner).grantRole(await grantsManagerV1.UPGRADER_ROLE(), owner.address);
const grantsManagerV2 = (await (0, helpers_1.upgradeProxy)("GrantsManagerV1", "GrantsManager", await grantsManagerV1.getAddress(), [], { version: 2 }));
// Verify milestone still approved in V2
const milestonesV2 = await grantsManagerV2.getMilestones(proposalId);
(0, chai_1.expect)(milestonesV2[0].isApproved).to.be.true;
(0, chai_1.expect)(milestonesV2[0].isClaimed).to.be.false;
// Check grantee balance before claim
const granteeBalanceBefore = await b3tr.balanceOf(grantee.address);
// Claim milestone successfully in V2
await grantsManagerV2.connect(grantee).claimMilestone(proposalId, 0);
// Verify claim succeeded
const milestonesAfterClaim = await grantsManagerV2.getMilestones(proposalId);
(0, chai_1.expect)(milestonesAfterClaim[0].isClaimed).to.be.true;
const granteeBalanceAfter = await b3tr.balanceOf(grantee.address);
(0, chai_1.expect)(granteeBalanceAfter - granteeBalanceBefore).to.equal(values[0]);
});
(0, mocha_1.it)("Should prevent claiming rejected milestones/grants after V1 -> V2 upgrade", async () => {
const config = (0, local_1.createLocalConfig)();
const { owner, b3tr, timeLock, voterRewards, vot3, xAllocationVoting, veBetterPassport, minterAccount, otherAccounts, emissions, treasury, galaxyMember, governorClockLogicLibV1, governorConfiguratorLibV1, governorDepositLogicLibV1, governorFunctionRestrictionsLogicLibV1, governorProposalLogicLibV1, governorQuorumLogicLibV1, governorStateLogicLibV1, governorVotesLogicLibV1, governorClockLogicLibV3, governorConfiguratorLibV3, governorDepositLogicLibV3, governorFunctionRestrictionsLogicLibV3, governorProposalLogicLibV3, governorQuorumLogicLibV3, governorStateLogicLibV3, governorVotesLogicLibV3, governorClockLogicLibV4, governorConfiguratorLibV4, governorDepositLogicLibV4, governorFunctionRestrictionsLogicLibV4, governorProposalLogicLibV4, governorQuorumLogicLibV4, governorStateLogicLibV4, governorVotesLogicLibV4, governorClockLogicLibV5, governorConfiguratorLibV5, governorDepositLogicLibV5, governorFunctionRestrictionsLogicLibV5, governorProposalLogicLibV5, governorQuorumLogicLibV5, governorStateLogicLibV5, governorVotesLogicLibV5, governorClockLogicLibV6, governorConfiguratorLibV6, governorDepositLogicLibV6, governorFunctionRestrictionsLogicLibV6, governorProposalLogicLibV6, governorQuorumLogicLibV6, governorStateLogicLibV6, governorVotesLogicLibV6, governorClockLogicLibV7, governorConfiguratorLibV7, governorDepositLogicLibV7, governorFunctionRestrictionsLogicLibV7, governorProposalLogicLibV7, governorQuorumLogicLibV7, governorStateLogicLibV7, governorVotesLogicLibV7, timelockAdmin, } = (await (0, helpers_2.getOrDeployContractInstances)({
forceDeploy: true,
}));
// Setup proposer and voters
const proposer = otherAccounts[0];
await (0, fixture_test_1.setupProposer)(proposer, b3tr, vot3, minterAccount);
await (0, fixture_test_1.setupVoter)(proposer, b3tr, vot3, minterAccount, owner, veBetterPassport);
await (0, fixture_test_1.setupVoter)(otherAccounts[1], b3tr, vot3, minterAccount, owner, veBetterPassport);
await (0, fixture_test_1.setupVoter)(otherAccounts[2], b3tr, vot3, minterAccount, owner, veBetterPassport);
const treasuryAddress = await treasury.getAddress();
// Deploy GrantsManager V1
const grantsManagerV1 = (await (0, helpers_1.deployProxy)("GrantsManagerV1", [
owner.address,
treasuryAddress,
owner.address,
await b3tr.getAddress(),
config.MINIMUM_MILESTONE_COUNT,
]));
// Deploy Governor V7
const governorV7 = (await (0, helpers_1.deployAndUpgrade)([
"B3TRGovernorV1",
"B3TRGovernorV2",
"B3TRGovernorV3",
"B3TRGovernorV4",
"B3TRGovernorV5",
"B3TRGovernorV6",
"B3TRGovernorV7",
], [
[
{
vot3Token: await vot3.getAddress(),
timelock: await timeLock.getAddress(),
xAllocationVoting: await xAllocationVoting.getAddress(),
b3tr: await b3tr.getAddress(),
quorumPercentage: config.B3TR_GOVERNOR_QUORUM_PERCENTAGE,
initialDepositThreshold: config.B3TR_GOVERNOR_DEPOSIT_THRESHOLD,
initialMinVotingDelay: config.B3TR_GOVERNOR_MIN_VOTING_DELAY,
initialVotingThreshold: config.B3TR_GOVERNOR_VOTING_THRESHOLD,
voterRewards: await voterRewards.getAddress(),
isFunctionRestrictionEnabled: true,
},
{
governorAdmin: owner.address,
pauser: owner.address,
contractsAddressManager: owner.address,
proposalExecutor: owner.address,
governorFunctionSettingsRoleAddress: owner.address,
},
],
[],
[],
[await veBetterPassport.getAddress()],
[],
[],
[
{
grantDepositThreshold: config.B3TR_GOVERNOR_GRANT_DEPOSIT_THRESHOLD,
grantVotingThreshold: config.B3TR_GOVERNOR_GRANT_VOTING_THRESHOLD,
grantQuorum: config.B3TR_GOVERNOR_GRANT_QUORUM_PERCENTAGE,
grantDepositThresholdCap: config.B3TR_GOVERNOR_GRANT_DEPOSIT_THRESHOLD_CAP,
standardDepositThresholdCap: config.B3TR_GOVERNOR_STANDARD_DEPOSIT_THRESHOLD_CAP,
standardGMWeight: config.B3TR_GOVERNOR_STANDARD_GM_WEIGHT,
grantGMWeight: config.B3TR_GOVERNOR_GRANT_GM_WEIGHT,
galaxyMember: await galaxyMember.getAddress(),
grantsManager: await grantsManagerV1.getAddress(),
},
],
], {
versions: [undefined, 2, 3, 4, 5, 6, 7],
libraries: [
{
GovernorClockLogicV1: await governorClockLogicLibV1.getAddress(),
GovernorConfiguratorV1: await governorConfiguratorLibV1.getAddress(),
GovernorDepositLogicV1: await governorDepositLogicLibV1.getAddress(),
GovernorFunctionRestrictionsLogicV1: await governorFunctionRestrictionsLogicLibV1.getAddress(),
GovernorProposalLogicV1: await governorProposalLogicLibV1.getAddress(),
GovernorQuorumLogicV1: await governorQuorumLogicLibV1.getAddress(),
GovernorStateLogicV1: await governorStateLogicLibV1.getAddress(),
GovernorVotesLogicV1: await governorVotesLogicLibV1.getAddress(),
},
{
GovernorClockLogicV1: await governorClockLogicLibV1.getAddress(),
GovernorConfiguratorV1: await governorConfiguratorLibV1.getAddress(),
GovernorDepositLogicV1: await governorDepositLogicLibV1.getAddress(),
GovernorFunctionRestrictionsLogicV1: await governorFunctionRestrictionsLogicLibV1.getAddress(),
GovernorProposalLogicV1: await governorProposalLogicLibV1.getAddress(),
GovernorQuorumLogicV1: await governorQuorumLogicLibV1.getAddress(),
GovernorStateLogicV1: await governorStateLogicLibV1.getAddress(),
GovernorVotesLogicV1: await governorVotesLogicLibV1.getAddress(),
},
{
GovernorClockLogicV3: await governorClockLogicLibV3.getAddress(),
GovernorConfiguratorV3: await governorConfiguratorLibV3.getAddress(),
GovernorDepositLogicV3: await governorDepositLogicLibV3.getAddress(),
GovernorFunctionRestrictionsLogicV3: await governorFunctionRestrictionsLogicLibV3.getAddress(),
GovernorProposalLogicV3: await governorProposalLogicLibV3.getAddress(),
GovernorQuorumLogicV3: await governorQuorumLogicLibV3.getAddress(),
GovernorStateLogicV3: await governorStateLogicLibV3.getAddress(),
GovernorVotesLogicV3: await governorVotesLogicLibV3.getAddress(),
},
{
GovernorClockLogicV4: await governorClockLogicLibV4.getAddress(),
GovernorConfiguratorV4: await governorConfiguratorLibV4.getAddress(),
GovernorDepositLogicV4: await governorDepositLogicLibV4.getAddress(),
GovernorFunctionRestrictionsLogicV4: await governorFunctionRestrictionsLogicLibV4.getAddress(),
GovernorProposalLogicV4: await governorProposalLogicLibV4.getAddress(),
GovernorQuorumLogicV4: await governorQuorumLogicLibV4.getAddress(),
GovernorStateLogicV4: await governorStateLogicLibV4.getAddress(),
GovernorVotesLogicV4: await governorVotesLogicLibV4.getAddress(),
},
{
GovernorClockLogicV5: await governorClockLogicLibV5.getAddress(),
GovernorConfiguratorV5: await governorConfiguratorLibV5.getAddress(),
GovernorDepositLogicV5: await governorDepositLogicLibV5.getAddress(),
GovernorFunctionRestrictionsLogicV5: await governorFunctionRestrictionsLogicLibV5.getAddress(),
GovernorProposalLogicV5: await governorProposalLogicLibV5.getAddress(),
GovernorQuorumLogicV5: await governorQuorumLogicLibV5.getAddress(),
GovernorStateLogicV5: await governorStateLogicLibV5.getAddress(),
GovernorVotesLogicV5: await governorVotesLogicLibV5.getAddress(),
},
{
GovernorClockLogicV6: await governorClockLogicLibV6.getAddress(),
GovernorConfiguratorV6: await governorConfiguratorLibV6.getAddress(),
GovernorDepositLogicV6: await governorDepositLogicLibV6.getAddress(),
GovernorFunctionRestrictionsLogicV6: await governorFunctionRestrictionsLogicLibV6.getAddress(),
GovernorProposalLogicV6: await governorProposalLogicLibV6.getAddress(),
GovernorQuorumLogicV6: await governorQuorumLogicLibV6.getAddress(),
GovernorStateLogicV6: await governorStateLogicLibV6.getAddress(),
GovernorVotesLogicV6: await governorVotesLogicLibV6.getAddress(),
},
{
GovernorClockLogicV7: await governorClockLogicLibV7.getAddress(),
GovernorConfiguratorV7: await governorConfiguratorLibV7.getAddress(),
GovernorDepositLogicV7: await governorDepositLogicLibV7.getAddress(),
GovernorFunctionRestrictionsLogicV7: await governorFunctionRestrictionsLogicLibV7.getAddress(),
GovernorProposalLogicV7: await governorProposalLogicLibV7.getAddress(),
GovernorQuorumLogicV7: await governorQuorumLogicLibV7.getAddress(),
GovernorStateLogicV7: await governorStateLogicLibV7.getAddress(),
GovernorVotesLogicV7: await governorVotesLogicLibV7.getAddress(),
},
],
}));
const selectorTransferB3TR = await treasury.interface.getFunction("transferB3TR")?.selector;
await governorV7.setWhitelistFunction(treasuryAddress, selectorTransferB3TR, true);
// Configure GrantsManager and Governor
await grantsManagerV1.connect(owner).setGovernorContract(await governorV7.getAddress());
await grantsManagerV1
.connect(owner)
.grantRole(await grantsManagerV1.GOVERNANCE_ROLE(), await governorV7.getAddress());
await grantsManagerV1.connect(owner).grantRole(await grantsManagerV1.DEFAULT_ADMIN_ROLE(), owner.address);
await voterRewards.connect(owner).grantRole(await voterRewards.VOTE_REGISTRAR_ROLE(), await governorV7.getAddress());
const PROPOSER_ROLE = await timeLock.PROPOSER_ROLE();
const EXECUTOR_ROLE = await timeLock.EXECUTOR_ROLE();
const CANCELLER_ROLE = await timeLock.CANCELLER_ROLE();
await timeLock.connect(timelockAdmin).grantRole(PROPOSER_ROLE, await governorV7.getAddress());
await timeLock.connect(timelockAdmin).grantRole(EXECUTOR_ROLE, await governorV7.getAddress());
await timeLock.connect(timelockAdmin).grantRole(CANCELLER_ROLE, await governorV7.getAddress());
// Create and execute grant proposal
const grantee = otherAccounts[3];
const values = [hardhat_1.ethers.parseEther("5000"), hardhat_1.ethers.parseEther("5000")];
const description = "Test grant for rejected milestone";
const roundId = await (0, common_1.getRoundId)({ emissions, xAllocationVoting });
const grantsManagerAddress = await grantsManagerV1.getAddress();
const calldatas = [
treasury.interface.encodeFunctionData("transferB3TR", [grantsManagerAddress, values[0]]),
treasury.interface.encodeFunctionData("transferB3TR", [grantsManagerAddress, values[1]]),
];
const tx = await governorV7
.connect(proposer)
.proposeGrant([treasuryAddress, treasuryAddress], [0n, 0n], calldatas, description, roundId, 0, grantee.address, "https://ipfs.io/ipfs/Qm...rejected", { gasLimit: 10000000 });
const proposalId = await (0, common_1.getProposalIdFromGrantsProposalTx)(tx);
// Support and vote
const depositThreshold = await governorV7.proposalDepositThreshold(proposalId);
await (0, fixture_test_1.setupSupporter)(owner, vot3, depositThreshold, governorV7);
await governorV7.connect(owner).deposit(depositThreshold, proposalId);
await (0, common_1.waitForCurrentRoundToEnd)({ emissions, xAllocationVoting });
await (0, common_1.startNewAllocationRound)({ emissions, xAllocationVoting, minterAccount });
await governorV7.connect(proposer).castVote(proposalId, 1);
await governorV7.connect(otherAccounts[1]).castVote(proposalId, 1);
await (0, common_1.waitForCurrentRoundToEnd)({ emissions, xAllocationVoting });
await (0, common_1.startNewAllocationRound)({ emissions, xAllocationVoting, minterAccount });
// Queue and execute proposal
const descriptionHash = hardhat_1.ethers.keccak256(hardhat_1.ethers.toUtf8Bytes(description));
await governorV7.connect(owner).queue([treasuryAddress, treasuryAddress], [0n, 0n], calldatas, descriptionHash);
const proposalEta = await governorV7.proposalEta(proposalId);
await hardhat_1.ethers.provider.send("evm_mine", [Number(proposalEta) + 1]);
await governorV7.connect(owner).execute([treasuryAddress, treasuryAddress], [0n, 0n], calldatas, descriptionHash);
// Reject milestones in V1
await grantsManagerV1.connect(owner).rejectMilestones(proposalId);
const milestonesV1 = await grantsManagerV1.getMilestones(proposalId);
(0, chai_1.expect)(milestonesV1[0].isRejected).to.be.true;
// Upgrade to V2
await grantsManagerV1.connect(owner).grantRole(await grantsManagerV1.UPGRADER_ROLE(), owner.address);
const grantsManagerV2 = (await (0, helpers_1.upgradeProxy)("GrantsManagerV1", "GrantsManager", await grantsManagerV1.getAddress(), [], { version: 2 }));
// Verify milestone still rejected in V2
const milestonesV2 = await grantsManagerV2.getMilestones(proposalId);
(0, chai_1.expect)(milestonesV2[0].isRejected).to.be.true;
(0, chai_1.expect)(milestonesV2[0].isApproved).to.be.false;
(0, chai_1.expect)(milestonesV2[0].isClaimed).to.be.false;
});
(0, mocha_1.it)("Should preserve grant state as InDevelopment after V1 -> V2 upgrade", async () => {
const config = (0, local_1.createLocalConfig)();
const { owner, b3tr, timeLock, voterRewards, vot3, xAllocationVoting, veBetterPassport, minterAccount, otherAccounts, emissions, treasury, galaxyMember, governorClockLogicLibV1, governorConfiguratorLibV1, governorDepositLogicLibV1, governorFunctionRestrictionsLogicLibV1, governorProposalLogicLibV1, governorQuorumLogicLibV1, governorStateLogicLibV1, governorVotesLogicLibV1, governorClockLogicLibV3, governorConfiguratorLibV3, governorDepositLogicLibV3, governorFunctionRestrictionsLogicLibV3, governorProposalLogicLibV3, governorQuorumLogicLibV3, governorStateLogicLibV3, governorVotesLogicLibV3, governorClockLogicLibV4, governorConfiguratorLibV4, governorDepositLogicLibV4, governorFunctionRestrictionsLogicLibV4, governorProposalLogicLibV4, governorQuorumLogicLibV4, governorStateLogicLibV4, governorVotesLogicLibV4, governorClockLogicLibV5, governorConfiguratorLibV5, governorDepositLogicLibV5, governorFunctionRestrictionsLogicLibV5, governorProposalLogicLibV5, governorQuorumLogicLibV5, governorStateLogicLibV5, governorVotesLogicLibV5, governorClockLogicLibV6, governorConfiguratorLibV6, governorDepositLogicLibV6, governorFunctionRestrictionsLogicLibV6, governorProposalLogicLibV6, governorQuorumLogicLibV6, governorStateLogicLibV6, governorVotesLogicLibV6, governorClockLogicLibV7, governorConfiguratorLibV7, governorDepositLogicLibV7, governorFunctionRestrictionsLogicLibV7, governorProposalLogicLibV7, governorQuorumLogicLibV7, governorStateLogicLibV7, governorVotesLogicLibV7, timelockAdmin, } = (await (0, helpers_2.getOrDeployContractInstances)({
forceDeploy: true,
}));
// Setup proposer and voters
const proposer = otherAccounts[0];
await (0, fixture_test_1.setupProposer)(proposer, b3tr, vot3, minterAccount);
await (0, fixture_test_1.setupVoter)(proposer, b3tr, vot3, minterAccount, owner, veBetterPassport);
await (0, fixture_test_1.setupVoter)(otherAccounts[1], b3tr, vot3, minterAccount, owner, veBetterPassport);
await (0, fixture_test_1.setupVoter)(otherAccounts[2], b3tr, vot3, minterAccount, owner, veBetterPassport);
const treasuryAddress = await treasury.getAddress();
// Deploy GrantsManager V1
const grantsManagerV1 = (await (0, helpers_1.deployProxy)("GrantsManagerV1", [
owner.address,
treasuryAddress,
owner.address,
await b3tr.getAddress(),
config.MINIMUM_MILESTONE_COUNT,
]));
// Deploy Governor V7
const governorV7 = (await (0, helpers_1.deployAndUpgrade)([
"B3TRGovernorV1",
"B3TRGovernorV2",
"B3TRGovernorV3",
"B3TRGovernorV4",
"B3TRGovernorV5",
"B3TRGovernorV6",
"B3TRGovernorV7",
], [
[
{
vot3Token: await vot3.getAddress(),
timelock: await timeLock.getAddress(),
xAllocationVoting: await xAllocationVoting.getAddress(),
b3tr: await b3tr.getAddress(),
quorumPercentage: config.B3TR_GOVERNOR_QUORUM_PERCENTAGE,
initialDepositThreshold: config.B3TR_GOVERNOR_DEPOSIT_THRESHOLD,
initialMinVotingDelay: config.B3TR_GOVERNOR_MIN_VOTING_DELAY,
initialVotingThreshold: config.B3TR_GOVERNOR_VOTING_THRESHOLD,
voterRewards: await voterRewards.getAddress(),
isFunctionRestrictionEnabled: true,
},
{
governorAdmin: owner.address,
pauser: owner.address,
contractsAddressManager: owner.address,
proposalExecutor: owner.address,
governorFunctionSettingsRoleAddress: owner.address,
},
],
[],
[],
[await veBetterPassport.getAddress()],
[],
[],
[
{
grantDepositThreshold: config.B3TR_GOVERNOR_GRANT_DEPOSIT_THRESHOLD,
grantVotingThreshold: config.B3TR_GOVERNOR_GRANT_VOTING_THRESHOLD,
grantQuorum: config.B3TR_GOVERNOR_GRANT_QUORUM_PERCENTAGE,
grantDepositThresholdCap: config.B3TR_GOVERNOR_GRANT_DEPOSIT_THRESHOLD_CAP,
standardDepositThresholdCap: config.B3TR_GOVERNOR_STANDARD_DEPOSIT_THRESHOLD_CAP,
standardGMWeight: config.B3TR_GOVERNOR_STANDARD_GM_WEIGHT,
grantGMWeight: config.B3TR_GOVERNOR_GRANT_GM_WEIGHT,
galaxyMember: await galaxyMember.getAddress(),
grantsManager: await grantsManagerV1.getAddress(),
},
],
], {
versions: [undefined, 2, 3, 4, 5, 6, 7],
libraries: [
{
GovernorClockLogicV1: await governorClockLogicLibV1.getAddress(),
GovernorConfiguratorV1: await governorConfiguratorLibV1.getAddress(),
GovernorDepositLogicV1: await governorDepositLogicLibV1.getAddress(),
GovernorFunctionRestrictionsLogicV1: await governorFunctionRestrictionsLogicLibV1.getAddress(),
GovernorProposalLogicV1: await governorProposalLogicLibV1.getAddress(),
GovernorQuorumLogicV1: await governorQuorumLogicLibV1.getAddress(),
GovernorStateLogicV1: await governorStateLogicLibV1.getAddress(),
GovernorVotesLogicV1: await governorVotesLogicLibV1.getAddress(),
},
{
GovernorClockLogicV1: await governorClockLogicLibV1.getAddress(),
GovernorConfiguratorV1: await governorConfiguratorLibV1.getAddress(),
GovernorDepositLogicV1: await governorDepositLogicLibV1.getAddress(),
GovernorFunctionRestrictionsLogicV1: await governorFunctionRestrictionsLogicLibV1.getAddress(),
GovernorProposalLogicV1: await governorProposalLogicLibV1.getAddress(),
GovernorQuorumLogicV1: await governorQuorumLogicLibV1.getAddress(),
GovernorStateLogicV1: await governorStateLogicLibV1.getAddress(),
GovernorVotesLogicV1: await governorVotesLogicLibV1.getAddress(),
},
{
GovernorClockLogicV3: await governorClockLogicLibV3.getAddress(),
GovernorConfiguratorV3: await governorConfiguratorLibV3.getAddress(),
GovernorDepositLogicV3: await governorDepositLogicLibV3.getAddress(),
GovernorFunctionRestrictionsLogicV3: await governorFunctionRestrictionsLogicLibV3.getAddress(),
GovernorProposalLogicV3: await governorProposalLogicLibV3.getAddress(),
GovernorQuorumLogicV3: await governorQuorumLogicLibV3.getAddress(),
GovernorStateLogicV3: await governorStateLogicLibV3.getAddress(),
GovernorVotesLogicV3: await governorVotesLogicLibV3.getAddress(),
},
{
GovernorClockLogicV4: await governorClockLogicLibV4.getAddress(),
GovernorConfiguratorV4: await governorConfiguratorLibV4.getAddress(),
GovernorDepositLogicV4: await governorDepositLogicLibV4.getAddress(),
GovernorFunctionRestrictionsLogicV4: await governorFunctionRestrictionsLogicLibV4.getAddress(),
GovernorProposalLogicV4: await governorProposalLogicLibV4.getAddress(),
GovernorQuorumLogicV4: await governorQuorumLogicLibV4.getAddress(),
GovernorStateLogicV4: await governorStateLogicLibV4.getAddress(),
GovernorVotesLogicV4: await governorVotesLogicLibV4.getAddress(),
},
{
GovernorClockLogicV5: await governorClockLogicLibV5.getAddress(),
GovernorConfiguratorV5: await governorConfiguratorLibV5.getAddress(),
GovernorDepositLogicV5: await governorDepositLogicLibV5.getAddress(),
GovernorFunctionRestrictionsLogicV5: await governorFunctionRestrictionsLogicLibV5.getAddress(),
GovernorProposalLogicV5: await governorProposalLogicLibV5.getAddress(),
GovernorQuorumLogicV5: await governorQuorumLogicLibV5.getAddress(),
GovernorStateLogicV5: await governorStateLogicLibV5.getAddress(),
GovernorVotesLogicV5: await governorVotesLogicLibV5.getAddress(),
},
{
GovernorClockLogicV6: await governorClockLogicLibV6.getAddress(),
GovernorConfiguratorV6: await governorConfiguratorLibV6.getAddress(),
GovernorDepositLogicV6: await governorDepositLogicLibV6.getAddress(),
GovernorFunctionRestrictionsLogicV6: await governorFunctionRestrictionsLogicLibV6.getAddress(),
GovernorProposalLogicV6: await governorProposalLogicLibV6.getAddress(),
GovernorQuorumLogicV6: await governorQuorumLogicLibV6.getAddress(),
GovernorStateLogicV6: await governorStateLogicLibV6.getAddress(),
GovernorVotesLogicV6: await governorVotesLogicLibV6.getAddress(),
},
{
GovernorClockLogicV7: await governorClockLogicLibV7.getAddress(),
GovernorConfiguratorV7: await governorConfiguratorLibV7.getAddress(),
GovernorDepositLogicV7: await governorDepositLogicLibV7.getAddress(),
GovernorFunctionRestrictionsLogicV7: await governorFunctionRestrictionsLogicLibV7.getAddress(),
GovernorProposalLogicV7: await governorProposalLogicLibV7.getAddress(),
GovernorQuorumLogicV7: await governorQuorumLogicLibV7.getAddress(),
GovernorStateLogicV7: await governorStateLogicLibV7.getAddress(),
GovernorVotesLogicV7: await governorVotesLogicLibV7.getAddress(),
},
],
}));
const selectorTransferB3TR = await treasury.interface.getFunction("transferB3TR")?.selector;
await governorV7.setWhitelistFunction(treasuryAddress, selectorTransferB3TR, true);
// Configure GrantsManager and Governor
await grantsManagerV1.connect(owner).setGovernorContract(await governorV7.getAddress());
await grantsManagerV1
.connect(owner)
.grantRole(await grantsManagerV1.GOVERNANCE_ROLE(), await governorV7.getAddress());
await grantsManagerV1.connect(owner).grantRole(await grantsManagerV1.DEFAULT_ADMIN_ROLE(), owner.address);
await voterRewards.connect(owner).grantRole(await voterRewards.VOTE_REGISTRAR_ROLE(), await governorV7.getAddress());
const PROPOSER_ROLE = await timeLock.PROPOSER_ROLE();
const EXECUTOR_ROLE = await timeLock.EXECUTOR_ROLE();
const CANCELLER_ROLE = await timeLock.CANCELLER_ROLE();
await timeLock.connect(timelockAdmin).grantRole(PROPOSER_ROLE, await governorV7.getAddress());
await timeLock.connect(timelockAdmin).grantRole(EXECUTOR_ROLE, await governorV7.getAddress());
await timeLock.connect(timelockAdmin).grantRole(CANCELLER_ROLE, await governorV7.getAddress());
// Create and execute grant proposal
const grantee = otherAccounts[3];
const values = [hardhat_1.ethers.parseEther("5000"), hardhat_1.ethers.parseEther("5000")];
const description = "Test grant for InDevelopment state";
const roundId = await (0, common_1.getRoundId)({ emissions, xAllocationVoting });
const grantsManagerAddress = await grantsManagerV1.getAddress();
const calldatas = [
treasury.interface.encodeFunctionData("transferB3TR", [grantsManagerAddress, values[0]]),
treasury.interface.encodeFunctionData("transferB3TR", [grantsManagerAddress, values[1]]),
];
const tx = await governorV7
.connect(proposer)
.proposeGrant([treasuryAddress, treasuryAddress], [0n, 0n], calldatas, description, roundId, 0, grantee.address, "https://ipfs.io/ipfs/Qm...indev", { gasLimit: 10000000 });
const proposalId = await (0, common_1.getProposalIdFromGrantsProposalTx)(tx);
// Support and vote
const depositThreshold = await governorV7.proposalDepositThreshold(proposalId);
await (0, fixture_test_1.setupSupporter)(owner, vot3, depositThreshold, governorV7);
await governorV7.connect(owner).deposit(depositThreshold, proposalId);
await (0, common_1.waitForCurrentRoundToEnd)({ emissions, xAllocationVoting });
await (0, common_1.startNewAllocationRound)({ emissions, xAllocationVoting, minterAccount });
await governorV7.connect(proposer).castVote(proposalId, 1);
await governorV7.connect(otherAccounts[1]).castVote(proposalId, 1);
await (0, common_1.waitForCurrentRoundToEnd)({ emissions, xAllocationVoting });
await (0, common_1.startNewAllocationRound)({ emissions, xAllocationVoting, minterAccount });
// Queue and execute proposal
const descriptionHash = hardhat_1.ethers.keccak256(hardhat_1.ethers.toUtf8Bytes(description));
await governorV7.connect(owner).queue([treasuryAddress, treasuryAddress], [0n, 0n], calldatas, descriptionHash);
const proposalEta = await governorV7.proposalEta(proposalId);
await hardhat_1.ethers.provider.send("evm_mine", [Number(proposalEta) + 1]);
await governorV7.connect(owner).execute([treasuryAddress, treasuryAddress], [0n, 0n], calldatas, descriptionHash);
// Get grant state in V1 after execution - should be InDevelopment since milestone is pending
const v1GrantState = await grantsManagerV1.grantState(proposalId);
(0, chai_1.expect)(v1GrantState).to.equal(8); // InDevelopment state (proposal executed, milestone pending)
// Upgrade to V2
await grantsManagerV1.connect(owner).grantRole(await grantsManagerV1.UPGRADER_ROLE(), owner.address);
const grantsManagerV2 = (await (0, helpers_1.upgradeProxy)("GrantsManagerV1", "GrantsManager", await grantsManagerV1.getAddress(), [], { version: 2 }));
// Verify grant state is still InDevelopment in V2 (state persists through upgrade)
const v2GrantState = await grantsManagerV2.grantState(proposalId);
(0, chai_1.expect)(v2GrantState).to.equal(v1GrantState); // InDevelopment state
});
(0, mocha_1.it)("Should preserve grant state as Completed after V1 -> V2 upgrade", async () => {
const config = (0, local_1.createLocalConfig)();
const { owner, b3tr, timeLock, voterRewards, vot3, xAllocationVoting, veBetterPassport, minterAccount, otherAccounts, emissions, treasury, galaxyMember, governorClockLogicLibV1, governorConfiguratorLibV1, governorDepositLogicLibV1, governorFunctionRestrictionsLogicLibV1, governorProposalLogicLibV1, governorQuorumLogicLibV1, governorStateLogicLibV1, governorVotesLogicLibV1, governorClockLogicLibV3, governorConfiguratorLibV3, governorDepositLogicLibV3, governorFunctionRestrictionsLogicLibV3, governorProposalLogicLibV3, governorQuorumLogicLibV3, governorStateLogicLibV3, governorVotesLogicLibV3, governorClockLogicLibV4, governorConfiguratorLibV4, governorDepositLogicLibV4, governorFunctionRestrictionsLogicLibV4, governorProposalLogicLibV4, governorQuorumLogicLibV4, governorStateLogicLibV4, governorVotesLogicLibV4, governorClockLogicLibV5, governorConfiguratorLibV5, governorDepositLogicLibV5, governorFunctionRestrictionsLogicLibV5, governorProposalLogicLibV5, governorQuorumLogicLibV5, governorStateLogicLibV5, governorVotesLogicLibV5, governorClockLogicLibV6, governorConfiguratorLibV6, governorDepositLogicLibV6, governorFunctionRestrictionsLogicLibV6, governorProposalLogicLibV6, governorQuorumLogicLibV6, governorStateLogicLibV6, governorVotesLogicLibV6, governorClockLogicLibV7, governorConfiguratorLibV7, governorDepositLogicLibV7, governorFunctionRestrictionsLogicLibV7, governorProposalLogicLibV7, governorQuorumLogicLibV7, governorStateLogicLibV7, governorVotesLogicLibV7, timelockAdmin, } = (await (0, helpers_2.getOrDeployContractInstances)({
forceDeploy: true,
}));
// Setup proposer and voters
const proposer = otherAccounts[0];
await (0, fixture_test_1.setupProposer)(proposer, b3tr, vot3, minterAccount);
await (0, fixture_test_1.setupVoter)(proposer, b3tr, vot3, minterAccount, owner, veBetterPassport);
await (0, fixture_test_1.setupVoter)(otherAccounts[1], b3tr, vot3, minterAccount, owner, veBetterPassport);
await (0, fixture_test_1.setupVoter)(otherAccounts[2], b3tr, vot3, minterAccount, owner, veBetterPassport);
const treasuryAddress = await treasury.getAddress();
// Deploy GrantsManager V1
const grantsManagerV1 = (await (0, helpers_1.deployProxy)("GrantsManagerV1", [
owner.address,
treasuryAddress,
owner.address,
await b3tr.getAddress(),
config.MINIMUM_MILESTONE_COUNT,
]));
// Deploy Governor V7
const governorV7 = (await (0, helpers_1.deployAndUpgrade)([
"B3TRGovernorV1",
"B3TRGovernorV2",
"B3TRGovernorV3",
"B3TRGovernorV4",
"B3TRGovernorV5",
"B3TRGovernorV6",
"B3TRGovernorV7",
], [
[
{
vot3Token: await vot3.getAddress(),
timelock: await timeLock.getAddress(),
xAllocationVoting: await xAllocationVoting.getAddress(),
b3tr: await b3tr.getAddress(),
quorumPercentage: config.B3TR_GOVERNOR_QUORUM_PERCENTAGE,
initialDepositThreshold: config.B3TR_GOVERNOR_DEPOSIT_THRESHOLD,
initialMinVotingDelay: config.B3TR_GOVERNOR_MIN_VOTING_DELAY,
initialVotingThreshold: config.B3TR_GOVERNOR_VOTING_THRESHOLD,
voterRewards: await voterRewards.getAddress(),
isFunctionRestrictionEnabled: true,
},
{
governorAdmin: owner.address,
pauser: owner.address,
contractsAddressManager: owner.address,
proposalExecutor: owner.address,
governorFunctionSettingsRoleAddress: owner.address,
},
],
[],
[],
[await veBetterPassport.getAddress()],
[],
[],
[
{
grantDepositThreshold: config.B3TR_GOVERNOR_GRANT_DEPOSIT_THRESHOLD,
grantVotingThreshold: config.B3TR_GOVERNOR_GRANT_VOTING_THRESHOLD,
grantQuorum: config.B3TR_GOVERNOR_GRANT_QUORUM_PERCENTAGE,
grantDepositThresholdCap: config.B3TR_GOVERNOR_GRANT_DEPOSIT_THRESHOLD_CAP,
standardDepositThresholdCap: config.B3TR_GOVERNOR_STANDARD_DEPOSIT_THRESHOLD_CAP,
standardGMWeight: config.B3TR_GOVERNOR_STANDARD_GM_WEIGHT,
grantGMWeight: config.B3TR_GOVERNOR_GRANT_GM_WEIGHT,
galaxyMember: await galaxyMember.getAddress(),
grantsManager: await grantsManagerV1.getAddress(),
},
],
], {
versions: [undefined, 2, 3, 4, 5, 6, 7],
libraries: [
{
GovernorClockLogicV1: await governorClockLogicLibV1.getAddress(),
GovernorConfiguratorV1: await governorConfiguratorLibV1.getAddress(),
GovernorDepositLogicV1: await governorDepositLogicLibV1.getAddress(),
GovernorFunctionRestrictionsLogicV1: await governorFunctionRestrictionsLogicLibV1.getAddress(),
GovernorProposalLogicV1: await governorProposalLogicLibV1.getAddress(),
GovernorQuorumLogicV1: await governorQuorumLogicLibV1.getAddress(),
GovernorStateLogicV1: await governorStateLogicLibV1.getAddress(),
GovernorVotesLogicV1: await governorVotesLogicLibV1.getAddress(),
},
{
GovernorClockLogicV1: await governorClockLogicLibV1.getAddress(),
GovernorConfiguratorV1: await governorConfiguratorLibV1.getAddress(),
GovernorDepositLogicV1: await governorDepositLogicLibV1.getAddress(),
GovernorFunctionRestrictionsLogicV1: await governorFunctionRestrictionsLogicLibV1.getAddress(),
GovernorProposalLogicV1: await governorProposalLogicLibV1.getAddress(),
GovernorQuorumLogicV1: await governorQuorumLogicLibV1.getAddress(),
GovernorStateLogicV1: await governorStateLogicLibV1.getAddress(),
GovernorVotesLogicV1: await governorVotesLogicLibV1.getAddress(),
},
{
GovernorClockLogicV3: await governorClockLogicLibV3.getAddress(),
GovernorConfiguratorV3: await governorConfiguratorLibV3.getAddress(),
GovernorDepositLogicV3: await governorDepositLogicLibV3.getAddress(),
GovernorFunctionRestrictionsLogicV3: await governorFunctionRestrictionsLogicLibV3.getAddress(),
GovernorProposalLogicV3: await governorProposalLogicLibV3.getAddress(),
GovernorQuorumLogicV3: await governorQuorumLogicLibV3.getAddress(),
GovernorStateLogicV3: await governorStateLogicLibV3.getAddress(),
GovernorVotesLogicV3: await governorVotesLogicLibV3.getAddress(),
},
{
GovernorClockLogicV4: await governorClockLogicLibV4.getAddress(),
GovernorConfiguratorV4: await governorConfiguratorLibV4.getAddress(),
GovernorDepositLogicV4: await governorDepositLogicLibV4.getAddress(),
GovernorFunctionRestrictionsLogicV4: await governorFunctionRestrictionsLogicLibV4.getAddress(),
GovernorProposalLogicV4: await governorProposalLogicLibV4.getAddress(),
GovernorQuorumLogicV4: await governorQuorumLogicLibV4.getAddress(),
GovernorStateLogicV4: await governorStateLogicLibV4.getAddress(),
GovernorVotesLogicV4: await governorVotesLogicLibV4.getAddress(),
},
{
GovernorClockLogicV5: await governorClockLogicLibV5.getAddress(),
GovernorConfiguratorV5: await governorConfiguratorLibV5.getAddress(),
GovernorDepositLogicV5: await governorDepositLogicLibV5.getAddress(),
GovernorFunctionRestrictionsLogicV5: await governorFunctionRestrictionsLogicLibV5.getAddress(),
GovernorProposalLogicV5: await governorProposalLogicLibV5.getAddress(),
GovernorQuorumLogicV5: await governorQuorumLogicLibV5.getAddress(),
GovernorStateLogicV5: await governorStateLogicLibV5.getAddress(),
GovernorVotesLogicV5: await governorVotesLogicLibV5.getAddress(),
},
{
GovernorClockLogicV6: await governorClockLogicLibV6.getAddress(),
GovernorConfiguratorV6: await governorConfiguratorLibV6.getAddress(),
GovernorDepositLogicV6: await governorDepositLogicLibV6.getAddress(),
GovernorFunctionRestrictionsLogicV6: await governorFunctionRestrictionsLogicLibV6.getAddress(),
GovernorProposalLogicV6: await governorProposalLogicLibV6.getAddress(),
GovernorQuorumLogicV6: await governorQuorumLogicLibV6.getAddress(),
GovernorStateLogicV6: await governorStateLogicLibV6.getAddress(),
GovernorVotesLogicV6: await governorVotesLogicLibV6.getAddress(),
},
{
GovernorClockLogicV7: await governorClockLogicLibV7.getAddress(),
GovernorConfiguratorV7: await governorConfiguratorLibV7.getAddress(),
GovernorDepositLogicV7: await governorDepositLogicLibV7.getAddress(),
GovernorFunctionRestrictionsLogicV7: await governorFunctionRestrictionsLogicLibV7.getAddress(),
GovernorProposalLogicV7: await governorProposalLogicLibV7.getAddress(),
GovernorQuorumLogicV7: await governorQuorumLogicLibV7.getAddress(),
GovernorStateLogicV7: await governorStateLogicLibV7.getAddress(),
GovernorVotesLogicV7: await governorVotesLogicLibV7.getAddress(),
},
],
}));
const selectorTransferB3TR = await treasury.interface.getFunction("transferB3TR")?.selector;
await governorV7.setWhitelistFunction(treasuryAddress, selectorTransferB3TR, true);
// Configure GrantsManager and Governor
await grantsManagerV1.connect(owner).setGovernorContract(await governorV7.getAddress());
await grantsManagerV1
.connect(owner)
.grantRole(await grantsManagerV1.GOVERNANCE_ROLE(), await governorV7.getAddress());
await grantsManagerV1.connect(owner).grantRole(await grantsManagerV1.DEFAULT_ADMIN_ROLE(), owner.address);
await voterRewards.connect(owner).grantRole(await voterRewards.VOTE_REGISTRAR_ROLE(), await governorV7.getAddress());
const PROPOSER_ROLE = await timeLock.PROPOSER_ROLE();
const EXECUTOR_ROLE = await timeLock.EXECUTOR_ROLE();
const CANCELLER_ROLE = await timeLock.CANCELLER_ROLE();
await timeLock.connect(timelockAdmin).grantRole(PROPOSER_ROLE, await governorV7.getAddress());
await timeLock.connect(timelockAdmin).grantRole(EXECUTOR_ROLE, await governorV7.getAddress());
await timeLock.connect(timelockAdmin).grantRole(CANCELLER_ROLE, await governorV7.getAddress());
// Create and execute grant proposal
const grantee = otherAccounts[3];
const values = [hardhat_1.ethers.parseEther("5000"), hardhat_1.ethers.parseEther("5000")];
const description = "Test grant for Completed state";
const roundId = await (0, common_1.getRoundId)({ emissions, xAllocationVoting });
const grantsManagerAddress = await grantsManagerV1.getAddress();
const calldatas = [
treasury.interface.encodeFunctionData("transferB3TR", [grantsManagerAddress, values[0]]),
treasury.interface.encodeFunctionData("transferB3TR", [grantsManagerAddress, values[1]]),
];
const tx = await governorV7
.connect(proposer)
.proposeGrant([treasuryAddress, treasuryAddress], [0n, 0n], calldatas, description, roundId, 0, grantee.address, "https://ipfs.io/ipfs/Qm...completed", { gasLimit: 10000000 });
const proposalId = await (0, common_1.getProposalIdFromGrantsProposalTx)(tx);
// Support and vote
const depositThreshold = await governorV7.proposalDepositThreshold(proposalId);
await (0, fixture_test_1.setupSupporter)(owner, vot3, depositThreshold, governorV7);
await governorV7.connect(owner).deposit(depositThreshold, proposalId);
await (0, common_1.waitForCurrentRoundToEnd)({ emissions, xAllocationVoting });
await (0, common_1.startNewAllocationRound)({ emissions, xAllocationVoting, minterAccount });
await governorV7.connect(proposer).castVote(proposalId, 1);
await governorV7.connect(otherAccounts[1]).castVote(proposalId, 1);
await (0, common_1.waitForCurrentRoundToEnd)({ emissions, xAllocationVoting });
await (0, common_1.startNewAllocationRound)({ emissions, xAllocationVoting, minterAccount });
// Queue and execute proposal
const descriptionHash = hardhat_1.ethers.keccak256(hardhat_1.ethers.toUtf8Bytes(description));
await governorV7.connect(owner).queue([treasuryAddress, treasuryAddress], [0n, 0n], calldatas, descriptionHash);
const proposalEta = await governorV7.proposalEta(proposalId);
await hardhat_1.ethers.provider.send("evm_mine", [Number(proposalEta) + 1]);
await governorV7.connect(owner).execute([treasuryAddress, treasuryAddress], [0n, 0n], calldatas, descriptionHash);
// Approve and claim all milestones in V1 to reach Completed state
await grantsManagerV1.connect(owner).approveMilestones(proposalId, 0);
await grantsManagerV1.connect(grantee).claimMilestone(proposalId, 0);
await grantsManagerV1.connect(owner).approveMilestones(proposalId, 1);
await grantsManagerV1.connect(grantee).claimMilestone(proposalId, 1);
// Verify grant state is Completed in V1 (all milestones claimed)
const v1GrantState = await grantsManagerV1.grantState(proposalId);
(0, chai_1.expect)(v1GrantState).to.equal(9); // Completed state
// Upgrade to V2
await grantsManagerV1.connect(owner).grantRole(await grantsManagerV1.UPGRADER_ROLE(), owner.address);
const grantsManagerV2 = (await (0, helpers_1.upgradeProxy)("GrantsManagerV1", "GrantsManager", await grantsManagerV1.getAddress(), [], { version: 2 }));
// Verify grant state is still Completed in V2 (state persists through upgrade)
const v2GrantState = await grantsManagerV2.grantState(proposalId);
(0, chai_1.expect)(v2GrantState).to.equal(v1GrantState); // State should be preserved
});
});