Cardano · Schema

Signerregistrationsmessage

This message holds the registered signers at a given epoch.

BlockchainCryptocurrencyProof-of-StakeSmart ContractsWeb3

Properties

Name Type Description
registered_at object
signing_at object
registrations array
View JSON Schema on GitHub

JSON Schema

SignerRegistrationsMessage.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://cardano.blockfrost.io/schema/SignerRegistrationsMessage",
  "title": "Signerregistrationsmessage",
  "description": "This message holds the registered signers at a given epoch.\n",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "registered_at": {
      "$ref": "#/components/schemas/Epoch"
    },
    "signing_at": {
      "$ref": "#/components/schemas/Epoch"
    },
    "registrations": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/SignerRegistrationsListItemMessage"
      }
    }
  },
  "example": {
    "registered_at": 420,
    "signing_at": 422,
    "registrations": [
      {
        "party_id": "1234567890",
        "stake": 1234
      }
    ]
  }
}