123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644(*****************************************************************************)(* *)(* Open Source License *)(* Copyright (c) 2018 Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)(* Copyright (c) 2020-2021 Nomadic Labs <contact@nomadic-labs.com> *)(* *)(* Permission is hereby granted, free of charge, to any person obtaining a *)(* copy of this software and associated documentation files (the "Software"),*)(* to deal in the Software without restriction, including without limitation *)(* the rights to use, copy, modify, merge, publish, distribute, sublicense, *)(* and/or sell copies of the Software, and to permit persons to whom the *)(* Software is furnished to do so, subject to the following conditions: *)(* *)(* The above copyright notice and this permission notice shall be included *)(* in all copies or substantial portions of the Software. *)(* *)(* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR*)(* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, *)(* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL *)(* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER*)(* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING *)(* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER *)(* DEALINGS IN THE SOFTWARE. *)(* *)(*****************************************************************************)(* The fitness version number was:
- "\000" until and including proto 004
- "\001" until and including proto 010
*)letfitness_version_number="\002"letproof_of_work_nonce_size=8letnonce_length=32letmax_anon_ops_per_block=132letmax_proposals_per_delegate=20letmax_operation_data_length=32*1024(* 32kB *)letmax_micheline_node_count=50_000letmax_micheline_bytes_limit=50_000letmax_allowed_global_constant_depth=10_000(* In this version of the protocol, there are the following subcaches:
* One for contract source code and storage. Its size has been
chosen not too exceed 100 000 000 bytes.
* One for the stake distribution for all cycles stored at any
moment (* preserved_cycles + max_slashing_period + 1 *)
* One for the sampler state for all cycles stored at any moment. *)letstake_distribution_size=500(* delegates*)*15(* words *)*4(* bytes *)letsampler_state_size=80(* words *)*4(* bytes *)letcache_layout=[100_000_000;8(* cycles *)*stake_distribution_size;8(* cycles *)*sampler_state_size;](* In previous versions of the protocol, this
[michelson_maximum_type_size] limit was set to 1000 but
the contract input types (pair <parameter_type> <storage_type>)
were not checked. Both components, <parameter_type> and
<storage_type> where however checked hence it was possible to build
types as big as 2001. *)letmichelson_maximum_type_size=2001typefixed=unittyperatio={numerator:int;denominator:int}letratio_encoding=letopenData_encodinginconv_with_guard(funr->(r.numerator,r.denominator))(fun(numerator,denominator)->ifCompare.Int.(denominator>0)thenok{numerator;denominator}elseError"The denominator must be greater than 0.")(obj2(req"numerator"uint16)(req"denominator"uint16))letpp_ratiofmt{numerator;denominator}=Format.fprintffmt"%d/%d"numeratordenominatorletfixed_encoding=letopenData_encodinginletuint62=letmax_int_int64=Int64.of_intmax_intinconv_with_guard(funint->Int64.of_intint)(funint64->ifCompare.Int64.(int64<0L)thenError"Negative integer"elseifCompare.Int64.(int64>max_int_int64)thenError"Integer does not fit in 62 bits"elseok@@Int64.to_intint64)int64inconv(fun()->(proof_of_work_nonce_size,nonce_length,max_anon_ops_per_block,max_operation_data_length,max_proposals_per_delegate,max_micheline_node_count,max_micheline_bytes_limit,max_allowed_global_constant_depth,cache_layout,michelson_maximum_type_size))(fun(_proof_of_work_nonce_size,_nonce_length,_max_anon_ops_per_block,_max_operation_data_length,_max_proposals_per_delegate,_max_micheline_node_count,_max_micheline_bytes_limit,_max_allowed_global_constant_depth,_cache_layout,_michelson_maximum_type_size)->())(obj10(req"proof_of_work_nonce_size"uint8)(req"nonce_length"uint8)(req"max_anon_ops_per_block"uint8)(req"max_operation_data_length"int31)(req"max_proposals_per_delegate"uint8)(req"max_micheline_node_count"int31)(req"max_micheline_bytes_limit"int31)(req"max_allowed_global_constants_depth"int31)(req"cache_layout"(listuint62))(req"michelson_maximum_type_size"uint16))letfixed=()typedelegate_selection=|Random|Round_robin_overofSignature.Public_key.tlistlistletdelegate_selection_encoding=letopenData_encodinginunion[case(Tag0)~title:"Random_delegate_selection"(constant"random")(functionRandom->Some()|_->None)(fun()->Random);case(Tag1)~title:"Round_robin_over_delegates"(list(listSignature.Public_key.encoding))(functionRound_robin_overl->Somel|_->None)(funl->Round_robin_overl);](* The encoded representation of this type is stored in the context as
bytes. Changing the encoding, or the value of these constants from
the previous protocol may break the context migration, or (even
worse) yield an incorrect context after migration.
If you change this encoding, you should ensure that there is a
proper migration of the constants during context migration. *)typeparametric={preserved_cycles:int;blocks_per_cycle:int32;blocks_per_commitment:int32;blocks_per_stake_snapshot:int32;blocks_per_voting_period:int32;hard_gas_limit_per_operation:Gas_limit_repr.Arith.integral;hard_gas_limit_per_block:Gas_limit_repr.Arith.integral;proof_of_work_threshold:int64;tokens_per_roll:Tez_repr.t;seed_nonce_revelation_tip:Tez_repr.t;origination_size:int;baking_reward_fixed_portion:Tez_repr.t;baking_reward_bonus_per_slot:Tez_repr.t;endorsing_reward_per_slot:Tez_repr.t;cost_per_byte:Tez_repr.t;hard_storage_limit_per_operation:Z.t;quorum_min:int32;quorum_max:int32;min_proposal_quorum:int32;liquidity_baking_subsidy:Tez_repr.t;liquidity_baking_sunset_level:int32;liquidity_baking_escape_ema_threshold:int32;max_operations_time_to_live:int;minimal_block_delay:Period_repr.t;delay_increment_per_round:Period_repr.t;minimal_participation_ratio:ratio;consensus_committee_size:int;consensus_threshold:int;max_slashing_period:int;frozen_deposits_percentage:int;double_baking_punishment:Tez_repr.t;ratio_of_frozen_deposits_slashed_per_double_endorsement:ratio;delegate_selection:delegate_selection;}letparametric_encoding=letopenData_encodinginconv(func->((c.preserved_cycles,c.blocks_per_cycle,c.blocks_per_commitment,c.blocks_per_stake_snapshot,c.blocks_per_voting_period,c.hard_gas_limit_per_operation,c.hard_gas_limit_per_block,c.proof_of_work_threshold,c.tokens_per_roll),((c.seed_nonce_revelation_tip,c.origination_size,c.baking_reward_fixed_portion,c.baking_reward_bonus_per_slot,c.endorsing_reward_per_slot,c.cost_per_byte,c.hard_storage_limit_per_operation,c.quorum_min),((c.quorum_max,c.min_proposal_quorum,c.liquidity_baking_subsidy,c.liquidity_baking_sunset_level,c.liquidity_baking_escape_ema_threshold,c.max_operations_time_to_live,c.minimal_block_delay,c.delay_increment_per_round,c.consensus_committee_size,c.consensus_threshold),(c.minimal_participation_ratio,c.max_slashing_period,c.frozen_deposits_percentage,c.double_baking_punishment,c.ratio_of_frozen_deposits_slashed_per_double_endorsement,c.delegate_selection)))))(fun((preserved_cycles,blocks_per_cycle,blocks_per_commitment,blocks_per_stake_snapshot,blocks_per_voting_period,hard_gas_limit_per_operation,hard_gas_limit_per_block,proof_of_work_threshold,tokens_per_roll),((seed_nonce_revelation_tip,origination_size,baking_reward_fixed_portion,baking_reward_bonus_per_slot,endorsing_reward_per_slot,cost_per_byte,hard_storage_limit_per_operation,quorum_min),((quorum_max,min_proposal_quorum,liquidity_baking_subsidy,liquidity_baking_sunset_level,liquidity_baking_escape_ema_threshold,max_operations_time_to_live,minimal_block_delay,delay_increment_per_round,consensus_committee_size,consensus_threshold),(minimal_participation_ratio,max_slashing_period,frozen_deposits_percentage,double_baking_punishment,ratio_of_frozen_deposits_slashed_per_double_endorsement,delegate_selection))))->{preserved_cycles;blocks_per_cycle;blocks_per_commitment;blocks_per_stake_snapshot;blocks_per_voting_period;hard_gas_limit_per_operation;hard_gas_limit_per_block;proof_of_work_threshold;tokens_per_roll;seed_nonce_revelation_tip;origination_size;baking_reward_fixed_portion;baking_reward_bonus_per_slot;endorsing_reward_per_slot;cost_per_byte;hard_storage_limit_per_operation;quorum_min;quorum_max;min_proposal_quorum;liquidity_baking_subsidy;liquidity_baking_sunset_level;liquidity_baking_escape_ema_threshold;max_operations_time_to_live;minimal_block_delay;delay_increment_per_round;minimal_participation_ratio;max_slashing_period;consensus_committee_size;consensus_threshold;frozen_deposits_percentage;double_baking_punishment;ratio_of_frozen_deposits_slashed_per_double_endorsement;delegate_selection;})(merge_objs(obj9(req"preserved_cycles"uint8)(req"blocks_per_cycle"int32)(req"blocks_per_commitment"int32)(req"blocks_per_stake_snapshot"int32)(req"blocks_per_voting_period"int32)(req"hard_gas_limit_per_operation"Gas_limit_repr.Arith.z_integral_encoding)(req"hard_gas_limit_per_block"Gas_limit_repr.Arith.z_integral_encoding)(req"proof_of_work_threshold"int64)(req"tokens_per_roll"Tez_repr.encoding))(merge_objs(obj8(req"seed_nonce_revelation_tip"Tez_repr.encoding)(req"origination_size"int31)(req"baking_reward_fixed_portion"Tez_repr.encoding)(req"baking_reward_bonus_per_slot"Tez_repr.encoding)(req"endorsing_reward_per_slot"Tez_repr.encoding)(req"cost_per_byte"Tez_repr.encoding)(req"hard_storage_limit_per_operation"z)(req"quorum_min"int32))(merge_objs(obj10(req"quorum_max"int32)(req"min_proposal_quorum"int32)(req"liquidity_baking_subsidy"Tez_repr.encoding)(req"liquidity_baking_sunset_level"int32)(req"liquidity_baking_escape_ema_threshold"int32)(req"max_operations_time_to_live"int16)(req"minimal_block_delay"Period_repr.encoding)(req"delay_increment_per_round"Period_repr.encoding)(req"consensus_committee_size"int31)(req"consensus_threshold"int31))(obj6(req"minimal_participation_ratio"ratio_encoding)(req"max_slashing_period"int31)(req"frozen_deposits_percentage"int31)(req"double_baking_punishment"Tez_repr.encoding)(req"ratio_of_frozen_deposits_slashed_per_double_endorsement"ratio_encoding)(dft"delegate_selection"delegate_selection_encodingRandom)))))typet={fixed:fixed;parametric:parametric}letallparametric={fixed;parametric}letencoding=letopenData_encodinginconv(fun{fixed;parametric}->(fixed,parametric))(fun(fixed,parametric)->{fixed;parametric})(merge_objsfixed_encodingparametric_encoding)typeerror+=Invalid_protocol_constantsofstring(* `Permanent *)let()=register_error_kind`Permanent~id:"constants.invalid_protocol_constants"~title:"Invalid protocol constants"~description:"The provided protocol constants are not coherent."~pp:(funppfreason->Format.fprintfppf"Invalid protocol constants: %s"reason)Data_encoding.(obj1(req"reason"string))(functionInvalid_protocol_constantsreason->Somereason|_->None)(funreason->Invalid_protocol_constantsreason)letcheck_constantsconstants=error_unlessPeriod_repr.(constants.minimal_block_delay>zero)(Invalid_protocol_constants"The minimal block delay must be greater than zero")>>?fun()->error_unlessPeriod_repr.(constants.delay_increment_per_round>zero)(Invalid_protocol_constants"The delay increment per round must be greater than zero")>>?fun()->error_unlessCompare.Int.(constants.consensus_committee_size>3)(Invalid_protocol_constants"The consensus committee size must be strictly greater than 3.")>>?fun()->error_unlessCompare.Int.(constants.consensus_threshold>=0&&constants.consensus_threshold<=constants.consensus_committee_size)(Invalid_protocol_constants"The consensus threshold must be greater than or equal to 0 and less \
than or equal to the consensus commitee size.")>>?fun()->error_unless(let{numerator;denominator}=constants.minimal_participation_ratioinCompare.Int.(numerator>=0&&denominator>0))(Invalid_protocol_constants"The minimal participation ratio must be a non-negative valid ratio.")>>?fun()->error_unlessCompare.Int.(constants.minimal_participation_ratio.numerator<=constants.minimal_participation_ratio.denominator)(Invalid_protocol_constants"The minimal participation ratio must be less than or equal to 100%.")>>?fun()->error_unlessCompare.Int.(constants.max_slashing_period>0)(Invalid_protocol_constants"The unfreeze delay must be strictly greater than 0.")>>?fun()->(* The [frozen_deposits_percentage] should be a percentage *)error_unlessCompare.Int.(constants.frozen_deposits_percentage>0&&constants.frozen_deposits_percentage<=100)(Invalid_protocol_constants"The frozen percentage ratio must be strictly greater than 0 and less \
or equal than 100.")>>?fun()->error_unlessTez_repr.(constants.double_baking_punishment>=zero)(Invalid_protocol_constants"The double baking punishment must be non-negative.")>>?fun()->error_unless(let{numerator;denominator}=constants.ratio_of_frozen_deposits_slashed_per_double_endorsementinCompare.Int.(numerator>=0&&denominator>0))(Invalid_protocol_constants"The ratio of frozen deposits ratio slashed per double endorsement must \
be a non-negative valid ratio.")>>?fun()->Result.return_unitmoduleGenerated=structtypet={consensus_threshold:int;baking_reward_fixed_portion:Tez_repr.t;baking_reward_bonus_per_slot:Tez_repr.t;endorsing_reward_per_slot:Tez_repr.t;}letgenerate~consensus_committee_size~blocks_per_minute=letconsensus_threshold=(consensus_committee_size*2/3)+1in(* As in previous protocols, we set the maximum total rewards per minute to
be 80 tez. *)letrewards_per_minute=Tez_repr.(mul_exnone80)inletrewards_per_block=Tez_repr.(div_exn(mul_exnrewards_per_minuteblocks_per_minute.denominator)blocks_per_minute.numerator)inletrewards_half=Tez_repr.(div_exnrewards_per_block2)inletrewards_quarter=Tez_repr.(div_exnrewards_per_block4)in{consensus_threshold;baking_reward_fixed_portion=rewards_quarter;baking_reward_bonus_per_slot=Tez_repr.div_exnrewards_quarter(consensus_committee_size-consensus_threshold);endorsing_reward_per_slot=Tez_repr.div_exnrewards_halfconsensus_committee_size;}endmoduleProto_previous=structtypeparametric={preserved_cycles:int;blocks_per_cycle:int32;blocks_per_commitment:int32;blocks_per_roll_snapshot:int32;blocks_per_voting_period:int32;time_between_blocks:Period_repr.tlist;minimal_block_delay:Period_repr.t;endorsers_per_block:int;hard_gas_limit_per_operation:Gas_limit_repr.Arith.integral;hard_gas_limit_per_block:Gas_limit_repr.Arith.integral;proof_of_work_threshold:int64;tokens_per_roll:Tez_repr.t;seed_nonce_revelation_tip:Tez_repr.t;origination_size:int;block_security_deposit:Tez_repr.t;endorsement_security_deposit:Tez_repr.t;baking_reward_per_endorsement:Tez_repr.tlist;endorsement_reward:Tez_repr.tlist;cost_per_byte:Tez_repr.t;hard_storage_limit_per_operation:Z.t;quorum_min:int32;quorum_max:int32;min_proposal_quorum:int32;initial_endorsers:int;delay_per_missing_endorsement:Period_repr.t;liquidity_baking_subsidy:Tez_repr.t;liquidity_baking_sunset_level:int32;liquidity_baking_escape_ema_threshold:int32;}letparametric_encoding=letopenData_encodinginconv(func->((c.preserved_cycles,c.blocks_per_cycle,c.blocks_per_commitment,c.blocks_per_roll_snapshot,c.blocks_per_voting_period,c.time_between_blocks,c.endorsers_per_block,c.hard_gas_limit_per_operation,c.hard_gas_limit_per_block,c.proof_of_work_threshold),((c.tokens_per_roll,c.seed_nonce_revelation_tip,c.origination_size,c.block_security_deposit,c.endorsement_security_deposit,c.baking_reward_per_endorsement,c.endorsement_reward,c.cost_per_byte,c.hard_storage_limit_per_operation),(c.quorum_min,c.quorum_max,c.min_proposal_quorum,c.initial_endorsers,c.delay_per_missing_endorsement,c.minimal_block_delay,c.liquidity_baking_subsidy,c.liquidity_baking_sunset_level,c.liquidity_baking_escape_ema_threshold))))(fun((preserved_cycles,blocks_per_cycle,blocks_per_commitment,blocks_per_roll_snapshot,blocks_per_voting_period,time_between_blocks,endorsers_per_block,hard_gas_limit_per_operation,hard_gas_limit_per_block,proof_of_work_threshold),((tokens_per_roll,seed_nonce_revelation_tip,origination_size,block_security_deposit,endorsement_security_deposit,baking_reward_per_endorsement,endorsement_reward,cost_per_byte,hard_storage_limit_per_operation),(quorum_min,quorum_max,min_proposal_quorum,initial_endorsers,delay_per_missing_endorsement,minimal_block_delay,liquidity_baking_subsidy,liquidity_baking_sunset_level,liquidity_baking_escape_ema_threshold)))->{preserved_cycles;blocks_per_cycle;blocks_per_commitment;blocks_per_roll_snapshot;blocks_per_voting_period;time_between_blocks;endorsers_per_block;hard_gas_limit_per_operation;hard_gas_limit_per_block;proof_of_work_threshold;tokens_per_roll;seed_nonce_revelation_tip;origination_size;block_security_deposit;endorsement_security_deposit;baking_reward_per_endorsement;endorsement_reward;cost_per_byte;hard_storage_limit_per_operation;quorum_min;quorum_max;min_proposal_quorum;initial_endorsers;delay_per_missing_endorsement;minimal_block_delay;liquidity_baking_subsidy;liquidity_baking_sunset_level;liquidity_baking_escape_ema_threshold;})(merge_objs(obj10(req"preserved_cycles"uint8)(req"blocks_per_cycle"int32)(req"blocks_per_commitment"int32)(req"blocks_per_roll_snapshot"int32)(req"blocks_per_voting_period"int32)(req"time_between_blocks"(listPeriod_repr.encoding))(req"endorsers_per_block"uint16)(req"hard_gas_limit_per_operation"Gas_limit_repr.Arith.z_integral_encoding)(req"hard_gas_limit_per_block"Gas_limit_repr.Arith.z_integral_encoding)(req"proof_of_work_threshold"int64))(merge_objs(obj9(req"tokens_per_roll"Tez_repr.encoding)(req"seed_nonce_revelation_tip"Tez_repr.encoding)(req"origination_size"int31)(req"block_security_deposit"Tez_repr.encoding)(req"endorsement_security_deposit"Tez_repr.encoding)(req"baking_reward_per_endorsement"(listTez_repr.encoding))(req"endorsement_reward"(listTez_repr.encoding))(req"cost_per_byte"Tez_repr.encoding)(req"hard_storage_limit_per_operation"z))(obj9(req"quorum_min"int32)(req"quorum_max"int32)(req"min_proposal_quorum"int32)(req"initial_endorsers"uint16)(req"delay_per_missing_endorsement"Period_repr.encoding)(req"minimal_block_delay"Period_repr.encoding)(req"liquidity_baking_subsidy"Tez_repr.encoding)(req"liquidity_baking_sunset_level"int32)(req"liquidity_baking_escape_ema_threshold"int32))))end