Tezos · Schema
PeriodInfo
TezosBlockchainTzKTBaking BadCryptocurrencySmart ContractsNFTTokensDelegationsStakingGovernanceFA1.2FA2WebSocket
Properties
| Name | Type | Description |
|---|---|---|
| index | integer | Voting period index, starting from zero |
| epoch | integer | Voting epoch index, starting from zero |
| kind | string | Kind of the voting period `proposal` - delegates can submit protocol amendment proposals using the proposal operation `exploration` - bakers (delegates) may vote on the top-ranked proposal from the pr |
| firstLevel | integer | The height of the block in which the period starts |
| lastLevel | integer | The height of the block in which the period ends |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "PeriodInfo",
"type": "object",
"additionalProperties": false,
"properties": {
"index": {
"type": "integer",
"description": "Voting period index, starting from zero",
"format": "int32"
},
"epoch": {
"type": "integer",
"description": "Voting epoch index, starting from zero",
"format": "int32"
},
"kind": {
"type": "string",
"description": "Kind of the voting period\n`proposal` - delegates can submit protocol amendment proposals using the proposal operation\n`exploration` - bakers (delegates) may vote on the top-ranked proposal from the previous Proposal Period using the ballot operation\n`testing` - If the proposal is approved in the Exploration Period, the testing (or 'cooldown') period begins and bakers start testing the new protocol\n`promotion` - delegates can cast one vote to promote or not the tested proposal using the ballot operation\n`adoption` - after the proposal is actually accepted, the ecosystem has some time to prepare to the upgrade"
},
"firstLevel": {
"type": "integer",
"description": "The height of the block in which the period starts",
"format": "int32"
},
"lastLevel": {
"type": "integer",
"description": "The height of the block in which the period ends",
"format": "int32"
}
}
}