Cardano · Schema

Mithrilstakedistributionmessage

This message represents a Mithril stake distribution.

BlockchainCryptocurrencyProof-of-StakeSmart ContractsWeb3

Properties

Name Type Description
epoch object
hash string Hash of the Mithril stake distribution
certificate_hash string Hash of the associated certificate
signers array The list of the signers with their stakes and verification keys
created_at string Date and time of the entity creation
protocol_parameters object
View JSON Schema on GitHub

JSON Schema

MithrilStakeDistributionMessage.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://cardano.blockfrost.io/schema/MithrilStakeDistributionMessage",
  "title": "Mithrilstakedistributionmessage",
  "description": "This message represents a Mithril stake distribution.",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "epoch",
    "hash",
    "signers",
    "created_at",
    "protocol_parameters"
  ],
  "properties": {
    "epoch": {
      "$ref": "#/components/schemas/Epoch"
    },
    "hash": {
      "description": "Hash of the Mithril stake distribution",
      "type": "string",
      "format": "bytes"
    },
    "certificate_hash": {
      "description": "Hash of the associated certificate",
      "type": "string",
      "format": "bytes"
    },
    "signers": {
      "description": "The list of the signers with their stakes and verification keys",
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/SignerWithStake"
      }
    },
    "created_at": {
      "description": "Date and time of the entity creation",
      "type": "string",
      "format": "date-time,"
    },
    "protocol_parameters": {
      "$ref": "#/components/schemas/ProtocolParameters"
    }
  },
  "example": {
    "epoch": 123,
    "hash": "6367ee65d0d1272e6e70736a1ea2cae34015874517f6328364f6b73930966732",
    "certificate_hash": "7905e83ab5d7bc082c1bbc3033bfd19c539078830d19080d1f241c70aa532572",
    "signers": [
      {
        "party_id": "1234567890",
        "verification_key": "7b12766b223a5c342b39302c32392c39392c39382c3131313138342c32252c32352c31353",
        "verification_key_signature": "7b5473693727369676d61223a7b227369676d6d61223a7b261223a9b227369676d61213a",
        "operational_certificate": "5b73136372c38302c37342c3136362c313535b5b3232352c3230332c3235352c313030262c38322c39382c32c39332c3138342c3135362c3136362c32312c3131312c3232312c36332c3137372c3232332c3232332c31392c3537",
        "kes_period": 123,
        "stake": 1234
      },
      {
        "party_id": "2345678900",
        "verification_key": "7b392c39392c13131312766b223a5c39382c313342b39302c252c32352c31353328342c32",
        "verification_key_signature": "2c33302c3133312c3138322c34362c3133352c372c3139302c3235322c35352c32322c39",
        "operational_certificate": "3231342c3137372c37312c3232352c3233332c3135335d2c322c3139322c5b3133352c34312c3230332c3131332c3c33352c3234302c3230392c312c32392c3233332c33342c3138382c3134312c3130342c3234382c3231392c3",
        "kes_period": 456,
        "stake": 2345
      }
    ],
    "created_at": "2022-06-14T10:52:31Z",
    "protocol_parameters": {
      "k": 5,
      "m": 100,
      "phi_f": 0.65
    }
  }
}