Get protocol configuration for a specific epoch
Returns the information related to the protocol configuration at a given epoch:
- epoch
- protocol parameters
- cardano transactions signing configuration
- enabled signed entity types
get/protocol-configuration/{epoch}
Path parameters
epochinteger required
Example:419
Epoch of the protocol configuration to list
Response
protocol configuration found
Example response
{
"protocol_parameters": {
"k": 9,
"m": 77,
"phi_f": 0.5
},
"cardano_transactions_signing_config": {
"security_parameter": 100,
"step": 10
},
"available_signed_entity_types": [
"MithrilStakeDistribution",
"CardanoDatabase",
"CardanoTransactions",
"CardanoBlocksTransactions"
]
}