Updated on 2026-08-14

This commit is contained in:
Tangem 2024-10-04 13:21:38 +04:00
parent 197099a1c9
commit 125c5e4279
4 changed files with 253 additions and 49 deletions

View file

@ -24,4 +24,11 @@ sealed interface ProxyFee {
override val fee: ProxyAmount,
val gasPremium: Long,
) : ProxyFee
data class Sui(
override val gasLimit: BigInteger,
override val fee: ProxyAmount,
val gasPrice: Long,
val gasBudget: Long,
) : ProxyFee
}