From 80f51ed428aac2a6193446e550dbab50d9c8d301 Mon Sep 17 00:00:00 2001 From: Kevin Yang <5478483+k-yang@users.noreply.github.com> Date: Thu, 6 Feb 2025 17:55:17 -0500 Subject: [PATCH] fix: revert testnet-1 chain id --- app/appconst/appconst.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/appconst/appconst.go b/app/appconst/appconst.go index 25c10dafc..adb263eb7 100644 --- a/app/appconst/appconst.go +++ b/app/appconst/appconst.go @@ -55,7 +55,7 @@ func RuntimeVersion() string { const ( ETH_CHAIN_ID_MAINNET int64 = 6900 - ETH_CHAIN_ID_TESTNET_1 int64 = 6910 + ETH_CHAIN_ID_TESTNET_1 int64 = 7210 ETH_CHAIN_ID_TESTNET_2 int64 = 6911 ETH_CHAIN_ID_TESTNET_3 int64 = 6912 @@ -74,7 +74,7 @@ const ( var knownEthChainIDMap = map[string]int64{ "cataclysm-1": 6900, - "nibiru-testnet-1": 6910, + "nibiru-testnet-1": 7210, "nibiru-testnet-2": 6911, "nibiru-testnet-3": 6912,