Updated on 2026-08-14
This commit is contained in:
parent
466b6e578b
commit
df4288e70a
27 changed files with 381 additions and 31 deletions
|
|
@ -17,4 +17,16 @@ sealed class AssetRequirementsCondition {
|
|||
val feeCurrencySymbol: String,
|
||||
val decimals: Int,
|
||||
) : AssetRequirementsCondition()
|
||||
|
||||
/**
|
||||
* The exact value of the fee for this type of condition is stored in `feeAmount`.
|
||||
*/
|
||||
data class IncompleteTransaction(
|
||||
val amount: BigDecimal,
|
||||
val currencySymbol: String,
|
||||
val currencyDecimals: Int,
|
||||
val feeAmount: BigDecimal,
|
||||
val feeCurrencySymbol: String,
|
||||
val feeCurrencyDecimals: Int,
|
||||
) : AssetRequirementsCondition()
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue