package tezos-protocol-017-PtNairob
Tezos protocol 017-PtNairob package
Install
Dune Dependency
Authors
Maintainers
Sources
tezos-octez-v20.1.tag.bz2
sha256=ddfb5076eeb0b32ac21c1eed44e8fc86a6743ef18ab23fff02d36e365bb73d61
sha512=d22a827df5146e0aa274df48bc2150b098177ff7e5eab52c6109e867eb0a1f0ec63e6bfbb0e3645a6c2112de3877c91a17df32ccbff301891ce4ba630c997a65
doc/src/tezos_raw_protocol_017_PtNairob/stake_storage.ml.html
Source file stake_storage.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
(*****************************************************************************) (* *) (* Open Source License *) (* Copyright (c) 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. *) (* *) (*****************************************************************************) module Selected_distribution_for_cycle = struct module Cache_client = struct type cached_value = (Signature.Public_key_hash.t * Tez_repr.t) list let namespace = Cache_repr.create_namespace "stake_distribution" let cache_index = 1 let value_of_identifier ctxt identifier = let cycle = Cycle_repr.of_string_exn identifier in Storage.Stake.Selected_distribution_for_cycle.get ctxt cycle end module Cache = (val Cache_repr.register_exn (module Cache_client)) let identifier_of_cycle cycle = Format.asprintf "%a" Cycle_repr.pp cycle let init ctxt cycle stakes = let id = identifier_of_cycle cycle in Storage.Stake.Selected_distribution_for_cycle.init ctxt cycle stakes >>=? fun ctxt -> let size = 1 (* that's symbolic: 1 cycle = 1 entry *) in Cache.update ctxt id (Some (stakes, size)) >>?= fun ctxt -> return ctxt let get ctxt cycle = let id = identifier_of_cycle cycle in Cache.find ctxt id >>=? function | None -> Storage.Stake.Selected_distribution_for_cycle.get ctxt cycle | Some v -> return v let remove_existing ctxt cycle = let id = identifier_of_cycle cycle in Cache.update ctxt id None >>?= fun ctxt -> Storage.Stake.Selected_distribution_for_cycle.remove_existing ctxt cycle end let get_staking_balance = Storage.Stake.Staking_balance.get let get_initialized_stake ctxt delegate = Storage.Stake.Staking_balance.find ctxt delegate >>=? function | Some staking_balance -> return (staking_balance, ctxt) | None -> Frozen_deposits_storage.init ctxt delegate >>=? fun ctxt -> let balance = Tez_repr.zero in Storage.Stake.Staking_balance.init ctxt delegate balance >>=? fun ctxt -> return (balance, ctxt) let remove_stake ctxt delegate amount = get_initialized_stake ctxt delegate >>=? fun (staking_balance_before, ctxt) -> Tez_repr.(staking_balance_before -? amount) >>?= fun staking_balance -> Storage.Stake.Staking_balance.update ctxt delegate staking_balance >>=? fun ctxt -> let minimal_stake = Constants_storage.minimal_stake ctxt in if Tez_repr.(staking_balance_before >= minimal_stake) then Delegate_activation_storage.is_inactive ctxt delegate >>=? fun inactive -> if (not inactive) && Tez_repr.(staking_balance < minimal_stake) then Storage.Stake.Active_delegates_with_minimal_stake.remove ctxt delegate >>= fun ctxt -> return ctxt else return ctxt else (* The delegate was not in Stake.Active_delegates_with_minimal_stake, either because it was inactive, or because it did not have a the minimal required stake, in which case it still does not have it. *) return ctxt let add_stake ctxt delegate amount = get_initialized_stake ctxt delegate >>=? fun (staking_balance_before, ctxt) -> Tez_repr.(amount +? staking_balance_before) >>?= fun staking_balance -> Storage.Stake.Staking_balance.update ctxt delegate staking_balance >>=? fun ctxt -> let minimal_stake = Constants_storage.minimal_stake ctxt in if Tez_repr.(staking_balance >= minimal_stake) then Delegate_activation_storage.is_inactive ctxt delegate >>=? fun inactive -> if inactive || Tez_repr.(staking_balance_before >= minimal_stake) then return ctxt else Storage.Stake.Active_delegates_with_minimal_stake.add ctxt delegate () >>= fun ctxt -> return ctxt else (* The delegate was not in Stake.Active_delegates_with_minimal_stake, because it did not have the minimal required stake (as otherwise it would also have it now). *) return ctxt let set_inactive ctxt delegate = Delegate_activation_storage.set_inactive ctxt delegate >>= fun ctxt -> Storage.Stake.Active_delegates_with_minimal_stake.remove ctxt delegate let set_active ctxt delegate = Delegate_activation_storage.set_active ctxt delegate >>=? fun (ctxt, inactive) -> if not inactive then return ctxt else get_initialized_stake ctxt delegate >>=? fun (staking_balance, ctxt) -> let minimal_stake = Constants_storage.minimal_stake ctxt in if Tez_repr.(staking_balance >= minimal_stake) then Storage.Stake.Active_delegates_with_minimal_stake.add ctxt delegate () >>= fun ctxt -> return ctxt else return ctxt let snapshot ctxt = Storage.Stake.Last_snapshot.get ctxt >>=? fun index -> Storage.Stake.Last_snapshot.update ctxt (index + 1) >>=? fun ctxt -> Storage.Stake.Staking_balance.snapshot ctxt index >>=? fun ctxt -> Storage.Stake.Active_delegates_with_minimal_stake.snapshot ctxt index let max_snapshot_index = Storage.Stake.Last_snapshot.get let set_selected_distribution_for_cycle ctxt cycle stakes total_stake = let stakes = List.sort (fun (_, x) (_, y) -> Tez_repr.compare y x) stakes in Selected_distribution_for_cycle.init ctxt cycle stakes >>=? fun ctxt -> Storage.Stake.Total_active_stake.add ctxt cycle total_stake >>= fun ctxt -> (* cleanup snapshots *) Storage.Stake.Staking_balance.Snapshot.clear ctxt >>= fun ctxt -> Storage.Stake.Active_delegates_with_minimal_stake.Snapshot.clear ctxt >>= fun ctxt -> Storage.Stake.Last_snapshot.update ctxt 0 let clear_cycle ctxt cycle = Storage.Stake.Total_active_stake.remove_existing ctxt cycle >>=? fun ctxt -> Selected_distribution_for_cycle.remove_existing ctxt cycle let fold ctxt ~f ~order init = Storage.Stake.Active_delegates_with_minimal_stake.fold ctxt ~order ~init:(Ok init) ~f:(fun delegate () acc -> acc >>?= fun acc -> get_staking_balance ctxt delegate >>=? fun stake -> f (delegate, stake) acc) let fold_snapshot ctxt ~index ~f ~init = Storage.Stake.Active_delegates_with_minimal_stake.fold_snapshot ctxt index ~order:`Sorted ~init ~f:(fun delegate () acc -> Storage.Stake.Staking_balance.Snapshot.get ctxt (index, delegate) >>=? fun stake -> f (delegate, stake) acc) let clear_at_cycle_end ctxt ~new_cycle = let max_slashing_period = Constants_storage.max_slashing_period ctxt in match Cycle_repr.sub new_cycle max_slashing_period with | None -> return ctxt | Some cycle_to_clear -> clear_cycle ctxt cycle_to_clear let get ctxt delegate = Storage.Stake.Active_delegates_with_minimal_stake.mem ctxt delegate >>= function | true -> get_staking_balance ctxt delegate | false -> return Tez_repr.zero let fold_on_active_delegates_with_minimal_stake = Storage.Stake.Active_delegates_with_minimal_stake.fold let get_selected_distribution = Selected_distribution_for_cycle.get let find_selected_distribution = Storage.Stake.Selected_distribution_for_cycle.find let prepare_stake_distribution ctxt = let level = Level_storage.current ctxt in Selected_distribution_for_cycle.get ctxt level.cycle >>=? fun stakes -> let stake_distribution = List.fold_left (fun map (pkh, stake) -> Signature.Public_key_hash.Map.add pkh stake map) Signature.Public_key_hash.Map.empty stakes in return (Raw_context.init_stake_distribution_for_current_cycle ctxt stake_distribution) let get_total_active_stake = Storage.Stake.Total_active_stake.get let remove_contract_stake ctxt contract amount = Contract_delegate_storage.find ctxt contract >>=? function | None -> return ctxt | Some delegate -> remove_stake ctxt delegate amount let add_contract_stake ctxt contract amount = Contract_delegate_storage.find ctxt contract >>=? function | None -> return ctxt | Some delegate -> add_stake ctxt delegate amount
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>