Class GetDictionaryItemResult
Result for "state_get_dictionary_item" RPC response.
Inherited Members
Namespace: Casper.Network.SDK.JsonRpc.ResultTypes
Assembly: Casper.Network.SDK.dll
Syntax
public class GetDictionaryItemResult : RpcResult
Properties
| Edit this page View SourceDictionaryKey
The key under which the value is stored.
Declaration
[JsonPropertyName("dictionary_key")]
public string DictionaryKey { get; init; }
Property Value
| Type | Description |
|---|---|
| string |
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 |