diff --git a/modules/statics/src/allCoinsAndTokens.ts b/modules/statics/src/allCoinsAndTokens.ts index 659bc70d7e..7d6a48a835 100644 --- a/modules/statics/src/allCoinsAndTokens.ts +++ b/modules/statics/src/allCoinsAndTokens.ts @@ -2189,7 +2189,7 @@ export const allCoinsAndTokens = [ 'hbarevm', 'Hedera EVM', Networks.main.hederaEVM, - 8, + 18, UnderlyingAsset.HBAREVM, BaseUnit.HBAR, [ @@ -2210,7 +2210,7 @@ export const allCoinsAndTokens = [ 'thbarevm', 'Testnet Hedera EVM', Networks.test.hederaEVM, - 8, + 18, UnderlyingAsset.HBAREVM, BaseUnit.HBAR, [ diff --git a/modules/statics/src/networks.ts b/modules/statics/src/networks.ts index bb2fea5803..581902e330 100644 --- a/modules/statics/src/networks.ts +++ b/modules/statics/src/networks.ts @@ -2166,8 +2166,8 @@ class Plume extends Mainnet implements EthereumNetwork { class HederaEVMTestnet extends Testnet implements EthereumNetwork { name = 'Testnet Hedera EVM'; family = CoinFamily.HBAREVM; - explorerUrl = 'https://hashscan.io/mainnet/transaction/'; - accountExplorerUrl = 'https://hashscan.io/mainnet/account/'; + explorerUrl = 'https://hashscan.io/testnet/transaction/'; + accountExplorerUrl = 'https://hashscan.io/testnet/account/'; chainId = 296; nativeCoinOperationHashPrefix = '296'; } @@ -2175,8 +2175,8 @@ class HederaEVMTestnet extends Testnet implements EthereumNetwork { class HederaEVM extends Mainnet implements EthereumNetwork { name = 'Hedera EVM'; family = CoinFamily.HBAREVM; - explorerUrl = 'https://hashscan.io/testnet/transaction/'; - accountExplorerUrl = 'https://hashscan.io/testnet/account/'; + explorerUrl = 'https://hashscan.io/mainnet/transaction/'; + accountExplorerUrl = 'https://hashscan.io/mainnet/account/'; chainId = 295; nativeCoinOperationHashPrefix = '295'; }