Skip to content

Commit

Permalink
chore: use nimiq.watch testnet again
Browse files Browse the repository at this point in the history
  • Loading branch information
Albermonte committed Nov 26, 2024
1 parent 5becdcb commit e524490
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/ExplorerUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export function explorerTxLink(asset: CryptoCurrency, hash: string) {
case CryptoCurrency.NIM:
return config.environment === ENV_MAIN
? `https://nimiq.watch/#${hash}`
: `https://www.nimiqhub.com/tx/${hash}`;
: `https://test.nimiq.watch/#${hash}`;
case CryptoCurrency.BTC:
return `https://blockstream.info${config.environment === ENV_MAIN ? '' : '/testnet'}/tx/${hash}`;
case CryptoCurrency.USDC:
Expand All @@ -24,7 +24,7 @@ export function explorerAddrLink(asset: SwapAsset, address: string) {
case SwapAsset.NIM:
return config.environment === ENV_MAIN
? `https://nimiq.watch/#${address}`
: `https://www.nimiqhub.com/wallet/${address}`;
: `https://test.nimiq.watch/${address}`;
case SwapAsset.BTC:
return `https://blockstream.info${config.environment === ENV_MAIN ? '' : '/testnet'}/address/${address}`;
case SwapAsset.USDC:
Expand Down

0 comments on commit e524490

Please sign in to comment.