Updated on 2026-08-14

This commit is contained in:
Tangem 2024-01-11 18:24:16 +03:00
parent 993c28ecfd
commit 0b7e1f6bb5
9 changed files with 54 additions and 6 deletions

View file

@ -315,6 +315,10 @@ internal class DefaultSwapRepository @Inject constructor(
return walletManagersFacade.getExistentialDeposit(userWalletId, network)
}
override suspend fun getDustValue(userWalletId: UserWalletId, network: Network): BigDecimal? {
return walletManagersFacade.getDustValue(userWalletId, network)
}
private fun parseTxDetails(txDetailsJson: String): TxDetails? {
return try {
txDetailsMoshiAdapter.fromJson(txDetailsJson)