forked from Concordium/Testnet4-Challenges
-
Notifications
You must be signed in to change notification settings - Fork 0
/
090221.log
1602 lines (1547 loc) · 136 KB
/
090221.log
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
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
Transferring 0.100000 GTU from encrypted balance of account '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Tue, 9 Feb 2021 05:10:02 UTC.
Enter password for signing key:
[92mTransaction '023189917a1ae8fee388abfc89129a42a0e869b2a03991f6222467aeaf45c5da' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status 023189917a1ae8fee388abfc89129a42a0e869b2a03991f6222467aeaf45c5da'.
[05:00:10] Waiting for the transaction to be committed............
Transaction is committed into block f84cfa6e4819886cc86ad55f2f83b006326e0d89b5720cb2c663172942d2224c with status "success" and cost 3.007000 GTU (30070 NRG).
[05:00:34] Waiting for the transaction to be finalized.......
[05:00:57] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
Transferring 0.100000 GTU from encrypted balance of account '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Tue, 9 Feb 2021 05:15:01 UTC.
Enter password for signing key:
[92mTransaction 'c4eb21f6ae2c162aaddb88c504e2bd90ee7291081488e010e4fc7b9d211ac93a' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status c4eb21f6ae2c162aaddb88c504e2bd90ee7291081488e010e4fc7b9d211ac93a'.
[05:05:09] Waiting for the transaction to be committed...............
Transaction is committed into block 81165ea3fb501598860644ee4395230d5a3d55e452583ef463ccc2ea260fc668 with status "success" and cost 3.007000 GTU (30070 NRG).
[05:05:40] Waiting for the transaction to be finalized....
[05:05:46] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
Transferring 0.100000 GTU from encrypted balance of account '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Tue, 9 Feb 2021 05:20:01 UTC.
Enter password for signing key:
[92mTransaction 'a9dccd920e8c1dfb8abda3df12ee33a6217195f3830f1a13c3f2ad8dfb684a06' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status a9dccd920e8c1dfb8abda3df12ee33a6217195f3830f1a13c3f2ad8dfb684a06'.
[05:10:09] Waiting for the transaction to be committed.............
Transaction is committed into block f1a41f26d220816f31df69ba568f7f9297b793d54aa94d4b7d485587d730e88f with status "success" and cost 3.007000 GTU (30070 NRG).
[05:10:35] Waiting for the transaction to be finalized......
[05:10:52] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
Transferring 0.100000 GTU from encrypted balance of account '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Tue, 9 Feb 2021 05:25:02 UTC.
Enter password for signing key:
[92mTransaction '7e2d438b4580e5f4d202fb955ceabb7c5726e4052325e2b36a9892e28da8bcad' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status 7e2d438b4580e5f4d202fb955ceabb7c5726e4052325e2b36a9892e28da8bcad'.
[05:15:09] Waiting for the transaction to be committed..................
Transaction is committed into block ef10427cb4d13a15d0f6d47e712d8578619c41adf10acc0a6900b6f13f9c0d4a with status "success" and cost 3.007000 GTU (30070 NRG).
[05:15:49] Waiting for the transaction to be finalized......
[05:16:11] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
Transferring 0.100000 GTU from encrypted balance of account '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Tue, 9 Feb 2021 05:30:02 UTC.
Enter password for signing key:
[92mTransaction '8755193f96485781ce2dffae17215e332530ccc7cbe7be20e890e2326fa94a95' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status 8755193f96485781ce2dffae17215e332530ccc7cbe7be20e890e2326fa94a95'.
[05:20:09] Waiting for the transaction to be committed............
Transaction is committed into block ffa22928b562d3700a07f0b36d6cc464a69c74a8da8b63fbd9ae1b7f8e62f54c with status "success" and cost 3.007000 GTU (30070 NRG).
[05:20:34] Waiting for the transaction to be finalized....
[05:20:40] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
Transferring 0.100000 GTU from encrypted balance of account '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Tue, 9 Feb 2021 05:35:01 UTC.
Enter password for signing key:
[92mTransaction '60528f47eda7ec1330fad5fae605cd478cfc790cd20d1d9d4a45974d62d4438b' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status 60528f47eda7ec1330fad5fae605cd478cfc790cd20d1d9d4a45974d62d4438b'.
[05:25:08] Waiting for the transaction to be committed........
Transaction is committed into block 81050b39622b50624eaa369c7ea84178ba46ee06b6befd9b86d911bee3d0e9f8 with status "success" and cost 3.007000 GTU (30070 NRG).
[05:25:21] Waiting for the transaction to be finalized....
[05:25:27] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
Transferring 0.100000 GTU from encrypted balance of account '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Tue, 9 Feb 2021 05:40:01 UTC.
Enter password for signing key:
[92mTransaction 'ed85ed18f634db826f9cfbaaeea772cbf36845cfa493e1824514fbe965aa43c9' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status ed85ed18f634db826f9cfbaaeea772cbf36845cfa493e1824514fbe965aa43c9'.
[05:30:09] Waiting for the transaction to be committed.........................
Transaction is committed into block 3af7c59b5fecbf3d82351f83ee790134c374b738be7b09a72d9cf7a36fabc5c0 with status "success" and cost 3.007000 GTU (30070 NRG).
[05:31:04] Waiting for the transaction to be finalized....
[05:31:09] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
Transferring 0.100000 GTU from encrypted balance of account '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Tue, 9 Feb 2021 05:45:02 UTC.
Enter password for signing key:
[92mTransaction '9e29ab0b5dae98eec2a42e19138f9b8c551900d1f8395cb65d76dc06b1a5bd62' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status 9e29ab0b5dae98eec2a42e19138f9b8c551900d1f8395cb65d76dc06b1a5bd62'.
[05:35:09] Waiting for the transaction to be committed...........
Transaction is committed into block f1375f4e02f78f67ce87eaaf894d5d2c7cf9f392a2aae3530016908d60a359ff with status "success" and cost 3.007000 GTU (30070 NRG).
[05:35:30] Waiting for the transaction to be finalized....
[05:35:35] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
Transferring 0.100000 GTU from encrypted balance of account '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Tue, 9 Feb 2021 05:50:02 UTC.
Enter password for signing key:
[92mTransaction '250d2f80b0f62c06f0c0cd821d8dbeb97f14c6a6405128c871c7ee39f68bb85f' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status 250d2f80b0f62c06f0c0cd821d8dbeb97f14c6a6405128c871c7ee39f68bb85f'.
[05:40:09] Waiting for the transaction to be committed...........
Transaction is committed into block 8763a417130a777cae9073aaf3837f958ce331d87ff9bc48486c5c114a990363 with status "success" and cost 3.007000 GTU (30070 NRG).
[05:40:31] Waiting for the transaction to be finalized.....
Transaction is finalized into block d4c809b08796cc0d28999dbe9ca8c088bc61a82b7b7e03083594d766fe610bc3 with status "success" and cost 3.007000 GTU (30070 NRG).
[05:40:46] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
Transferring 0.100000 GTU from encrypted balance of account '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Tue, 9 Feb 2021 05:55:02 UTC.
Enter password for signing key:
[92mTransaction '5841d1ebbb33b7d53b482f8fa77922a2b9506898f6dd543a32e63e3509afa18c' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status 5841d1ebbb33b7d53b482f8fa77922a2b9506898f6dd543a32e63e3509afa18c'.
[05:45:09] Waiting for the transaction to be committed...........
Transaction is committed into block 9d088244822b430a816090badd5e8e0c2359b5f1f352303607a6634ce7107e37 with status "success" and cost 3.007000 GTU (30070 NRG).
[05:45:32] Waiting for the transaction to be finalized....
[05:45:37] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
Transferring 0.100000 GTU from encrypted balance of account '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Tue, 9 Feb 2021 06:00:01 UTC.
Enter password for signing key:
[92mTransaction '4a39155b05f2734f078d2f91eb571e3d72883554ac18423ab1aa37545794c5fa' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status 4a39155b05f2734f078d2f91eb571e3d72883554ac18423ab1aa37545794c5fa'.
[05:50:09] Waiting for the transaction to be committed...............
Transaction is committed into block e53be89bf44e91d2344613652d67b1763c9bea706932c042d24b57511a9d9d2f with status "success" and cost 3.007000 GTU (30070 NRG).
[05:50:41] Waiting for the transaction to be finalized.....
[05:51:02] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
Transferring 0.100000 GTU from encrypted balance of account '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Tue, 9 Feb 2021 06:05:02 UTC.
Enter password for signing key:
[92mTransaction '9722ee6c1a30a0a1731a670e4a15fa480fcbbf7d1d16b74da185023512329ba6' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status 9722ee6c1a30a0a1731a670e4a15fa480fcbbf7d1d16b74da185023512329ba6'.
[05:55:09] Waiting for the transaction to be committed...........
Transaction is committed into block daa999b2feb2870e57cdd113a729aedea97540e2c8885420f8380b6dbe3f02e9 with status "success" and cost 3.007000 GTU (30070 NRG).
[05:55:32] Waiting for the transaction to be finalized.......
[05:55:58] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
Transferring 0.100000 GTU from encrypted balance of account '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Tue, 9 Feb 2021 07:10:01 UTC.
Enter password for signing key:
[92mTransaction 'c29e44631ffe69eec08f22815a09a52dff1f3c1cf831c4a1487b3f3bf2e25d50' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status c29e44631ffe69eec08f22815a09a52dff1f3c1cf831c4a1487b3f3bf2e25d50'.
[07:00:09] Waiting for the transaction to be committed.......
Transaction is committed into block 8fa821c539ebf028fc9c0b022f3e862e38c144a0572745f7d8f0076647207960 with status "success" and cost 3.007000 GTU (30070 NRG).
[07:00:21] Waiting for the transaction to be finalized......
[07:00:38] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
Transferring 0.100000 GTU from encrypted balance of account '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Tue, 9 Feb 2021 07:15:02 UTC.
Enter password for signing key:
[92mTransaction '89e35d6dc33d045b61d8fb577ee606540ebbc6eeb8ea8d0d50d5c9b45e0566ad' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status 89e35d6dc33d045b61d8fb577ee606540ebbc6eeb8ea8d0d50d5c9b45e0566ad'.
[07:05:09] Waiting for the transaction to be committed.........
Transaction is committed into block ded3b135230e968c80a6379fcecf552aa0c99df4a2c1740d2efb8d2c739c4bb5 with status "success" and cost 3.007000 GTU (30070 NRG).
[07:05:26] Waiting for the transaction to be finalized....
[07:05:32] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
Transferring 0.100000 GTU from encrypted balance of account '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Tue, 9 Feb 2021 07:20:01 UTC.
Enter password for signing key:
[92mTransaction '871f556ccdb0b875c60b56b8537d8fb795712a96a1e58df497f8f13dc7f84de3' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status 871f556ccdb0b875c60b56b8537d8fb795712a96a1e58df497f8f13dc7f84de3'.
[07:10:09] Waiting for the transaction to be committed..........
Transaction is committed into block 6f9740af54bf1ef339033e880dd051c3867b714bc79200f63f629d82bfdf0fcb with status "success" and cost 3.007000 GTU (30070 NRG).
[07:10:28] Waiting for the transaction to be finalized......
[07:10:46] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
Transferring 0.100000 GTU from encrypted balance of account '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Tue, 9 Feb 2021 07:25:01 UTC.
Enter password for signing key:
[92mTransaction '63224f38de249fe21cdc061fd4d1dc7cdfc314f903710b177092fe076c55c617' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status 63224f38de249fe21cdc061fd4d1dc7cdfc314f903710b177092fe076c55c617'.
[07:15:09] Waiting for the transaction to be committed............
Transaction is committed into block 35d94293d9fac2b7f76e0c6221f1d962766cf566b80246fc3a8384455970054c with status "success" and cost 3.007000 GTU (30070 NRG).
[07:15:32] Waiting for the transaction to be finalized....
[07:15:38] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
Transferring 0.100000 GTU from encrypted balance of account '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Tue, 9 Feb 2021 07:30:01 UTC.
Enter password for signing key:
[92mTransaction 'bcf0917af9c47d04ddf796830912b4575ea33533e5763f1eec1dcbb8964c5c73' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status bcf0917af9c47d04ddf796830912b4575ea33533e5763f1eec1dcbb8964c5c73'.
[07:20:09] Waiting for the transaction to be committed..........
Transaction is committed into block 17e85b8bad13a9689c90db26e4f3a53b8be964479219dde70571de7540ee8985 with status "success" and cost 3.007000 GTU (30070 NRG).
[07:20:28] Waiting for the transaction to be finalized....
[07:20:33] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
Transferring 0.100000 GTU from encrypted balance of account '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Tue, 9 Feb 2021 07:35:01 UTC.
Enter password for signing key:
[92mTransaction '64b45b4689c31d5e8cff9d737c8c6a96fea1db3d4aad8e651dafaee170bb144a' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status 64b45b4689c31d5e8cff9d737c8c6a96fea1db3d4aad8e651dafaee170bb144a'.
[07:25:09] Waiting for the transaction to be committed.........
Transaction is committed into block 22e27e8bf1c9201bc61b2b210d56310a12bd8f08af71923365ea0db5ef464b3f with status "success" and cost 3.007000 GTU (30070 NRG).
[07:25:24] Waiting for the transaction to be finalized....
[07:25:30] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
Transferring 0.100000 GTU from encrypted balance of account '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Tue, 9 Feb 2021 07:40:01 UTC.
Enter password for signing key:
[92mTransaction '544982dccdb58294edb07341607b26daf543bc8625622192a9bec1ff32b28be2' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status 544982dccdb58294edb07341607b26daf543bc8625622192a9bec1ff32b28be2'.
[07:30:09] Waiting for the transaction to be committed.......
Transaction is committed into block 33418084017dafb7551e20345107cb30b63caaf0ce50f609144a3c4ba8717919 with status "success" and cost 3.007000 GTU (30070 NRG).
[07:30:20] Waiting for the transaction to be finalized....
[07:30:25] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
Transferring 0.100000 GTU from encrypted balance of account '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Tue, 9 Feb 2021 07:45:02 UTC.
Enter password for signing key:
[92mTransaction '8901b5adf0d7cc562fd3ff996dc3dcf341d16e125d16f33dc330af8866fb49a3' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status 8901b5adf0d7cc562fd3ff996dc3dcf341d16e125d16f33dc330af8866fb49a3'.
[07:35:09] Waiting for the transaction to be committed...........
Transaction is committed into block 0dbb1b9922a9c941a91505b6ac925c7546a4b05aca4e35b76ef49ee795bebf52 with status "success" and cost 3.007000 GTU (30070 NRG).
[07:35:31] Waiting for the transaction to be finalized....
[07:35:36] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
Transferring 0.100000 GTU from encrypted balance of account '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Tue, 9 Feb 2021 07:50:02 UTC.
Enter password for signing key:
[92mTransaction 'e5f73bea417f1e3f46109e10811be511b6c626d86f4f07c106e5e5644ebf5dbe' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status e5f73bea417f1e3f46109e10811be511b6c626d86f4f07c106e5e5644ebf5dbe'.
[07:40:10] Waiting for the transaction to be committed.........
Transaction is finalized into block 687e90822c19a1918e83a3b813f04fcc13f2ad1a71156c74f14f6e90c86b437b with status "success" and cost 3.007000 GTU (30070 NRG).
[07:40:24] Waiting for the transaction to be finalized...
[07:40:24] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
Transferring 0.100000 GTU from encrypted balance of account '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Tue, 9 Feb 2021 07:55:02 UTC.
Enter password for signing key:
[92mTransaction '22a58f0cf1c3989a8b1e1da706a0ea8a69eeb6fe4ca8f397183faf4635734780' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status 22a58f0cf1c3989a8b1e1da706a0ea8a69eeb6fe4ca8f397183faf4635734780'.
[07:45:09] Waiting for the transaction to be committed................
Transaction is committed into block f98999cefdc759d99a45a1473aa2f2b36dafc6084e8b62ba444d221840fd4042 with status "success" and cost 3.007000 GTU (30070 NRG).
[07:45:42] Waiting for the transaction to be finalized....
[07:45:48] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
Transferring 0.100000 GTU from encrypted balance of account '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Tue, 9 Feb 2021 08:00:02 UTC.
Enter password for signing key:
[92mTransaction '56eaaae39beeb412e0f24516a8c07e3fe873d8f1f24db0ed85c57165ea804316' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status 56eaaae39beeb412e0f24516a8c07e3fe873d8f1f24db0ed85c57165ea804316'.
[07:50:09] Waiting for the transaction to be committed..............
Transaction is committed into block 33f8b0b94aa64164d16ec47a9a5520aeee649df901f34107f4b695d10508a9ab with status "success" and cost 3.007000 GTU (30070 NRG).
[07:50:37] Waiting for the transaction to be finalized....
[07:50:43] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
Transferring 0.100000 GTU from encrypted balance of account '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Tue, 9 Feb 2021 08:05:02 UTC.
Enter password for signing key:
[92mTransaction 'e513d9e84234dea40002b8bd6e4634f5f9797804a8c90061977a55e2e7d960e1' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status e513d9e84234dea40002b8bd6e4634f5f9797804a8c90061977a55e2e7d960e1'.
[07:55:09] Waiting for the transaction to be committed...........................
Transaction is committed into block 8574196a0a98d1fbbcbae79c11c88355d6a05360cced6a9b51e0cb78e370b547 with status "success" and cost 3.007000 GTU (30070 NRG).
[07:56:07] Waiting for the transaction to be finalized...
[07:56:07] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
Transferring 0.100000 GTU from encrypted balance of account '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Tue, 9 Feb 2021 09:10:01 UTC.
Enter password for signing key:
[92mTransaction 'bae01de17942855430f2ee881ae952e578fbaca22c8d58fee3a193bcb3dd4ee6' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status bae01de17942855430f2ee881ae952e578fbaca22c8d58fee3a193bcb3dd4ee6'.
[09:00:09] Waiting for the transaction to be committed.............................
Transaction is committed into block 689f7f83e5b3b1146890bdc4400a6dce52c7e7c82a905bf26a5d7ac32dccbf5e with status "success" and cost 3.007000 GTU (30070 NRG).
[09:01:16] Waiting for the transaction to be finalized....
Transaction is finalized into block 6551bc61618866d05499bdbc136e1351ae92c514153ded3776caf0662270064f with status "success" and cost 3.007000 GTU (30070 NRG).
[09:01:29] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
Transferring 0.100000 GTU from encrypted balance of account '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Tue, 9 Feb 2021 09:15:02 UTC.
Enter password for signing key:
[92mTransaction 'b7f8f8e7af763384e4cda9318f501c35f369762d3fc6b77be44c8a4938062911' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status b7f8f8e7af763384e4cda9318f501c35f369762d3fc6b77be44c8a4938062911'.
[09:05:09] Waiting for the transaction to be committed..............
Transaction is committed into block 69d80f9109cff9d5573542d40110a6bfc0d8032a7411da47f608616d21261761 with status "success" and cost 3.007000 GTU (30070 NRG).
[09:05:38] Waiting for the transaction to be finalized....
[09:05:43] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
Transferring 0.100000 GTU from encrypted balance of account '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Tue, 9 Feb 2021 09:20:02 UTC.
Enter password for signing key:
[92mTransaction '90f6b080206d2af4992d07a7663123257afc01d2935d6e8a6a86d71a8fa59fd4' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status 90f6b080206d2af4992d07a7663123257afc01d2935d6e8a6a86d71a8fa59fd4'.
[09:10:09] Waiting for the transaction to be committed...........
Transaction is committed into block 392d61c7878eb51fd2dc39da0638b92849dbeacad70698f8d9b7a65a44930f9e with status "success" and cost 3.007000 GTU (30070 NRG).
[09:10:32] Waiting for the transaction to be finalized....
[09:10:37] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
Transferring 0.100000 GTU from encrypted balance of account '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Tue, 9 Feb 2021 09:25:02 UTC.
Enter password for signing key:
[92mTransaction '4ee825dfff9b7a2a04fff64aa7c8049a85958daf2dcc81a082e94ebcad73e0e1' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status 4ee825dfff9b7a2a04fff64aa7c8049a85958daf2dcc81a082e94ebcad73e0e1'.
[09:15:09] Waiting for the transaction to be committed.........
Transaction is committed into block 16ffb7646131a1fed6e333a62ea15d09b743495dad471a2c1b8481edfb371447 with status "success" and cost 3.007000 GTU (30070 NRG).
[09:15:26] Waiting for the transaction to be finalized....
Transaction is finalized into block bb289a46dc16faa299abf2ffefb10aaa77b54781e855ece0daeb82dc72c22d79 with status "success" and cost 3.007000 GTU (30070 NRG).
[09:15:35] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
Transferring 0.100000 GTU from encrypted balance of account '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Tue, 9 Feb 2021 09:30:02 UTC.
Enter password for signing key:
[92mTransaction '4f5f17e62d8a4fd0ecdecfcd6081561aafd4a080cda8100ab565efcdfe8cb2cd' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status 4f5f17e62d8a4fd0ecdecfcd6081561aafd4a080cda8100ab565efcdfe8cb2cd'.
[09:20:09] Waiting for the transaction to be committed..............
Transaction is committed into block 211e4422512efc650a5239d070ce710b292e56a332645c1ef16935b3955bd2c5 with status "success" and cost 3.007000 GTU (30070 NRG).
[09:20:39] Waiting for the transaction to be finalized.....
Transaction is finalized into block d062f9bcbf525dd3f4c82813adef6e0557b103321a4184c3c5ad4683a25d1887 with status "success" and cost 3.007000 GTU (30070 NRG).
[09:20:52] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
Transferring 0.100000 GTU from encrypted balance of account '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Tue, 9 Feb 2021 09:35:02 UTC.
Enter password for signing key:
[92mTransaction 'aa1be771a78f0cc407601f456fb6a7d587c283b94e32e5f184a5b2b119c2ad85' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status aa1be771a78f0cc407601f456fb6a7d587c283b94e32e5f184a5b2b119c2ad85'.
[09:25:09] Waiting for the transaction to be committed.............
Transaction is committed into block d2e6c2b72918d72f2f08bfa32ce28c630148500bb31f57a68cefa8524f9f36c1 with status "success" and cost 3.007000 GTU (30070 NRG).
[09:25:37] Waiting for the transaction to be finalized.....
[09:25:48] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
Transferring 0.100000 GTU from encrypted balance of account '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Tue, 9 Feb 2021 09:40:02 UTC.
Enter password for signing key:
[92mTransaction 'e3b93e3f3b0e544acddb319235639cb0479b9778135029bf48de92765bed1118' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status e3b93e3f3b0e544acddb319235639cb0479b9778135029bf48de92765bed1118'.
[09:30:10] Waiting for the transaction to be committed............
Transaction is committed into block 23221459617b845e6a87e6493c0ed31c4bf29839073e70b575bc673a6d3ade66 with status "success" and cost 3.007000 GTU (30070 NRG).
[09:30:35] Waiting for the transaction to be finalized........
[09:31:04] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
Transferring 0.100000 GTU from encrypted balance of account '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Tue, 9 Feb 2021 09:45:02 UTC.
Enter password for signing key:
[92mTransaction 'a22598afb01451bf47ac7ad60b7257649a585d18e7af03d2d015b0b39fe3d1d4' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status a22598afb01451bf47ac7ad60b7257649a585d18e7af03d2d015b0b39fe3d1d4'.
[09:35:09] Waiting for the transaction to be committed..........
Transaction is committed into block d5f0599505b4d8cdf0124bc8a649a0159d15d0f6581f7203cdb632a7fb72ae76 with status "success" and cost 3.007000 GTU (30070 NRG).
[09:35:29] Waiting for the transaction to be finalized.....
[09:35:46] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
Transferring 0.100000 GTU from encrypted balance of account '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Tue, 9 Feb 2021 09:50:01 UTC.
Enter password for signing key:
[92mTransaction 'a649cf3f36fe38e6c44dcbc88f178cbc18b3700ee89914cd0c82f0c663a49903' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status a649cf3f36fe38e6c44dcbc88f178cbc18b3700ee89914cd0c82f0c663a49903'.
[09:40:09] Waiting for the transaction to be committed............
Transaction is committed into block fe2aa46461f50acde3aacbf768d7871b6a94bd190d66fba754033b5e9424b8ee with status "success" and cost 3.007000 GTU (30070 NRG).
[09:40:33] Waiting for the transaction to be finalized......
Transaction is finalized into block 7befe937f0b7ddd0c7861d74f8d8b832a027a916cf339f8d40a83277376a9be7 with status "success" and cost 3.007000 GTU (30070 NRG).
[09:40:54] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
Transferring 0.100000 GTU from encrypted balance of account '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Tue, 9 Feb 2021 09:55:01 UTC.
Enter password for signing key:
[92mTransaction '1e645ac763328d90ce4dcf25b3c8e97db6aa5170ed5fd95a2d836f2de4cf11b3' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status 1e645ac763328d90ce4dcf25b3c8e97db6aa5170ed5fd95a2d836f2de4cf11b3'.
[09:45:09] Waiting for the transaction to be committed.....................
Transaction is committed into block be4bc73d139655a8635869212bee2fb7b78a66a90690a0bc0c4e0c36b2e70b84 with status "success" and cost 3.007000 GTU (30070 NRG).
[09:45:55] Waiting for the transaction to be finalized.....
[09:46:11] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
Transferring 0.100000 GTU from encrypted balance of account '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Tue, 9 Feb 2021 10:00:02 UTC.
Enter password for signing key:
[92mTransaction '7570154a29b83e86fc7532a2d896fab54d5b8b1e6f902111b9be8676ca278a70' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status 7570154a29b83e86fc7532a2d896fab54d5b8b1e6f902111b9be8676ca278a70'.
[09:50:09] Waiting for the transaction to be committed...........
Transaction is committed into block dca8b19e4cd9884e9b370b10895dae9cbddf946c542aa88af05bf2e14e675001 with status "success" and cost 3.007000 GTU (30070 NRG).
[09:50:30] Waiting for the transaction to be finalized.......
[09:50:54] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
Transferring 0.100000 GTU from encrypted balance of account '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Tue, 9 Feb 2021 10:05:01 UTC.
Enter password for signing key:
[92mTransaction 'ee8eaf87dd4f1fd114f9a0962375ee5db605ca40f608935fffce843b70a9d962' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status ee8eaf87dd4f1fd114f9a0962375ee5db605ca40f608935fffce843b70a9d962'.
[09:55:09] Waiting for the transaction to be committed........
Transaction is committed into block 0b1129fc0608be4970e0dfe3e39b57844c3728fd2a44652413d00f7d79936780 with status "success" and cost 3.007000 GTU (30070 NRG).
[09:55:22] Waiting for the transaction to be finalized........
[09:55:48] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
Transferring 0.100000 GTU from encrypted balance of account '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Tue, 9 Feb 2021 11:10:02 UTC.
Enter password for signing key:
[92mTransaction '92cc94703afafd3f5c207736ce8fcab29377e545e7a97b4697244f7b6b81838f' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status 92cc94703afafd3f5c207736ce8fcab29377e545e7a97b4697244f7b6b81838f'.
[11:00:10] Waiting for the transaction to be committed.......................
Transaction is committed into block 7eca52e6ccc4d57f125796a193b23e65c075306c8a4240fb5aa1c666447df62a with status "success" and cost 3.007000 GTU (30070 NRG).
[11:01:00] Waiting for the transaction to be finalized.....
[11:01:16] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
Transferring 0.100000 GTU from encrypted balance of account '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Tue, 9 Feb 2021 11:15:01 UTC.
Enter password for signing key:
[92mTransaction '033c90c6a33b442d51992a6aa1e4fde80d4ef472e77cd7ff204ff512f9d7dc2b' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status 033c90c6a33b442d51992a6aa1e4fde80d4ef472e77cd7ff204ff512f9d7dc2b'.
[11:05:09] Waiting for the transaction to be committed............
Transaction is committed into block 8398718d445d17330928cb2f398d42bfb851c6f31eae9b188776c6e749b3031a with status "success" and cost 3.007000 GTU (30070 NRG).
[11:05:33] Waiting for the transaction to be finalized........
[11:06:03] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
Transferring 0.100000 GTU from encrypted balance of account '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Tue, 9 Feb 2021 11:20:01 UTC.
Enter password for signing key:
[92mTransaction '1bd03e5098b0967955fe835852e7070a46ec47e3f64cfbda7588e8b286eb37d4' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status 1bd03e5098b0967955fe835852e7070a46ec47e3f64cfbda7588e8b286eb37d4'.
[11:10:09] Waiting for the transaction to be committed.......................
Transaction is committed into block 3a381a4dffc2cc4fa84b28417f8c34d6ad52075445cf8b54c0ee7c7d226f06f3 with status "success" and cost 3.007000 GTU (30070 NRG).
[11:10:59] Waiting for the transaction to be finalized......
[11:11:23] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
Transferring 0.100000 GTU from encrypted balance of account '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Tue, 9 Feb 2021 11:25:02 UTC.
Enter password for signing key:
[92mTransaction '3662a78ee3662750480289cdd093cb3e6a10073870cba1787732614bd98bf1ba' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status 3662a78ee3662750480289cdd093cb3e6a10073870cba1787732614bd98bf1ba'.
[11:15:09] Waiting for the transaction to be committed...........
Transaction is committed into block 2b18d1a471976fed9d8eaa47d2cb5632ea8eccf26438b07df0163d1baa98f651 with status "success" and cost 3.007000 GTU (30070 NRG).
[11:15:31] Waiting for the transaction to be finalized....
[11:15:36] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
Transferring 0.100000 GTU from encrypted balance of account '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Tue, 9 Feb 2021 11:30:02 UTC.
Enter password for signing key:
[92mTransaction '06680b2ef09b15e6f7d74a95e0f371a9da6b3ecc3bc636c31ca360d982f6efdf' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status 06680b2ef09b15e6f7d74a95e0f371a9da6b3ecc3bc636c31ca360d982f6efdf'.
[11:20:09] Waiting for the transaction to be committed............
Transaction is committed into block 99c7dcf2bd54e8a563ae577752282e05c847f1eab7beb9cf27eed18f023b60e3 with status "success" and cost 3.007000 GTU (30070 NRG).
[11:20:34] Waiting for the transaction to be finalized...........
Transaction is finalized into block 0ef042fef89e04f53039eb2c3713e8036a11318ad76f3a37c3e4227ad7fc4781 with status "success" and cost 3.007000 GTU (30070 NRG).
[11:21:26] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
Transferring 0.100000 GTU from encrypted balance of account '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Tue, 9 Feb 2021 11:35:01 UTC.
Enter password for signing key:
[92mTransaction 'dde8c37e7a4ca615d334178652e28af65b7fa8ffe9e8b67fc50c9a32ec9f80df' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status dde8c37e7a4ca615d334178652e28af65b7fa8ffe9e8b67fc50c9a32ec9f80df'.
[11:25:09] Waiting for the transaction to be committed............
Transaction is committed into block 3324a91ce745566c32fb6ee3d5b1421a978c7b93bc32c97746e070827b06f3f2 with status "success" and cost 3.007000 GTU (30070 NRG).
[11:25:33] Waiting for the transaction to be finalized........
Transaction is finalized into block 73e4cfbdd433dc3e73d0bd79e66603066afd0fafa409b6b43a1144c895381b4e with status "success" and cost 3.007000 GTU (30070 NRG).
[11:26:04] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
Transferring 0.100000 GTU from encrypted balance of account '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Tue, 9 Feb 2021 11:40:02 UTC.
Enter password for signing key:
[92mTransaction 'e0df1664706e6bf2967c6aef9a3d171b443f757c0a244244f1e41c6fac697bed' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status e0df1664706e6bf2967c6aef9a3d171b443f757c0a244244f1e41c6fac697bed'.
[11:30:09] Waiting for the transaction to be committed.....................
Transaction is committed into block e8b5b460aff427aeea40db8f3761d255a196a968eda148a8d889a0b233ff8766 with status "success" and cost 3.007000 GTU (30070 NRG).
[11:30:56] Waiting for the transaction to be finalized....
[11:31:01] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
Transferring 0.100000 GTU from encrypted balance of account '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Tue, 9 Feb 2021 11:45:01 UTC.
Enter password for signing key:
[92mTransaction '71251d321558db7d08fab9212575c71924bb1e468fc214c75583bc4d4044171e' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status 71251d321558db7d08fab9212575c71924bb1e468fc214c75583bc4d4044171e'.
[11:35:09] Waiting for the transaction to be committed...................
Transaction is committed into block d1799d0b36a9f8a7be0002dec6d5aba93b9ee07124e4c21439f5dfa9d3593d30 with status "success" and cost 3.007000 GTU (30070 NRG).
[11:35:51] Waiting for the transaction to be finalized....
[11:35:57] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
Transferring 0.100000 GTU from encrypted balance of account '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Tue, 9 Feb 2021 11:50:01 UTC.
Enter password for signing key:
[92mTransaction 'bfc1238dd2bd59779ddfd6a070534398f51c62b4c54fd6765ba57431fd394123' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status bfc1238dd2bd59779ddfd6a070534398f51c62b4c54fd6765ba57431fd394123'.
[11:40:09] Waiting for the transaction to be committed..........
Transaction is committed into block 60ed61a35c573aba600a8f8b340b990f16fea23261eb1019fda3749c63002ab3 with status "success" and cost 3.007000 GTU (30070 NRG).
[11:40:28] Waiting for the transaction to be finalized....
[11:40:34] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
Transferring 0.100000 GTU from encrypted balance of account '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Tue, 9 Feb 2021 11:55:01 UTC.
Enter password for signing key:
[92mTransaction '31d3a71b2ddbf28f80ccee1a37c2b2e9c50b58465d2b30298941d7eff563a2c9' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status 31d3a71b2ddbf28f80ccee1a37c2b2e9c50b58465d2b30298941d7eff563a2c9'.
[11:45:08] Waiting for the transaction to be committed.........
Transaction is committed into block 1421991049900ebf692654a7ce81708a67f5b9eee8c589bcabf28b8e3ac0d348 with status "success" and cost 3.007000 GTU (30070 NRG).
[11:45:26] Waiting for the transaction to be finalized....
[11:45:32] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
Transferring 0.100000 GTU from encrypted balance of account '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Tue, 9 Feb 2021 12:00:01 UTC.
Enter password for signing key:
[92mTransaction 'b5da05b888fc2c87aa6fd2a4cdbcbc4cfafa93079cdd514efa4087af0767bb5a' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status b5da05b888fc2c87aa6fd2a4cdbcbc4cfafa93079cdd514efa4087af0767bb5a'.
[11:50:08] Waiting for the transaction to be committed.......
Transaction is committed into block a717a6197c1c03118c3e20b9cc9b75b0361e8a6d5b90e62c37ad85e2adc46e3c with status "success" and cost 3.007000 GTU (30070 NRG).
[11:50:21] Waiting for the transaction to be finalized....
[11:50:26] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
Transferring 0.100000 GTU from encrypted balance of account '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Tue, 9 Feb 2021 12:05:01 UTC.
Enter password for signing key:
[92mTransaction '57a7db0f6c806a7142b01092afc21578315c1eaef9e86f7ce66f74bacd9d327e' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status 57a7db0f6c806a7142b01092afc21578315c1eaef9e86f7ce66f74bacd9d327e'.
[11:55:09] Waiting for the transaction to be committed.....................
Transaction is committed into block a8e5947b1a141ac8f88fae18899cfe870dad97a2e3015c2735c2d99e121abba4 with status "success" and cost 3.007000 GTU (30070 NRG).
[11:55:55] Waiting for the transaction to be finalized....
[11:56:00] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
Transferring 0.100000 GTU from encrypted balance of account '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Tue, 9 Feb 2021 13:10:02 UTC.
Enter password for signing key:
[92mTransaction '66c0be5fc739566d8b66867621207757a99cc747aaf2caab07a1fdd2e3285196' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status 66c0be5fc739566d8b66867621207757a99cc747aaf2caab07a1fdd2e3285196'.
[13:00:09] Waiting for the transaction to be committed...................
Transaction is committed into block 30cfd17f6aeb2aaa24652c8af32ffae3d7ac60b66f3ac128e3971ea92f5210c1 with status "success" and cost 3.007000 GTU (30070 NRG).
[13:00:52] Waiting for the transaction to be finalized....
[13:00:57] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
Transferring 0.100000 GTU from encrypted balance of account '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Tue, 9 Feb 2021 13:15:02 UTC.
Enter password for signing key:
[92mTransaction '7b1e335693df695854ba364b34498bd9d1f47e0e158d5b36b59613d863431b65' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status 7b1e335693df695854ba364b34498bd9d1f47e0e158d5b36b59613d863431b65'.
[13:05:09] Waiting for the transaction to be committed.......
Transaction is committed into block fe1224c471f38092378d55d8730a5d4495db4496f6b19b29cf12a9bf45ca613e with status "success" and cost 3.007000 GTU (30070 NRG).
[13:05:21] Waiting for the transaction to be finalized....
[13:05:27] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
Transferring 0.100000 GTU from encrypted balance of account '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Tue, 9 Feb 2021 13:20:02 UTC.
Enter password for signing key:
[92mTransaction 'b453591f574f002af058dc27a96fbef16e8e285a03c4c9a56319e9262369e43f' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status b453591f574f002af058dc27a96fbef16e8e285a03c4c9a56319e9262369e43f'.
[13:10:09] Waiting for the transaction to be committed....................
Transaction is committed into block 9d570f897bd836c71b2a59d90f5433cf96acb606f99e900eaf21630374237499 with status "success" and cost 3.007000 GTU (30070 NRG).
[13:10:53] Waiting for the transaction to be finalized....
[13:10:59] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
Transferring 0.100000 GTU from encrypted balance of account '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Tue, 9 Feb 2021 13:25:01 UTC.
Enter password for signing key:
[92mTransaction 'e93e887544b0a83b9f7af0445968f9fa525fc3a2f724887d4881d8d9b28e6d48' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status e93e887544b0a83b9f7af0445968f9fa525fc3a2f724887d4881d8d9b28e6d48'.
[13:15:09] Waiting for the transaction to be committed........
Transaction is committed into block 26a5e27f8fd62436f2aefc39a0d579b9505b6bf9422a632e2c0b3528f42bcd6f with status "success" and cost 3.007000 GTU (30070 NRG).
[13:15:22] Waiting for the transaction to be finalized......
[13:15:39] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
Transferring 0.100000 GTU from encrypted balance of account '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Tue, 9 Feb 2021 13:30:02 UTC.
Enter password for signing key:
[92mTransaction 'b12120287a511707e057324f5a4e33e2454ebc63f4309a000cf69d66cb88fd9c' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status b12120287a511707e057324f5a4e33e2454ebc63f4309a000cf69d66cb88fd9c'.
[13:20:10] Waiting for the transaction to be committed.....................
Transaction is committed into block ac2195e3b066e2b34d10e231c79fc831a5f331937c50ba0282861128c4cfb223 with status "success" and cost 3.007000 GTU (30070 NRG).
[13:20:53] Waiting for the transaction to be finalized....
[13:20:58] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
Transferring 0.100000 GTU from encrypted balance of account '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Tue, 9 Feb 2021 13:35:02 UTC.
Enter password for signing key:
[92mTransaction '3d75080b7f9105a40117280352711da66a68f0cc6ebeb1b50cfdf0a393ed9a18' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status 3d75080b7f9105a40117280352711da66a68f0cc6ebeb1b50cfdf0a393ed9a18'.
[13:25:09] Waiting for the transaction to be committed......
Transaction is committed into block 21a7bc91bf77b9b3f4f8abf41b680ffce1802806d92a07d1ea61377a53b160da with status "success" and cost 3.007000 GTU (30070 NRG).
[13:25:19] Waiting for the transaction to be finalized....
[13:25:25] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
Transferring 0.100000 GTU from encrypted balance of account '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Tue, 9 Feb 2021 13:40:01 UTC.
Enter password for signing key:
[92mTransaction '73b85ed7b28113b4f2563180a40e905b39aa1896c9e611a35c0a7f2e5e8147ba' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status 73b85ed7b28113b4f2563180a40e905b39aa1896c9e611a35c0a7f2e5e8147ba'.
[13:30:09] Waiting for the transaction to be committed...........
Transaction is committed into block 4139aa5053894e7bfd161db61d4e5213f94257ebd447b2229b94a7833a011a8a with status "success" and cost 3.007000 GTU (30070 NRG).
[13:30:32] Waiting for the transaction to be finalized....
[13:30:37] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
Transferring 0.100000 GTU from encrypted balance of account '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Tue, 9 Feb 2021 13:45:02 UTC.
Enter password for signing key:
[92mTransaction 'e7b81e13cb1d98c70dff2d0e297fda6dbda497b6dcf1776ce490d39858e594f9' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status e7b81e13cb1d98c70dff2d0e297fda6dbda497b6dcf1776ce490d39858e594f9'.
[13:35:09] Waiting for the transaction to be committed.....................
Transaction is committed into block 33354e86f2f97fd216077c8d1c68294900d15a252af04bd9bfc95ed1af03ae59 with status "success" and cost 3.007000 GTU (30070 NRG).
[13:35:54] Waiting for the transaction to be finalized....
[13:35:59] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
Transferring 0.100000 GTU from encrypted balance of account '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Tue, 9 Feb 2021 13:50:02 UTC.
Enter password for signing key:
[92mTransaction 'dc16745e1ee0e04812864f1d67ee81ed23d8144dbe18cec8667f632801f73e08' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status dc16745e1ee0e04812864f1d67ee81ed23d8144dbe18cec8667f632801f73e08'.
[13:40:09] Waiting for the transaction to be committed........
Transaction is committed into block e95042d50f474e180d6db9e6b0032bdecd18bfd76402f0a11fd5a5a25ffc1ce1 with status "success" and cost 3.007000 GTU (30070 NRG).
[13:40:22] Waiting for the transaction to be finalized....
[13:40:27] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
Transferring 0.100000 GTU from encrypted balance of account '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Tue, 9 Feb 2021 13:55:02 UTC.
Enter password for signing key:
[92mTransaction '7622276137bbd6ec18c87d489396613867cb859882f982ef05e535f2cba5be04' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status 7622276137bbd6ec18c87d489396613867cb859882f982ef05e535f2cba5be04'.
[13:45:09] Waiting for the transaction to be committed.......
Transaction is committed into block c64f05283930cc528fd01a586a4ce5ad4fe32e9c815e76981108f8e3ebf59fd4 with status "success" and cost 3.007000 GTU (30070 NRG).
[13:45:21] Waiting for the transaction to be finalized....
[13:45:26] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
Transferring 0.100000 GTU from encrypted balance of account '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Tue, 9 Feb 2021 14:00:02 UTC.
Enter password for signing key:
[92mTransaction '4a1e32556cd3f48988333df71c1255950ae811e3d7fb3bde7abc75089d2306e4' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status 4a1e32556cd3f48988333df71c1255950ae811e3d7fb3bde7abc75089d2306e4'.
[13:50:09] Waiting for the transaction to be committed.........
Transaction is committed into block d1896065482c791ac4f32a216302d2b10deef9194d94f7c44ca2895d67c5ec52 with status "success" and cost 3.007000 GTU (30070 NRG).
[13:50:25] Waiting for the transaction to be finalized......
Transaction is finalized into block 0698a077ecf7aa3317ce1b5b68de9d8f07f7cfe731b8c806c2da3deb7c8f0d26 with status "success" and cost 3.007000 GTU (30070 NRG).
[13:50:44] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
Transferring 0.100000 GTU from encrypted balance of account '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Tue, 9 Feb 2021 14:05:01 UTC.
Enter password for signing key:
[92mTransaction '291060d05f4cedf606461252f1ba32d7a1f449660405d6a8517be136f59c69ca' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status 291060d05f4cedf606461252f1ba32d7a1f449660405d6a8517be136f59c69ca'.
[13:55:09] Waiting for the transaction to be committed...........