package tezos-protocol-alpha
Tezos protocol alpha package
Install
Dune Dependency
Authors
Maintainers
Sources
tezos-18.1.tar.gz
sha256=aa2f5bc99cc4ca2217c52a1af2a2cdfd3b383208cb859ca2e79ca0903396ca1d
sha512=d68bb3eb615e3dcccc845fddfc9901c95b3c6dc8e105e39522ce97637b1308a7fa7aa1d271351d5933febd7476b2819e1694f31198f1f0919681f1f9cc97cb3a
doc/src/tezos_raw_protocol_alpha/delegate_slashed_deposits_storage.ml.html
Source file delegate_slashed_deposits_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
(*****************************************************************************) (* *) (* Open Source License *) (* Copyright (c) 2018 Dynamic Ledger Solutions, Inc. <contact@tezos.com> *) (* Copyright (c) 2021 Nomadic Labs, <contact@nomadic-labs.com> *) (* Copyright (c) 2022 G.B. Fefe, <gb.fefe@protonmail.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. *) (* *) (*****************************************************************************) let already_slashed_for_double_attesting ctxt delegate (level : Level_repr.t) = Storage.Slashed_deposits.find (ctxt, level.cycle) (level.level, delegate) >>=? function | None -> return_false | Some slashed -> return slashed.for_double_attesting let already_slashed_for_double_baking ctxt delegate (level : Level_repr.t) = Storage.Slashed_deposits.find (ctxt, level.cycle) (level.level, delegate) >>=? function | None -> return_false | Some slashed -> return slashed.for_double_baking type reward_and_burn = {reward : Tez_repr.t; amount_to_burn : Tez_repr.t} type punishing_amounts = { staked : reward_and_burn; unstaked : (Cycle_repr.t * reward_and_burn) list; } (** [punish_double_signing ~get ~set ~get_percentage ctxt delegate level] record in the context that the given [delegate] has now been slashed for the double signing event for the given [level] and return the amounts of the frozen deposits to burn and to reward the denuncer. The double signing event corresponds to a field in {!Storage.slashed_level}, retrieved with [get] and set to true with [set]. The part to burn is retrieved with [get_percentage]. *) let punish_double_signing ~get ~set ~get_percentage ctxt delegate (level : Level_repr.t) = let open Lwt_result_syntax in let* slashed_opt = Storage.Slashed_deposits.find (ctxt, level.cycle) (level.level, delegate) in let slashed = Option.value slashed_opt ~default:Storage.default_slashed_level in assert (Compare.Bool.(get slashed = false)) ; let updated_slashed = set slashed in let delegate_contract = Contract_repr.Implicit delegate in let slashing_percentage = get_percentage ctxt in let preserved_cycles = Constants_storage.preserved_cycles ctxt in let global_limit_of_staking_over_baking = Constants_storage.adaptive_issuance_global_limit_of_staking_over_baking ctxt in let global_limit_of_staking_over_baking_plus_two = Int64.add (Int64.of_int global_limit_of_staking_over_baking) 2L in let compute_reward_and_burn (frozen_deposits : Deposits_repr.t) = let open Result_syntax in let punish_value = Tez_repr.( div_exn (mul_exn frozen_deposits.initial_amount slashing_percentage) 100) in let should_forbid, punishing_amount = if Tez_repr.(punish_value >= frozen_deposits.current_amount) then (true, frozen_deposits.current_amount) else (false, punish_value) in let* reward = Tez_repr.( punishing_amount /? global_limit_of_staking_over_baking_plus_two) in let+ amount_to_burn = Tez_repr.(punishing_amount -? reward) in (should_forbid, {reward; amount_to_burn}) in let* frozen_deposits = Frozen_deposits_storage.get ctxt delegate_contract in let*? should_forbid, staked = compute_reward_and_burn frozen_deposits in let*! ctxt = if should_forbid then Delegate_storage.forbid_delegate ctxt delegate else Lwt.return ctxt in let* unstaked = let oldest_slashable_cycle = Cycle_repr.sub level.cycle preserved_cycles |> Option.value ~default:Cycle_repr.root in let slashable_cycles = Cycle_repr.(oldest_slashable_cycle ---> level.cycle) in List.rev_map_es (fun cycle -> let* frozen_deposits = Unstaked_frozen_deposits_storage.get ctxt delegate cycle in let*? _should_forbid, reward_and_burn = compute_reward_and_burn frozen_deposits in return (cycle, reward_and_burn)) slashable_cycles in let*! ctxt = Storage.Slashed_deposits.add (ctxt, level.cycle) (level.level, delegate) updated_slashed in let* slash_history_opt = Storage.Contract.Slashed_deposits.find ctxt delegate_contract in let slash_history = Option.value slash_history_opt ~default:[] in let slash_history = Storage.Slashed_deposits_history.add level.cycle slashing_percentage slash_history in let*! ctxt = Storage.Contract.Slashed_deposits.add ctxt delegate_contract slash_history in return (ctxt, {staked; unstaked}) let punish_double_attesting = let get Storage.{for_double_attesting; _} = for_double_attesting in let set slashed = Storage.{slashed with for_double_attesting = true} in let get_percentage = Constants_storage .percentage_of_frozen_deposits_slashed_per_double_attestation in punish_double_signing ~get ~set ~get_percentage let punish_double_baking = let get Storage.{for_double_baking; _} = for_double_baking in let set slashed = Storage.{slashed with for_double_baking = true} in let get_percentage = Constants_storage.percentage_of_frozen_deposits_slashed_per_double_baking in punish_double_signing ~get ~set ~get_percentage let clear_outdated_slashed_deposits ctxt ~new_cycle = let max_slashable_period = Constants_storage.max_slashing_period ctxt in match Cycle_repr.(sub new_cycle max_slashable_period) with | None -> Lwt.return ctxt | Some outdated_cycle -> Storage.Slashed_deposits.clear (ctxt, outdated_cycle)
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>