Source file client_proto_context_commands.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
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
open Protocol
open Alpha_context
open Client_proto_context
open Client_proto_contracts
open Client_proto_rollups
open Client_keys_v0
open Client_proto_args
let save_tx_rollup ~force (cctxt : #Client_context.full) alias_name rollup
~origination_level =
let open Lwt_result_syntax in
let* () =
TxRollupAlias.add ~force cctxt alias_name {rollup; origination_level}
in
let*! () = cctxt#message "Transaction rollup memorized as %s" alias_name in
return_unit
let dry_run_switch : (_, Protocol_client_context.full) Tezos_clic.arg =
Tezos_clic.switch
~long:"dry-run"
~short:'D'
~doc:"don't inject the operation, just display it"
()
let verbose_signing_switch : (_, Protocol_client_context.full) Tezos_clic.arg =
Tezos_clic.switch
~long:"verbose-signing"
~doc:"display extra information before signing the operation"
()
let normalize_types_switch =
Tezos_clic.switch
~long:"normalize-types"
~doc:
"Whether types should be normalized (annotations removed, combs \
flattened) or kept as they appeared in the original script."
()
let report_michelson_errors ?(no_print_source = false) ~msg
(cctxt : #Client_context.full) =
let open Lwt_syntax in
function
| Error errs ->
let* errs =
Michelson_v1_error_reporter.enrich_runtime_errors
cctxt
~chain:cctxt#chain
~block:cctxt#block
~parsed:None
errs
in
let* () =
cctxt#warning
"%a"
(Michelson_v1_error_reporter.report_errors
~details:(not no_print_source)
~show_source:(not no_print_source)
?parsed:None)
errs
in
let* () = cctxt#error "%s" msg in
return_none
| Ok data -> return_some data
let group =
{
Tezos_clic.name = "context";
title = "Block contextual commands (see option -block)";
}
let alphanet = {Tezos_clic.name = "alphanet"; title = "Alphanet only commands"}
let binary_description =
{Tezos_clic.name = "description"; title = "Binary Description"}
let tez_of_string_exn index field s =
let open Lwt_result_syntax in
match Tez.of_string s with
| Some t -> return t
| None ->
failwith
"Invalid \xEA\x9C\xA9 notation at entry %i, field \"%s\": %s"
index
field
s
let tez_of_opt_string_exn index field s =
Option.map_es (tez_of_string_exn index field) s
let check_smart_contract = Managed_contract.check_smart_contract
let commands_ro () =
let open Tezos_clic in
[
command
~group
~desc:"Access the timestamp of the block."
(args1
(switch ~doc:"output time in seconds" ~short:'s' ~long:"seconds" ()))
(fixed ["get"; "timestamp"])
(fun seconds (cctxt : Protocol_client_context.full) ->
let open Lwt_result_syntax in
let* {timestamp = v; _} =
Shell_services.Blocks.Header.shell_header
cctxt
~chain:cctxt#chain
~block:cctxt#block
()
in
let*! () =
if seconds then cctxt#message "%Ld" (Time.Protocol.to_seconds v)
else cctxt#message "%s" (Time.Protocol.to_notation v)
in
return_unit);
command
~group
~desc:"Lists all non empty contracts of the block."
no_options
(fixed ["list"; "contracts"])
(fun () (cctxt : Protocol_client_context.full) ->
let open Lwt_result_syntax in
let* contracts =
list_contract_labels cctxt ~chain:cctxt#chain ~block:cctxt#block
in
let*! () =
List.iter_s
(fun (alias, hash, kind) -> cctxt#message "%s%s%s" hash kind alias)
contracts
in
return_unit);
command
~group
~desc:"Lists cached contracts and their age in LRU ordering."
no_options
(prefixes ["list"; "cached"; "contracts"] @@ stop)
(fun () (cctxt : Protocol_client_context.full) ->
let open Lwt_result_syntax in
let* keys =
cached_contracts cctxt ~chain:cctxt#chain ~block:cctxt#block
in
let*! () =
List.iter_s
(fun (key, size) -> cctxt#message "%a %d" Contract_hash.pp key size)
keys
in
return_unit);
command
~group
~desc:"Get the key rank of a cache key."
no_options
(prefixes ["get"; "cached"; "contract"; "rank"; "for"]
@@ OriginatedContractAlias.destination_param ~name:"src" ~desc:"contract"
@@ stop)
(fun () contract (cctxt : Protocol_client_context.full) ->
let open Lwt_result_syntax in
let* rank =
contract_rank cctxt ~chain:cctxt#chain ~block:cctxt#block contract
in
let*! () =
match rank with
| None -> cctxt#error "Invalid contract: %a" Contract_hash.pp contract
| Some rank -> cctxt#message "%d" rank
in
return_unit);
command
~group
~desc:"Get cache contract size."
no_options
(prefixes ["get"; "cache"; "contract"; "size"] @@ stop)
(fun () (cctxt : Protocol_client_context.full) ->
let open Lwt_result_syntax in
let* t =
contract_cache_size cctxt ~chain:cctxt#chain ~block:cctxt#block
in
let*! () = cctxt#message "%d" t in
return_unit);
command
~group
~desc:"Get cache contract size limit."
no_options
(prefixes ["get"; "cache"; "contract"; "size"; "limit"] @@ stop)
(fun () (cctxt : Protocol_client_context.full) ->
let open Lwt_result_syntax in
let* t =
contract_cache_size_limit cctxt ~chain:cctxt#chain ~block:cctxt#block
in
let*! () = cctxt#message "%d" t in
return_unit);
command
~group
~desc:"Get the balance of a contract."
no_options
(prefixes ["get"; "balance"; "for"]
@@ ContractAlias.destination_param ~name:"src" ~desc:"source contract"
@@ stop)
(fun () contract (cctxt : Protocol_client_context.full) ->
let open Lwt_result_syntax in
let* amount =
get_balance cctxt ~chain:cctxt#chain ~block:cctxt#block contract
in
let*! () =
cctxt#answer "%a %s" Tez.pp amount Operation_result.tez_sym
in
return_unit);
command
~group
~desc:"Get the storage of a contract."
(args1 (unparsing_mode_arg ~default:"Readable"))
(prefixes ["get"; "contract"; "storage"; "for"]
@@ OriginatedContractAlias.destination_param
~name:"src"
~desc:"source contract"
@@ stop)
(fun unparsing_mode contract (cctxt : Protocol_client_context.full) ->
let open Lwt_result_syntax in
let* v =
get_storage
cctxt
~chain:cctxt#chain
~block:cctxt#block
~unparsing_mode
contract
in
check_smart_contract cctxt v @@ fun storage ->
let*! () =
cctxt#answer "%a" Michelson_v1_printer.print_expr_unwrapped storage
in
return_unit);
command
~group
~desc:"Get the used storage space of a contract."
no_options
(prefixes ["get"; "contract"; "used"; "storage"; "space"; "for"]
@@ OriginatedContractAlias.destination_param
~name:"src"
~desc:"source contract"
@@ stop)
(fun () contract (cctxt : Protocol_client_context.full) ->
let open Lwt_result_syntax in
let* used_space =
get_used_storage_space
cctxt
~chain:cctxt#chain
~block:cctxt#block
contract
in
check_smart_contract cctxt used_space @@ fun used_space ->
let*! () = cctxt#answer "%a" Z.pp_print used_space in
return_unit);
command
~group
~desc:"Get the paid storage space of a contract."
no_options
(prefixes ["get"; "contract"; "paid"; "storage"; "space"; "for"]
@@ OriginatedContractAlias.destination_param
~name:"src"
~desc:"source contract"
@@ stop)
(fun () contract (cctxt : Protocol_client_context.full) ->
let open Lwt_result_syntax in
let* paid_space =
get_paid_storage_space
cctxt
~chain:cctxt#chain
~block:cctxt#block
contract
in
check_smart_contract cctxt paid_space @@ fun paid_space ->
let*! () = cctxt#answer "%a" Z.pp_print paid_space in
return_unit);
command
~group
~desc:
"Get the value associated to a key in the big map storage of a \
contract (deprecated)."
no_options
(prefixes ["get"; "big"; "map"; "value"; "for"]
@@ Tezos_clic.param ~name:"key" ~desc:"the key to look for" data_parameter
@@ prefixes ["of"; "type"]
@@ Tezos_clic.param ~name:"type" ~desc:"type of the key" data_parameter
@@ prefix "in"
@@ OriginatedContractAlias.destination_param
~name:"src"
~desc:"source contract"
@@ stop)
(fun () key key_type contract (cctxt : Protocol_client_context.full) ->
let open Lwt_result_syntax in
let* v =
get_contract_big_map_value
cctxt
~chain:cctxt#chain
~block:cctxt#block
contract
(key.expanded, key_type.expanded)
in
match v with
| None -> cctxt#error "No value associated to this key."
| Some value ->
let*! () =
cctxt#answer "%a" Michelson_v1_printer.print_expr_unwrapped value
in
return_unit);
command
~group
~desc:"Get a value in a big map."
(args1 (unparsing_mode_arg ~default:"Readable"))
(prefixes ["get"; "element"]
@@ Tezos_clic.param
~name:"key"
~desc:"the key to look for"
(Tezos_clic.parameter (fun _ s ->
Lwt_result_syntax.return (Script_expr_hash.of_b58check_exn s)))
@@ prefixes ["of"; "big"; "map"]
@@ Tezos_clic.param
~name:"big_map"
~desc:"identifier of the big_map"
int_parameter
@@ stop)
(fun unparsing_mode key id (cctxt : Protocol_client_context.full) ->
let open Lwt_result_syntax in
let* value =
get_big_map_value
cctxt
~chain:cctxt#chain
~block:cctxt#block
~unparsing_mode
(Big_map.Id.parse_z (Z.of_int id))
key
in
let*! () =
cctxt#answer "%a" Michelson_v1_printer.print_expr_unwrapped value
in
return_unit);
command
~group
~desc:"Get the code of a contract."
(args2 (unparsing_mode_arg ~default:"Readable") normalize_types_switch)
(prefixes ["get"; "contract"; "code"; "for"]
@@ OriginatedContractAlias.destination_param
~name:"src"
~desc:"source contract"
@@ stop)
(fun (unparsing_mode, normalize_types)
contract
(cctxt : Protocol_client_context.full) ->
let open Lwt_result_syntax in
let* v =
get_script
cctxt
~chain:cctxt#chain
~block:cctxt#block
~unparsing_mode
~normalize_types
contract
in
check_smart_contract cctxt v @@ fun {code; storage = _} ->
match Script_repr.force_decode code with
| Error errs -> cctxt#error "%a" Environment.Error_monad.pp_trace errs
| Ok code ->
let {Michelson_v1_parser.source; _} =
Michelson_v1_printer.unparse_toplevel code
in
let*! () = cctxt#answer "%s" source in
return_unit);
command
~group
~desc:"Get the `BLAKE2B` script hash of a contract."
no_options
(prefixes ["get"; "contract"; "script"; "hash"; "for"]
@@ OriginatedContractAlias.destination_param
~name:"src"
~desc:"source contract"
@@ stop)
(fun () contract (cctxt : Protocol_client_context.full) ->
let open Lwt_syntax in
let* r =
get_script_hash cctxt ~chain:cctxt#chain ~block:cctxt#block contract
in
match r with
| Error errs -> cctxt#error "%a" pp_print_trace errs
| Ok hash ->
check_smart_contract cctxt hash @@ fun hash ->
let* () = cctxt#answer "%a" Script_expr_hash.pp hash in
return_ok_unit);
command
~group
~desc:"Get the type of an entrypoint of a contract."
(args1 normalize_types_switch)
(prefixes ["get"; "contract"; "entrypoint"; "type"; "of"]
@@ Tezos_clic.param
~name:"entrypoint"
~desc:"the entrypoint to describe"
entrypoint_parameter
@@ prefixes ["for"]
@@ OriginatedContractAlias.destination_param
~name:"src"
~desc:"source contract"
@@ stop)
(fun normalize_types
entrypoint
contract
(cctxt : Protocol_client_context.full) ->
let open Lwt_syntax in
let* t =
Michelson_v1_entrypoints.contract_entrypoint_type
cctxt
~chain:cctxt#chain
~block:cctxt#block
~contract
~entrypoint
~normalize_types
in
Michelson_v1_entrypoints.print_entrypoint_type
cctxt
~emacs:false
~contract
~entrypoint
t);
command
~group
~desc:"Get the entrypoint list of a contract."
(args1 normalize_types_switch)
(prefixes ["get"; "contract"; "entrypoints"; "for"]
@@ OriginatedContractAlias.destination_param
~name:"src"
~desc:"source contract"
@@ stop)
(fun normalize_types contract (cctxt : Protocol_client_context.full) ->
let open Lwt_syntax in
let* es =
Michelson_v1_entrypoints.list_contract_entrypoints
cctxt
~chain:cctxt#chain
~block:cctxt#block
~contract
~normalize_types
in
Michelson_v1_entrypoints.print_entrypoints_list
cctxt
~emacs:false
~contract
es);
command
~group
~desc:"Get the list of unreachable paths in a contract's parameter type."
no_options
(prefixes ["get"; "contract"; "unreachable"; "paths"; "for"]
@@ OriginatedContractAlias.destination_param
~name:"src"
~desc:"source contract"
@@ stop)
(fun () contract (cctxt : Protocol_client_context.full) ->
let open Lwt_syntax in
let* u =
Michelson_v1_entrypoints.list_contract_unreachables
cctxt
~chain:cctxt#chain
~block:cctxt#block
~contract
in
Michelson_v1_entrypoints.print_unreachables
cctxt
~emacs:false
~contract
u);
command
~group
~desc:"Get the delegate of a contract."
no_options
(prefixes ["get"; "delegate"; "for"]
@@ ContractAlias.destination_param ~name:"src" ~desc:"source contract"
@@ stop)
(fun () contract (cctxt : Protocol_client_context.full) ->
let open Lwt_result_syntax in
let* v =
Client_proto_contracts.get_delegate
cctxt
~chain:cctxt#chain
~block:cctxt#block
contract
in
match v with
| None ->
let*! () = cctxt#message "none" in
return_unit
| Some delegate ->
let* mn = Public_key_hash.rev_find cctxt delegate in
let* m = Public_key_hash.to_source delegate in
let*! () =
cctxt#message
"%s (%s)"
m
(match mn with None -> "unknown" | Some n -> "known as " ^ n)
in
return_unit);
command
~desc:"Get receipt for past operation"
(args1
(default_arg
~long:"check-previous"
~placeholder:"num_blocks"
~doc:"number of previous blocks to check"
~default:"10"
non_negative_parameter))
(prefixes ["get"; "receipt"; "for"]
@@ param
~name:"operation"
~desc:"Operation to be looked up"
(parameter (fun _ x ->
match Operation_hash.of_b58check_opt x with
| None -> Error_monad.failwith "Invalid operation hash: '%s'" x
| Some hash -> Lwt_result_syntax.return hash))
@@ stop)
(fun predecessors operation_hash (ctxt : Protocol_client_context.full) ->
display_receipt_for_operation
ctxt
~chain:ctxt#chain
~predecessors
operation_hash);
command
~group
~desc:"Summarize the current voting period"
no_options
(fixed ["show"; "voting"; "period"])
(fun () (cctxt : Protocol_client_context.full) ->
let open Lwt_result_syntax in
let* info =
get_period_info ~chain:cctxt#chain ~block:cctxt#block cctxt
in
let*! () =
cctxt#message
"Current period: %a\nBlocks remaining until end of period: %ld"
Data_encoding.Json.pp
(Data_encoding.Json.construct
Alpha_context.Voting_period.kind_encoding
info.current_period_kind)
info.remaining
in
let* known_protos = Shell_services.Protocol.list cctxt in
let* props =
get_proposals ~chain:cctxt#chain ~block:cctxt#block cctxt
in
let ranks =
Environment.Protocol_hash.Map.bindings props
|> List.sort (fun (_, v1) (_, v2) -> Int64.(compare v2 v1))
in
let print_proposal = function
| None ->
cctxt#message "The current proposal has already been cleared."
| Some proposal ->
cctxt#message "Current proposal: %a" Protocol_hash.pp proposal
in
match info.current_period_kind with
| Proposal ->
let*! () =
if info.remaining <> 0l then
cctxt#answer
"Current proposals:%t"
Format.(
fun ppf ->
pp_print_cut ppf () ;
pp_open_vbox ppf 0 ;
List.iter
(fun (p, w) ->
fprintf
ppf
"* %a %a %s (%sknown by the node)@."
Protocol_hash.pp
p
Tez.pp
(Tez.of_mutez_exn w)
Operation_result.tez_sym
(if
List.mem ~equal:Protocol_hash.equal p known_protos
then ""
else "not "))
ranks ;
pp_close_box ppf ())
else cctxt#message "The proposals have already been cleared."
in
return_unit
| Exploration | Promotion ->
let*! () = print_proposal info.current_proposal in
if info.remaining <> 0l then
let* ballots_info =
get_ballots_info ~chain:cctxt#chain ~block:cctxt#block cctxt
in
let*! () =
cctxt#answer
"@[<v>Ballots:@,\
\ Yay: %a %s@,\
\ Nay: %a %s@,\
\ Pass: %a %s@,\
Current participation %.2f%%, necessary quorum %.2f%%@,\
Current in favor %a %s, needed supermajority %a %s@]"
Tez.pp
(Tez.of_mutez_exn ballots_info.ballots.yay)
Operation_result.tez_sym
Tez.pp
(Tez.of_mutez_exn ballots_info.ballots.nay)
Operation_result.tez_sym
Tez.pp
(Tez.of_mutez_exn ballots_info.ballots.pass)
Operation_result.tez_sym
(Int32.to_float ballots_info.participation /. 100.)
(Int32.to_float ballots_info.current_quorum /. 100.)
Tez.pp
(Tez.of_mutez_exn ballots_info.ballots.yay)
Operation_result.tez_sym
Tez.pp
(Tez.of_mutez_exn ballots_info.supermajority)
Operation_result.tez_sym
in
return_unit
else
let*! () =
cctxt#message "The ballots have already been cleared."
in
return_unit
| Cooldown ->
let*! () = print_proposal info.current_proposal in
return_unit
| Adoption ->
let*! () = print_proposal info.current_proposal in
return_unit);
command
~group:binary_description
~desc:"Describe unsigned block header"
no_options
(fixed ["describe"; "unsigned"; "block"; "header"])
(fun () (cctxt : Protocol_client_context.full) ->
let open Lwt_result_syntax in
let*! () =
cctxt#message
"%a"
Data_encoding.Binary_schema.pp
(Data_encoding.Binary.describe
Alpha_context.Block_header.unsigned_encoding)
in
return_unit);
command
~group:binary_description
~desc:"Describe unsigned operation"
no_options
(fixed ["describe"; "unsigned"; "operation"])
(fun () (cctxt : Protocol_client_context.full) ->
let open Lwt_result_syntax in
let*! () =
cctxt#message
"%a"
Data_encoding.Binary_schema.pp
(Data_encoding.Binary.describe
Alpha_context.Operation.unsigned_encoding)
in
return_unit);
command
~group
~desc:"Get the frozen deposits limit of a delegate."
no_options
(prefixes ["get"; "deposits"; "limit"; "for"]
@@ ContractAlias.destination_param ~name:"src" ~desc:"source delegate"
@@ stop)
(fun () contract (cctxt : Protocol_client_context.full) ->
let open Lwt_result_syntax in
match contract with
| Originated _ ->
cctxt#error
"Cannot change deposits limit on contract %a. This operation is \
invalid on originated contracts."
Contract.pp
contract
| Implicit delegate ->
let* o =
get_frozen_deposits_limit
cctxt
~chain:cctxt#chain
~block:cctxt#block
delegate
in
let*! () =
match o with
| None -> cctxt#answer "unlimited"
| Some limit ->
cctxt#answer "%a %s" Tez.pp limit Operation_result.tez_sym
in
return_unit);
]
let commands _network () = commands_ro ()