AssetBalance

data class AssetBalance(val id: String? = null, val total: String? = null, val available: String? = null, val pending: String? = null, val frozen: String? = null, val lockedAmount: String? = null, val blockHeight: String? = null, val blockHash: String? = null, val rewardInfo: BalanceRewardInfo? = null)

Created by Fireblocks Ltd. on 08/08/2023.

Parameters

id

The asset ID

total

The total wallet balance. Total = available + pending + lockedAmount + frozen

  • In EOS this value includes the network balance, self staking and pending refund.

  • For all other coins it is the balance as it appears on the blockchain.

available

Funds available for transfer. Equals: "total" minus "lockedAmount" minus "frozen" minus "pending".

pending

The cumulative balance of all transactions pending to be cleared.

frozen

The cumulative frozen balance.

lockedAmount

Funds in outgoing transactions that are not yet published to the network

blockHeight

The height (number) of the block of the balance

blockHash

The hash of the block of the balance

rewardInfo

BalanceRewardInfo The reward information

Constructors

Link copied to clipboard
constructor(id: String? = null, total: String? = null, available: String? = null, pending: String? = null, frozen: String? = null, lockedAmount: String? = null, blockHeight: String? = null, blockHash: String? = null, rewardInfo: BalanceRewardInfo? = null)

Properties

Link copied to clipboard
val available: String? = null
Link copied to clipboard
val blockHash: String? = null
Link copied to clipboard
val blockHeight: String? = null
Link copied to clipboard
val frozen: String? = null
Link copied to clipboard
val id: String? = null
Link copied to clipboard
val lockedAmount: String? = null
Link copied to clipboard
val pending: String? = null
Link copied to clipboard
Link copied to clipboard
val total: String? = null