Casper.Network.SDK
Show / Hide Table of Contents

Class GetBlockTransfersResult

Result for "chain_get_block_transfers" RPC response.

Inheritance
object
RpcResult
GetBlockTransfersResult
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 GetBlockTransfersResult : RpcResult

Properties

| Edit this page View Source

BlockHash

The block hash

Declaration
[JsonPropertyName("block_hash")]
public string BlockHash { get; init; }
Property Value
Type Description
string
| Edit this page View Source

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