Casper.Network.SDK
Show / Hide Table of Contents

Class QueryBalanceDetailsResult

Result for "query_balance_details" RPC response.

Inheritance
object
RpcResult
QueryBalanceDetailsResult
Inherited Members
RpcResult.ApiVersion
RpcResult.Load<T>(string)
RpcResult.Parse<T>(string)
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Casper.Network.SDK.JsonRpc.ResultTypes
Assembly: Casper.Network.SDK.dll
Syntax
public class QueryBalanceDetailsResult : RpcResult

Properties

| Edit this page View Source

AvailableBalance

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
| Edit this page View Source

Holds

Holds active at the requested point in time.

Declaration
[JsonPropertyName("holds")]
public List<Hold> Holds { get; init; }
Property Value
Type Description
List<Hold>
| Edit this page View Source

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
| Edit this page View Source

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
  • Edit this page
  • View Source
In this article
Back to top Maintained by MAKE Technology LLC