Class QueryBalanceDetailsResult
Result for "query_balance_details" RPC response.
Inherited Members
Namespace: Casper.Network.SDK.JsonRpc.ResultTypes
Assembly: Casper.Network.SDK.dll
Syntax
public class QueryBalanceDetailsResult : RpcResult
Properties
| Edit this page View SourceAvailableBalance
The available balance in motes (total balance - sum of all active holds).
Declaration
[JsonPropertyName("available_balance")]
[JsonConverter(typeof(BigIntegerConverter))]
public BigInteger AvailableBalance { get; init; }
Property Value
| Type | Description |
|---|---|
| BigInteger |
Holds
Holds active at the requested point in time.
Declaration
[JsonPropertyName("holds")]
public List<Hold> Holds { get; init; }
Property Value
| Type | Description |
|---|---|
| List<Hold> |
TotalBalance
The purses total balance, not considering holds.
Declaration
[JsonPropertyName("total_balance")]
[JsonConverter(typeof(BigIntegerConverter))]
public BigInteger TotalBalance { get; init; }
Property Value
| Type | Description |
|---|---|
| BigInteger |
TotalBalanceProof
A proof that the given value is present in the Merkle trie.
Declaration
[JsonPropertyName("total_balance_proof")]
public string TotalBalanceProof { get; init; }
Property Value
| Type | Description |
|---|---|
| string |