Casper.Network.SDK
Show / Hide Table of Contents

Class MinimalBlockInfo

Minimal info of a Block.

Inheritance
object
MinimalBlockInfo
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Casper.Network.SDK.Types
Assembly: Casper.Network.SDK.dll
Syntax
public class MinimalBlockInfo

Properties

| Edit this page View Source

EraId

The block era id.

Declaration
[JsonPropertyName("era_id")]
public ulong EraId { get; init; }
Property Value
Type Description
ulong
| Edit this page View Source

Hash

Block hash

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

Height

Height of the block

Declaration
[JsonPropertyName("height")]
public ulong Height { get; init; }
Property Value
Type Description
ulong
| Edit this page View Source

PublicKey

Validator node's public key

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

StateRootHash

The state root hash.

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

Timestamp

The block timestamp.

Declaration
[JsonPropertyName("timestamp")]
public string Timestamp { get; init; }
Property Value
Type Description
string
  • Edit this page
  • View Source
In this article
Back to top Maintained by MAKE Technology LLC