Skip to content

Commit

Permalink
added sepolia config
Browse files Browse the repository at this point in the history
  • Loading branch information
Arvolear committed Sep 11, 2024
1 parent ba338bd commit 693d47a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions deploy/config/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ export async function getConfig() {
return await import("./localhost");
}

if (hre.network.name == "sepolia") {
return await import("./sepolia");
}

if (hre.network.name == "q-testnet") {
return await import("./q-testnet");
}
Expand Down
4 changes: 4 additions & 0 deletions deploy/config/sepolia.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
export const chainName = "Sepolia";
export const registrationSMT = "0x2af05993a27df83094a963af64b5d25296230544"; // replicator
export const tssSigner = "0x038D006846a3e203738cF80A02418e124203beb2";
export const votingName = "InitialVoting";

0 comments on commit 693d47a

Please sign in to comment.