Balance

data class Balance(    var immature: Amount,     var trustedPending: Amount,     var untrustedPending: Amount,     var confirmed: Amount,     var trustedSpendable: Amount,     var total: Amount) : Disposable(source)

Balance, differentiated into various categories.

Constructors

Link copied to clipboard
constructor(immature: Amount, trustedPending: Amount, untrustedPending: Amount, confirmed: Amount, trustedSpendable: Amount, total: Amount)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Confirmed and immediately spendable balance

Link copied to clipboard

All coinbase outputs not yet matured

Link copied to clipboard

Get the whole balance visible to the wallet.

Link copied to clipboard

Unconfirmed UTXOs generated by a wallet tx

Link copied to clipboard

Get sum of trusted_pending and confirmed coins.

Link copied to clipboard

Unconfirmed UTXOs received from an external wallet

Functions

Link copied to clipboard
open override fun destroy()