Updated on 2026-08-14

This commit is contained in:
Tangem 2024-08-07 10:52:45 +03:00
parent 2f29f6d8d7
commit 0f44f21d6f
5 changed files with 51 additions and 14 deletions

View file

@ -18,4 +18,10 @@ sealed interface ProxyFee {
override val fee: ProxyAmount,
val minAdaValue: BigDecimal,
) : ProxyFee
data class Filecoin(
override val gasLimit: BigInteger,
override val fee: ProxyAmount,
val gasPremium: Long,
) : ProxyFee
}