Class MinimalBlockInfo
Minimal info of a Block.
Inherited Members
Namespace: Casper.Network.SDK.Types
Assembly: Casper.Network.SDK.dll
Syntax
public class MinimalBlockInfo
Properties
| Edit this page View SourceEraId
The block era id.
Declaration
[JsonPropertyName("era_id")]
public ulong EraId { get; init; }
Property Value
| Type | Description |
|---|---|
| ulong |
Hash
Block hash
Declaration
[JsonPropertyName("hash")]
public string Hash { get; init; }
Property Value
| Type | Description |
|---|---|
| string |
Height
Height of the block
Declaration
[JsonPropertyName("height")]
public ulong Height { get; init; }
Property Value
| Type | Description |
|---|---|
| ulong |
PublicKey
Validator node's public key
Declaration
[JsonConverter(typeof(PublicKey.PublicKeyConverter))]
[JsonPropertyName("creator")]
public PublicKey PublicKey { get; init; }
Property Value
| Type | Description |
|---|---|
| PublicKey |
StateRootHash
The state root hash.
Declaration
[JsonPropertyName("state_root_hash")]
public string StateRootHash { get; init; }
Property Value
| Type | Description |
|---|---|
| string |
Timestamp
The block timestamp.
Declaration
[JsonPropertyName("timestamp")]
public string Timestamp { get; init; }
Property Value
| Type | Description |
|---|---|
| string |