Skip to content

Commit d41623e

Browse files
authored
Merge pull request #7846 from BitGo/win-8531
fix: update decimal and explorer url for hbarevm
2 parents 9869a7f + 1228951 commit d41623e

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

modules/statics/src/allCoinsAndTokens.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2189,7 +2189,7 @@ export const allCoinsAndTokens = [
21892189
'hbarevm',
21902190
'Hedera EVM',
21912191
Networks.main.hederaEVM,
2192-
8,
2192+
18,
21932193
UnderlyingAsset.HBAREVM,
21942194
BaseUnit.HBAR,
21952195
[
@@ -2210,7 +2210,7 @@ export const allCoinsAndTokens = [
22102210
'thbarevm',
22112211
'Testnet Hedera EVM',
22122212
Networks.test.hederaEVM,
2213-
8,
2213+
18,
22142214
UnderlyingAsset.HBAREVM,
22152215
BaseUnit.HBAR,
22162216
[

modules/statics/src/networks.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2166,17 +2166,17 @@ class Plume extends Mainnet implements EthereumNetwork {
21662166
class HederaEVMTestnet extends Testnet implements EthereumNetwork {
21672167
name = 'Testnet Hedera EVM';
21682168
family = CoinFamily.HBAREVM;
2169-
explorerUrl = 'https://hashscan.io/mainnet/transaction/';
2170-
accountExplorerUrl = 'https://hashscan.io/mainnet/account/';
2169+
explorerUrl = 'https://hashscan.io/testnet/transaction/';
2170+
accountExplorerUrl = 'https://hashscan.io/testnet/account/';
21712171
chainId = 296;
21722172
nativeCoinOperationHashPrefix = '296';
21732173
}
21742174

21752175
class HederaEVM extends Mainnet implements EthereumNetwork {
21762176
name = 'Hedera EVM';
21772177
family = CoinFamily.HBAREVM;
2178-
explorerUrl = 'https://hashscan.io/testnet/transaction/';
2179-
accountExplorerUrl = 'https://hashscan.io/testnet/account/';
2178+
explorerUrl = 'https://hashscan.io/mainnet/transaction/';
2179+
accountExplorerUrl = 'https://hashscan.io/mainnet/account/';
21802180
chainId = 295;
21812181
nativeCoinOperationHashPrefix = '295';
21822182
}

0 commit comments

Comments
 (0)