Source file managed_contract.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
354
355
356
357
358
359
open Protocol
open Alpha_context
open Protocol_client_context
open Tezos_micheline
let return_single_manager_result (oph, _, op, result) =
match Apply_results.pack_contents_list op result with
| Apply_results.Single_and_result ((Manager_operation _ as op), result) ->
return (oph, op, result)
| _ -> assert false
let check_smart_contract (cctxt : #full) opt_res some =
Option.fold ~none:(cctxt#error "This is not a smart contract.") ~some opt_res
let get_contract_manager (cctxt : #full) contract =
let open Micheline in
let open Michelson_v1_primitives in
let open Lwt_result_syntax in
let* storage =
Client_proto_context.get_storage
cctxt
~chain:cctxt#chain
~block:cctxt#block
~unparsing_mode:Optimized
contract
in
check_smart_contract cctxt storage @@ fun storage ->
match root storage with
| Prim (_, D_Pair, Bytes (_, bytes) :: _, _) | Bytes (_, bytes) -> (
match
Data_encoding.Binary.of_bytes_opt
Signature.Public_key_hash.encoding
bytes
with
| Some k -> return k
| None ->
cctxt#error
"Cannot find a manager key in contracts storage (decoding bytes \
failed).\n\
Transfer from scripted contract are currently only supported for \
\"manager\" contract.")
| Prim (_, D_Pair, String (_, value) :: _, _) | String (_, value) -> (
match Signature.Public_key_hash.of_b58check_opt value with
| Some k -> return k
| None ->
cctxt#error
"Cannot find a manager key in contracts storage (\"%s\" is not a \
valid key).\n\
Transfer from scripted contract are currently only supported for \
\"manager\" contract."
value)
| _raw_storage ->
cctxt#error
"Cannot find a manager key in contracts storage (wrong storage format \
: @[%a@]).\n\
Transfer from scripted contract are currently only supported for \
\"manager\" contract."
Michelson_v1_printer.print_expr
storage
let parse code =
let open Lwt_result_syntax in
let parsed_exp = Michelson_v1_parser.parse_expression code in
let*? {expanded; _} = Micheline_parser.no_parsing_error parsed_exp in
return (Script.lazy_expr expanded)
let build_lambda_for_set_delegate ~delegate =
match delegate with
| Some delegate ->
let (`Hex delegate) = Signature.Public_key_hash.to_hex delegate in
Format.asprintf
"{ DROP ; NIL operation ; PUSH key_hash 0x%s ; SOME ; SET_DELEGATE ; \
CONS }"
delegate
| None -> "{ DROP ; NIL operation ; NONE key_hash ; SET_DELEGATE ; CONS }"
let entrypoint_do = Entrypoint.do_
let entrypoint_set_delegate = Entrypoint.set_delegate
let entrypoint_remove_delegate = Entrypoint.remove_delegate
let build_delegate_operation (cctxt : #full) ~chain ~block ?fee
contract
(delegate : Signature.public_key_hash option) =
let open Lwt_result_syntax in
let entrypoint = entrypoint_do in
let* expr_opt =
Michelson_v1_entrypoints.contract_entrypoint_type
cctxt
~chain
~block
~contract
~entrypoint
~normalize_types:true
in
let* parameters, entrypoint =
match expr_opt with
| Some _ ->
let* param = parse @@ build_lambda_for_set_delegate ~delegate in
return (param, entrypoint)
| None -> (
let entrypoint =
match delegate with
| Some _ -> entrypoint_set_delegate
| None -> entrypoint_remove_delegate
in
let* expr_opt =
Michelson_v1_entrypoints.contract_entrypoint_type
cctxt
~chain
~block
~contract
~entrypoint
~normalize_types:true
in
match expr_opt with
| Some _ ->
let delegate_data =
match delegate with
| Some delegate ->
let (`Hex delegate) =
Signature.Public_key_hash.to_hex delegate
in
"0x" ^ delegate
| None -> "Unit"
in
let* param = parse delegate_data in
return (param, entrypoint)
| None ->
cctxt#error
"Cannot find a %%do or %%set_delegate entrypoint in contract@.")
in
return
(Client_proto_context.build_transaction_operation
~amount:Tez.zero
~parameters
~entrypoint
?fee
(Originated contract))
let set_delegate (cctxt : #full) ~chain ~block ?confirmations ?dry_run
?verbose_signing ?simulation ?branch ~fee_parameter ?fee ~source ~src_pk
~src_sk contract
(delegate : Signature.public_key_hash option) =
let open Lwt_result_syntax in
let* operation =
build_delegate_operation cctxt ~chain ~block ?fee contract delegate
in
let operation = Annotated_manager_operation.Single_manager operation in
let* result =
Injection.inject_manager_operation
cctxt
~chain
~block
?confirmations
?dry_run
?verbose_signing
?simulation
?branch
~source
~fee:(Limit.of_option fee)
~gas_limit:Limit.unknown
~storage_limit:(Limit.known Z.zero)
~src_pk
~src_sk
~fee_parameter
operation
in
return_single_manager_result result
let d_unit =
Micheline.strip_locations (Prim (0, Michelson_v1_primitives.D_Unit, [], []))
let t_unit =
Micheline.strip_locations (Prim (0, Michelson_v1_primitives.T_unit, [], []))
let build_lambda_for_transfer_to_implicit ~destination ~amount =
let (`Hex destination) = Signature.Public_key_hash.to_hex destination in
Format.asprintf
"{ DROP ; NIL operation ;PUSH key_hash 0x%s; IMPLICIT_ACCOUNT;PUSH mutez \
%Ld ;UNIT;TRANSFER_TOKENS ; CONS }"
destination
(Tez.to_mutez amount)
let build_lambda_for_transfer_to_originated ~destination ~entrypoint ~amount
~parameter_type ~parameter =
let destination =
Data_encoding.Binary.to_bytes_exn Contract.originated_encoding destination
in
let amount = Tez.to_mutez amount in
let (`Hex destination) = Hex.of_bytes destination in
let entrypoint = Entrypoint.to_address_suffix entrypoint in
if parameter_type = t_unit then
Format.asprintf
"{ DROP ; NIL operation ;PUSH address 0x%s; CONTRACT %s %a; \
ASSERT_SOME;PUSH mutez %Ld ;UNIT;TRANSFER_TOKENS ; CONS }"
destination
entrypoint
Michelson_v1_printer.print_expr
parameter_type
amount
else
Format.asprintf
"{ DROP ; NIL operation ;PUSH address 0x%s; CONTRACT %s %a; \
ASSERT_SOME;PUSH mutez %Ld ;PUSH %a %a;TRANSFER_TOKENS ; CONS }"
destination
entrypoint
Michelson_v1_printer.print_expr
parameter_type
amount
Michelson_v1_printer.print_expr
parameter_type
Michelson_v1_printer.print_expr
parameter
let build_transaction_operation (cctxt : #full) ~chain ~block ~contract
~(destination : Contract.t) ?(entrypoint = Entrypoint.default) ?arg ~amount
?fee ?gas_limit ?storage_limit () =
let open Lwt_result_syntax in
let* lambda =
match destination with
| Implicit destination when Entrypoint.is_default entrypoint ->
return @@ build_lambda_for_transfer_to_implicit ~destination ~amount
| Implicit _ ->
cctxt#error
"Implicit accounts have no entrypoints. (targeted entrypoint %%%a on \
contract %a)"
Entrypoint.pp
entrypoint
Contract.pp
destination
| Originated destination ->
let* parameter_type =
let* expr_opt =
Michelson_v1_entrypoints.contract_entrypoint_type
cctxt
~chain
~block
~contract:destination
~entrypoint
~normalize_types:true
in
match expr_opt with
| None ->
cctxt#error
"Contract %a has no entrypoint named %a"
Contract_hash.pp
destination
Entrypoint.pp
entrypoint
| Some parameter_type -> return parameter_type
in
let* parameter =
match arg with
| Some arg ->
let* {expanded = arg; _} =
Lwt.return @@ Micheline_parser.no_parsing_error
@@ Michelson_v1_parser.parse_expression arg
in
return_some arg
| None -> return_none
in
let parameter = Option.value ~default:d_unit parameter in
return
@@ build_lambda_for_transfer_to_originated
~destination
~entrypoint
~amount
~parameter_type
~parameter
in
let* parameters = parse lambda in
let entrypoint = entrypoint_do in
return
(Client_proto_context.build_transaction_operation
~amount:Tez.zero
~parameters
~entrypoint
?fee
?gas_limit
?storage_limit
contract)
let transfer (cctxt : #full) ~chain ~block ?confirmations ?dry_run
?verbose_signing ?simulation ?(force = false) ?branch ~source ~src_pk
~src_sk ~contract ~destination ?(entrypoint = Entrypoint.default) ?arg
~amount ?fee ?gas_limit ?storage_limit ?counter ~fee_parameter () :
(Kind.transaction Kind.manager Injection.result * Contract_hash.t list)
tzresult
Lwt.t =
let open Lwt_result_syntax in
let* operation =
build_transaction_operation
cctxt
~chain
~block
~contract
~destination
~entrypoint
?arg
~amount
?fee
?gas_limit
?storage_limit
()
in
let operation = Annotated_manager_operation.Single_manager operation in
let* ((_, _, _, result) as res) =
Injection.inject_manager_operation
cctxt
~chain
~block
?confirmations
?dry_run
?verbose_signing
?simulation
~force
?branch
~source
~fee:(Limit.of_option fee)
~gas_limit:(Limit.of_option gas_limit)
~storage_limit:(Limit.of_option storage_limit)
?counter
~src_pk
~src_sk
~fee_parameter
operation
in
let*? contracts = Injection.originated_contracts ~force result in
let* res = return_single_manager_result res in
return (res, contracts)