Updated on 2026-08-14

This commit is contained in:
Tangem 2019-11-06 05:56:45 +00:00
commit 9e72aa8110
3 changed files with 3 additions and 3 deletions

View file

@ -163,7 +163,7 @@ public class XlmAssetEngine extends CoinEngine {
@Override
public Uri getWalletExplorerUri() {
return Uri.parse("http://stellarchain.io/address/" + ctx.getCoinData().getWallet());
return Uri.parse("https://stellar.expert/explorer/public/account/" + ctx.getCoinData().getWallet());
}
@Override

View file

@ -143,7 +143,7 @@ public class XlmEngine extends CoinEngine {
@Override
public Uri getWalletExplorerUri() {
return Uri.parse((ctx.getBlockchain() == Blockchain.Stellar ? "http://stellarchain.io/address/" : "http://testnet.stellarchain.io/address/") + ctx.getCoinData().getWallet());
return Uri.parse((ctx.getBlockchain() == Blockchain.Stellar ? "https://stellar.expert/explorer/public/account/" : "https://stellar.expert/explorer/testnet/account/") + ctx.getCoinData().getWallet());
}
@Override