forked from Concordium/Testnet4-Challenges
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path010221.log
1605 lines (1546 loc) · 136 KB
/
010221.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 Mon, 1 Feb 2021 05:10:01 UTC.
Enter password for signing key:
[92mTransaction '395eff1b183bf2d0b833c760e76294c0268cd8273cc9227888f30d984f49e13a' 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 395eff1b183bf2d0b833c760e76294c0268cd8273cc9227888f30d984f49e13a'.
[05:00:09] Waiting for the transaction to be committed....................
Transaction is committed into block 86b3c7b5384199348235a79aa777fbf1a74db1d7aef2399c7ac300bf89e27594 with status "success" and cost 3.007000 GTU (30070 NRG).
[05:00:56] Waiting for the transaction to be finalized.........
[05:01: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 Mon, 1 Feb 2021 05:15:02 UTC.
Enter password for signing key:
[92mTransaction 'e2120e504842bd20375895742dd1707adb90d41cf3bcd06f40502666e84f99b1' 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 e2120e504842bd20375895742dd1707adb90d41cf3bcd06f40502666e84f99b1'.
[05:05:09] Waiting for the transaction to be committed...........
Transaction is committed into block 54aa263f9a26eb41631438e493293cf53d4c626c2c194dac4cd0d314342c6bcf with status "success" and cost 3.007000 GTU (30070 NRG).
[05:05:32] Waiting for the transaction to be finalized....
[05:05: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 Mon, 1 Feb 2021 05:20:02 UTC.
Enter password for signing key:
[92mTransaction '6065bbdd8f462a65afa72a42a4e7497204d90cc4e677df431dfea047acd1d2d6' 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 6065bbdd8f462a65afa72a42a4e7497204d90cc4e677df431dfea047acd1d2d6'.
[05:10:10] Waiting for the transaction to be committed..................
Transaction is committed into block b51bb90733b8caec9029cfebcb4b48b2d3593098d207639baf409aa92c27bf77 with status "success" and cost 3.007000 GTU (30070 NRG).
[05:10:51] Waiting for the transaction to be finalized....
[05:10:56] 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 Mon, 1 Feb 2021 05:25:02 UTC.
Enter password for signing key:
[92mTransaction 'd1b66cff1a78064113149e18f8af6ef6b9e37e4ae2a61068b8ea1ed5051b4767' 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 d1b66cff1a78064113149e18f8af6ef6b9e37e4ae2a61068b8ea1ed5051b4767'.
[05:15:09] Waiting for the transaction to be committed............
Transaction is committed into block f46499c29a88c3ec02edd092626969707591005dba44f1ce08836471ed792810 with status "success" and cost 3.007000 GTU (30070 NRG).
[05:15:36] Waiting for the transaction to be finalized...........
[05:16: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 Mon, 1 Feb 2021 05:30:01 UTC.
Enter password for signing key:
[92mTransaction '86e64ecdf5e2ccc884588d9750796c668d4addca45eb336cd4541c44ca8e35a5' 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 86e64ecdf5e2ccc884588d9750796c668d4addca45eb336cd4541c44ca8e35a5'.
[05:20:09] Waiting for the transaction to be committed...................
Transaction is committed into block 50f86425636964b991049e9c1048a7ef5611dcbb88a5fbda7a2aff2fe156a8c4 with status "success" and cost 3.007000 GTU (30070 NRG).
[05:20:50] Waiting for the transaction to be finalized.......
[05:21: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 Mon, 1 Feb 2021 05:35:02 UTC.
Enter password for signing key:
[92mTransaction 'c55d64101c0a837a82cb4a3b8f87b0ee91dfbe4b8c018f74b8df6ebb27b62fc0' 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 c55d64101c0a837a82cb4a3b8f87b0ee91dfbe4b8c018f74b8df6ebb27b62fc0'.
[05:25:10] Waiting for the transaction to be committed..................
Transaction is committed into block 8a5225f135085905d83ac9e5e7096f42a6bfb9888547decc832006271909b914 with status "success" and cost 3.007000 GTU (30070 NRG).
[05:25:49] Waiting for the transaction to be finalized....
[05:25:55] 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 Mon, 1 Feb 2021 05:40:01 UTC.
Enter password for signing key:
[92mTransaction '1f2217d2d9f4f29ce18b75333d0c19bf75f5334980a7c86aaf90b432caedffff' 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 1f2217d2d9f4f29ce18b75333d0c19bf75f5334980a7c86aaf90b432caedffff'.
[05:30:09] Waiting for the transaction to be committed................
Transaction is committed into block b7a129127c0c3804313e23ede2eef746dc7c23a0e6bd558f3eb29de6e3ce6a68 with status "success" and cost 3.007000 GTU (30070 NRG).
[05:30:44] Waiting for the transaction to be finalized......
[05:31:14] 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 Mon, 1 Feb 2021 05:45:02 UTC.
Enter password for signing key:
[92mTransaction '06952966749100ddf19875b1e0b698b62dfe3ede37d2ec3494325c87eb95788a' 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 06952966749100ddf19875b1e0b698b62dfe3ede37d2ec3494325c87eb95788a'.
[05:35:10] Waiting for the transaction to be committed.........
Transaction is committed into block 3b3fddd5f722e67f2fd2f7b48ac2a602d63cb08e2d95dbd4dc3502ae6b35de5e with status "success" and cost 3.007000 GTU (30070 NRG).
[05:35:28] 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 Mon, 1 Feb 2021 05:50:01 UTC.
Enter password for signing key:
[92mTransaction '0b46f5ebad89303320b06865c61f04673d7d22b60f69cc717705a49166961833' 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 0b46f5ebad89303320b06865c61f04673d7d22b60f69cc717705a49166961833'.
[05:40:09] Waiting for the transaction to be committed........................
Transaction is committed into block 520bed5f73cad5592ee0edff26e8a131c25b0aca635e513dd700ed6722b993fb with status "success" and cost 3.007000 GTU (30070 NRG).
[05:41:03] Waiting for the transaction to be finalized....
[05:41:08] 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 Mon, 1 Feb 2021 05:55:01 UTC.
Enter password for signing key:
[92mTransaction '767cb14e2639467c78042496a3dd3f73f83d6d67e6c78e6ac2b9219eca482b7d' 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 767cb14e2639467c78042496a3dd3f73f83d6d67e6c78e6ac2b9219eca482b7d'.
[05:45:09] Waiting for the transaction to be committed..............
Transaction is committed into block dd98b09628e8c7eb9c0cbbc2dadb3c221c84e6800dc323251116f4148954290a with status "success" and cost 3.007000 GTU (30070 NRG).
[05:45:38] Waiting for the transaction to be finalized......
Transaction is finalized into block 12eb8c909d1b1364aed1d85beb5550b0163927645c5e13dc687eb71f077ba100 with status "success" and cost 3.007000 GTU (30070 NRG).
[05:45: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 Mon, 1 Feb 2021 06:00:02 UTC.
Enter password for signing key:
[92mTransaction '677619d811c14bd615ad5dc5054758783d15712386b3936cedaf1c69abe8ab86' 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 677619d811c14bd615ad5dc5054758783d15712386b3936cedaf1c69abe8ab86'.
[05:50:10] Waiting for the transaction to be committed.................
Transaction is committed into block 3b911bd67bb904652955987fd3a0c03c69c2c2b3bb222d213704f24da4eef65a with status "success" and cost 3.007000 GTU (30070 NRG).
[05:50:49] Waiting for the transaction to be finalized....
[05: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 Mon, 1 Feb 2021 06:05:02 UTC.
Enter password for signing key:
[92mTransaction 'bd463827ddd4a15e3c5d43a9d9a0d5bca91bb21d7268810254f3a88c8d3ebd4c' 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 bd463827ddd4a15e3c5d43a9d9a0d5bca91bb21d7268810254f3a88c8d3ebd4c'.
[05:55:10] Waiting for the transaction to be committed...........
Transaction is committed into block 9d05a68badcd988fe563705bd525dae1737806fad9d635ee3b1422d7be8a2cf7 with status "success" and cost 3.007000 GTU (30070 NRG).
[05:55:33] Waiting for the transaction to be finalized.....
[05:55:49] 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 Mon, 1 Feb 2021 07:10:01 UTC.
Enter password for signing key:
[92mTransaction '195aead17d8993a4a9c9e099014764afc21ee7730f8fec9a673bfc469050e3dd' 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 195aead17d8993a4a9c9e099014764afc21ee7730f8fec9a673bfc469050e3dd'.
[07:00:09] Waiting for the transaction to be committed............
Transaction is committed into block 34e8299c91743deab40881c5d1051eba68f50468a80c07ef71eaf8082b8aecaf with status "success" and cost 3.007000 GTU (30070 NRG).
[07:00:35] Waiting for the transaction to be finalized.......
Transaction is finalized into block 80f262463a9e4e6d4ae9c84e8e7d9c26227ca81b01613e96f2b8760118d07e64 with status "success" and cost 3.007000 GTU (30070 NRG).
[07:00: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 Mon, 1 Feb 2021 07:15:02 UTC.
Enter password for signing key:
[92mTransaction '3b444d8afc7a1d906552f312d7a31a47d415f530861b0853f66fc6f8f911dcbf' 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 3b444d8afc7a1d906552f312d7a31a47d415f530861b0853f66fc6f8f911dcbf'.
[07:05:09] Waiting for the transaction to be committed...........
Transaction is committed into block f1ca0fe155e541c7eb7bd5faf066e6f55c54f31042611a627b6577e418e865ba with status "success" and cost 3.007000 GTU (30070 NRG).
[07:05:30] Waiting for the transaction to be finalized....
[07:05: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 Mon, 1 Feb 2021 07:20:01 UTC.
Enter password for signing key:
[92mTransaction 'd251a0433496d4595dc68fa2794775707e72fbf0d57cecebec9c0120d56a9b46' 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 d251a0433496d4595dc68fa2794775707e72fbf0d57cecebec9c0120d56a9b46'.
[07:10:09] Waiting for the transaction to be committed..............
Transaction is committed into block 89781db5d3ab2f8af13f4dbd4f5f4ddd9c2e13b86ce5ed91fee3fbd1cc366d04 with status "success" and cost 3.007000 GTU (30070 NRG).
[07:10:40] Waiting for the transaction to be finalized.......
[07:11:05] 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 Mon, 1 Feb 2021 07:25:02 UTC.
Enter password for signing key:
[92mTransaction '31bd8b1101c0b809386cbc8197b0ebfb7fd7aa8cf724c89376c91622e4eb6145' 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 31bd8b1101c0b809386cbc8197b0ebfb7fd7aa8cf724c89376c91622e4eb6145'.
[07:15:10] Waiting for the transaction to be committed...................................
Transaction is committed into block b1061b1840335c96f0217c87ab4f7928633d9fa45de639436bf3f822edfa26a0 with status "success" and cost 3.007000 GTU (30070 NRG).
[07:16:29] Waiting for the transaction to be finalized....
[07:16: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 Mon, 1 Feb 2021 07:30:02 UTC.
Enter password for signing key:
[92mTransaction 'a92e2281a4e3da10b53622967703ed66cc8e2efe767d58f895955e66924f3db9' 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 a92e2281a4e3da10b53622967703ed66cc8e2efe767d58f895955e66924f3db9'.
[07:20:09] Waiting for the transaction to be committed..........
Transaction is committed into block 9f4f9803fb14a9ff0e928d7575f38b60dc1140d8f5858c722adc727e3f283755 with status "success" and cost 3.007000 GTU (30070 NRG).
[07:20:31] Waiting for the transaction to be finalized......
[07:20: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 Mon, 1 Feb 2021 07:35:01 UTC.
Enter password for signing key:
[92mTransaction 'c87b843d148588663bff387d1457dac59753d45f94eceebbf71bfc69ebf89126' 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 c87b843d148588663bff387d1457dac59753d45f94eceebbf71bfc69ebf89126'.
[07:25:09] Waiting for the transaction to be committed............
Transaction is committed into block f93a8d3eea10fe76545f400129992ff3fd8f4a7378886954d8503a6bdc875f4b with status "success" and cost 3.007000 GTU (30070 NRG).
[07:25:32] Waiting for the transaction to be finalized......
[07:25:49] 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 Mon, 1 Feb 2021 07:40:02 UTC.
Enter password for signing key:
[92mTransaction '22bf3ea26eb747617e40bce63f39c904f048228e0cb068559bf9b72090ec7c20' 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 22bf3ea26eb747617e40bce63f39c904f048228e0cb068559bf9b72090ec7c20'.
[07:30:10] Waiting for the transaction to be committed.........
Transaction is committed into block 15cf846ff5b9cbfd0db6d5c0f96943e5c6b0e8a490daef9eb2af0861f3701868 with status "success" and cost 3.007000 GTU (30070 NRG).
[07:30:29] Waiting for the transaction to be finalized.....
[07:30: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 Mon, 1 Feb 2021 07:45:02 UTC.
Enter password for signing key:
[92mTransaction '71da463f837d3ff0b3904e8f5054a9cbafe0bbb0dc2eb024cdd0d887f724dc1b' 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 71da463f837d3ff0b3904e8f5054a9cbafe0bbb0dc2eb024cdd0d887f724dc1b'.
[07:35:10] Waiting for the transaction to be committed.............
Transaction is committed into block ac7c0b2f455fc2a8d56ec6f59b59e6f6fbe45dfeccb29e3b9713251381e498fd with status "success" and cost 3.007000 GTU (30070 NRG).
[07:35:40] Waiting for the transaction to be finalized....
[07:35:45] 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 Mon, 1 Feb 2021 07:50:02 UTC.
Enter password for signing key:
[92mTransaction 'bb4c7317d8b54a9cac4527307e3daac99af91d3377fbef1f0c5946709bd4a4a4' 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 bb4c7317d8b54a9cac4527307e3daac99af91d3377fbef1f0c5946709bd4a4a4'.
[07:40:09] Waiting for the transaction to be committed........
Transaction is committed into block 16d16ba0e32912812ef863e84422a4d9cce6b9f492d091ca25570d369936b83c with status "success" and cost 3.007000 GTU (30070 NRG).
[07:40:26] Waiting for the transaction to be finalized....
[07:40: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 Mon, 1 Feb 2021 07:55:01 UTC.
Enter password for signing key:
[92mTransaction 'd48422dbffcbfeb095bc06db38666ccd7ddf989562b3efc43950bea41e674e51' 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 d48422dbffcbfeb095bc06db38666ccd7ddf989562b3efc43950bea41e674e51'.
[07:45:09] Waiting for the transaction to be committed............
Transaction is committed into block cbdc8be87b6cac9f00a2efb71d4b38e3559e76c30d379f3dbf7f0b5550ed738b with status "success" and cost 3.007000 GTU (30070 NRG).
[07:45:34] Waiting for the transaction to be finalized......
Transaction is finalized into block 3439cab59a69eec93a6c42948afc89e9adb453a865c6e3b28ad3b82d227bfe66 with status "success" and cost 3.007000 GTU (30070 NRG).
[07:45:51] 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 Mon, 1 Feb 2021 08:00:02 UTC.
Enter password for signing key:
[92mTransaction '2bd9d536299a81349b37fbdc894682d8d80459824a57b0391f712446776f6cc3' 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 2bd9d536299a81349b37fbdc894682d8d80459824a57b0391f712446776f6cc3'.
[07:50:10] Waiting for the transaction to be committed...........
Transaction is committed into block 968fcd17315698d0917c08a2b55f9cffa1a60525ca5a4bada77739a991999bab with status "success" and cost 3.007000 GTU (30070 NRG).
[07:50:31] Waiting for the transaction to be finalized....
[07:50: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 Mon, 1 Feb 2021 08:05:02 UTC.
Enter password for signing key:
[92mTransaction '2969b76142cde436eee2fae4429d961d8b74bbf3c47bcb1da679993ffcb909e9' 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 2969b76142cde436eee2fae4429d961d8b74bbf3c47bcb1da679993ffcb909e9'.
[07:55:09] Waiting for the transaction to be committed.......
Transaction is committed into block 43efcb76746e01432c4f30291c73855ea627c548516fcbf280cc477daf3823cd with status "success" and cost 3.007000 GTU (30070 NRG).
[07:55:22] Waiting for the transaction to be finalized....
[07:55: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 Mon, 1 Feb 2021 09:10:01 UTC.
Enter password for signing key:
[92mTransaction 'f2cc3cef183d5cda45420ab1f63ea2ae7e82f88d49837761eca6d2bfdddc85ee' 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 f2cc3cef183d5cda45420ab1f63ea2ae7e82f88d49837761eca6d2bfdddc85ee'.
[09:00:09] Waiting for the transaction to be committed.............................
Transaction is committed into block 65e6d4bc1cc8b14da422be35fff24fc30eb969f3a3e2120ab243daad4f154662 with status "success" and cost 3.007000 GTU (30070 NRG).
[09:01:14] Waiting for the transaction to be finalized.........
[09:01:51] 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 Mon, 1 Feb 2021 09:15:01 UTC.
Enter password for signing key:
[92mTransaction '58ec7ee79890b35de72af3fc74e8daadc61bb3117b45979be3391ebb69ed2494' 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 58ec7ee79890b35de72af3fc74e8daadc61bb3117b45979be3391ebb69ed2494'.
[09:05:09] Waiting for the transaction to be committed................
Transaction is committed into block 7b9a3d51bb22216932bfc589f22625daa15704dbeac3097ae122119f9b30b813 with status "success" and cost 3.007000 GTU (30070 NRG).
[09:05:43] Waiting for the transaction to be finalized..........
[09:06: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 Mon, 1 Feb 2021 09:20:01 UTC.
Enter password for signing key:
[92mTransaction '36f5b2ef3f53c44de12a935dfab38d984a28acec3b4d1898710a8ae7eb2b7961' 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 36f5b2ef3f53c44de12a935dfab38d984a28acec3b4d1898710a8ae7eb2b7961'.
[09:10:09] Waiting for the transaction to be committed.....................
Transaction is committed into block 6aed2d014a29a86e302b405dd47083c332e8692e914f01f325dca2a897880a82 with status "success" and cost 3.007000 GTU (30070 NRG).
[09:10:56] Waiting for the transaction to be finalized........
[09:11: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 Mon, 1 Feb 2021 09:25:01 UTC.
Enter password for signing key:
[92mTransaction '1d7706d1565a09c6bc840d8aef0e80b052b4ddc4aede447cd5eb86dfe9595fb9' 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 1d7706d1565a09c6bc840d8aef0e80b052b4ddc4aede447cd5eb86dfe9595fb9'.
[09:15:09] Waiting for the transaction to be committed............
Transaction is committed into block 94366a9ce4cb650038d83db6c5c160e0b0ef642749073d4ec608794a8e210810 with status "success" and cost 3.007000 GTU (30070 NRG).
[09:15:33] Waiting for the transaction to be finalized....
[09: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 Mon, 1 Feb 2021 09:30:02 UTC.
Enter password for signing key:
[92mTransaction '954905bf434627b75de6079959f34c7f0dbc95c58e87b60de180eda417732754' 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 954905bf434627b75de6079959f34c7f0dbc95c58e87b60de180eda417732754'.
[09:20:09] Waiting for the transaction to be committed....................
Transaction is committed into block d63000a3070921e5920560ad68fb0333e82415a05058631597aa645bc6107ff0 with status "success" and cost 3.007000 GTU (30070 NRG).
[09:20:54] Waiting for the transaction to be finalized......
[09:21:15] 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 Mon, 1 Feb 2021 09:35:02 UTC.
Enter password for signing key:
[92mTransaction '80655d46ed0eed77c007f9a2a6e5c5a3768b74aca1632bbd07cf005e3237b328' 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 80655d46ed0eed77c007f9a2a6e5c5a3768b74aca1632bbd07cf005e3237b328'.
[09:25:09] Waiting for the transaction to be committed.........
Transaction is committed into block 9af205c30c0750aa6804c1714a2f9888a77c6c8c7188555893600b82e12b7efc with status "success" and cost 3.007000 GTU (30070 NRG).
[09:25:25] Waiting for the transaction to be finalized....
[09:25:31] 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 Mon, 1 Feb 2021 09:40:01 UTC.
Enter password for signing key:
[92mTransaction '62dbabcafb654f485736c22625198f151653f324891a936f928f0cdc14110d74' 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 62dbabcafb654f485736c22625198f151653f324891a936f928f0cdc14110d74'.
[09:30:10] Waiting for the transaction to be committed....................
Transaction is committed into block 9a3f52f38e0c1069b794b79c40941cb77e90e5eb015b0d2c3c009abc68cdc274 with status "success" and cost 3.007000 GTU (30070 NRG).
[09:30:54] Waiting for the transaction to be finalized.......
[09:31:20] 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 Mon, 1 Feb 2021 09:45:02 UTC.
Enter password for signing key:
[92mTransaction '3ad372be800475ea1c34b0cb0c48ffa6f8cd955afbe8098f5b534809263a3af6' 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 3ad372be800475ea1c34b0cb0c48ffa6f8cd955afbe8098f5b534809263a3af6'.
[09:35:10] Waiting for the transaction to be committed...........
Transaction is committed into block 0e6ce948d314ef28ca9a258771a21fd92cca99ce244ba5bd3e3dd02e57c85c45 with status "success" and cost 3.007000 GTU (30070 NRG).
[09:35:31] Waiting for the transaction to be finalized....
[09:35: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 Mon, 1 Feb 2021 09:50:01 UTC.
Enter password for signing key:
[92mTransaction '82a7d20858a7071c3cec02fee2994c2f16b47860a197a18c4c742cee33ca2748' 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 82a7d20858a7071c3cec02fee2994c2f16b47860a197a18c4c742cee33ca2748'.
[09:40:09] Waiting for the transaction to be committed..........
Transaction is committed into block b037d88f2e317bc8032322b6f6d6a8a741e9a62cef83989fb41d299b2f3c5e2e with status "success" and cost 3.007000 GTU (30070 NRG).
[09:40:28] Waiting for the transaction to be finalized....
[09:40: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 Mon, 1 Feb 2021 09:55:01 UTC.
Enter password for signing key:
[92mTransaction 'ae542124fec5f6f6806c48c0279d247a8bbdb08c87e7d84801406e464ae50dd9' 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 ae542124fec5f6f6806c48c0279d247a8bbdb08c87e7d84801406e464ae50dd9'.
[09:45:09] Waiting for the transaction to be committed.................
Transaction is committed into block fe6d16b5884217367e3cb5fdb1c347035513122bd13dae4bcc61de88b5546ca1 with status "success" and cost 3.007000 GTU (30070 NRG).
[09:45:44] Waiting for the transaction to be finalized.....
[09:45:55] 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 Mon, 1 Feb 2021 10:00:02 UTC.
Enter password for signing key:
[92mTransaction '4b4ba934628055f46bcad5a83de1398e940f6d818ce9c20771f8515f1f135032' 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 4b4ba934628055f46bcad5a83de1398e940f6d818ce9c20771f8515f1f135032'.
[09:50:10] Waiting for the transaction to be committed...................
Transaction is committed into block eaed9f61d12ce5c46a130978885d153f581709ce81732919f7d811a41e7b50da with status "success" and cost 3.007000 GTU (30070 NRG).
[09:50:51] Waiting for the transaction to be finalized...............
Transaction is finalized into block 0c9426423c7b01b6ed0d45338578a152a8723041d56ac7ede26219a53a4b4471 with status "success" and cost 3.007000 GTU (30070 NRG).
[09:52: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 Mon, 1 Feb 2021 10:05:02 UTC.
Enter password for signing key:
[92mTransaction '2283d1d1caa9c0cc1086cb5b5308632cb85630bb526ad594b489843a8a972ff2' 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 2283d1d1caa9c0cc1086cb5b5308632cb85630bb526ad594b489843a8a972ff2'.
[09:55:10] Waiting for the transaction to be committed..............
Transaction is committed into block c8676d09589b066ec6df23443816a2bd15f7862a29bcb3da9028a342545c79ab with status "success" and cost 3.007000 GTU (30070 NRG).
[09:55:38] Waiting for the transaction to be finalized.....
[09:55: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 Mon, 1 Feb 2021 11:10:01 UTC.
Enter password for signing key:
[92mTransaction '8bfbed68aa3709ea9868a1a1a9ff3ef8c0d66fc259f0110568aead87c82a26a6' 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 8bfbed68aa3709ea9868a1a1a9ff3ef8c0d66fc259f0110568aead87c82a26a6'.
[11:00:10] Waiting for the transaction to be committed..............
Transaction is committed into block a1ff173e9237488202e04e07df701fa2d3a22677878575714f8a37534a378651 with status "success" and cost 3.007000 GTU (30070 NRG).
[11:00:39] Waiting for the transaction to be finalized.........
[11:01: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 Mon, 1 Feb 2021 11:15:01 UTC.
Enter password for signing key:
[92mTransaction '01c52d94f6e77a5d95cd84fc3f0cb878b10dbc8f387ee45f916f7694bdedd70c' 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 01c52d94f6e77a5d95cd84fc3f0cb878b10dbc8f387ee45f916f7694bdedd70c'.
[11:05:09] Waiting for the transaction to be committed.........
Transaction is committed into block 9e1fdd68c12cdf08b61bac0debadfaca43c9d364aed800b2ddbd6749ec3b3ebb with status "success" and cost 3.007000 GTU (30070 NRG).
[11:05:25] Waiting for the transaction to be finalized....
[11:05: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 Mon, 1 Feb 2021 11:20:02 UTC.
Enter password for signing key:
[92mTransaction 'c7ef7373efc092f6b1951ad753e23aee74f3224ca46e55fa237c6add23e43873' 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 c7ef7373efc092f6b1951ad753e23aee74f3224ca46e55fa237c6add23e43873'.
[11:10:09] Waiting for the transaction to be committed..........................
Transaction is committed into block 06a7ed87139e3ac67641102fc9d9e7539d6e3ba8af13e2270e880ce8145ee8c7 with status "success" and cost 3.007000 GTU (30070 NRG).
[11:11:06] Waiting for the transaction to be finalized......
[11:11: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 Mon, 1 Feb 2021 11:25:01 UTC.
Enter password for signing key:
[92mTransaction '0755e8ee4db630890caa976fd2d1c689af8d16451f249cd739d0a6a599b6570b' 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 0755e8ee4db630890caa976fd2d1c689af8d16451f249cd739d0a6a599b6570b'.
[11:15:09] Waiting for the transaction to be committed........
Transaction is committed into block 392e8d2605523409b2bef569c20afa03c2eff61103f37b16e678fd4d060fa444 with status "success" and cost 3.007000 GTU (30070 NRG).
[11:15:23] Waiting for the transaction to be finalized....
[11:15:28] 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 Mon, 1 Feb 2021 11:30:02 UTC.
Enter password for signing key:
[92mTransaction 'd32e96ee5346938fe9cd245115697383976fdf6562ef3f618d2ac5966f539997' 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 d32e96ee5346938fe9cd245115697383976fdf6562ef3f618d2ac5966f539997'.
[11:20:10] Waiting for the transaction to be committed.......
Transaction is committed into block 9c8b264f2fb733cdea64995130a26e4bfc3cd4663ba020d9daa72fe19031aaf3 with status "success" and cost 3.007000 GTU (30070 NRG).
[11:20:22] Waiting for the transaction to be finalized........
[11:20:51] 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 Mon, 1 Feb 2021 11:35:01 UTC.
Enter password for signing key:
[92mTransaction 'e7e5422e405b5a1d5b2d411691d08e6e63248b54d611f17bf77ac0e7d538a89c' 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 e7e5422e405b5a1d5b2d411691d08e6e63248b54d611f17bf77ac0e7d538a89c'.
[11:25:09] Waiting for the transaction to be committed.......
Transaction is committed into block 45e29801929fe2cecfb8c3374c43c539d5e0b4b924f9cdae9010a53acd1d1521 with status "success" and cost 3.007000 GTU (30070 NRG).
[11:25:22] Waiting for the transaction to be finalized....
[11:25:28] 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 Mon, 1 Feb 2021 11:40:01 UTC.
Enter password for signing key:
[92mTransaction '81a256da2240160b9c4275d242eea832f422a3307b41b7697399bc7dba231885' 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 81a256da2240160b9c4275d242eea832f422a3307b41b7697399bc7dba231885'.
[11:30:09] Waiting for the transaction to be committed........
Transaction is committed into block ccfd27b408e338fd14888ea2f10f840efd29b1753d90b86616411e01d73cb671 with status "success" and cost 3.007000 GTU (30070 NRG).
[11:30:23] Waiting for the transaction to be finalized........
[11:30:56] 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 Mon, 1 Feb 2021 11:45:02 UTC.
Enter password for signing key:
[92mTransaction '503bd63ba8893bc4e6f36efdab8e6b7599497f1769a14df59c00c768ef010528' 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 503bd63ba8893bc4e6f36efdab8e6b7599497f1769a14df59c00c768ef010528'.
[11:35:09] Waiting for the transaction to be committed.............
Transaction is committed into block 4d24881c6e12886123216db86a1f14f74eedfd93c8212e3269a05473d94e01f9 with status "success" and cost 3.007000 GTU (30070 NRG).
[11:35:35] Waiting for the transaction to be finalized....
[11:35:41] 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 Mon, 1 Feb 2021 11:50:01 UTC.
Enter password for signing key:
[92mTransaction '5cee6bdf958fc2313cab4fcc177cbcceb262c74231fafa1eb3b0e2b338b7f5b5' 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 5cee6bdf958fc2313cab4fcc177cbcceb262c74231fafa1eb3b0e2b338b7f5b5'.
[11:40:09] Waiting for the transaction to be committed.............
Transaction is committed into block c8d457118eae7a4ca4779df9eb4f6f230792a7d191a565de60bf7fd8f96fba57 with status "success" and cost 3.007000 GTU (30070 NRG).
[11:40:36] Waiting for the transaction to be finalized.......
[11:40: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 Mon, 1 Feb 2021 11:55:01 UTC.
Enter password for signing key:
[92mTransaction '6af6732fd7116c4b8450a2910c10d929024bae114701073dc4aefd7e336e74b3' 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 6af6732fd7116c4b8450a2910c10d929024bae114701073dc4aefd7e336e74b3'.
[11:45:09] Waiting for the transaction to be committed...............
Transaction is committed into block 85c85acec8980dab2f93fbdec616a2ee5f9d9ee347372a909969b03e15b805f7 with status "success" and cost 3.007000 GTU (30070 NRG).
[11:45:40] Waiting for the transaction to be finalized.....
Transaction is finalized into block 196ac7b8849693fd19e69023f1b86abefc2f4b1bda414fd65d4c1d351a00adf2 with status "success" and cost 3.007000 GTU (30070 NRG).
[11:45:51] 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 Mon, 1 Feb 2021 12:00:01 UTC.
Enter password for signing key:
[92mTransaction '1e174471c0d7ceb39e24c1249381ac016d27bc62d734c793644519951c708ad8' 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 1e174471c0d7ceb39e24c1249381ac016d27bc62d734c793644519951c708ad8'.
[11:50:09] Waiting for the transaction to be committed......................
Transaction is committed into block 7096548fe87b939b89e49f55e9cb7864e14bf2f4930ce27342e9320cd4a3aee2 with status "success" and cost 3.007000 GTU (30070 NRG).
[11:50:57] Waiting for the transaction to be finalized..............
[11:52:06] 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 Mon, 1 Feb 2021 12:05:02 UTC.
Enter password for signing key:
[92mTransaction '697697493d31ad7424dae7578cb040b2f1159f0586341c85c77810cc6e9ee191' 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 697697493d31ad7424dae7578cb040b2f1159f0586341c85c77810cc6e9ee191'.
[11:55:09] Waiting for the transaction to be committed...........
Transaction is committed into block b7a60ec63c9e16a81def704ca213a1b86fd3974517ef4505bb4a718309cbed9d with status "success" and cost 3.007000 GTU (30070 NRG).
[11:55:31] Waiting for the transaction to be finalized......
Transaction is finalized into block a370bb6c70d0cc9ed165e8073dd89ad74fe9e72e4461f216b0b31769335806a8 with status "success" and cost 3.007000 GTU (30070 NRG).
[11:55:51] 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 Mon, 1 Feb 2021 13:10:01 UTC.
Enter password for signing key:
[92mTransaction '005db53a816a1a626ab1d704877889818be957c90cae1b0f55afc9ebbe694dd0' 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 005db53a816a1a626ab1d704877889818be957c90cae1b0f55afc9ebbe694dd0'.
[13:00:09] Waiting for the transaction to be committed...........
Transaction is committed into block 75439f86ae7095ac954a2845625c6a51761d5ae3ac0d62fd94a249c5cf76abfd with status "success" and cost 3.007000 GTU (30070 NRG).
[13:00:33] Waiting for the transaction to be finalized......
[13:00: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 Mon, 1 Feb 2021 13:15:02 UTC.
Enter password for signing key:
[92mTransaction '3d1c4ec1f0f4f18204d0cc21bf9ccb977c114387992b3a7bd0dfed74d5aa256e' 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 3d1c4ec1f0f4f18204d0cc21bf9ccb977c114387992b3a7bd0dfed74d5aa256e'.
[13:05:09] Waiting for the transaction to be committed......................
Transaction is committed into block 9064bd4a1ce951fce7b9827bb123ac18da56643df023d3030f3813dcc91505ab with status "success" and cost 3.007000 GTU (30070 NRG).
[13:05:57] Waiting for the transaction to be finalized.....
[13:06:08] 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 Mon, 1 Feb 2021 13:20:02 UTC.
Enter password for signing key:
[92mTransaction '6594f695d1302dd6c90c97820009a951e1f9f70df3587d5ce7c3cea7c776c3b0' 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 6594f695d1302dd6c90c97820009a951e1f9f70df3587d5ce7c3cea7c776c3b0'.
[13:10:09] Waiting for the transaction to be committed..........
Transaction is committed into block 7d2c04de7dc1daa8b2954a2898d12ae1c1661be56adca7ce8c10dcf8b8b6a115 with status "success" and cost 3.007000 GTU (30070 NRG).
[13:10:30] Waiting for the transaction to be finalized.....
Transaction is finalized into block b036fcca6b13eefe5e2bcb058627a16517bc340ec20207aad3f7504c0caee3e3 with status "success" and cost 3.007000 GTU (30070 NRG).
[13:10:41] 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 Mon, 1 Feb 2021 13:25:01 UTC.
Enter password for signing key:
[92mTransaction 'd9d687ee0aaa1966c0076ebe934ec0f7459b1d1e5d02ad8e70f40d1e5d1cf1a5' 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 d9d687ee0aaa1966c0076ebe934ec0f7459b1d1e5d02ad8e70f40d1e5d1cf1a5'.
[13:15:09] Waiting for the transaction to be committed............
Transaction is committed into block 483a4ec25a6d526c00adfce8d39ec2a4bb209d106d87e080582522dfc96c64f2 with status "success" and cost 3.007000 GTU (30070 NRG).
[13:15:33] Waiting for the transaction to be finalized....
[13: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 Mon, 1 Feb 2021 13:30:02 UTC.
Enter password for signing key:
[92mTransaction '78e21693e4331e9f7bf33f3b14d9cab052ab42fa9769394ad0347de59053f07c' 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 78e21693e4331e9f7bf33f3b14d9cab052ab42fa9769394ad0347de59053f07c'.
[13:20:10] Waiting for the transaction to be committed.......
Transaction is committed into block 28320971ddeac8ed2b06126791d25e2073a56628445d3c324a085fe82e0c0a01 with status "success" and cost 3.007000 GTU (30070 NRG).
[13:20:25] Waiting for the transaction to be finalized....
[13:20:31] 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 Mon, 1 Feb 2021 13:35:01 UTC.
Enter password for signing key:
[92mTransaction 'bac117c3b16e8cb79ed1f42dcd949d580ca017309cf2b6b7203cbfe76229634e' 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 bac117c3b16e8cb79ed1f42dcd949d580ca017309cf2b6b7203cbfe76229634e'.
[13:25:09] Waiting for the transaction to be committed............
Transaction is committed into block 27017a0910d9376b22bc27b44a5f5c54a3e0f12ce512015825da3e23972c52d2 with status "success" and cost 3.007000 GTU (30070 NRG).
[13:25:35] Waiting for the transaction to be finalized....
[13:25:41] 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 Mon, 1 Feb 2021 13:40:01 UTC.
Enter password for signing key:
[92mTransaction 'deeed93ec6d9a9019c40757e9c17677c1036b2b01de2724b0c5998b24cf1eb78' 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 deeed93ec6d9a9019c40757e9c17677c1036b2b01de2724b0c5998b24cf1eb78'.
[13:30:09] Waiting for the transaction to be committed..........
Transaction is committed into block 4e934df4fcc076869e82916eb2bff7c20f01b06a14c9a45874bdfbc15ac0d6d4 with status "success" and cost 3.007000 GTU (30070 NRG).
[13:30:27] Waiting for the transaction to be finalized....
[13:30: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 Mon, 1 Feb 2021 13:45:02 UTC.
Enter password for signing key:
[92mTransaction 'f06f3539b18e59b118fc5ffad2bb7d1db36e146c90114e4b07efdfa925e47488' 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 f06f3539b18e59b118fc5ffad2bb7d1db36e146c90114e4b07efdfa925e47488'.
[13:35:10] Waiting for the transaction to be committed........
Transaction is committed into block 426c158c75a241bbfa39f60ac7a77cd9b48005bfc4b62a0408029a4b0f4cd373 with status "success" and cost 3.007000 GTU (30070 NRG).
[13:35:24] Waiting for the transaction to be finalized....
[13:35: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 Mon, 1 Feb 2021 13:50:02 UTC.
Enter password for signing key:
[92mTransaction '0c03d7af8ba04916078bbeab80bc986f20a06e0f87291ca09e2bc883c18b0d5e' 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 0c03d7af8ba04916078bbeab80bc986f20a06e0f87291ca09e2bc883c18b0d5e'.
[13:40:10] Waiting for the transaction to be committed.............
Transaction is committed into block f22e3e1aa05dad6b0f9c960bbed7a2bc24f9b5a6765d124ad6c891684504e764 with status "success" and cost 3.007000 GTU (30070 NRG).
[13:40:38] Waiting for the transaction to be finalized...............
[13:41: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 Mon, 1 Feb 2021 13:55:01 UTC.
Enter password for signing key:
[92mTransaction 'adc678801ac26486cb5366dbcc65713ab21297d9b4c88d96db18835310d5f555' 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 adc678801ac26486cb5366dbcc65713ab21297d9b4c88d96db18835310d5f555'.
[13:45:09] Waiting for the transaction to be committed..................
Transaction is committed into block 802c1d2a3dbe3d94328f4c6ecae4dc0c23d0d8a4656d73f0e37e2dc2150c5369 with status "success" and cost 3.007000 GTU (30070 NRG).
[13:45:49] Waiting for the transaction to be finalized......
[13:46: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 Mon, 1 Feb 2021 14:00:01 UTC.
Enter password for signing key:
[92mTransaction 'bf1f59084034c65ecc9b9fe275644da0bc81fa759cb3c626c36934fa7f867276' 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 bf1f59084034c65ecc9b9fe275644da0bc81fa759cb3c626c36934fa7f867276'.
[13:50:09] Waiting for the transaction to be committed..............
Transaction is committed into block fb7705918b66a5612f2fef5659131db193ab44d1ea334a21e4cca84e1637dc33 with status "success" and cost 3.007000 GTU (30070 NRG).
[13:50:38] Waiting for the transaction to be finalized....
[13: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 Mon, 1 Feb 2021 14:05:02 UTC.
Enter password for signing key:
[92mTransaction '19823f487026eeea626a88bf91162a7b26a92f26a9a8ea625bd9e774720e60b2' 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