commonMain.com.lightspark.sdk.wallet.model.FeeEstimate.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wallet-sdk Show documentation
Show all versions of wallet-sdk Show documentation
The Lightspark Wallet SDK for Kotlin and Java.
The newest version!
// Copyright ©, 2023-present, Lightspark Group, Inc. - All Rights Reserved
@file:Suppress("ktlint:standard:max-line-length")
package com.lightspark.sdk.wallet.model
import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable
/**
* This object represents the estimated L1 transaction fees for the Bitcoin network. Fee estimates are separated by potential confirmation speeds for settlement.
*/
@Serializable
@SerialName("FeeEstimate")
data class FeeEstimate(
@SerialName("fee_estimate_fee_fast")
val feeFast: CurrencyAmount,
@SerialName("fee_estimate_fee_min")
val feeMin: CurrencyAmount,
) {
companion object {
const val FRAGMENT = """
fragment FeeEstimateFragment on FeeEstimate {
type: __typename
fee_estimate_fee_fast: fee_fast {
type: __typename
currency_amount_original_value: original_value
currency_amount_original_unit: original_unit
currency_amount_preferred_currency_unit: preferred_currency_unit
currency_amount_preferred_currency_value_rounded: preferred_currency_value_rounded
currency_amount_preferred_currency_value_approx: preferred_currency_value_approx
}
fee_estimate_fee_min: fee_min {
type: __typename
currency_amount_original_value: original_value
currency_amount_original_unit: original_unit
currency_amount_preferred_currency_unit: preferred_currency_unit
currency_amount_preferred_currency_value_rounded: preferred_currency_value_rounded
currency_amount_preferred_currency_value_approx: preferred_currency_value_approx
}
}"""
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy