package tezos-protocol-020-PsParisC
Tezos protocol 020-PsParisC package
Install
Dune Dependency
Authors
Maintainers
Sources
tezos-octez-v20.1.tag.bz2
sha256=ddfb5076eeb0b32ac21c1eed44e8fc86a6743ef18ab23fff02d36e365bb73d61
sha512=d22a827df5146e0aa274df48bc2150b098177ff7e5eab52c6109e867eb0a1f0ec63e6bfbb0e3645a6c2112de3877c91a17df32ccbff301891ce4ba630c997a65
doc/src/tezos_raw_protocol_020_PsParisC/amendment.ml.html
Source file amendment.ml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229
(*****************************************************************************) (* *) (* Open Source License *) (* Copyright (c) 2018 Dynamic Ledger Solutions, Inc. <contact@tezos.com> *) (* Copyright (c) 2022 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. *) (* *) (*****************************************************************************) open Alpha_context (** Returns the proposal submitted by the most delegates. Returns None in case of a tie, if proposal quorum is below required minimum or if there are no proposals. *) let select_winning_proposal ctxt = let open Lwt_result_syntax in let* proposals = Vote.get_proposals ctxt in let merge proposal vote winners = match winners with | None -> Some ([proposal], vote) | Some (winners, winners_vote) as previous -> if Compare.Int64.(vote = winners_vote) then Some (proposal :: winners, winners_vote) else if Compare.Int64.(vote > winners_vote) then Some ([proposal], vote) else previous in match Protocol_hash.Map.fold merge proposals None with | Some ([proposal], vote) -> let* max_vote = Vote.get_total_voting_power_free ctxt in let min_proposal_quorum = Z.of_int32 (Constants.min_proposal_quorum ctxt) in let min_vote_to_pass = Z.( to_int64 (div (mul min_proposal_quorum (of_int64 max_vote)) (of_int 100_00))) in if Compare.Int64.(vote >= min_vote_to_pass) then return_some proposal else return_none | _ -> return_none (* in case of a tie, let's do nothing. *) (** A proposal is approved if it has supermajority and the participation reaches the current quorum. Supermajority means the yays are more 8/10 of casted votes. The participation is the ratio of all received votes, including passes, with respect to the number of possible votes. The participation EMA (exponential moving average) uses the last participation EMA and the current participation./ The expected quorum is calculated using the last participation EMA, capped by the min/max quorum protocol constants. *) let approval_and_participation_ema (ballots : Vote.ballots) ~total_voting_power ~participation_ema ~expected_quorum = (* Note overflows: considering a maximum of 1e9 tokens (around 2^30), hence 1e15 mutez (around 2^50) In 'participation' a Z is used because in the worst case 'all_votes is 1e15 and after the multiplication is 1e19 (around 2^64). *) let casted_votes = Int64.add ballots.yay ballots.nay in let all_votes = Int64.add casted_votes ballots.pass in let supermajority = Int64.div (Int64.mul 8L casted_votes) 10L in let participation = (* in centile of percentage *) Z.( to_int32 (div (mul (Z.of_int64 all_votes) (Z.of_int 100_00)) (Z.of_int64 total_voting_power))) in let approval = Compare.Int32.(participation >= expected_quorum) && Compare.Int64.(ballots.yay >= supermajority) in let new_participation_ema = Int32.(div (add (mul 8l participation_ema) (mul 2l participation)) 10l) in (approval, new_participation_ema) let get_approval_and_update_participation_ema ctxt = let open Lwt_result_syntax in let* ballots = Vote.get_ballots ctxt in let* total_voting_power = Vote.get_total_voting_power_free ctxt in let* participation_ema = Vote.get_participation_ema ctxt in let* expected_quorum = Vote.get_current_quorum ctxt in let*! ctxt = Vote.clear_ballots ctxt in let approval, new_participation_ema = approval_and_participation_ema ballots ~total_voting_power ~participation_ema ~expected_quorum in let+ ctxt = Vote.set_participation_ema ctxt new_participation_ema in (ctxt, approval) (** Implements the state machine of the amendment procedure. Note that [update_listings], that computes the vote weight of each delegate, is run at the end of each voting period. This state-machine prepare the voting_period for the next block. *) let start_new_voting_period ctxt = (* any change related to the storage in this function must probably be replicated in `record_testnet_dictator_proposals` *) let open Lwt_result_syntax in let* kind = Voting_period.get_current_kind ctxt in let* ctxt = match kind with | Proposal -> ( let* proposal = select_winning_proposal ctxt in let*! ctxt = Vote.clear_proposals ctxt in match proposal with | None -> Voting_period.reset ctxt | Some proposal -> let* ctxt = Vote.init_current_proposal ctxt proposal in Voting_period.succ ctxt) | Exploration -> let* ctxt, approved = get_approval_and_update_participation_ema ctxt in if approved then Voting_period.succ ctxt else let*! ctxt = Vote.clear_current_proposal ctxt in Voting_period.reset ctxt | Cooldown -> Voting_period.succ ctxt | Promotion -> let* ctxt, approved = get_approval_and_update_participation_ema ctxt in if approved then Voting_period.succ ctxt else let*! ctxt = Vote.clear_current_proposal ctxt in Voting_period.reset ctxt | Adoption -> let* proposal = Vote.get_current_proposal ctxt in let*! ctxt = activate ctxt proposal in let*! ctxt = Vote.clear_current_proposal ctxt in Voting_period.reset ctxt in Vote.update_listings ctxt let may_start_new_voting_period ctxt = let open Lwt_result_syntax in let* is_last = Voting_period.is_last_block ctxt in if is_last then start_new_voting_period ctxt else return ctxt (** {2 Application of voting operations} *) let get_testnet_dictator ctxt chain_id = (* This function should always, ALWAYS, return None on mainnet!!!! *) match Constants.testnet_dictator ctxt with | Some pkh when Chain_id.(chain_id <> Constants.mainnet_id) -> Some pkh | _ -> None let is_testnet_dictator ctxt chain_id delegate = (* This function should always, ALWAYS, return false on mainnet!!!! *) match get_testnet_dictator ctxt chain_id with | Some pkh -> Signature.Public_key_hash.equal pkh delegate | _ -> false (** Apply a [Proposals] operation from a registered dictator of a test chain. This forcibly updates the voting period, changing the current voting period kind and the current proposal if applicable. Of course, there must never be such a dictator on mainnet: see {!is_testnet_dictator}. *) let apply_testnet_dictator_proposals ctxt chain_id proposals = let open Lwt_result_syntax in let*! ctxt = Vote.clear_ballots ctxt in let*! ctxt = Vote.clear_proposals ctxt in let*! ctxt = Vote.clear_current_proposal ctxt in let ctxt = record_dictator_proposal_seen ctxt in match proposals with | [] -> Voting_period.Testnet_dictator.overwrite_current_kind ctxt chain_id Proposal | [proposal] -> let* ctxt = Vote.init_current_proposal ctxt proposal in Voting_period.Testnet_dictator.overwrite_current_kind ctxt chain_id Adoption | _ :: _ :: _ -> (* This case should not be possible if the operation has been previously validated by {!Validate.validate_operation}. *) tzfail Validate_errors.Voting.Testnet_dictator_multiple_proposals let apply_proposals ctxt chain_id (Proposals {source; period = _; proposals}) = let open Lwt_result_syntax in let* ctxt = if is_testnet_dictator ctxt chain_id source then apply_testnet_dictator_proposals ctxt chain_id proposals else if dictator_proposal_seen ctxt then (* Noop if dictator voted *) return ctxt else let* count = Vote.get_delegate_proposal_count ctxt source in let new_count = count + List.length proposals in let*! ctxt = Vote.set_delegate_proposal_count ctxt source new_count in let*! ctxt = List.fold_left_s (fun ctxt proposal -> Vote.add_proposal ctxt source proposal) ctxt proposals in return ctxt in return (ctxt, Apply_results.Single_result Proposals_result) let apply_ballot ctxt (Ballot {source; period = _; proposal = _; ballot}) = let open Lwt_result_syntax in let* ctxt = if dictator_proposal_seen ctxt then (* Noop if dictator voted *) return ctxt else Vote.record_ballot ctxt source ballot in return (ctxt, Apply_results.Single_result Ballot_result)
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>