Change Monero block explorer to Monero.com

Merge after Monero.com goes live

Justin Ehrenhofer committed Apr 22, 2022 at 11:17 UTC 2b81647fe1dea7865951533cb1533f8afda31270
1 file changed +2 -2
lib/view_model/transaction_details_view_model.dart
+2 -2
@@ -176,7 +176,7 @@ abstract class TransactionDetailsViewModelBase with Store {
176 String _explorerUrl(WalletType type, String txId) {
177 switch (type) {
178 case WalletType.monero:
179 - return 'https://xmrchain.net/search?value=${txId}';
179 + return 'https://monero.com/tx/${txId}';
180 case WalletType.bitcoin:
181 return 'https://www.blockchain.com/btc/tx/${txId}';
182 case WalletType.litecoin:
@@ -191,7 +191,7 @@ abstract class TransactionDetailsViewModelBase with Store {
191 String _explorerDescription(WalletType type) {
192 switch (type) {
193 case WalletType.monero:
194 - return S.current.view_transaction_on + 'XMRChain.net';
194 + return S.current.view_transaction_on + 'Monero.com';
195 case WalletType.bitcoin:
196 return S.current.view_transaction_on + 'Blockchain.com';
197 case WalletType.litecoin: