Skip to content

Commit 975a7b7

Browse files
committed
fix: correct PlumeTestnet explorer URLs
TICKET: WIN-7102
1 parent 25efa73 commit 975a7b7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

modules/statics/src/networks.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1961,7 +1961,7 @@ class MegaETHTestnet extends Testnet implements EthereumNetwork {
19611961
class Plume extends Mainnet implements EthereumNetwork {
19621962
name = 'Plume';
19631963
family = CoinFamily.PLUME;
1964-
explorerUrl = 'https://explorer.plume.org/tx';
1964+
explorerUrl = 'https://explorer.plume.org/tx/';
19651965
accountExplorerUrl = 'https://explorer.plume.org/address/';
19661966
chainId = 98866;
19671967
nativeCoinOperationHashPrefix = '98866';
@@ -1970,8 +1970,8 @@ class Plume extends Mainnet implements EthereumNetwork {
19701970
class PlumeTestnet extends Testnet implements EthereumNetwork {
19711971
name = 'PlumeTestnet';
19721972
family = CoinFamily.PLUME;
1973-
explorerUrl = 'http://testnet-rpc.plume.org/tx';
1974-
accountExplorerUrl = 'http://testnet-rpc.plume.org/address/';
1973+
explorerUrl = 'https://testnet-explorer.plume.org/tx/';
1974+
accountExplorerUrl = 'https://testnet-explorer.plume.org/address/';
19751975
chainId = 98867;
19761976
nativeCoinOperationHashPrefix = '98867';
19771977
}

0 commit comments

Comments
 (0)