Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions modules/statics/src/allCoinsAndTokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2189,7 +2189,7 @@ export const allCoinsAndTokens = [
'hbarevm',
'Hedera EVM',
Networks.main.hederaEVM,
8,
18,
UnderlyingAsset.HBAREVM,
BaseUnit.HBAR,
[
Expand All @@ -2210,7 +2210,7 @@ export const allCoinsAndTokens = [
'thbarevm',
'Testnet Hedera EVM',
Networks.test.hederaEVM,
8,
18,
UnderlyingAsset.HBAREVM,
BaseUnit.HBAR,
[
Expand Down
8 changes: 4 additions & 4 deletions modules/statics/src/networks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2166,17 +2166,17 @@ 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';
}

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';
}
Expand Down