Casper.Network.SDK
Show / Hide Table of Contents

Class EraReport

Equivocation, reward and validator inactivity information.

Inheritance
object
EraReport
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 EraReport

Properties

| Edit this page View Source

Equivocators

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>
| Edit this page View Source

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>
| Edit this page View Source

Rewards

Rewards for finalization of earlier blocks.

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