Updated on 2026-08-14
This commit is contained in:
parent
bbcdc778fa
commit
8c6372e398
13 changed files with 136 additions and 82 deletions
|
|
@ -66,7 +66,12 @@ class DefaultTxHistoryRepository(
|
|||
|
||||
override fun getTxExploreUrl(txHash: String, networkId: Network.ID): String {
|
||||
val blockchain = Blockchain.fromId(networkId.value)
|
||||
return blockchain.getExploreTxUrl(txHash)
|
||||
// TODO: Fix ton tx urls [REDACTED_TASK_KEY]
|
||||
return if (blockchain == Blockchain.TON || blockchain == Blockchain.TONTestnet) {
|
||||
""
|
||||
} else {
|
||||
blockchain.getExploreTxUrl(txHash)
|
||||
}
|
||||
}
|
||||
|
||||
private suspend fun getUserWallet(userWalletId: UserWalletId): UserWallet {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue