From 2eee63c38e27ac7d40c7118c6d60b1e1214aec39 Mon Sep 17 00:00:00 2001 From: Sztergbaum Roman Date: Thu, 11 May 2023 11:27:07 +0200 Subject: [PATCH] [Neutron]: switch to mainnet (#3162) --- registry.json | 4 ++-- tests/chains/Cosmos/Neutron/TWCoinTypeTests.cpp | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/registry.json b/registry.json index 1e6d3d4d267..458080daedc 100644 --- a/registry.json +++ b/registry.json @@ -704,7 +704,7 @@ "coinId": 90000118, "symbol": "NTRN", "decimals": 6, - "chainId": "pion-1", + "chainId": "neutron-1", "blockchain": "Cosmos", "derivation": [ { @@ -716,7 +716,7 @@ "hrp": "neutron", "addressHasher": "sha256ripemd", "explorer": { - "url": "https://testnet.mintscan.io/neutron-testnet", + "url": "https://www.mintscan.io/neutron", "txPath": "/txs/", "accountPath": "/account/", "sampleTx": "E18BA087009A05EB6A15A22FE30BA99379B909F74A74120E6F92B9882C45F0D7", diff --git a/tests/chains/Cosmos/Neutron/TWCoinTypeTests.cpp b/tests/chains/Cosmos/Neutron/TWCoinTypeTests.cpp index 12108bf6668..8a768bd1647 100644 --- a/tests/chains/Cosmos/Neutron/TWCoinTypeTests.cpp +++ b/tests/chains/Cosmos/Neutron/TWCoinTypeTests.cpp @@ -31,7 +31,7 @@ TEST(TWNeutronCoinType, TWCoinType) { ASSERT_EQ(TWCoinTypeBlockchain(coin), TWBlockchainCosmos); ASSERT_EQ(TWCoinTypeP2shPrefix(coin), 0x0); ASSERT_EQ(TWCoinTypeStaticPrefix(coin), 0x0); - assertStringsEqual(chainId, "pion-1"); - assertStringsEqual(txUrl, "https://testnet.mintscan.io/neutron-testnet/txs/E18BA087009A05EB6A15A22FE30BA99379B909F74A74120E6F92B9882C45F0D7"); - assertStringsEqual(accUrl, "https://testnet.mintscan.io/neutron-testnet/account/neutron1pm4af8pcurxssdxztqw9rexx5f8zfq7uzqfmy8"); + assertStringsEqual(chainId, "neutron-1"); + assertStringsEqual(txUrl, "https://www.mintscan.io/neutron/txs/E18BA087009A05EB6A15A22FE30BA99379B909F74A74120E6F92B9882C45F0D7"); + assertStringsEqual(accUrl, "https://www.mintscan.io/neutron/account/neutron1pm4af8pcurxssdxztqw9rexx5f8zfq7uzqfmy8"); }