commonMain.com.lightspark.sdk.wallet.graphql.LightningFeeEstimateForInvoice.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!
package com.lightspark.sdk.wallet.graphql
import com.lightspark.sdk.wallet.model.LightningFeeEstimateOutput
const val LightningFeeEstimateForInvoiceQuery = """
query LightningFeeEstimateForInvoice(
${'$'}encoded_payment_request: String!
${'$'}amount_msats: Long
) {
lightning_fee_estimate_for_invoice(input: {
encoded_payment_request: ${'$'}encoded_payment_request,
amount_msats: ${'$'}amount_msats
}) {
...LightningFeeEstimateOutputFragment
}
}
${LightningFeeEstimateOutput.FRAGMENT}
"""
© 2015 - 2024 Weber Informatics LLC | Privacy Policy