Class Bridge
A bridge record pointing to a new ValidatorBid after the public key was changed.
Inherited Members
Namespace: Casper.Network.SDK.Types
Assembly: Casper.Network.SDK.dll
Syntax
public class Bridge
Properties
| Edit this page View SourceEraId
Era when bridge record was created.
Declaration
[JsonPropertyName("era_id")]
public ulong EraId { get; init; }
Property Value
| Type | Description |
|---|---|
| ulong |
NewValidator
New validator public key associated with the bid.
Declaration
[JsonPropertyName("new_validator_public_key")]
[JsonConverter(typeof(PublicKey.PublicKeyConverter))]
public PublicKey NewValidator { get; init; }
Property Value
| Type | Description |
|---|---|
| PublicKey |
OldValidator
Previous validator public key associated with the bid.
Declaration
[JsonPropertyName("old_validator_public_key")]
[JsonConverter(typeof(PublicKey.PublicKeyConverter))]
public PublicKey OldValidator { get; init; }
Property Value
| Type | Description |
|---|---|
| PublicKey |