package tezos-protocol-013-PtJakart

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Alpha_context.ConstantsSource

Sourcetype fixed

Fixed constants

Sourceval proof_of_work_nonce_size : int
Sourceval nonce_length : int
Sourceval max_anon_ops_per_block : int
Sourceval max_operation_data_length : int
Sourceval max_proposals_per_delegate : int
Sourceval michelson_maximum_type_size : int
Sourcetype ratio = {
  1. numerator : int;
  2. denominator : int;
}
Sourcetype parametric = {
  1. preserved_cycles : int;
  2. blocks_per_cycle : int32;
  3. blocks_per_commitment : int32;
  4. blocks_per_stake_snapshot : int32;
  5. cycles_per_voting_period : int32;
  6. hard_gas_limit_per_operation : Gas.Arith.integral;
  7. hard_gas_limit_per_block : Gas.Arith.integral;
  8. proof_of_work_threshold : int64;
  9. tokens_per_roll : Tez.t;
  10. seed_nonce_revelation_tip : Tez.t;
  11. origination_size : int;
  12. baking_reward_fixed_portion : Tez.t;
  13. baking_reward_bonus_per_slot : Tez.t;
  14. endorsing_reward_per_slot : Tez.t;
  15. cost_per_byte : Tez.t;
  16. hard_storage_limit_per_operation : Tezos_protocol_environment_013_PtJakart.Z.t;
  17. quorum_min : int32;
  18. quorum_max : int32;
  19. min_proposal_quorum : int32;
  20. liquidity_baking_subsidy : Tez.t;
  21. liquidity_baking_sunset_level : int32;
  22. liquidity_baking_toggle_ema_threshold : int32;
  23. max_operations_time_to_live : int;
  24. minimal_block_delay : Period.t;
  25. delay_increment_per_round : Period.t;
  26. minimal_participation_ratio : ratio;
  27. consensus_committee_size : int;
  28. consensus_threshold : int;
  29. max_slashing_period : int;
  30. frozen_deposits_percentage : int;
  31. double_baking_punishment : Tez.t;
  32. ratio_of_frozen_deposits_slashed_per_double_endorsement : ratio;
  33. initial_seed : State_hash.t option;
  34. cache_script_size : int;
  35. cache_stake_distribution_cycles : int;
  36. cache_sampler_state_cycles : int;
  37. tx_rollup_enable : bool;
  38. tx_rollup_origination_size : int;
  39. tx_rollup_hard_size_limit_per_inbox : int;
  40. tx_rollup_hard_size_limit_per_message : int;
  41. tx_rollup_commitment_bond : Tez.t;
  42. tx_rollup_finality_period : int;
  43. tx_rollup_withdraw_period : int;
  44. tx_rollup_max_inboxes_count : int;
  45. tx_rollup_max_messages_per_inbox : int;
  46. tx_rollup_max_commitments_count : int;
  47. tx_rollup_cost_per_byte_ema_factor : int;
  48. tx_rollup_max_ticket_payload_size : int;
  49. tx_rollup_max_withdrawals_per_batch : int;
  50. tx_rollup_rejection_max_proof_size : int;
  51. tx_rollup_sunset_level : int32;
  52. sc_rollup_enable : bool;
  53. sc_rollup_origination_size : int;
  54. sc_rollup_challenge_window_in_blocks : int;
  55. sc_rollup_max_available_messages : int;
}

Constants parameterized by context

Sourcemodule Generated : sig ... end
Sourceval parametric : context -> parametric
Sourceval preserved_cycles : context -> int
Sourceval blocks_per_cycle : context -> int32
Sourceval blocks_per_commitment : context -> int32
Sourceval blocks_per_stake_snapshot : context -> int32
Sourceval cycles_per_voting_period : context -> int32
Sourceval hard_gas_limit_per_operation : context -> Gas.Arith.integral
Sourceval hard_gas_limit_per_block : context -> Gas.Arith.integral
Sourceval cost_per_byte : context -> Tez.t
Sourceval hard_storage_limit_per_operation : context -> Tezos_protocol_environment_013_PtJakart.Z.t
Sourceval proof_of_work_threshold : context -> int64
Sourceval tokens_per_roll : context -> Tez.t
Sourceval seed_nonce_revelation_tip : context -> Tez.t
Sourceval origination_size : context -> int
Sourceval baking_reward_fixed_portion : context -> Tez.t
Sourceval baking_reward_bonus_per_slot : context -> Tez.t
Sourceval endorsing_reward_per_slot : context -> Tez.t
Sourceval quorum_min : context -> int32
Sourceval quorum_max : context -> int32
Sourceval min_proposal_quorum : context -> int32
Sourceval liquidity_baking_subsidy : context -> Tez.t
Sourceval liquidity_baking_sunset_level : context -> int32
Sourceval liquidity_baking_toggle_ema_threshold : context -> int32
Sourceval minimal_block_delay : context -> Period.t
Sourceval delay_increment_per_round : context -> Period.t
Sourceval round_durations : context -> Round.round_durations
Sourceval consensus_committee_size : context -> int
Sourceval consensus_threshold : context -> int
Sourceval minimal_participation_ratio : context -> ratio
Sourceval max_slashing_period : context -> int
Sourceval frozen_deposits_percentage : context -> int
Sourceval double_baking_punishment : context -> Tez.t
Sourceval ratio_of_frozen_deposits_slashed_per_double_endorsement : context -> ratio
Sourceval tx_rollup_enable : context -> bool
Sourceval tx_rollup_origination_size : context -> int
Sourceval tx_rollup_hard_size_limit_per_inbox : context -> int
Sourceval tx_rollup_hard_size_limit_per_message : context -> int
Sourceval tx_rollup_max_withdrawals_per_batch : context -> int
Sourceval tx_rollup_commitment_bond : context -> Tez.t
Sourceval tx_rollup_finality_period : context -> int
Sourceval tx_rollup_max_inboxes_count : context -> int
Sourceval tx_rollup_max_messages_per_inbox : context -> int
Sourceval tx_rollup_max_commitments_count : context -> int
Sourceval tx_rollup_max_ticket_payload_size : context -> int
Sourceval tx_rollup_rejection_max_proof_size : context -> int
Sourceval tx_rollup_sunset_level : context -> int32
Sourceval sc_rollup_enable : context -> bool
Sourceval sc_rollup_origination_size : context -> int
Sourceval sc_rollup_max_available_messages : context -> int
Sourcetype t = private {
  1. fixed : fixed;
  2. parametric : parametric;
}

All constants: fixed and parametric

Sourceval all : context -> t
OCaml

Innovation. Community. Security.