Skip to content

Commit

Permalink
change testnet smt
Browse files Browse the repository at this point in the history
  • Loading branch information
Arvolear committed Aug 14, 2024
1 parent 9d64422 commit 920112b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion deploy/config/config.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import hre from "hardhat";

export async function getConfig() {
if (hre.network.name == "localhost") {
if (hre.network.name == "localhost" || hre.network.name == "hardhat") {
return await import("./localhost");
}

Expand Down
2 changes: 1 addition & 1 deletion deploy/config/localhost.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export const chainName = "Localhost";
export const registrationSMT = "0xBF926a23B4A0bcA301F97Ccd27358b55Dc4C7D3C";
export const registrationSMT = "0xc1534912902BBe8C54626e2D69288C76a843bc0E";
export const tssSigner = "0x038D006846a3e203738cF80A02418e124203beb2";
export const votingName = "InitialVoting";
2 changes: 1 addition & 1 deletion deploy/config/rarimo-testnet.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export const chainName = "Rarimo-testnet";
export const registrationSMT = "0xBF926a23B4A0bcA301F97Ccd27358b55Dc4C7D3C";
export const registrationSMT = "0xc1534912902BBe8C54626e2D69288C76a843bc0E";
export const tssSigner = "0x038D006846a3e203738cF80A02418e124203beb2";
export const votingName = "InitialVoting";

0 comments on commit 920112b

Please sign in to comment.