forked from Concordium/Testnet4-Challenges
-
Notifications
You must be signed in to change notification settings - Fork 0
/
290121.log
1362 lines (1315 loc) · 116 KB
/
290121.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 Fri, 29 Jan 2021 07:10:02 UTC.
Enter password for signing key:
concordium-client: user error (cannot decrypt signing key with index 0: decryption failure: wrong password)
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 Fri, 29 Jan 2021 07:15:02 UTC.
Enter password for signing key:
concordium-client: user error (cannot decrypt signing key with index 0: decryption failure: wrong password)
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 Fri, 29 Jan 2021 07:20:02 UTC.
Enter password for signing key:
concordium-client: user error (cannot decrypt signing key with index 0: decryption failure: wrong password)
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 Fri, 29 Jan 2021 07:25:01 UTC.
Enter password for signing key:
concordium-client: user error (cannot decrypt signing key with index 0: decryption failure: wrong password)
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 Fri, 29 Jan 2021 07:30:01 UTC.
Enter password for signing key:
concordium-client: user error (cannot decrypt signing key with index 0: decryption failure: wrong password)
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 Fri, 29 Jan 2021 07:35:02 UTC.
Enter password for signing key:
concordium-client: user error (cannot decrypt signing key with index 0: decryption failure: wrong password)
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 Fri, 29 Jan 2021 07:39:46 UTC.
Enter password for signing key:
concordium-client: user error (cannot decrypt signing key with index 0: decryption failure: wrong password)
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 Fri, 29 Jan 2021 07:40:02 UTC.
Enter password for signing key:
concordium-client: user error (cannot decrypt signing key with index 0: decryption failure: wrong password)
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 Fri, 29 Jan 2021 07:45:01 UTC.
Enter password for signing key:
concordium-client: user error (cannot decrypt signing key with index 0: decryption failure: wrong password)
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 Fri, 29 Jan 2021 07:46:44 UTC.
Enter password for signing key:
[92mTransaction '1dc0f1ba5142370db12051532677700cf3e17fa86774a9b7db21a8f7ecc8c4fb' 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 1dc0f1ba5142370db12051532677700cf3e17fa86774a9b7db21a8f7ecc8c4fb'.
[07:36:46] Waiting for the transaction to be committed......
Transaction is finalized into block 2c71dfc2f34add23c57c7eb0634c7713a08c8b8ded1993a397f9390006abff25 with status "success" and cost 3.007000 GTU (30070 NRG).
[07:36:53] Waiting for the transaction to be finalized...
[07:36:53] 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 Fri, 29 Jan 2021 07:50:02 UTC.
Enter password for signing key:
[92mTransaction '2c976e3438e1168a524d57a61510fb4c019645c3fec8411babc7a0fff000ba43' 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 2c976e3438e1168a524d57a61510fb4c019645c3fec8411babc7a0fff000ba43'.
[07:40:04] Waiting for the transaction to be committed..................
Transaction is committed into block 83b92edcd4eca7a10f530bf64238184a70ad4151568779b05ddec4f735af4da6 with status "success" and cost 3.007000 GTU (30070 NRG).
[07:40:39] Waiting for the transaction to be finalized....
[07:40: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 Fri, 29 Jan 2021 07:55:01 UTC.
Enter password for signing key:
[92mTransaction '00a946e62857181b31110c86f3a5ca2252326ecfb99a0b5a311db88c58876b50' 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 00a946e62857181b31110c86f3a5ca2252326ecfb99a0b5a311db88c58876b50'.
[07:45:04] Waiting for the transaction to be committed.........
Transaction is committed into block 802040e6fa464e024204a6d7fe1623980b5569934a2edae4a9db81a47975ac6f with status "success" and cost 3.007000 GTU (30070 NRG).
[07:45:19] Waiting for the transaction to be finalized....
[07:45: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 Fri, 29 Jan 2021 08:00:02 UTC.
Enter password for signing key:
[92mTransaction '3d1f2ca7ddd8acc1a57f19775da901aca260afedc7ae7ec2450afc44e5117f53' 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 3d1f2ca7ddd8acc1a57f19775da901aca260afedc7ae7ec2450afc44e5117f53'.
[07:50:07] Waiting for the transaction to be committed...........
Transaction is committed into block 55c86a058a6e2c6ed48a7598f37820e2e731226ae58c958fcbaa8669eadcf91e with status "success" and cost 3.007000 GTU (30070 NRG).
[07:50:27] Waiting for the transaction to be finalized....
[07:50: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 Fri, 29 Jan 2021 08:05:01 UTC.
Enter password for signing key:
[92mTransaction '44212ab3893acb8553081a29ea3af068fcdeeeed2e7a9d064888d8a741798526' 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 44212ab3893acb8553081a29ea3af068fcdeeeed2e7a9d064888d8a741798526'.
[07:55:06] Waiting for the transaction to be committed........
Transaction is committed into block 198f82c0c43ea6ca0a125ee370e270ac89ee788d1285a61760a7eb449bada9e9 with status "success" and cost 3.007000 GTU (30070 NRG).
[07:55:18] Waiting for the transaction to be finalized....
[07:55: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 Fri, 29 Jan 2021 09:10:02 UTC.
Enter password for signing key:
[92mTransaction 'e55d2674c87418f36ae04b0ee3a074ae08e1ef5eddc991552a1425c635deab37' 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 e55d2674c87418f36ae04b0ee3a074ae08e1ef5eddc991552a1425c635deab37'.
[09:00:07] Waiting for the transaction to be committed.....
Transaction is committed into block e7cad83a923ce923146477aeb3265a082fbe23808a57f1c2172149c03c28a268 with status "success" and cost 3.007000 GTU (30070 NRG).
[09:00:12] Waiting for the transaction to be finalized....
[09:00:18] 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 Fri, 29 Jan 2021 09:15:01 UTC.
Enter password for signing key:
[92mTransaction '1b600e9740d4aad45a124b24a8af36c394d3697e5a814b01fa2e0dc827d4f99a' 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 1b600e9740d4aad45a124b24a8af36c394d3697e5a814b01fa2e0dc827d4f99a'.
[09:05:06] Waiting for the transaction to be committed............
Transaction is committed into block 29c5f2a560acae2b53820aa056d68ae7f7cd84cc2cd2169d58f19384d6f071be with status "success" and cost 3.007000 GTU (30070 NRG).
[09:05:27] Waiting for the transaction to be finalized....
[09: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 Fri, 29 Jan 2021 09:20:02 UTC.
Enter password for signing key:
[92mTransaction '0dc61cca21b011803cee531440e0a609c86463ba2bd06e9769e3b0b76f203501' 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 0dc61cca21b011803cee531440e0a609c86463ba2bd06e9769e3b0b76f203501'.
[09:10:07] Waiting for the transaction to be committed.....
Transaction is committed into block 07a6566674132cfa5ec0258be56ff3eb088e8aed0edba924f05515a7a1ab04f4 with status "success" and cost 3.007000 GTU (30070 NRG).
[09:10:12] Waiting for the transaction to be finalized....
[09:10:17] 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 Fri, 29 Jan 2021 09:25:02 UTC.
Enter password for signing key:
[92mTransaction 'fef07ec2ae01fa3d485b69f0138bd3a63b7ac5f1f228f20135a8980855db3be4' 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 fef07ec2ae01fa3d485b69f0138bd3a63b7ac5f1f228f20135a8980855db3be4'.
[09:15:07] Waiting for the transaction to be committed........
Transaction is committed into block 451ad5acfde3096db350676b119eb875207bf43dbff6458d7007fafc753dcea9 with status "success" and cost 3.007000 GTU (30070 NRG).
[09:15:18] Waiting for the transaction to be finalized....
[09:15: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 Fri, 29 Jan 2021 09:30:01 UTC.
Enter password for signing key:
[92mTransaction 'a3049dd54826dcb629958573335136f6ea0ac85de36baa0003939d4aedaf4fac' 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 a3049dd54826dcb629958573335136f6ea0ac85de36baa0003939d4aedaf4fac'.
[09:20:06] Waiting for the transaction to be committed.........
Transaction is committed into block 80e624a53980b8830fb42e7c6381d6ad2b0f8fc60c8203a9965ff5c91b7ae180 with status "success" and cost 3.007000 GTU (30070 NRG).
[09:20:21] Waiting for the transaction to be finalized.....
[09:20: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 Fri, 29 Jan 2021 09:35:02 UTC.
Enter password for signing key:
[92mTransaction 'fd71197f8d7db6ff52de6df5ddcec0dbdbb01d6ec39f680da2e95818b0fecbe7' 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 fd71197f8d7db6ff52de6df5ddcec0dbdbb01d6ec39f680da2e95818b0fecbe7'.
[09:25:07] Waiting for the transaction to be committed.......
Transaction is finalized into block b3ac8899fcfded8baf19f2fc44bd9b1f63c4f23ebcea6c536b19b916ba940eaf with status "success" and cost 3.007000 GTU (30070 NRG).
[09:25:16] Waiting for the transaction to be finalized...
[09:25: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 Fri, 29 Jan 2021 09:40:01 UTC.
Enter password for signing key:
[92mTransaction '7c8c1387aa8179128d5d5f200aaeb27d96b6874ad636f20489f60492287b6d78' 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 7c8c1387aa8179128d5d5f200aaeb27d96b6874ad636f20489f60492287b6d78'.
[09:30:06] Waiting for the transaction to be committed...........
Transaction is committed into block cdd4b1879ef33f1849f49982caaa81cfc385a648e9c7bdd213dd48be0b7b7664 with status "success" and cost 3.007000 GTU (30070 NRG).
[09:30:25] Waiting for the transaction to be finalized....
[09:30: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 Fri, 29 Jan 2021 09:45:02 UTC.
Enter password for signing key:
[92mTransaction '5321c06599a3aacd2d502c90f72b4b602ddee97c2b101bc7d1455715d58750b9' 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 5321c06599a3aacd2d502c90f72b4b602ddee97c2b101bc7d1455715d58750b9'.
[09:35:07] Waiting for the transaction to be committed.......
Transaction is committed into block cca0187bf27991bc6349b219960951cb767ccbd109770e5a7c2c41b91319766a with status "success" and cost 3.007000 GTU (30070 NRG).
[09:35:17] Waiting for the transaction to be finalized....
[09:35:22] 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 Fri, 29 Jan 2021 09:50:01 UTC.
Enter password for signing key:
[92mTransaction 'b5671861edceff44f99256c6bb3ea3e246ed5701ce57a6fb9add15345aef3224' 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 b5671861edceff44f99256c6bb3ea3e246ed5701ce57a6fb9add15345aef3224'.
[09:40:07] Waiting for the transaction to be committed......
Transaction is committed into block df48c6314c4047ad92ca2dc4102dcdece37767f2eabf1b9833ed706b2444b54e with status "success" and cost 3.007000 GTU (30070 NRG).
[09:40:14] Waiting for the transaction to be finalized....
[09:40:19] 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 Fri, 29 Jan 2021 09:55:02 UTC.
Enter password for signing key:
[92mTransaction 'f99090b47c9088f63d65e36eb2ff06a70bc0f6afdb41f109fe5de390e056da07' 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 f99090b47c9088f63d65e36eb2ff06a70bc0f6afdb41f109fe5de390e056da07'.
[09:45:07] Waiting for the transaction to be committed.............
Transaction is committed into 2 blocks:
- 343f42aae5db8bc77e84d1e37a49db379a0ef6614ce186fa738404bdba125139 with status "success" and cost 3.007000 GTU (30070 NRG):
* encrypted amounts removed on account '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' up to index '0' with a resulting self encrypted amount of 'b31dc92e7175848323effff69a9b1b4cf607c3620525259e5fe54c5ad923bf86af07d4e6a3eb8790015212f1ddbe0ff0a97d0cb36884deeac813b04cc9b972aacab545ec35a3b3c7d605ef555b62ff42cd5bae7f0295eeda48f3bc624b9704eca61beb68566ef04137f66318278807adc702f7cbcb2c42d5f155832d62576640874806c6c6ff69b00dd264bd8ffe754aa251add6cc27be84f70f6ae78a0bd4b898feef1017f80e2e41698f961f7e1c65442dfb61ae5faf1de60f247feef3594a'
* encrypted amount received on account '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV' with index '14'
- b97ca10d6c70ac98a15e90443ec0c56bb7ffed222e9baf488349a8426acce707 with status "success" and cost 3.007000 GTU (30070 NRG):
* encrypted amounts removed on account '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' up to index '0' with a resulting self encrypted amount of 'b31dc92e7175848323effff69a9b1b4cf607c3620525259e5fe54c5ad923bf86af07d4e6a3eb8790015212f1ddbe0ff0a97d0cb36884deeac813b04cc9b972aacab545ec35a3b3c7d605ef555b62ff42cd5bae7f0295eeda48f3bc624b9704eca61beb68566ef04137f66318278807adc702f7cbcb2c42d5f155832d62576640874806c6c6ff69b00dd264bd8ffe754aa251add6cc27be84f70f6ae78a0bd4b898feef1017f80e2e41698f961f7e1c65442dfb61ae5faf1de60f247feef3594a'
* encrypted amount received on account '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV' with index '14'
[09:45:31] Waiting for the transaction to be finalized..........
Transaction is finalized into block b97ca10d6c70ac98a15e90443ec0c56bb7ffed222e9baf488349a8426acce707 with status "success" and cost 3.007000 GTU (30070 NRG).
[09:46: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 Fri, 29 Jan 2021 10:00:02 UTC.
Enter password for signing key:
[92mTransaction '021a33830b709b42a7b8d4c4e2ffc0c832dfd554a5eff760d23f7a607a9f151f' 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 021a33830b709b42a7b8d4c4e2ffc0c832dfd554a5eff760d23f7a607a9f151f'.
[09:50:07] Waiting for the transaction to be committed................
Transaction is committed into block 8a68650c96e568de81f9b538a37062d29ca1c144848164f8a625f5f94237749f with status "success" and cost 3.007000 GTU (30070 NRG).
[09:50:40] Waiting for the transaction to be finalized....
[09:50: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 Fri, 29 Jan 2021 10:05:02 UTC.
Enter password for signing key:
[92mTransaction '175fa6e1ab2431ecb4107531aea3259deb1ae8bbe03a326206fce79b88dd7e50' 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 175fa6e1ab2431ecb4107531aea3259deb1ae8bbe03a326206fce79b88dd7e50'.
[09:55:07] Waiting for the transaction to be committed............
Transaction is finalized into block 81a2d559f4ef64f30744166d72864f47c2d2304fffc849c4039d0fb85170d1c7 with status "success" and cost 3.007000 GTU (30070 NRG).
[09:55:28] Waiting for the transaction to be finalized...
[09:55: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 Fri, 29 Jan 2021 11:10:01 UTC.
Enter password for signing key:
[92mTransaction 'b35b05ba8391314b6cb4dccc1825faaed1da4ee3fc27c142bccd4b79c95bef5c' 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 b35b05ba8391314b6cb4dccc1825faaed1da4ee3fc27c142bccd4b79c95bef5c'.
[11:00:06] Waiting for the transaction to be committed...............
Transaction is committed into block 17b1f0842c0325567996ed54b6f06bd61d2c5e0a0085925a2dfa07746150506a with status "success" and cost 3.007000 GTU (30070 NRG).
[11:00:35] Waiting for the transaction to be finalized.....
[11:00: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 Fri, 29 Jan 2021 11:15:02 UTC.
Enter password for signing key:
[92mTransaction '276b0432b01a1459b488c114f748f670bd11053b5222345aec1a435364c8326c' 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 276b0432b01a1459b488c114f748f670bd11053b5222345aec1a435364c8326c'.
[11:05:09] Waiting for the transaction to be committed.......
Transaction is committed into block 7bb3582904fc8d3ac2f55aa4d51e7dce11c16ec3b89dd05de95868e20fad69dc with status "success" and cost 3.007000 GTU (30070 NRG).
[11:05:18] Waiting for the transaction to be finalized....
[11:05: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 Fri, 29 Jan 2021 11:20:01 UTC.
Enter password for signing key:
[92mTransaction '1469cda50ba7910e20005b048f1944a671806ab4dd5d22aece21c59e5661f338' 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 1469cda50ba7910e20005b048f1944a671806ab4dd5d22aece21c59e5661f338'.
[11:10:09] Waiting for the transaction to be committed...........
Transaction is committed into block 6f29931e8cbcf91fdc7e6aa426976675e5dddf20f959fe2ba3a16c9557b952ed with status "success" and cost 3.007000 GTU (30070 NRG).
[11:10:27] Waiting for the transaction to be finalized.....
[11:10: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 Fri, 29 Jan 2021 11:25:01 UTC.
Enter password for signing key:
[92mTransaction '9b80ec76cd76ae30f4fe7babb62a0ac92ac460537b18669f16c6d1828c150ec1' 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 9b80ec76cd76ae30f4fe7babb62a0ac92ac460537b18669f16c6d1828c150ec1'.
[11:15:09] Waiting for the transaction to be committed.....
Transaction is finalized into block ea9f7d44f795386662379d5775aa562790e5302d5f65a7e0514c1209a2d85108 with status "success" and cost 3.007000 GTU (30070 NRG).
[11:15:14] Waiting for the transaction to be finalized...
[11:15: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 Fri, 29 Jan 2021 11:30:01 UTC.
Enter password for signing key:
[92mTransaction '36d9a3a4b42319a7d0575454f5fb112caf6bb039af65524aa75145a59ef8b9fe' 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 36d9a3a4b42319a7d0575454f5fb112caf6bb039af65524aa75145a59ef8b9fe'.
[11:20:09] Waiting for the transaction to be committed............
Transaction is committed into block 3f3dee633e332471b627ec9e644ac4ed327fc78e5a136017928e448abf604706 with status "success" and cost 3.007000 GTU (30070 NRG).
[11:20:31] Waiting for the transaction to be finalized...
[11: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 Fri, 29 Jan 2021 11:35:02 UTC.
Enter password for signing key:
[92mTransaction 'cd942a9c465492b2ff2858de7775454bb5417915941707db5fad6609f448a4cb' 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 cd942a9c465492b2ff2858de7775454bb5417915941707db5fad6609f448a4cb'.
[11:25:10] Waiting for the transaction to be committed.........
Transaction is finalized into block 4bf135538b0d2ea5f34e8da0a847519af55edbdd77d046649e343f6af4354c46 with status "success" and cost 3.007000 GTU (30070 NRG).
[11:25:24] Waiting for the transaction to be finalized...
[11:25: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 Fri, 29 Jan 2021 11:40:01 UTC.
Enter password for signing key:
[92mTransaction '7f1b18b98acbaf59311484114c8152d34ca71328f73fb1ab2ac195a6be50e023' 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 7f1b18b98acbaf59311484114c8152d34ca71328f73fb1ab2ac195a6be50e023'.
[11:30:09] Waiting for the transaction to be committed.......
Transaction is committed into block 31a441958915485f4b9eedef65434dbbc714ebfeb3f5d2bcd60ee47bed021e02 with status "success" and cost 3.007000 GTU (30070 NRG).
[11:30:18] Waiting for the transaction to be finalized....
[11:30: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 Fri, 29 Jan 2021 11:45:02 UTC.
Enter password for signing key:
[92mTransaction 'e47b7815db4afc84a3b2031d711ae8cea4842bf2ea448e28969838a766f933bf' 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 e47b7815db4afc84a3b2031d711ae8cea4842bf2ea448e28969838a766f933bf'.
[11:35:10] Waiting for the transaction to be committed.....
Transaction is committed into block a843e6ec4825a0a900554d6aa007610bb9121157de77572adfe4b8adbb71be74 with status "success" and cost 3.007000 GTU (30070 NRG).
[11:35:15] Waiting for the transaction to be finalized....
[11:35: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 Fri, 29 Jan 2021 11:50:02 UTC.
Enter password for signing key:
[92mTransaction '4ced4141142f92ad679813fb25aeb3dbcff9606bf02e83770b2b6d5e8f1b6637' 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 4ced4141142f92ad679813fb25aeb3dbcff9606bf02e83770b2b6d5e8f1b6637'.
[11:40:09] Waiting for the transaction to be committed......
Transaction is committed into block fa16f90af7f12c47c09afa43fce0f15a135e291713154748307bd0f4d56ce7b7 with status "success" and cost 3.007000 GTU (30070 NRG).
[11:40:16] Waiting for the transaction to be finalized....
[11:40:22] 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 Fri, 29 Jan 2021 11:55:01 UTC.
Enter password for signing key:
[92mTransaction 'fe601636ac8ac149ff534a9da6aad45e1f43af92569f8cea87691c2a22fd286d' 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 fe601636ac8ac149ff534a9da6aad45e1f43af92569f8cea87691c2a22fd286d'.
[11:45:09] Waiting for the transaction to be committed.......
Transaction is committed into block fe2b2fd58784897b955a07a30dae630ed792b198801663e5e12b77319227d12c with status "success" and cost 3.007000 GTU (30070 NRG).
[11:45:19] Waiting for the transaction to be finalized....
[11:45: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 Fri, 29 Jan 2021 12:00:02 UTC.
Enter password for signing key:
[92mTransaction '00431fa5894c3ec5d882f8e54b9c60be98b33e30a10da9cca9d613cb703cd995' 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 00431fa5894c3ec5d882f8e54b9c60be98b33e30a10da9cca9d613cb703cd995'.
[11:50:10] Waiting for the transaction to be committed...............
Transaction is committed into block a3cf0e6da0d4d11822349754513ef6dd3243b24d006b4f395f1cd581f47f1738 with status "success" and cost 3.007000 GTU (30070 NRG).
[11:50:39] Waiting for the transaction to be finalized....
[11: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 Fri, 29 Jan 2021 12:05:01 UTC.
Enter password for signing key:
[92mTransaction '1990061aa58be23055fa22df69961874a098f4cec8d455c48d411cdc11dd8c6d' 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 1990061aa58be23055fa22df69961874a098f4cec8d455c48d411cdc11dd8c6d'.
[11:55:09] Waiting for the transaction to be committed.......
Transaction is committed into block e2f7bda0f5c85d2303f8afa18ca69694d6d88957bfc71ba330196763352bf9ed with status "success" and cost 3.007000 GTU (30070 NRG).
[11:55:19] Waiting for the transaction to be finalized......
[11:55: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 Fri, 29 Jan 2021 13:10:02 UTC.
Enter password for signing key:
[92mTransaction '394d77d13ca32f70839f98f8f950dedd8ca88b2e2bd1bd8290935dbda071d397' 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 394d77d13ca32f70839f98f8f950dedd8ca88b2e2bd1bd8290935dbda071d397'.
[13:00:10] Waiting for the transaction to be committed..........
Transaction is committed into 2 blocks with status "success" and cost 3.007000 GTU (30070 NRG):
- 81052d7827c1afe3bb3afd94ba0b3132439a0293620b23ee002757eb05272567
- db60871633a12ae9b776415b9ae35dc300eb38f3d573e33a1fb263df77c5ce9a
[13:00:28] Waiting for the transaction to be finalized.....
Transaction is finalized into block 81052d7827c1afe3bb3afd94ba0b3132439a0293620b23ee002757eb05272567 with status "success" and cost 3.007000 GTU (30070 NRG).
[13:00: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 Fri, 29 Jan 2021 13:15:01 UTC.
Enter password for signing key:
[92mTransaction '149b7ce89391c0a8f00d78a81a9f66f607c3f225ddb8b389fa9694cf834765e7' 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 149b7ce89391c0a8f00d78a81a9f66f607c3f225ddb8b389fa9694cf834765e7'.
[13:05:09] Waiting for the transaction to be committed........
Transaction is finalized into block 49f314eddcc3d1c2764586876d43065fee1b3fe23e6c4a405cbc5dd411cb6776 with status "success" and cost 3.007000 GTU (30070 NRG).
[13:05:21] Waiting for the transaction to be finalized...
[13:05:21] 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 Fri, 29 Jan 2021 13:20:02 UTC.
Enter password for signing key:
[92mTransaction '593b72c178ef9eadfec8f3ae7a62aa103a2f6ca52a545fd79a1b8d1ba58d020f' 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 593b72c178ef9eadfec8f3ae7a62aa103a2f6ca52a545fd79a1b8d1ba58d020f'.
[13:10:10] Waiting for the transaction to be committed..........
Transaction is committed into block b808321549fdde13d8901cade2571a7251d9595a059e530b8975e822d121cd91 with status "success" and cost 3.007000 GTU (30070 NRG).
[13:10:28] Waiting for the transaction to be finalized.....
[13:10: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 Fri, 29 Jan 2021 13:25:01 UTC.
Enter password for signing key:
[92mTransaction '22b35df2465f4b0ad3b2108843b98aff7543917ee29943dfda82c1000066f2e2' 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 22b35df2465f4b0ad3b2108843b98aff7543917ee29943dfda82c1000066f2e2'.
[13:15:10] Waiting for the transaction to be committed.......
Transaction is committed into block 903f5be8ba4599906abf44ede156f4d3a8de3531ed0558b3ef70376ebd9ecb13 with status "success" and cost 3.007000 GTU (30070 NRG).
[13:15:19] Waiting for the transaction to be finalized....
Transaction is finalized into block f28171abd9daf97b2240af17e431a0d18b13d0ec623cb9e30aebeab6e49e91fe with status "success" and cost 3.007000 GTU (30070 NRG).
[13:15: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 Fri, 29 Jan 2021 13:30:01 UTC.
Enter password for signing key:
[92mTransaction '80d061d0b80ac1a6bbad6d6fa25e775df9ff5a4575b2641d3882c738fd143c17' 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 80d061d0b80ac1a6bbad6d6fa25e775df9ff5a4575b2641d3882c738fd143c17'.
[13:20:09] Waiting for the transaction to be committed........
Transaction is committed into block 777af81a49abd1243e0c9b24110b9c1f3ce511893cfa8aec1b08915a51ffce95 with status "success" and cost 3.007000 GTU (30070 NRG).
[13:20:22] Waiting for the transaction to be finalized....
[13:20: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 Fri, 29 Jan 2021 13:35:02 UTC.
Enter password for signing key:
[92mTransaction '183286f73f438b2942df7e28725a41b5fdec752ddfd4b7906de9e5a42179666a' 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 183286f73f438b2942df7e28725a41b5fdec752ddfd4b7906de9e5a42179666a'.
[13:25:10] Waiting for the transaction to be committed............
Transaction is committed into block 1025cc5e0da1d7c789990e628459deb7eea506681ebd889a3c4f4ff606984dd0 with status "success" and cost 3.007000 GTU (30070 NRG).
[13:25:32] Waiting for the transaction to be finalized....
[13:25: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 Fri, 29 Jan 2021 13:40:02 UTC.
Enter password for signing key:
[92mTransaction 'ac883da5e7b2f74d94bde67cc9ad0661b1560de8084d8fe98530d0e14905443d' 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 ac883da5e7b2f74d94bde67cc9ad0661b1560de8084d8fe98530d0e14905443d'.
[13:30:10] Waiting for the transaction to be committed............
Transaction is committed into block 6bf746cebfb1280076bd3bd36602edb662e042aef67c666be1ec5f3a8b032391 with status "success" and cost 3.007000 GTU (30070 NRG).
[13:30:30] Waiting for the transaction to be finalized....
[13:30: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 Fri, 29 Jan 2021 13:45:01 UTC.
Enter password for signing key:
[92mTransaction '2d34077807bf3b6045877c55d998fc74d5bc43c44cd08fb6071d2b4a3571bf72' 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 2d34077807bf3b6045877c55d998fc74d5bc43c44cd08fb6071d2b4a3571bf72'.
[13:35:09] Waiting for the transaction to be committed....................
Transaction is committed into block 45e5ebad3243a493041449230a4f1d026a13bd37dcf82aa38eedfa9fadc6fc13 with status "success" and cost 3.007000 GTU (30070 NRG).
[13:35:49] Waiting for the transaction to be finalized....
[13:35: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 Fri, 29 Jan 2021 13:50:02 UTC.
Enter password for signing key:
[92mTransaction '6970e9117b69fc2e0b18a210751c59a1de0952ca39f5ced1698b37febd6bfff9' 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 6970e9117b69fc2e0b18a210751c59a1de0952ca39f5ced1698b37febd6bfff9'.
[13:40:09] Waiting for the transaction to be committed......
Transaction is committed into block 80967a578a3e768b497e3db7434a0ebd2bfd0653a3719c5d29f852ea9a3cc4a6 with status "success" and cost 3.007000 GTU (30070 NRG).
[13:40:18] Waiting for the transaction to be finalized....
[13: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 Fri, 29 Jan 2021 13:55:01 UTC.
Enter password for signing key:
[92mTransaction 'faf7800d78d6997fb2b294c74b1dd7008e5f3512ae4f0d0c60647eb6ca03eaee' 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 faf7800d78d6997fb2b294c74b1dd7008e5f3512ae4f0d0c60647eb6ca03eaee'.
[13:45:09] Waiting for the transaction to be committed............
Transaction is committed into block b7aff9394431ff977a130fb4aad28e20588a884095256129b55b8abebe2e4bbd with status "success" and cost 3.007000 GTU (30070 NRG).
[13:45:30] Waiting for the transaction to be finalized....
[13:45: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 Fri, 29 Jan 2021 14:00:02 UTC.
Enter password for signing key:
[92mTransaction 'a23fb744641d4e34d7b3516e4e1d7b99c8f696ad2021800bde0876ec2dbc817c' 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 a23fb744641d4e34d7b3516e4e1d7b99c8f696ad2021800bde0876ec2dbc817c'.
[13:50:09] Waiting for the transaction to be committed........
Transaction is committed into block dfc0667462b13ad2690a22b224567c22e4bbc5bd11fb82c03597ff622e0f6aa4 with status "success" and cost 3.007000 GTU (30070 NRG).
[13:50:22] Waiting for the transaction to be finalized....
[13:50: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 Fri, 29 Jan 2021 14:05:02 UTC.
Enter password for signing key:
[92mTransaction 'a0d59814961266c072d1cc280d0835f117d000857dadd2e3f3537f540fe05278' 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 a0d59814961266c072d1cc280d0835f117d000857dadd2e3f3537f540fe05278'.
[13:55:10] Waiting for the transaction to be committed......
Transaction is committed into block 6430b811b7574dfa493ae629b74fc4f0ed4029e10bb2c16aadd5e00bacd96aa1 with status "success" and cost 3.007000 GTU (30070 NRG).
[13:55:17] Waiting for the transaction to be finalized....
[13:55:22] 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 Fri, 29 Jan 2021 15:10:02 UTC.
Enter password for signing key:
[92mTransaction 'e140d6756354bb012c0babf7971f0eb3edf7f5c4ff46feaef5a13c56531eaa09' 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 e140d6756354bb012c0babf7971f0eb3edf7f5c4ff46feaef5a13c56531eaa09'.
[15:00:10] Waiting for the transaction to be committed.........................
Transaction is committed into block e29c9bad39744399af2e9edd4cf4325c23606178ea5282238c8c1b8a4588b5aa with status "success" and cost 3.007000 GTU (30070 NRG).
[15:01:06] Waiting for the transaction to be finalized....
[15:01:12] 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 Fri, 29 Jan 2021 15:15:01 UTC.
Enter password for signing key:
[92mTransaction '3d7b06875fb6a6b693f3bbb020254d2913fd52c32390a435fb21a459682ba985' 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 3d7b06875fb6a6b693f3bbb020254d2913fd52c32390a435fb21a459682ba985'.
[15:05:09] Waiting for the transaction to be committed..........
Transaction is committed into block de4d0951be8dec7c2cd45096c2910bd3bd934ac6c88cd906c6e1aa94ef32997c with status "success" and cost 3.007000 GTU (30070 NRG).
[15:05:25] Waiting for the transaction to be finalized....
[15:05: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 Fri, 29 Jan 2021 15:20:01 UTC.
Enter password for signing key:
[92mTransaction '5793945390b41115615fe98a897aa0575312fd015c05de2f3f6871ed6e7d5262' 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 5793945390b41115615fe98a897aa0575312fd015c05de2f3f6871ed6e7d5262'.
[15:10:09] Waiting for the transaction to be committed.............
Transaction is committed into block 234a1d6e2c4ca7d3492bb90cbecb675c73e6ec436457d5b349be55537e0823d2 with status "success" and cost 3.007000 GTU (30070 NRG).
[15:10:34] Waiting for the transaction to be finalized....
[15:10: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 Fri, 29 Jan 2021 15:25:01 UTC.
Enter password for signing key:
[92mTransaction '44868cc16ab465135bae4e88ea041f1dd099040494e418c416c4d414cf5ce815' 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 44868cc16ab465135bae4e88ea041f1dd099040494e418c416c4d414cf5ce815'.
[15:15:10] Waiting for the transaction to be committed.........
Transaction is committed into block 43439cc02bcaead1bab6c27cee19687250931308219fabf7a79823324d7afce5 with status "success" and cost 3.007000 GTU (30070 NRG).
[15:15:24] Waiting for the transaction to be finalized......
[15:15: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 Fri, 29 Jan 2021 15:30:02 UTC.
Enter password for signing key:
[92mTransaction '609479b1152650b780c38f5abd9e9195c40c5d2f2d9d088d2b65aa304dab3b04' 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 609479b1152650b780c38f5abd9e9195c40c5d2f2d9d088d2b65aa304dab3b04'.
[15:20:10] Waiting for the transaction to be committed...................
Transaction is committed into block c6f49b9afc4d909c5bc50f80c1c09e1a5b69ceb5a7d68cea7038061af953b724 with status "success" and cost 3.007000 GTU (30070 NRG).
[15:20:51] Waiting for the transaction to be finalized......
[15:21: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 Fri, 29 Jan 2021 15:35:01 UTC.
Enter password for signing key:
[92mTransaction '918e91ebb40fbc9c6405f66f07976d2867feadf76955fa53a6199b655da0b1bf' 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 918e91ebb40fbc9c6405f66f07976d2867feadf76955fa53a6199b655da0b1bf'.
[15:25:09] Waiting for the transaction to be committed.......
Transaction is committed into block dc225692c50ac9a433c3ec56148a114b829a30bc6293fe430907befc65bc4868 with status "success" and cost 3.007000 GTU (30070 NRG).
[15:25:19] Waiting for the transaction to be finalized....
[15:25: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 Fri, 29 Jan 2021 15:40:02 UTC.
Enter password for signing key:
[92mTransaction '95419899bafb788270766f002bef4f73e5d79cbe3d2e90d451e01ad584143a4f' 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 95419899bafb788270766f002bef4f73e5d79cbe3d2e90d451e01ad584143a4f'.
[15:30:10] Waiting for the transaction to be committed.................
Transaction is committed into block 1545df7e4961e188df2ba7153f424df35a79470a2ad558c46fcf786c96f15b51 with status "success" and cost 3.007000 GTU (30070 NRG).
[15:30:45] Waiting for the transaction to be finalized....
[15:30: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 Fri, 29 Jan 2021 15:45:01 UTC.
Enter password for signing key:
[92mTransaction 'd3e57f9d97fb9323cd64441f9ac5f1e765ce8a0f5b161881f3f45c757f0283d7' 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 d3e57f9d97fb9323cd64441f9ac5f1e765ce8a0f5b161881f3f45c757f0283d7'.
[15:35:09] Waiting for the transaction to be committed............
Transaction is committed into block a350bf834d62d5eea0a55f8f772e241aec424157e0a9c5cfa8fce8102d44bed4 with status "success" and cost 3.007000 GTU (30070 NRG).
[15:35:31] Waiting for the transaction to be finalized....
[15: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 Fri, 29 Jan 2021 15:50:01 UTC.
Enter password for signing key:
[92mTransaction '8e91320e0c2ae77fad9f371150f2020011be7a4e940032f55c593f0fde7a4773' 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 8e91320e0c2ae77fad9f371150f2020011be7a4e940032f55c593f0fde7a4773'.
[15:40:10] Waiting for the transaction to be committed......
Transaction is committed into block be960fb8a6dadb37fe0c4409e982515fff6a1c53da843dea62b2835876f3e901 with status "success" and cost 3.007000 GTU (30070 NRG).
[15:40:18] Waiting for the transaction to be finalized....
[15:40: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 Fri, 29 Jan 2021 15:55:01 UTC.
Enter password for signing key:
[92mTransaction '3ddfd194190b71732a369b14d810361f7ba243b9973f171312e40988f76c60a8' 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 3ddfd194190b71732a369b14d810361f7ba243b9973f171312e40988f76c60a8'.
[15:45:09] Waiting for the transaction to be committed.......
Transaction is committed into block 74ad212b8ff0a18acd1cf90477d7564e4ebc343230153f078b522fc9556a307c with status "success" and cost 3.007000 GTU (30070 NRG).
[15:45:18] Waiting for the transaction to be finalized....
[15:45: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 Fri, 29 Jan 2021 16:00:01 UTC.
Enter password for signing key:
[92mTransaction 'd57a8d611f5fa6a83ab6029a466992fe934a4421f5241dc3f846c4adb88d9f90' 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 d57a8d611f5fa6a83ab6029a466992fe934a4421f5241dc3f846c4adb88d9f90'.
[15:50:09] Waiting for the transaction to be committed......................
Transaction is committed into block 1e5b469b11d2dd0d298171f4ffa67cb215b9f8f2e38c98f92a83e2b59b48b2b6 with status "success" and cost 3.007000 GTU (30070 NRG).
[15:50:55] Waiting for the transaction to be finalized....
[15:51: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 Fri, 29 Jan 2021 16:05:02 UTC.
Enter password for signing key:
[92mTransaction 'c2b903c7fc66a72055f7bb78826afd2b71a15787a3f933581d487e64d2039c2b' 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 c2b903c7fc66a72055f7bb78826afd2b71a15787a3f933581d487e64d2039c2b'.
[15:55:10] Waiting for the transaction to be committed...........
Transaction is committed into block fdcff82836867d31a40164963b5ed15b8a3c213bf9ecb39247c00e1623d514e8 with status "success" and cost 3.007000 GTU (30070 NRG).
[15:55:30] Waiting for the transaction to be finalized....
[15:55: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 Fri, 29 Jan 2021 17:10:01 UTC.
Enter password for signing key:
[92mTransaction 'e0edf75ab457af187c6f3f30c859286114b4a6197a83be0dc835af090ad0658f' 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 e0edf75ab457af187c6f3f30c859286114b4a6197a83be0dc835af090ad0658f'.
[17:00:09] Waiting for the transaction to be committed..............
Transaction is committed into block 17d48d8921751312b91cc9040b8547ef9942f8ac4e636c0809956cc1a9fe1a2d with status "success" and cost 3.007000 GTU (30070 NRG).
[17:00:36] Waiting for the transaction to be finalized....
[17:00: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 Fri, 29 Jan 2021 17:15:02 UTC.
Enter password for signing key:
[92mTransaction 'd5f58c368b154a17fa6e4e9a2fd39c8be2428de121323567c6e210141cf7fb03' 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 d5f58c368b154a17fa6e4e9a2fd39c8be2428de121323567c6e210141cf7fb03'.
[17:05:10] Waiting for the transaction to be committed................
Transaction is committed into block 1e134cc860c45363037721468d08995c4a340913d0b157c2aa3d5cc4eebbd9c9 with status "success" and cost 3.007000 GTU (30070 NRG).
[17:05:40] Waiting for the transaction to be finalized....
[17:05: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