Cardano · Schema

Signerstickersmessage

represents the list of signers known by the aggregator

BlockchainCryptocurrencyProof-of-StakeSmart ContractsWeb3

Properties

Name Type Description
network string Cardano network of the aggregator
signers object Known signers
View JSON Schema on GitHub

JSON Schema

SignersTickersMessage.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://cardano.blockfrost.io/schema/SignersTickersMessage",
  "title": "Signerstickersmessage",
  "description": "represents the list of signers known by the aggregator",
  "type": "object",
  "required": [
    "network",
    "signers"
  ],
  "properties": {
    "network": {
      "description": "Cardano network of the aggregator",
      "type": "string",
      "format": "bytes"
    },
    "signers": {
      "description": "Known signers",
      "items": {
        "$ref": "#/components/schemas/SignerTickerListItemMessage"
      }
    }
  },
  "example": {
    "network": "mainnet",
    "signers": [
      {
        "party_id": "pool1234567890",
        "pool_ticker": "[Pool_Name]",
        "has_registered": true
      },
      {
        "party_id": "pool0987654321",
        "has_registered": false
      }
    ]
  }
}