Source file delegate_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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
type error +=
| Unregistered_delegate of Signature.Public_key_hash.t
let () =
register_error_kind
`Permanent
~id:"contract.manager.unregistered_delegate"
~title:"Unregistered delegate"
~description:"A contract cannot be delegated to an unregistered delegate"
~pp:(fun ppf k ->
Format.fprintf
ppf
"The provided public key (with hash %a) is not registered as valid \
delegate key."
Signature.Public_key_hash.pp
k)
Data_encoding.(obj1 (req "hash" Signature.Public_key_hash.encoding))
(function Unregistered_delegate k -> Some k | _ -> None)
(fun k -> Unregistered_delegate k)
let registered = Storage.Delegates.mem
module Contract = struct
let init ctxt contract delegate =
Contract_manager_storage.is_manager_key_revealed ctxt delegate
>>=? fun known_delegate ->
error_unless known_delegate (Unregistered_delegate delegate) >>?= fun () ->
registered ctxt delegate >>= fun is_registered ->
error_unless is_registered (Unregistered_delegate delegate) >>?= fun () ->
Contract_delegate_storage.init ctxt contract delegate >>=? fun ctxt ->
Contract_storage.get_balance_and_frozen_bonds ctxt contract
>>=? fun balance_and_frozen_bonds ->
Stake_storage.add_delegated_stake ctxt delegate balance_and_frozen_bonds
type error +=
| Active_delegate
| Empty_delegate_account of Signature.Public_key_hash.t
let () =
register_error_kind
`Temporary
~id:"delegate.already_active"
~title:"Delegate already active"
~description:"Useless delegate reactivation"
~pp:(fun ppf () ->
Format.fprintf ppf "The delegate is still active, no need to refresh it")
Data_encoding.empty
(function Active_delegate -> Some () | _ -> None)
(fun () -> Active_delegate) ;
register_error_kind
`Permanent
~id:"delegate.empty_delegate_account"
~title:"Empty delegate account"
~description:
"Cannot register a delegate when its implicit account is empty"
~pp:(fun ppf delegate ->
Format.fprintf
ppf
"Delegate registration is forbidden when the delegate\n\
\ implicit account is empty (%a)"
Signature.Public_key_hash.pp
delegate)
Data_encoding.(obj1 (req "delegate" Signature.Public_key_hash.encoding))
(function Empty_delegate_account c -> Some c | _ -> None)
(fun c -> Empty_delegate_account c)
let set_self_delegate c delegate =
let open Lwt_result_syntax in
let*! is_registered = registered c delegate in
if is_registered then
let* () =
let* is_inactive = Delegate_activation_storage.is_inactive c delegate in
fail_unless is_inactive Active_delegate
in
Stake_storage.set_active c delegate
else
let contract = Contract_repr.Implicit delegate in
let* pk =
Contract_manager_storage.get_manager_key
c
~error:(Unregistered_delegate delegate)
delegate
in
let* () =
let*! is_allocated = Contract_storage.allocated c contract in
fail_unless is_allocated (Empty_delegate_account delegate)
in
let* balance_and_frozen_bonds =
Contract_storage.get_balance_and_frozen_bonds c contract
in
let* c =
Stake_storage.remove_contract_delegated_stake
c
contract
balance_and_frozen_bonds
in
let* c = Contract_delegate_storage.set c contract delegate in
let* c =
Stake_storage.add_delegated_stake c delegate balance_and_frozen_bonds
in
let*! c = Storage.Delegates.add c delegate in
let* c = Delegate_consensus_key.init c delegate pk in
let* c = Stake_storage.set_active c delegate in
return c
type error +=
| No_deletion of Signature.Public_key_hash.t
| Current_delegate
let () =
register_error_kind
`Permanent
~id:"delegate.no_deletion"
~title:"Forbidden delegate deletion"
~description:"Tried to unregister a delegate"
~pp:(fun ppf delegate ->
Format.fprintf
ppf
"Delegate deletion is forbidden (%a)"
Signature.Public_key_hash.pp
delegate)
Data_encoding.(obj1 (req "delegate" Signature.Public_key_hash.encoding))
(function No_deletion c -> Some c | _ -> None)
(fun c -> No_deletion c) ;
register_error_kind
`Temporary
~id:"delegate.unchanged"
~title:"Unchanged delegated"
~description:"Contract already delegated to the given delegate"
~pp:(fun ppf () ->
Format.fprintf
ppf
"The contract is already delegated to the same delegate")
Data_encoding.empty
(function Current_delegate -> Some () | _ -> None)
(fun () -> Current_delegate)
let set_delegate c contract delegate =
let open Lwt_result_syntax in
let* () =
match contract with
| Contract_repr.Originated _ -> return_unit
| Implicit pkh ->
let*! is_registered = registered c pkh in
fail_when is_registered (No_deletion pkh)
in
let* () =
let* current_delegate = Contract_delegate_storage.find c contract in
match (delegate, current_delegate) with
| None, None ->
return_unit
| Some delegate, Some current_delegate
when Signature.Public_key_hash.equal delegate current_delegate ->
tzfail Current_delegate
| _ -> return_unit
in
let* balance_and_frozen_bonds =
Contract_storage.get_balance_and_frozen_bonds c contract
in
let* c =
Stake_storage.remove_contract_delegated_stake
c
contract
balance_and_frozen_bonds
in
match delegate with
| None ->
let* c = Contract_delegate_storage.delete c contract in
return c
| Some delegate ->
let* () =
let*! is_delegate_registered = registered c delegate in
fail_when
(not is_delegate_registered)
(Unregistered_delegate delegate)
in
let* c = Contract_delegate_storage.set c contract delegate in
let* c =
Stake_storage.add_delegated_stake c delegate balance_and_frozen_bonds
in
return c
let set c contract delegate =
match (delegate, contract) with
| Some delegate, Contract_repr.Implicit source
when Signature.Public_key_hash.equal source delegate ->
set_self_delegate c delegate
| _ -> set_delegate c contract delegate
end
let fold = Storage.Delegates.fold
let list = Storage.Delegates.elements
let frozen_deposits ctxt delegate =
Frozen_deposits_storage.get ctxt (Contract_repr.Implicit delegate)
let spendable_balance ctxt delegate =
let contract = Contract_repr.Implicit delegate in
Storage.Contract.Spendable_balance.get ctxt contract
let is_forbidden_delegate ctxt delegate =
let forbidden_delegates = Raw_context.Consensus.forbidden_delegates ctxt in
Signature.Public_key_hash.Set.mem delegate forbidden_delegates
let forbid_delegate ctxt delegate =
let ctxt = Raw_context.Consensus.forbid_delegate ctxt delegate in
let new_forbidden_delegates =
Raw_context.Consensus.forbidden_delegates ctxt
in
Storage.Tenderbake.Forbidden_delegates.add ctxt new_forbidden_delegates
let load_forbidden_delegates ctxt =
let open Lwt_result_syntax in
let* forbidden_delegates_opt =
Storage.Tenderbake.Forbidden_delegates.find ctxt
in
let ctxt =
match forbidden_delegates_opt with
| Some forbidden_delegates ->
Raw_context.Consensus.set_forbidden_delegates ctxt forbidden_delegates
| None ->
Raw_context.Consensus.set_forbidden_delegates
ctxt
Signature.Public_key_hash.Set.empty
in
return ctxt
let set_forbidden_delegates ctxt forbidden_delegates =
let open Lwt_syntax in
let* ctxt =
Storage.Tenderbake.Forbidden_delegates.add ctxt forbidden_delegates
in
let ctxt =
Raw_context.Consensus.set_forbidden_delegates ctxt forbidden_delegates
in
return ctxt
let reset_forbidden_delegates ctxt =
if
Signature.Public_key_hash.Set.is_empty
(Raw_context.Consensus.forbidden_delegates ctxt)
then Lwt.return ctxt
else set_forbidden_delegates ctxt Signature.Public_key_hash.Set.empty
let drain ctxt ~delegate ~destination =
let open Lwt_result_syntax in
let destination_contract = Contract_repr.Implicit destination in
let*! is_destination_allocated =
Contract_storage.allocated ctxt destination_contract
in
let delegate_contract = Contract_repr.Implicit delegate in
let* ctxt, _, balance_updates1 =
if not is_destination_allocated then
Fees_storage.burn_origination_fees
ctxt
~storage_limit:(Z.of_int (Constants_storage.origination_size ctxt))
~payer:(`Contract delegate_contract)
else return (ctxt, Z.zero, [])
in
let* manager_balance = spendable_balance ctxt delegate in
let*? one_percent = Tez_repr.(manager_balance /? 100L) in
let fees = Tez_repr.(max one one_percent) in
let*? transferred = Tez_repr.(manager_balance -? fees) in
let* ctxt, balance_updates2 =
Token.transfer
ctxt
(`Contract delegate_contract)
(`Contract destination_contract)
transferred
in
return
( ctxt,
not is_destination_allocated,
fees,
balance_updates1 @ balance_updates2 )
module For_RPC = struct
let full_balance ctxt delegate =
Staking_pseudotokens_storage.For_RPC.staked_balance
ctxt
~delegate
~contract:(Contract_repr.Implicit delegate)
>>=? fun own_frozen_deposits ->
(Unstake_requests_storage.prepare_finalize_unstake
ctxt
(Contract_repr.Implicit delegate)
>>=? function
| None -> return Tez_repr.zero
| Some {finalizable; unfinalizable} ->
Unstake_requests_storage.For_RPC.apply_slash_to_unstaked_unfinalizable
ctxt
unfinalizable
>>=? fun unfinalizable_requests ->
Lwt.return
( List.fold_left_e
(fun acc (_cycle, tz) -> Tez_repr.(acc +? tz))
Tez_repr.zero
unfinalizable_requests
>>? fun sum_unfinalizable ->
List.fold_left_e
(fun acc (_, _cycle, tz) -> Tez_repr.(acc +? tz))
sum_unfinalizable
finalizable ))
>>=? fun unstaked_frozen ->
Lwt.return Tez_repr.(own_frozen_deposits +? unstaked_frozen)
>>=? fun all_frozen ->
let delegate_contract = Contract_repr.Implicit delegate in
Contract_storage.get_balance_and_frozen_bonds ctxt delegate_contract
>>=? fun balance_and_frozen_bonds ->
Lwt.return Tez_repr.(all_frozen +? balance_and_frozen_bonds)
let staking_balance ctxt delegate =
registered ctxt delegate >>= fun is_registered ->
if is_registered then
Stake_storage.For_RPC.get_staking_balance ctxt delegate
else return Tez_repr.zero
let delegated_balance ctxt delegate =
staking_balance ctxt delegate >>=? fun staking_balance ->
full_balance ctxt delegate >>=? fun self_staking_balance ->
Lwt.return Tez_repr.(staking_balance -? self_staking_balance)
end