Skip to content

Latest commit

 

History

History
85 lines (82 loc) · 13 KB

Block.md

File metadata and controls

85 lines (82 loc) · 13 KB

# Block

Properties

Name Type Description Notes
cycle int Index of the cycle [optional]
level int Height of the block from the genesis [optional]
hash string Block hash [optional]
timestamp \DateTime Datetime at which the block is claimed to have been created (ISO 8601, e.g. `2020-02-20T02:40:57Z`) [optional]
proto int Protocol code, representing a number of protocol changes since genesis (mod 256, but `-1` for the genesis block) [optional]
payload_round int Round at which the block payload was proposed [optional]
block_round int Round at which the block was produced [optional]
validations int Number of endorsements (slots), included into the block [optional]
deposit int Security deposit frozen on the baker's account for producing the block (micro tez) [optional]
reward_delegated int Portion of fixed reward, corresponding to delegated stake, paid to payload proposer's liquid balance (micro tez) (it is not frozen and can be spent immediately). [optional]
reward_staked_own int Portion of fixed reward, corresponding to baker's own stake, paid to payload proposer's own staked balance (micro tez) (it is frozen and belongs to the baker). [optional]
reward_staked_edge int Portion of fixed reward, corresponding to baker's edge from external stake, paid to payload proposer's own staked balance (micro tez) (it is frozen and belongs to the baker). [optional]
reward_staked_shared int Portion of fixed reward, corresponding to baker's external stake, paid to payload proposer's external staked balance (micro tez) (it is frozen and belongs to baker's stakers). [optional]
bonus_delegated int Portion of bonus reward, corresponding to delegated stake, paid to block producer's liquid balance (micro tez) (it is not frozen and can be spent immediately). [optional]
bonus_staked_own int Portion of bonus reward, corresponding to baker's own stake, paid to block producer's own staked balance (micro tez) (it is frozen and belongs to the baker). [optional]
bonus_staked_edge int Portion of bonus reward, corresponding to baker's edge from external stake, paid to block producer's own staked balance (micro tez) (it is frozen and belongs to the baker). [optional]
bonus_staked_shared int Portion of fixed reward, corresponding to baker's external stake, paid to block producer's external staked balance (micro tez) (it is frozen and belongs to baker's stakers). [optional]
fees int Total fee gathered from operations, included into the block [optional]
nonce_revealed bool Status of the seed nonce revelation `true` - seed nonce revealed `false` - there's no `seed_nonce_hash` in the block or seed nonce revelation has missed [optional]
proposer \Bzzhh\Tzkt\Model\BlockProposer [optional]
producer \Bzzhh\Tzkt\Model\BlockProducer [optional]
software \Bzzhh\Tzkt\Model\BlockSoftware [optional]
lb_toggle bool Liquidity baking toggle (`true` if enabled, `false` if disabled, or `null` if the baker says 'pass') [optional]
lb_toggle_ema int Liquidity baking escape EMA value with precision of 1000000 for integer computation [optional]
ai_toggle bool Adaptive issuance toggle (`true` if enabled, `false` if disabled, or `null` if the baker says 'pass') [optional]
ai_toggle_ema int Adaptive issuance EMA value with precision of 1000000 for integer computation [optional]
endorsements \Bzzhh\Tzkt\Model\EndorsementOperation[] List of endorsement (is operation, which specifies the head of the chain as seen by the endorser of a given slot) operations, included in the block [optional]
preendorsements \Bzzhh\Tzkt\Model\PreendorsementOperation[] List of preendorsement operations, included in the block [optional]
proposals \Bzzhh\Tzkt\Model\ProposalOperation[] List of proposal (is used by bakers (delegates) to submit and/or upvote proposals to amend the protocol) operations, included in the block [optional]
ballots \Bzzhh\Tzkt\Model\BallotOperation[] List of ballot (is used to vote for a proposal in a given voting cycle) operations, included in the block [optional]
activations \Bzzhh\Tzkt\Model\ActivationOperation[] List of activation (is used to activate accounts that were recommended allocations of tezos tokens for donations to the Tezos Foundation’s fundraiser) operations, included in the block [optional]
double_baking \Bzzhh\Tzkt\Model\DoubleBakingOperation[] List of double baking evidence (is used by bakers to provide evidence of double baking (baking two different blocks at the same height) by a baker) operations, included in the block [optional]
double_endorsing \Bzzhh\Tzkt\Model\DoubleEndorsingOperation[] List of double endorsement evidence (is used by bakers to provide evidence of double endorsement (endorsing two different blocks at the same block height) by a baker) operations, included in the block [optional]
double_preendorsing \Bzzhh\Tzkt\Model\DoublePreendorsingOperation[] List of double preendorsement evidence operations, included in the block [optional]
nonce_revelations \Bzzhh\Tzkt\Model\NonceRevelationOperation[] List of nonce revelation (used by the blockchain to create randomness) operations, included in the block [optional]
vdf_revelations \Bzzhh\Tzkt\Model\VdfRevelationOperation[] List of vdf revelation (used by the blockchain to create randomness) operations, included in the block [optional]
delegations \Bzzhh\Tzkt\Model\DelegationOperation[] List of delegation (is used to delegate funds to a delegate (an implicit account registered as a baker)) operations, included in the block [optional]
originations \Bzzhh\Tzkt\Model\OriginationOperation[] List of origination (deployment / contract creation ) operations, included in the block [optional]
transactions \Bzzhh\Tzkt\Model\TransactionOperation[] List of transaction (is a standard operation used to transfer tezos tokens to an account) operations, included in the block [optional]
reveals \Bzzhh\Tzkt\Model\RevealOperation[] List of reveal (is used to reveal the public key associated with an account) operations, included in the block [optional]
register_constants \Bzzhh\Tzkt\Model\RegisterConstantOperation[] List of register global constant operations, included in the block [optional]
set_deposits_limits \Bzzhh\Tzkt\Model\SetDepositsLimitOperation[] List of set deposits limit operations, included in the block [optional]
transfer_ticket_ops \Bzzhh\Tzkt\Model\TransferTicketOperation[] List of transfer ticket operations, included in the block [optional]
tx_rollup_commit_ops \Bzzhh\Tzkt\Model\TxRollupCommitOperation[] List of tx rollup commit operations, included in the block [optional]
tx_rollup_dispatch_tickets_ops \Bzzhh\Tzkt\Model\TxRollupDispatchTicketsOperation[] List of tx rollup dispatch tickets operations, included in the block [optional]
tx_rollup_finalize_commitment_ops \Bzzhh\Tzkt\Model\TxRollupFinalizeCommitmentOperation[] List of tx rollup finalize commitment operations, included in the block [optional]
tx_rollup_origination_ops \Bzzhh\Tzkt\Model\TxRollupOriginationOperation[] List of tx rollup origination operations, included in the block [optional]
tx_rollup_rejection_ops \Bzzhh\Tzkt\Model\TxRollupRejectionOperation[] List of tx rollup rejection operations, included in the block [optional]
tx_rollup_remove_commitment_ops \Bzzhh\Tzkt\Model\TxRollupRemoveCommitmentOperation[] List of tx rollup remove commitment operations, included in the block [optional]
tx_rollup_return_bond_ops \Bzzhh\Tzkt\Model\TxRollupReturnBondOperation[] List of tx rollup return bond operations, included in the block [optional]
tx_rollup_submit_batch_ops \Bzzhh\Tzkt\Model\TxRollupSubmitBatchOperation[] List of tx rollup submit batch operations, included in the block [optional]
increase_paid_storage_ops \Bzzhh\Tzkt\Model\IncreasePaidStorageOperation[] List of increase paid storage operations, included in the block [optional]
update_consensus_key_ops \Bzzhh\Tzkt\Model\UpdateConsensusKeyOperation[] List of update consensus key operations, included in the block [optional]
drain_delegate_ops \Bzzhh\Tzkt\Model\DrainDelegateOperation[] List of drain delegate operations, included in the block [optional]
sr_add_messages_ops \Bzzhh\Tzkt\Model\SmartRollupAddMessagesOperation[] List of smart rollup add messages operations, included in the block [optional]
sr_cement_ops \Bzzhh\Tzkt\Model\SmartRollupCementOperation[] List of smart rollup cement operations, included in the block [optional]
sr_execute_ops \Bzzhh\Tzkt\Model\SmartRollupExecuteOperation[] List of smart rollup execute operations, included in the block [optional]
sr_originate_ops \Bzzhh\Tzkt\Model\SmartRollupOriginateOperation[] List of smart rollup originate operations, included in the block [optional]
sr_publish_ops \Bzzhh\Tzkt\Model\SmartRollupPublishOperation[] List of smart rollup publish operations, included in the block [optional]
sr_recover_bond_ops \Bzzhh\Tzkt\Model\SmartRollupRecoverBondOperation[] List of smart rollup recover bond operations, included in the block [optional]
sr_refute_ops \Bzzhh\Tzkt\Model\SmartRollupRefuteOperation[] List of smart rollup refute operations, included in the block [optional]
staking_ops \Bzzhh\Tzkt\Model\StakingOperation[] List of staking operations, included in the block [optional]
set_delegate_parameters_ops \Bzzhh\Tzkt\Model\SetDelegateParametersOperation[] List of set delegate parameters operations, included in the block [optional]
dal_publish_commitment_ops \Bzzhh\Tzkt\Model\DalPublishCommitmentOperation[] List of DAL publish commitment operations, included in the block [optional]
migrations \Bzzhh\Tzkt\Model\MigrationOperation[] List of migration operations, implicitly applied at the end of the block [optional]
revelation_penalties \Bzzhh\Tzkt\Model\RevelationPenaltyOperation[] List of revelation penalty operations, implicitly applied at the end of the block [optional]
endorsing_rewards \Bzzhh\Tzkt\Model\EndorsingRewardOperation[] List of endorsing rewards, implicitly applied at the end of the block [optional]
autostaking_ops \Bzzhh\Tzkt\Model\AutostakingOperation[] List of autostaking operations, implicitly applied at the end of the block [optional]
quote \Bzzhh\Tzkt\Model\BlockQuote [optional]
reward_liquid int [DEPRECATED] [optional]
bonus_liquid int [DEPRECATED] [optional]
reward int [DEPRECATED] [optional]
bonus int [DEPRECATED] [optional]
priority int [DEPRECATED] [optional]
baker \Bzzhh\Tzkt\Model\BlockBaker [optional]
lb_escape_vote bool [DEPRECATED] [optional]
lb_escape_ema int [DEPRECATED] [optional]

[Back to Model list] [Back to API list] [Back to README]