Skip to content

Commit

Permalink
chore(deploy): add mainnet multisig addresses, and update distributio…
Browse files Browse the repository at this point in the history
…n script (#146)
  • Loading branch information
PowVT authored Oct 24, 2023
1 parent 2765857 commit 76f5cb8
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/deploy/config/deployment-params.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { ethers } from "hardhat";

export const LAUNCH_PARTNER_MULTISIG = "0x398e92C827C5FA0F33F171DC8E20570c5CfF330e"; // UPDATE!!!
export const FOUNDATION_MULTISIG = "0x398e92C827C5FA0F33F171DC8E20570c5CfF330e"; // UPDATE!!!
export const VESTING_MANAGER_MULTISIG = "0x96bE842Abefa10a930F85C6Cf538493199D46a4E"; // UPDATE!!!
export const LAUNCH_PARTNER_MULTISIG = "0x398e92C827C5FA0F33F171DC8E20570c5CfF330e"; // mainnet
export const FOUNDATION_MULTISIG = "0xE004727641b3C9A2441eE21fa73BEc51f6029543"; // mainnet
export const VESTING_MANAGER_MULTISIG = "0x398e92C827C5FA0F33F171DC8E20570c5CfF330e"; // mainnet

export const ADMIN_ROLE = ethers.utils.id("ADMIN");
export const CORE_VOTING_ROLE = ethers.utils.id("CORE_VOTING");
Expand Down
3 changes: 3 additions & 0 deletions scripts/deploy/distribute-tokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ export async function distributeTokens(resources: DeployedResources) {
console.log("Distributing ARCD to vesting multisig for early investor vesting...");
const tx5 = await arcadeTokenDistributor.toPartnerVesting(VESTING_MANAGER_MULTISIG);
await tx5.wait();
console.log("Distributing ARCD to vesting multisig for foundation vesting...");
const tx6 = await arcadeTokenDistributor.toFoundationTreasury(VESTING_MANAGER_MULTISIG);
await tx6.wait();
console.log(SUBSECTION_SEPARATOR);

console.log(SECTION_SEPARATOR);
Expand Down
1 change: 1 addition & 0 deletions scripts/deploy/test/e2e.ts
Original file line number Diff line number Diff line change
Expand Up @@ -312,6 +312,7 @@ describe("Governance Deployment", function () {
expect(await arcadeTokenDistributor.communityAirdropSent()).to.equal(true);
expect(await arcadeTokenDistributor.vestingTeamSent()).to.equal(true);
expect(await arcadeTokenDistributor.vestingPartnerSent()).to.equal(true);
expect(await arcadeTokenDistributor.foundationTreasurySent()).to.equal(true);
});

it("sets custom quorums in core voting and gsc core voting", async () => {
Expand Down

0 comments on commit 76f5cb8

Please sign in to comment.