Class BlockProof
A validator's public key paired with a corresponding signature of a given block hash.
Inherited Members
Namespace: Casper.Network.SDK.Types
Assembly: Casper.Network.SDK.dll
Syntax
public class BlockProof
Properties
| Edit this page View SourcePublicKey
The validator's public key.
Declaration
[JsonPropertyName("public_key")]
[JsonConverter(typeof(PublicKey.PublicKeyConverter))]
public PublicKey PublicKey { get; init; }
Property Value
| Type | Description |
|---|---|
| PublicKey |
Signature
The validator's signature.
Declaration
[JsonPropertyName("signature")]
[JsonConverter(typeof(Signature.SignatureConverter))]
public Signature Signature { get; init; }
Property Value
| Type | Description |
|---|---|
| Signature |