Updated on 2026-08-14

This commit is contained in:
Tangem 2024-10-06 12:38:35 +04:00
commit b745c4668c
20 changed files with 320 additions and 81 deletions

View file

@ -111,6 +111,14 @@ class TransactionManagerImpl(
gasPremium = normalFee.gasPremium,
)
}
is Fee.Sui -> {
ProxyFee.Sui(
gasLimit = BigInteger.ZERO,
fee = convertToProxyAmount(amount = normalFee.amount),
gasPrice = normalFee.gasPrice,
gasBudget = normalFee.gasBudget,
)
}
else -> {
ProxyFee.Common(
gasLimit = BigInteger.ZERO,