Class QueryGlobalStateResult
Result for "query_global_state" RPC response.
Inherited Members
Namespace: Casper.Network.SDK.JsonRpc.ResultTypes
Assembly: Casper.Network.SDK.dll
Syntax
public class QueryGlobalStateResult : RpcResult
Properties
| Edit this page View SourceBlockHeader
The block header if a Block hash was provided.
Declaration
[JsonPropertyName("block_header")]
[JsonConverter(typeof(BlockHeader.BlockHeaderConverter))]
public BlockHeader BlockHeader { get; init; }
Property Value
| Type | Description |
|---|---|
| BlockHeader |
MerkleProof
The merkle proof.
Declaration
[JsonPropertyName("merkle_proof")]
public string MerkleProof { get; init; }
Property Value
| Type | Description |
|---|---|
| string |
StoredValue
The stored value.
Declaration
[JsonPropertyName("stored_value")]
[JsonConverter(typeof(StoredValue.StoredValueConverter))]
public StoredValue StoredValue { get; init; }
Property Value
| Type | Description |
|---|---|
| StoredValue |