Casper.Network.SDK
Show / Hide Table of Contents

Class FinalitySignatureV1

A validator's signature of a block, confirming it is finalized. Produced in Casper v1.x

Inheritance
object
FinalitySignatureV1
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.SSE
Assembly: Casper.Network.SDK.dll
Syntax
public class FinalitySignatureV1

Properties

| Edit this page View Source

BlockHash

The block hash

Declaration
[JsonPropertyName("block_hash")]
public string BlockHash { get; init; }
Property Value
Type Description
string
| Edit this page View Source

EraId

The block era id.

Declaration
[JsonPropertyName("era_id")]
public ulong EraId { get; init; }
Property Value
Type Description
ulong
| Edit this page View Source

PublicKey

Validator public key

Declaration
[JsonPropertyName("public_key")]
[JsonConverter(typeof(PublicKey.PublicKeyConverter))]
public PublicKey PublicKey { get; init; }
Property Value
Type Description
PublicKey
| Edit this page View Source

Signature

Validator signature

Declaration
[JsonPropertyName("signature")]
[JsonConverter(typeof(Signature.SignatureConverter))]
public Signature Signature { get; init; }
Property Value
Type Description
Signature
  • Edit this page
  • View Source
In this article
Back to top Maintained by MAKE Technology LLC