Module Tezos_raw_protocol_015_PtLimaPt.Constants_parametric_repr

type dal = {
  1. feature_enable : bool;
  2. number_of_slots : int;
  3. number_of_shards : int;
  4. endorsement_lag : int;
  5. availability_threshold : int;
  6. slot_size : int;
  7. redundancy_factor : int;
  8. page_size : int;
}
type tx_rollup = {
  1. enable : bool;
  2. origination_size : int;
  3. hard_size_limit_per_inbox : int;
  4. hard_size_limit_per_message : int;
  5. commitment_bond : Tez_repr.t;
  6. finality_period : int;
  7. withdraw_period : int;
  8. max_inboxes_count : int;
  9. max_messages_per_inbox : int;
  10. max_commitments_count : int;
  11. cost_per_byte_ema_factor : int;
  12. max_ticket_payload_size : int;
  13. max_withdrawals_per_batch : int;
  14. rejection_max_proof_size : int;
  15. sunset_level : int32;
}
type sc_rollup = {
  1. enable : bool;
  2. origination_size : int;
  3. challenge_window_in_blocks : int;
  4. max_number_of_messages_per_commitment_period : int;
  5. stake_amount : Tez_repr.t;
  6. commitment_period_in_blocks : int;
  7. max_lookahead_in_blocks : int32;
  8. max_active_outbox_levels : int32;
  9. max_outbox_messages_per_level : int;
  10. number_of_sections_in_dissection : int;
  11. timeout_period_in_blocks : int;
  12. max_number_of_stored_cemented_commitments : int;
}
type zk_rollup = {
  1. enable : bool;
  2. origination_size : int;
  3. min_pending_to_process : int;
}
type t = {
  1. preserved_cycles : int;
  2. blocks_per_cycle : int32;
  3. blocks_per_commitment : int32;
  4. nonce_revelation_threshold : int32;
  5. blocks_per_stake_snapshot : int32;
  6. cycles_per_voting_period : int32;
  7. hard_gas_limit_per_operation : Gas_limit_repr.Arith.integral;
  8. hard_gas_limit_per_block : Gas_limit_repr.Arith.integral;
  9. proof_of_work_threshold : int64;
  10. minimal_stake : Tez_repr.t;
  11. vdf_difficulty : int64;
  12. seed_nonce_revelation_tip : Tez_repr.t;
  13. origination_size : int;
  14. baking_reward_fixed_portion : Tez_repr.t;
  15. baking_reward_bonus_per_slot : Tez_repr.t;
  16. endorsing_reward_per_slot : Tez_repr.t;
  17. cost_per_byte : Tez_repr.t;
  18. hard_storage_limit_per_operation : Tezos_protocol_environment_015_PtLimaPt.Z.t;
  19. quorum_min : int32;
  20. quorum_max : int32;
  21. min_proposal_quorum : int32;
  22. liquidity_baking_subsidy : Tez_repr.t;
  23. liquidity_baking_toggle_ema_threshold : int32;
  24. max_operations_time_to_live : int;
  25. minimal_block_delay : Period_repr.t;
  26. delay_increment_per_round : Period_repr.t;
  27. minimal_participation_ratio : Ratio_repr.t;
  28. consensus_committee_size : int;
  29. consensus_threshold : int;
  30. max_slashing_period : int;
  31. frozen_deposits_percentage : int;
  32. double_baking_punishment : Tez_repr.t;
  33. ratio_of_frozen_deposits_slashed_per_double_endorsement : Ratio_repr.t;
  34. testnet_dictator : Tezos_protocol_environment_015_PtLimaPt.Signature.Public_key_hash.t option;
  35. initial_seed : State_hash.t option;
  36. cache_script_size : int;
  37. cache_stake_distribution_cycles : int;
  38. cache_sampler_state_cycles : int;
  39. tx_rollup : tx_rollup;
  40. dal : dal;
  41. sc_rollup : sc_rollup;
  42. zk_rollup : zk_rollup;
}