Skip to content

Commit

Permalink
test: add logging
Browse files Browse the repository at this point in the history
  • Loading branch information
osiastedian committed Sep 25, 2024
1 parent 9698817 commit ef9fa72
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ export const NEVM_TX_BLOCKCHAIN_URL = `${process.env.NEXT_PUBLIC_NEVM_EXPLORER}/
export const ADMIN_LOGIN_MESSAGE = "Login to Syscoin Bridge Admin";

export const CHAIN_ID =
process.env.NEXT_PUBLIC_IS_TESTNET === "true" ? 5700 : 57;
`${process.env.NEXT_PUBLIC_IS_TESTNET}` === "true" ? 5700 : 57;

console.log("next is testnet", process.env.NEXT_PUBLIC_IS_TESTNET);
console.log("next is testnet", process.env.NEXT_PUBLIC_IS_TESTNET, CHAIN_ID);

0 comments on commit ef9fa72

Please sign in to comment.