mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-23 03:59:23 +00:00
Merge pull request #348 from cake-tech/monero.com-explorer
Change Monero block explorer to Monero.com
This commit is contained in:
commit
0caa7337af
1 changed files with 2 additions and 2 deletions
|
@ -176,7 +176,7 @@ abstract class TransactionDetailsViewModelBase with Store {
|
|||
String _explorerUrl(WalletType type, String txId) {
|
||||
switch (type) {
|
||||
case WalletType.monero:
|
||||
return 'https://xmrchain.net/search?value=${txId}';
|
||||
return 'https://monero.com/tx/${txId}';
|
||||
case WalletType.bitcoin:
|
||||
return 'https://www.blockchain.com/btc/tx/${txId}';
|
||||
case WalletType.litecoin:
|
||||
|
@ -191,7 +191,7 @@ abstract class TransactionDetailsViewModelBase with Store {
|
|||
String _explorerDescription(WalletType type) {
|
||||
switch (type) {
|
||||
case WalletType.monero:
|
||||
return S.current.view_transaction_on + 'XMRChain.net';
|
||||
return S.current.view_transaction_on + 'Monero.com';
|
||||
case WalletType.bitcoin:
|
||||
return S.current.view_transaction_on + 'Blockchain.com';
|
||||
case WalletType.litecoin:
|
||||
|
|
Loading…
Reference in a new issue