[CW-257] Change Bitcoin block explorer to mempool.space

Justin Ehrenhofer committed Nov 29, 2022 at 11:05 UTC 6685fb580485eda3b7e1f77e24b43b3f79cdc28a
1 file changed +2 -2
lib/view_model/transaction_details_view_model.dart
+2 -2
@@ -184,7 +184,7 @@ abstract class TransactionDetailsViewModelBase with Store {
184 case WalletType.monero:
185 return 'https://monero.com/tx/${txId}';
186 case WalletType.bitcoin:
187 - return 'https://www.blockchain.com/btc/tx/${txId}';
187 + return 'https://mempool.space/tx/${txId}';
188 case WalletType.litecoin:
189 return 'https://blockchair.com/litecoin/transaction/${txId}';
190 case WalletType.haven:
@@ -199,7 +199,7 @@ abstract class TransactionDetailsViewModelBase with Store {
199 case WalletType.monero:
200 return S.current.view_transaction_on + 'Monero.com';
201 case WalletType.bitcoin:
202 - return S.current.view_transaction_on + 'Blockchain.com';
202 + return S.current.view_transaction_on + 'mempool.space';
203 case WalletType.litecoin:
204 return S.current.view_transaction_on + 'Blockchair.com';
205 case WalletType.haven: