package tezos-protocol-alpha

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type dal = {
  1. feature_enable : bool;
  2. number_of_slots : int;
  3. attestation_lag : int;
  4. attestation_threshold : int;
  5. blocks_per_epoch : int32;
  6. cryptobox_parameters : Tezos_protocol_environment_alpha.Dal.parameters;
}
type sc_rollup_reveal_hashing_schemes = {
  1. blake2B : Raw_level_repr.t;
}
type sc_rollup_reveal_activation_level = {
  1. raw_data : sc_rollup_reveal_hashing_schemes;
  2. metadata : Raw_level_repr.t;
  3. dal_page : Raw_level_repr.t;
  4. dal_parameters : Raw_level_repr.t;
}

Associates reveal kinds to their activation level.

type sc_rollup = {
  1. arith_pvm_enable : bool;
  2. origination_size : int;
  3. challenge_window_in_blocks : int;
  4. stake_amount : Tez_repr.t;
  5. commitment_period_in_blocks : int;
  6. max_lookahead_in_blocks : int32;
  7. max_active_outbox_levels : int32;
  8. max_outbox_messages_per_level : int;
  9. number_of_sections_in_dissection : int;
  10. timeout_period_in_blocks : int;
  11. max_number_of_stored_cemented_commitments : int;
  12. max_number_of_parallel_games : int;
  13. reveal_activation_level : sc_rollup_reveal_activation_level;
  14. private_enable : bool;
  15. riscv_pvm_enable : bool;
}
type zk_rollup = {
  1. enable : bool;
  2. origination_size : int;
  3. min_pending_to_process : int;
  4. max_ticket_payload_size : int;
}
type adaptive_issuance = {
  1. global_limit_of_staking_over_baking : int;
  2. edge_of_staking_over_delegation : int;
  3. launch_ema_threshold : int32;
  4. adaptive_rewards_params : adaptive_rewards_params;
  5. activation_vote_enable : bool;
  6. autostaking_enable : bool;
}
type issuance_weights = {
  1. base_total_issued_per_minute : Tez_repr.t;
  2. baking_reward_fixed_portion_weight : int;
  3. baking_reward_bonus_weight : int;
  4. attesting_reward_weight : int;
  5. liquidity_baking_subsidy_weight : int;
  6. seed_nonce_revelation_tip_weight : int;
  7. vdf_revelation_tip_weight : 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. minimal_frozen_stake : Tez_repr.t;
  12. vdf_difficulty : int64;
  13. origination_size : int;
  14. issuance_weights : issuance_weights;
  15. cost_per_byte : Tez_repr.t;
  16. hard_storage_limit_per_operation : Tezos_protocol_environment_alpha.Z.t;
  17. quorum_min : int32;
  18. quorum_max : int32;
  19. min_proposal_quorum : int32;
  20. liquidity_baking_toggle_ema_threshold : int32;
  21. max_operations_time_to_live : int;
  22. minimal_block_delay : Period_repr.t;
  23. delay_increment_per_round : Period_repr.t;
  24. minimal_participation_ratio : Ratio_repr.t;
  25. consensus_committee_size : int;
  26. consensus_threshold : int;
  27. limit_of_delegation_over_baking : int;
  28. percentage_of_frozen_deposits_slashed_per_double_baking : Int_percentage.t;
  29. percentage_of_frozen_deposits_slashed_per_double_attestation : Int_percentage.t;
  30. testnet_dictator : Tezos_protocol_environment_alpha.Signature.Public_key_hash.t option;
  31. initial_seed : State_hash.t option;
  32. cache_script_size : int;
  33. cache_stake_distribution_cycles : int;
  34. cache_sampler_state_cycles : int;
  35. dal : dal;
  36. sc_rollup : sc_rollup;
  37. zk_rollup : zk_rollup;
  38. adaptive_issuance : adaptive_issuance;
  39. direct_ticket_spending_enable : bool;
}
OCaml

Innovation. Community. Security.