Skip to content

Latest commit

 

History

History
39 lines (33 loc) · 649 Bytes

protocol-parameters.md

File metadata and controls

39 lines (33 loc) · 649 Bytes

Protocol Parameter Server Message Partial

This top level message key is added by the server as part of any synchronization process for every epoch boundary transition. Protocol parameters sent as a raw cbor hex.

Note

It is specific to the Cardano blockchain.

Schema

{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "epoch": {
      "type": "integer"
    },
    "parameters": {
      "type": "string"
    }
  },
  "required": [
    "epoch",
    "parameters"
  ]
}

Example

{
  "protocolParameters": {
    "epoch": 225,
    "parameters": "cbor hex"
  }
}