Update transaction_details_view_model.dart (#1690)
Replacement proposal for the closed nano and banano explorers
MyEcoria committed
Sep 26, 2024 at 04:16 UTC
331d6ee64836f52486a7fb43aee2adddd7efb873
1 file changed
+4
-4
lib/view_model/transaction_details_view_model.dart
+4
-4
@@ -160,9 +160,9 @@ abstract class TransactionDetailsViewModelBase with Store {
160
case WalletType.ethereum:
161
return 'https://etherscan.io/tx/${txId}';
162
case WalletType.nano:
163
- return 'https://nanolooker.com/block/${txId}';
163
+ return 'https://nanexplorer.com/nano/block/${txId}';
164
case WalletType.banano:
165
- return 'https://bananolooker.com/block/${txId}';
165
+ return 'https://nanexplorer.com/banano/block/${txId}';
166
case WalletType.polygon:
167
return 'https://polygonscan.com/tx/${txId}';
168
case WalletType.solana:
@@ -190,9 +190,9 @@ abstract class TransactionDetailsViewModelBase with Store {
190
case WalletType.ethereum:
191
return S.current.view_transaction_on + 'etherscan.io';
192
case WalletType.nano:
193
- return S.current.view_transaction_on + 'nanolooker.com';
193
+ return S.current.view_transaction_on + 'nanexplorer.com';
194
case WalletType.banano:
195
- return S.current.view_transaction_on + 'bananolooker.com';
195
+ return S.current.view_transaction_on + 'nanexplorer.com';
196
case WalletType.polygon:
197
return S.current.view_transaction_on + 'polygonscan.com';
198
case WalletType.solana: