Skip to content

Commit 5052b89

Browse files
authored
Merge pull request #7270 from BitGo/WIN-7102
fix: Corrected MegaETH transaction url
2 parents adf02d1 + 4e4cf93 commit 5052b89

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

modules/statics/src/networks.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1968,7 +1968,7 @@ class FlowTestnet extends Testnet implements EthereumNetwork {
19681968
class MegaETH extends Mainnet implements EthereumNetwork {
19691969
name = 'MegaETH';
19701970
family = CoinFamily.MEGAETH;
1971-
explorerUrl = 'https://www.megaexplorer.xyz/tx';
1971+
explorerUrl = 'https://www.megaexplorer.xyz/tx/';
19721972
accountExplorerUrl = 'https://www.megaexplorer.xyz/address/';
19731973
chainId = 6342;
19741974
nativeCoinOperationHashPrefix = '6342';
@@ -1977,7 +1977,7 @@ class MegaETH extends Mainnet implements EthereumNetwork {
19771977
class MegaETHTestnet extends Testnet implements EthereumNetwork {
19781978
name = 'MegaETHTestnet';
19791979
family = CoinFamily.MEGAETH;
1980-
explorerUrl = 'https://www.megaexplorer.xyz/tx';
1980+
explorerUrl = 'https://www.megaexplorer.xyz/tx/';
19811981
accountExplorerUrl = 'https://www.megaexplorer.xyz/address/';
19821982
chainId = 6342;
19831983
nativeCoinOperationHashPrefix = '6342';

0 commit comments

Comments
 (0)