Skip to content

Commit 6135edc

Browse files
fix(statics): correct berachain url
Ticket: COIN-4730
1 parent 57e038e commit 6135edc

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

modules/statics/src/networks.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1183,8 +1183,8 @@ class ZkSyncTestnet extends Testnet implements EthereumNetwork {
11831183
class Berachain extends Mainnet implements EthereumNetwork {
11841184
name = 'Bera';
11851185
family = CoinFamily.BERA;
1186-
explorerUrl = 'https://80094.routescan.io/tx/';
1187-
accountExplorerUrl = 'https://80094.routescan.io/address/';
1186+
explorerUrl = 'https://berascan.com/tx/';
1187+
accountExplorerUrl = 'https://berascan.com/address/';
11881188
chainId = 80094;
11891189
nativeCoinOperationHashPrefix = '80094';
11901190
tokenOperationHashPrefix = '80094-ERC20';
@@ -1196,8 +1196,8 @@ class Berachain extends Mainnet implements EthereumNetwork {
11961196
class BerachainTestnet extends Testnet implements EthereumNetwork {
11971197
name = 'BeraTestnet';
11981198
family = CoinFamily.BERA;
1199-
explorerUrl = 'https://80000.testnet.routescan.io/tx/';
1200-
accountExplorerUrl = 'https://80000.testnet.routescan.io/address/';
1199+
explorerUrl = 'https://testnet.berascan.com/tx/';
1200+
accountExplorerUrl = 'https://testnet.berascan.com/address/';
12011201
chainId = 80000;
12021202
nativeCoinOperationHashPrefix = '80000';
12031203
tokenOperationHashPrefix = '80000-ERC20';

0 commit comments

Comments
 (0)