Updated on 2026-08-14

This commit is contained in:
Tangem 2023-05-23 19:46:52 +03:00
parent c1f4cb7388
commit 9c762583a0
18 changed files with 759 additions and 217 deletions

View file

@ -1,7 +1,7 @@
package com.tangem.lib.crypto
import com.tangem.lib.crypto.models.Currency
import com.tangem.lib.crypto.models.ProxyFee
import com.tangem.lib.crypto.models.ProxyFees
import com.tangem.lib.crypto.models.ProxyNetworkInfo
import com.tangem.lib.crypto.models.transactions.SendTxResult
import java.math.BigDecimal
@ -55,7 +55,7 @@ interface TransactionManager {
increaseBy: Int?,
data: String?,
derivationPath: String?,
): ProxyFee
): ProxyFees
@Throws(IllegalStateException::class)
fun getNativeTokenDecimals(networkId: String): Int

View file

@ -0,0 +1,7 @@
package com.tangem.lib.crypto.models
data class ProxyFees(
val minFee: ProxyFee,
val normalFee: ProxyFee,
val priorityFee: ProxyFee,
)