Cardano · Schema

Epochsettingsmessage

Epoch settings

BlockchainCryptocurrencyProof-of-StakeSmart ContractsWeb3

Properties

Name Type Description
epoch object
protocol object
next_protocol object
View JSON Schema on GitHub

JSON Schema

EpochSettingsMessage.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://cardano.blockfrost.io/schema/EpochSettingsMessage",
  "title": "Epochsettingsmessage",
  "description": "Epoch settings",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "epoch",
    "protocol",
    "next_protocol"
  ],
  "properties": {
    "epoch": {
      "$ref": "#/components/schemas/Epoch"
    },
    "protocol": {
      "$ref": "#/components/schemas/ProtocolParameters"
    },
    "next_protocol": {
      "$ref": "#/components/schemas/ProtocolParameters"
    }
  },
  "example": {
    "epoch": 329,
    "protocol": {
      "k": 857,
      "m": 6172,
      "phi_f": 0.2
    },
    "next_protocol": {
      "k": 2422,
      "m": 20973,
      "phi_f": 0.2
    }
  }
}