Skip to content

Commit f6bda4f

Browse files
Merge pull request #5796 from BitGo/WIN-4904-Fix-transaction-hash-link
chore: updated transaction hash link
2 parents 47d6527 + ae1c115 commit f6bda4f

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

modules/statics/src/networks.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,13 +172,17 @@ class AptTestnet extends Testnet implements AccountNetwork {
172172
class Icp extends Mainnet implements AccountNetwork {
173173
name = 'Internet Computer';
174174
family = CoinFamily.ICP;
175-
explorerUrl = 'https://www.icpexplorer.org'; //TODO(WIN-4242): update to the prod rosetta explorer url
175+
explorerUrl = 'https://www.icpexplorer.org/#/tx/'; //TODO(WIN-4242): update to the test rosetta explorer url
176+
accountExplorerUrl = 'https://www.icpexplorer.org/#/account/?network=mainnet';
177+
blockExplorerUrl = 'https://www.icpexplorer.org/#/block/?network=mainnet';
176178
}
177179

178180
class IcpTestnet extends Testnet implements AccountNetwork {
179181
name = 'Testnet Internet Computer';
180182
family = CoinFamily.ICP;
181-
explorerUrl = 'https://www.icpexplorer.org'; //TODO(WIN-4242): update to the test rosetta explorer url
183+
explorerUrl = 'https://www.icpexplorer.org/#/tx/'; //TODO(WIN-4242): update to the test rosetta explorer url
184+
accountExplorerUrl = 'https://www.icpexplorer.org/#/account/?network=testnet';
185+
blockExplorerUrl = 'https://www.icpexplorer.org/#/block/?network=testnet';
182186
}
183187
class Arbitrum extends Mainnet implements EthereumNetwork {
184188
name = 'Arbitrum';

0 commit comments

Comments
 (0)