Skip to content

Commit b85cd65

Browse files
Merge pull request #7882 from BitGo/WIN-8596
feat(statics): Update explorer and address url for iota
2 parents 76b80df + 5625b7f commit b85cd65

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

modules/statics/src/networks.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2135,13 +2135,15 @@ class VetTestnet extends Testnet implements EthereumNetwork {
21352135
class Iota extends Mainnet implements AccountNetwork {
21362136
name = 'Iota';
21372137
family = CoinFamily.IOTA;
2138-
explorerUrl = 'https://explorer.iota.org/?network=mainnet';
2138+
explorerUrl = 'https://explorer.iota.org/txblock/?network=mainnet';
2139+
accountExplorerUrl = 'https://explorer.iota.org/address/?network=mainnet';
21392140
}
21402141

21412142
class IotaTestnet extends Testnet implements AccountNetwork {
21422143
name = 'Testnet Iota';
21432144
family = CoinFamily.IOTA;
2144-
explorerUrl = 'https://explorer.iota.org/?network=testnet';
2145+
explorerUrl = 'https://explorer.iota.org/txblock/?network=testnet';
2146+
accountExplorerUrl = 'https://explorer.iota.org/address/?network=testnet';
21452147
}
21462148

21472149
class Flow extends Mainnet implements EthereumNetwork {

0 commit comments

Comments
 (0)