Class EraReport
Equivocation, reward and validator inactivity information.
Inherited Members
Namespace: Casper.Network.SDK.Types
Assembly: Casper.Network.SDK.dll
Syntax
public class EraReport
Properties
| Edit this page View SourceEquivocators
The set of equivocators.
Declaration
[JsonPropertyName("equivocators")]
[JsonConverter(typeof(GenericListConverter<PublicKey, PublicKey.PublicKeyConverter>))]
public List<PublicKey> Equivocators { get; init; }
Property Value
| Type | Description |
|---|---|
| List<PublicKey> |
InactiveValidators
Validators that haven't produced any unit during the era.
Declaration
[JsonPropertyName("inactive_validators")]
[JsonConverter(typeof(GenericListConverter<PublicKey, PublicKey.PublicKeyConverter>))]
public List<PublicKey> InactiveValidators { get; init; }
Property Value
| Type | Description |
|---|---|
| List<PublicKey> |
Rewards
Rewards for finalization of earlier blocks.
Declaration
[JsonPropertyName("rewards")]
public List<Reward> Rewards { get; init; }
Property Value
| Type | Description |
|---|---|
| List<Reward> |