Skip to content

Commit

Permalink
update dev deterministic contract addresses
Browse files Browse the repository at this point in the history
  • Loading branch information
gravityblast committed Oct 24, 2023
1 parent d6b292d commit 74261e4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion scripts/config/allo.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ type DeployParams = Record<string, AlloSettingsParams>;

export const AlloSettingsParams: DeployParams = {
dev: {
alloSettingsContract: "0x3Aa5ebB10DC797CAC828524e59A333d0A371443c",
alloSettingsContract: "0x59b670e9fA9D0A427751Af201D676719a970857b",
newProtocolFeePercentage: 0,
newProtocolTreasury: "",
},
Expand Down
4 changes: 2 additions & 2 deletions scripts/config/round.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ type DeployParams = Record<string, RoundParams>;

export const roundParams: DeployParams = {
dev: {
roundFactoryContract: "0x59b670e9fA9D0A427751Af201D676719a970857b",
roundImplementationContract: "0x4ed7c70F96B99c776995fB64377f0d4aB3B0e1C1",
roundFactoryContract: "0x322813Fd9A801c5507c9de605d63CEA4f2CE6c44",
roundImplementationContract: "0xa85233C63b9Ee964Add6F2cffe00Fd84eb32338f",
roundContract: "",
},
mainnet: {
Expand Down
5 changes: 2 additions & 3 deletions scripts/settings/setProtocolFeeDetails.ts
Original file line number Diff line number Diff line change
@@ -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];
Expand Down

0 comments on commit 74261e4

Please sign in to comment.