package tezos-protocol-002-PsYLVpVv

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
val version_number : string
val proof_of_work_nonce_size : int
val nonce_length : int
val max_revelations_per_block : int
val max_operation_data_length : int
type fixed = {
  1. proof_of_work_nonce_size : int;
  2. nonce_length : int;
  3. max_revelations_per_block : int;
  4. max_operation_data_length : int;
}
val fixed_encoding : fixed Data_encoding.t
val fixed : fixed
type parametric = {
  1. preserved_cycles : int;
  2. blocks_per_cycle : int32;
  3. blocks_per_commitment : int32;
  4. blocks_per_roll_snapshot : int32;
  5. blocks_per_voting_period : int32;
  6. time_between_blocks : Period_repr.t list;
  7. endorsers_per_block : int;
  8. hard_gas_limit_per_operation : Z.t;
  9. hard_gas_limit_per_block : Z.t;
  10. proof_of_work_threshold : int64;
  11. tokens_per_roll : Tez_repr.t;
  12. michelson_maximum_type_size : int;
  13. seed_nonce_revelation_tip : Tez_repr.t;
  14. origination_burn : Tez_repr.t;
  15. block_security_deposit : Tez_repr.t;
  16. endorsement_security_deposit : Tez_repr.t;
  17. block_reward : Tez_repr.t;
  18. endorsement_reward : Tez_repr.t;
  19. cost_per_byte : Tez_repr.t;
  20. hard_storage_limit_per_operation : Z.t;
}
val default : parametric
module CompareListInt : sig ... end
val parametric_encoding : parametric Data_encoding.t
type t = {
  1. fixed : fixed;
  2. parametric : parametric;
}
val encoding : t Data_encoding.t