From 74261e455d6ab00cc80297d07de3f577a06f091d Mon Sep 17 00:00:00 2001 From: Andrea Franz Date: Tue, 24 Oct 2023 03:11:40 +0200 Subject: [PATCH] update dev deterministic contract addresses --- scripts/config/allo.config.ts | 2 +- scripts/config/round.config.ts | 4 ++-- scripts/settings/setProtocolFeeDetails.ts | 5 ++--- 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/scripts/config/allo.config.ts b/scripts/config/allo.config.ts index 15190636..fceca6a3 100644 --- a/scripts/config/allo.config.ts +++ b/scripts/config/allo.config.ts @@ -9,7 +9,7 @@ type DeployParams = Record; export const AlloSettingsParams: DeployParams = { dev: { - alloSettingsContract: "0x3Aa5ebB10DC797CAC828524e59A333d0A371443c", + alloSettingsContract: "0x59b670e9fA9D0A427751Af201D676719a970857b", newProtocolFeePercentage: 0, newProtocolTreasury: "", }, diff --git a/scripts/config/round.config.ts b/scripts/config/round.config.ts index 7f757a24..a93cd2ee 100644 --- a/scripts/config/round.config.ts +++ b/scripts/config/round.config.ts @@ -11,8 +11,8 @@ type DeployParams = Record; export const roundParams: DeployParams = { dev: { - roundFactoryContract: "0x59b670e9fA9D0A427751Af201D676719a970857b", - roundImplementationContract: "0x4ed7c70F96B99c776995fB64377f0d4aB3B0e1C1", + roundFactoryContract: "0x322813Fd9A801c5507c9de605d63CEA4f2CE6c44", + roundImplementationContract: "0xa85233C63b9Ee964Add6F2cffe00Fd84eb32338f", roundContract: "", }, mainnet: { diff --git a/scripts/settings/setProtocolFeeDetails.ts b/scripts/settings/setProtocolFeeDetails.ts index f923bf76..46d7ea31 100644 --- a/scripts/settings/setProtocolFeeDetails.ts +++ b/scripts/settings/setProtocolFeeDetails.ts @@ -1,13 +1,12 @@ import { ethers } from "hardhat"; import hre from "hardhat"; import { confirmContinue } from "../../utils/script-utils"; -import { AlloSettingsParams } from '../config/allo.config'; +import { AlloSettingsParams } from "../config/allo.config"; import * as utils from "../utils"; utils.assertEnvironment(); - -export async function main() { +export async function main() { const network = hre.network; const networkParams = AlloSettingsParams[network.name];