Class GetBlockTransfersResult
Result for "chain_get_block_transfers" RPC response.
Inherited Members
Namespace: Casper.Network.SDK.JsonRpc.ResultTypes
Assembly: Casper.Network.SDK.dll
Syntax
public class GetBlockTransfersResult : RpcResult
Properties
| Edit this page View SourceBlockHash
The block hash
Declaration
[JsonPropertyName("block_hash")]
public string BlockHash { get; init; }
Property Value
| Type | Description |
|---|---|
| string |
Transfers
The block's transfers
Declaration
[JsonPropertyName("transfers")]
[JsonConverter(typeof(GenericListConverter<Transfer, Transfer.TransferConverter>))]
public List<Transfer> Transfers { get; init; }
Property Value
| Type | Description |
|---|---|
| List<Transfer> |