Skip to content

Commit

Permalink
Fix deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
SigismundSchlomo committed Dec 18, 2023
1 parent 8266e0d commit 90a5215
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions scripts/deploy_fees.ts → scripts/fees/deploy_fees.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { deploy, loadDeployment } from "@airdao/deployments/deploying";
import { ethers } from "hardhat";
import { Multisig__factory, Fees__factory } from "../typechain-types";
import { ContractNames } from "../src";
import { Roadmap2023MultisigSettings } from "./addresses";
import { Multisig__factory, Fees__factory } from "../../typechain-types";
import { ContractNames } from "../../src";
import { Roadmap2023MultisigSettings } from "../addresses";

export async function main() {
const { chainId } = await ethers.provider.getNetwork();
Expand Down Expand Up @@ -31,5 +31,12 @@ export async function main() {
isUpgradeableProxy: true,
});

await (await fees.grantRole(await fees.FEES_MANAGER_ROLE(), multisig.address)).wait();
// await (await fees.grantRole(await fees.FEES_MANAGER_ROLE(), multisig.address)).wait();
}

if (require.main === module) {
main().catch((error) => {
console.error(error);
process.exitCode = 1;
});
}

0 comments on commit 90a5215

Please sign in to comment.