Casper.Network.SDK
Show / Hide Table of Contents

Class GetBlockResult

Result for "chain_get_block" RPC response.

Inheritance
object
RpcResult
GetBlockResult
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
[JsonConverter(typeof(GetBlockResult.GetBlockResultConverter))]
public class GetBlockResult : RpcResult

Properties

| Edit this page View Source

Block

The block.

Declaration
[JsonPropertyName("block")]
[JsonConverter(typeof(Block.BlockConverter))]
public Block Block { get; init; }
Property Value
Type Description
Block
| Edit this page View Source

Proofs

The proofs of the block, i.e. a collection of validators' signatures of the block hash.

Declaration
[JsonPropertyName("proofs")]
public List<BlockProof> Proofs { get; init; }
Property Value
Type Description
List<BlockProof>
  • Edit this page
  • View Source
In this article
Back to top Maintained by MAKE Technology LLC