Class AuctionState
Data structure summarizing auction contract data.
Inherited Members
Namespace: Casper.Network.SDK.Types
Assembly: Casper.Network.SDK.dll
Syntax
public class AuctionState
Properties
| Edit this page View SourceBids
All bids contained within a vector.
Declaration
[JsonPropertyName("bids")]
[JsonConverter(typeof(BidKindsListConverter))]
public List<BidKind> Bids { get; init; }
Property Value
| Type | Description |
|---|---|
| List<BidKind> |
BlockHeight
Block height.
Declaration
[JsonPropertyName("block_height")]
public ulong BlockHeight { get; init; }
Property Value
| Type | Description |
|---|---|
| ulong |
EraValidators
Era validators.
Declaration
[JsonPropertyName("era_validators")]
public List<EraValidators> EraValidators { get; init; }
Property Value
| Type | Description |
|---|---|
| List<EraValidators> |
StateRootHash
Global state hash.
Declaration
[JsonPropertyName("state_root_hash")]
public string StateRootHash { get; init; }
Property Value
| Type | Description |
|---|---|
| string |