-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path0xfast-local-64.log
2222 lines (2210 loc) · 149 KB
/
0xfast-local-64.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
URL is http://localhost:8080/rpc/free
Connection established with response [0, 1ms]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 0
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 1
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 2
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 3
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 4
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 5
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 6
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 7
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 8
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 9
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 10
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 11
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 12
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 13
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 14
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 15
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 16
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 17
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 18
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 19
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 20
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 21
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 22
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 23
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 24
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 25
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 26
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 27
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 28
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 29
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 30
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 31
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 32
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 33
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 34
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 2ms]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 35
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 36
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 37
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 38
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 39
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 40
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 41
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 42
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 43
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 44
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 45
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 46
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 47
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 48
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 49
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 50
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 51
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 52
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 53
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 54
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 55
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 56
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 57
Connection established with response [0, 28ms]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 58
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 59
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 60
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 61
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 62
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 63
Method: eth_getBlockByNumber | START
Time now: 2023-01-07 08:46:20 +0000 UTC . Ending at 2023-01-07 08:47:20 +0000 UTC
start Idx: 875753
Num Blocks: 4078 | Num Queries: 4142 | Num 429: 0 | Data: 545 MiB [ 1s @ 0 calls/sec ]
Num Blocks: 8255 | Num Queries: 8319 | Num 429: 0 | Data: 1.1 GiB [ 2s @ 2087 calls/sec ]
Num Blocks: 11856 | Num Queries: 11920 | Num 429: 0 | Data: 1.5 GiB [ 3s @ 2588 calls/sec ]
Num Blocks: 14366 | Num Queries: 14430 | Num 429: 0 | Data: 1.9 GiB [ 4s @ 2567 calls/sec ]
Num Blocks: 17808 | Num Queries: 17872 | Num 429: 0 | Data: 2.3 GiB [ 5s @ 2743 calls/sec ]
Num Blocks: 21976 | Num Queries: 22040 | Num 429: 0 | Data: 2.8 GiB [ 6s @ 2983 calls/sec ]
Num Blocks: 26269 | Num Queries: 26333 | Num 429: 0 | Data: 3.4 GiB [ 7s @ 3170 calls/sec ]
Num Blocks: 30595 | Num Queries: 30659 | Num 429: 0 | Data: 4.0 GiB [ 8s @ 3315 calls/sec ]
Num Blocks: 33342 | Num Queries: 33406 | Num 429: 0 | Data: 4.3 GiB [ 9s @ 3251 calls/sec ]
Num Blocks: 36308 | Num Queries: 36372 | Num 429: 0 | Data: 4.7 GiB [ 10s @ 3223 calls/sec ]
Num Blocks: 40381 | Num Queries: 40444 | Num 429: 0 | Data: 5.2 GiB [ 11s @ 3300 calls/sec ]
Num Blocks: 44997 | Num Queries: 45061 | Num 429: 0 | Data: 5.8 GiB [ 12s @ 3410 calls/sec ]
Num Blocks: 49365 | Num Queries: 49429 | Num 429: 0 | Data: 6.4 GiB [ 13s @ 3484 calls/sec ]
Num Blocks: 50575 | Num Queries: 50639 | Num 429: 0 | Data: 6.6 GiB [ 14s @ 3321 calls/sec ]
Num Blocks: 51788 | Num Queries: 51852 | Num 429: 0 | Data: 6.7 GiB [ 15s @ 3181 calls/sec ]
Num Blocks: 53006 | Num Queries: 53070 | Num 429: 0 | Data: 6.9 GiB [ 16s @ 3058 calls/sec ]
Num Blocks: 54480 | Num Queries: 54544 | Num 429: 0 | Data: 7.1 GiB [ 17s @ 2965 calls/sec ]
Num Blocks: 55917 | Num Queries: 55981 | Num 429: 0 | Data: 7.3 GiB [ 18s @ 2880 calls/sec ]
Num Blocks: 57325 | Num Queries: 57389 | Num 429: 0 | Data: 7.4 GiB [ 19s @ 2802 calls/sec ]
Num Blocks: 58715 | Num Queries: 58779 | Num 429: 0 | Data: 7.6 GiB [ 20s @ 2732 calls/sec ]
Num Blocks: 60015 | Num Queries: 60079 | Num 429: 0 | Data: 7.8 GiB [ 21s @ 2663 calls/sec ]
Num Blocks: 61289 | Num Queries: 61353 | Num 429: 0 | Data: 7.9 GiB [ 22s @ 2600 calls/sec ]
Num Blocks: 62689 | Num Queries: 62753 | Num 429: 0 | Data: 8.1 GiB [ 23s @ 2548 calls/sec ]
Num Blocks: 64023 | Num Queries: 64087 | Num 429: 0 | Data: 8.3 GiB [ 24s @ 2497 calls/sec ]
Num Blocks: 65401 | Num Queries: 65465 | Num 429: 0 | Data: 8.5 GiB [ 25s @ 2453 calls/sec ]
Num Blocks: 66802 | Num Queries: 66866 | Num 429: 0 | Data: 8.6 GiB [ 26s @ 2412 calls/sec ]
Num Blocks: 68158 | Num Queries: 68222 | Num 429: 0 | Data: 8.8 GiB [ 27s @ 2373 calls/sec ]
Num Blocks: 69553 | Num Queries: 69617 | Num 429: 0 | Data: 9.0 GiB [ 28s @ 2338 calls/sec ]
Num Blocks: 70950 | Num Queries: 71014 | Num 429: 0 | Data: 9.2 GiB [ 29s @ 2306 calls/sec ]
Num Blocks: 72328 | Num Queries: 72392 | Num 429: 0 | Data: 9.4 GiB [ 30s @ 2275 calls/sec ]
Num Blocks: 73670 | Num Queries: 73734 | Num 429: 0 | Data: 9.5 GiB [ 31s @ 2245 calls/sec ]
Num Blocks: 74873 | Num Queries: 74937 | Num 429: 0 | Data: 9.7 GiB [ 32s @ 2212 calls/sec ]
Num Blocks: 76695 | Num Queries: 76759 | Num 429: 0 | Data: 9.9 GiB [ 33s @ 2200 calls/sec ]
Num Blocks: 78319 | Num Queries: 78383 | Num 429: 0 | Data: 10 GiB [ 34s @ 2183 calls/sec ]
Num Blocks: 79891 | Num Queries: 79955 | Num 429: 0 | Data: 10 GiB [ 35s @ 2166 calls/sec ]
Num Blocks: 81478 | Num Queries: 81542 | Num 429: 0 | Data: 10 GiB [ 36s @ 2150 calls/sec ]
Num Blocks: 85149 | Num Queries: 85213 | Num 429: 0 | Data: 11 GiB [ 37s @ 2191 calls/sec ]
Num Blocks: 89350 | Num Queries: 89414 | Num 429: 0 | Data: 12 GiB [ 38s @ 2244 calls/sec ]
Num Blocks: 91785 | Num Queries: 91849 | Num 429: 0 | Data: 12 GiB [ 39s @ 2248 calls/sec ]
Num Blocks: 94804 | Num Queries: 94868 | Num 429: 0 | Data: 12 GiB [ 40s @ 2268 calls/sec ]
Num Blocks: 98931 | Num Queries: 98995 | Num 429: 0 | Data: 13 GiB [ 41s @ 2313 calls/sec ]
Num Blocks: 103328 | Num Queries: 103392 | Num 429: 0 | Data: 13 GiB [ 42s @ 2363 calls/sec ]
Num Blocks: 107383 | Num Queries: 107447 | Num 429: 0 | Data: 14 GiB [ 43s @ 2402 calls/sec ]
Num Blocks: 110384 | Num Queries: 110448 | Num 429: 0 | Data: 14 GiB [ 44s @ 2416 calls/sec ]
Num Blocks: 113138 | Num Queries: 113202 | Num 429: 0 | Data: 15 GiB [ 45s @ 2423 calls/sec ]
Num Blocks: 117412 | Num Queries: 117476 | Num 429: 0 | Data: 15 GiB [ 46s @ 2463 calls/sec ]
Num Blocks: 121777 | Num Queries: 121840 | Num 429: 0 | Data: 16 GiB [ 47s @ 2504 calls/sec ]
Num Blocks: 126278 | Num Queries: 126342 | Num 429: 0 | Data: 16 GiB [ 48s @ 2545 calls/sec ]
Num Blocks: 130199 | Num Queries: 130263 | Num 429: 0 | Data: 17 GiB [ 49s @ 2573 calls/sec ]
Num Blocks: 134646 | Num Queries: 134710 | Num 429: 0 | Data: 17 GiB [ 50s @ 2611 calls/sec ]
Num Blocks: 137252 | Num Queries: 137316 | Num 429: 0 | Data: 18 GiB [ 51s @ 2611 calls/sec ]
Num Blocks: 139499 | Num Queries: 139563 | Num 429: 0 | Data: 18 GiB [ 52s @ 2604 calls/sec ]
Num Blocks: 143369 | Num Queries: 143433 | Num 429: 0 | Data: 19 GiB [ 53s @ 2628 calls/sec ]
Num Blocks: 148022 | Num Queries: 148086 | Num 429: 0 | Data: 19 GiB [ 54s @ 2665 calls/sec ]
Num Blocks: 152210 | Num Queries: 152274 | Num 429: 0 | Data: 20 GiB [ 55s @ 2693 calls/sec ]
Num Blocks: 155684 | Num Queries: 155748 | Num 429: 0 | Data: 20 GiB [ 56s @ 2707 calls/sec ]
Num Blocks: 158904 | Num Queries: 158968 | Num 429: 0 | Data: 21 GiB [ 57s @ 2716 calls/sec ]
Num Blocks: 161787 | Num Queries: 161851 | Num 429: 0 | Data: 21 GiB [ 58s @ 2719 calls/sec ]
Num Blocks: 165159 | Num Queries: 165223 | Num 429: 0 | Data: 21 GiB [ 59s @ 2730 calls/sec ]
Num Blocks: 169390 | Num Queries: 169450 | Num 429: 0 | Data: 22 GiB [ 1m0s @ 2755 calls/sec ]
-----------------------
Latency in milliseconds
-- Histogram:
Min value: 0
Max value: 395
Count: 169450
50p: 32.00
75p: 32.00
90p: 64.00
[0, 1) 1207 0.71% 0.71%
[1, 2) 2192 1.29% 2.01%
[2, 4) 6684 3.94% 5.95%
[4, 8) 20009 11.81% 17.76%
[8, 16) 48844 28.83% 46.58%
[16, 32) 49697 29.33% 75.91%
[32, 48) 16642 9.82% 85.73%
[48, 64) 22121 13.05% 98.79%
[64, 80) 1422 0.84% 99.63%
[80, 96) 443 0.26% 99.89%
[96, 112) 85 0.05% 99.94%
[112, 128) 27 0.02% 99.95%
[128, 144) 31 0.02% 99.97%
[144, 160) 29 0.02% 99.99%
[160, 176) 14 0.01% 100.00%
[176, 192) 1 0.00% 100.00%
[336, 352) 1 0.00% 100.00%
[384, 400) 1 0.00% 100.00%
--
-----------------------
Resp size in bytes
-- Histogram:
Min value: 1479
Max value: 2334785
Count: 169450
50p: 131072.00
75p: 262144.00
90p: 262144.00
[1024, 2048) 3292 1.94% 1.94%
[2048, 4096) 911 0.54% 2.48%
[4096, 8192) 1627 0.96% 3.44%
[8192, 16384) 3665 2.16% 5.60%
[16384, 32768) 8195 4.84% 10.44%
[32768, 65536) 20267 11.96% 22.40%
[65536, 131072) 56820 33.53% 55.93%
[131072, 262144) 58910 34.77% 90.70%
[262144, 524288) 13918 8.21% 98.91%
[524288, 1048576) 1823 1.08% 99.99%
[1.0 MiB, infinity) 22 0.01% 100.00%
--
Num Blocks: 169450 | Num Queries: 169450 | Num 429: 0 | Data: 22 GiB [ 1m1s @ 2711 calls/sec ]
Num Blocks: 169450 | Num Queries: 169450 | Num 429: 0 | Data: 22 GiB [ 1m2s @ 2667 calls/sec ]
Method: eth_getBlockByNumber | DONE
Writing samples to file: ./sample-eth_getBlockByNumber-1735641849
Connection established with response [0, 1ms]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 0
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 1
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 2
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 3
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 4
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 5
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 6
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 7
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 8
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 9
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 10
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 11
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 12
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 13
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 14
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 15
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 16
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 17
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 18
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 19
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 20
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 21
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 22
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 23
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 24
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 25
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 26
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 27
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 28
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 29
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 30
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 31
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 32
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 33
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 34
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 35
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 36
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 37
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 38
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 39
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 40
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 41
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 42
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 43
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 44
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 45
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 46
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 47
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 48
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 49
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 50
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 51
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 52
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 53
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 54
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 55
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 56
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 57
Connection established with response [0, 105ms]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 58
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 59
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 60
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 61
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 62
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 63
Method: eth_getBlockByHash | START
Time now: 2023-01-07 08:47:23 +0000 UTC . Ending at 2023-01-07 08:48:23 +0000 UTC
start Idx: 850738
Num Blocks: 4299 | Num Queries: 4362 | Num 429: 0 | Data: 575 MiB [ 1s @ 0 calls/sec ]
Num Blocks: 8661 | Num Queries: 8717 | Num 429: 0 | Data: 1.1 GiB [ 2s @ 2192 calls/sec ]
Num Blocks: 13007 | Num Queries: 13071 | Num 429: 0 | Data: 1.7 GiB [ 3s @ 2897 calls/sec ]
Num Blocks: 15547 | Num Queries: 15609 | Num 429: 0 | Data: 2.0 GiB [ 4s @ 2813 calls/sec ]
Num Blocks: 19042 | Num Queries: 19106 | Num 429: 0 | Data: 2.5 GiB [ 5s @ 2949 calls/sec ]
Num Blocks: 23496 | Num Queries: 23560 | Num 429: 0 | Data: 3.1 GiB [ 6s @ 3200 calls/sec ]
Num Blocks: 27968 | Num Queries: 28032 | Num 429: 0 | Data: 3.7 GiB [ 7s @ 3381 calls/sec ]
Num Blocks: 32406 | Num Queries: 32469 | Num 429: 0 | Data: 4.2 GiB [ 8s @ 3513 calls/sec ]
Num Blocks: 36934 | Num Queries: 36996 | Num 429: 0 | Data: 4.8 GiB [ 9s @ 3626 calls/sec ]
Num Blocks: 39848 | Num Queries: 39912 | Num 429: 0 | Data: 5.2 GiB [ 10s @ 3555 calls/sec ]
Num Blocks: 42707 | Num Queries: 42769 | Num 429: 0 | Data: 5.6 GiB [ 11s @ 3492 calls/sec ]
Num Blocks: 47205 | Num Queries: 47269 | Num 429: 0 | Data: 6.2 GiB [ 12s @ 3576 calls/sec ]
Num Blocks: 51811 | Num Queries: 51875 | Num 429: 0 | Data: 6.8 GiB [ 13s @ 3652 calls/sec ]
Num Blocks: 56340 | Num Queries: 56404 | Num 429: 0 | Data: 7.4 GiB [ 14s @ 3717 calls/sec ]
Num Blocks: 60799 | Num Queries: 60863 | Num 429: 0 | Data: 7.9 GiB [ 15s @ 3767 calls/sec ]
Num Blocks: 63908 | Num Queries: 63972 | Num 429: 0 | Data: 8.3 GiB [ 16s @ 3726 calls/sec ]
Num Blocks: 65914 | Num Queries: 65976 | Num 429: 0 | Data: 8.6 GiB [ 17s @ 3603 calls/sec ]
Num Blocks: 68236 | Num Queries: 68300 | Num 429: 0 | Data: 8.9 GiB [ 18s @ 3568 calls/sec ]
Num Blocks: 72863 | Num Queries: 72927 | Num 429: 0 | Data: 9.5 GiB [ 19s @ 3624 calls/sec ]
Num Blocks: 77455 | Num Queries: 77518 | Num 429: 0 | Data: 10 GiB [ 20s @ 3672 calls/sec ]
Num Blocks: 82051 | Num Queries: 82115 | Num 429: 0 | Data: 11 GiB [ 21s @ 3716 calls/sec ]
Num Blocks: 86724 | Num Queries: 86788 | Num 429: 0 | Data: 11 GiB [ 22s @ 3759 calls/sec ]
Num Blocks: 89557 | Num Queries: 89621 | Num 429: 0 | Data: 12 GiB [ 23s @ 3719 calls/sec ]
Num Blocks: 92492 | Num Queries: 92556 | Num 429: 0 | Data: 12 GiB [ 24s @ 3686 calls/sec ]
Num Blocks: 97028 | Num Queries: 97092 | Num 429: 0 | Data: 13 GiB [ 25s @ 3720 calls/sec ]
Num Blocks: 101530 | Num Queries: 101594 | Num 429: 0 | Data: 13 GiB [ 26s @ 3750 calls/sec ]
Num Blocks: 105975 | Num Queries: 106038 | Num 429: 0 | Data: 14 GiB [ 27s @ 3776 calls/sec ]
Num Blocks: 109931 | Num Queries: 109995 | Num 429: 0 | Data: 14 GiB [ 28s @ 3783 calls/sec ]
Num Blocks: 113126 | Num Queries: 113190 | Num 429: 0 | Data: 15 GiB [ 29s @ 3761 calls/sec ]
Num Blocks: 116033 | Num Queries: 116097 | Num 429: 0 | Data: 15 GiB [ 30s @ 3734 calls/sec ]
Num Blocks: 119943 | Num Queries: 120006 | Num 429: 0 | Data: 16 GiB [ 31s @ 3739 calls/sec ]
Num Blocks: 124577 | Num Queries: 124641 | Num 429: 0 | Data: 16 GiB [ 32s @ 3767 calls/sec ]
Num Blocks: 129151 | Num Queries: 129215 | Num 429: 0 | Data: 17 GiB [ 33s @ 3792 calls/sec ]
Num Blocks: 131666 | Num Queries: 131730 | Num 429: 0 | Data: 17 GiB [ 34s @ 3751 calls/sec ]
Num Blocks: 135055 | Num Queries: 135119 | Num 429: 0 | Data: 18 GiB [ 35s @ 3745 calls/sec ]
Num Blocks: 139278 | Num Queries: 139342 | Num 429: 0 | Data: 18 GiB [ 36s @ 3759 calls/sec ]
Num Blocks: 142381 | Num Queries: 142445 | Num 429: 0 | Data: 19 GiB [ 37s @ 3741 calls/sec ]
Num Blocks: 145399 | Num Queries: 145463 | Num 429: 0 | Data: 19 GiB [ 38s @ 3722 calls/sec ]
Num Blocks: 149207 | Num Queries: 149271 | Num 429: 0 | Data: 20 GiB [ 39s @ 3724 calls/sec ]
Num Blocks: 153844 | Num Queries: 153908 | Num 429: 0 | Data: 20 GiB [ 40s @ 3747 calls/sec ]
Num Blocks: 158543 | Num Queries: 158607 | Num 429: 0 | Data: 21 GiB [ 41s @ 3770 calls/sec ]
Num Blocks: 162604 | Num Queries: 162668 | Num 429: 0 | Data: 21 GiB [ 42s @ 3777 calls/sec ]
Num Blocks: 166337 | Num Queries: 166401 | Num 429: 0 | Data: 22 GiB [ 43s @ 3776 calls/sec ]
Num Blocks: 169482 | Num Queries: 169546 | Num 429: 0 | Data: 22 GiB [ 44s @ 3762 calls/sec ]
Num Blocks: 172652 | Num Queries: 172716 | Num 429: 0 | Data: 23 GiB [ 45s @ 3748 calls/sec ]
Num Blocks: 177030 | Num Queries: 177093 | Num 429: 0 | Data: 23 GiB [ 46s @ 3762 calls/sec ]
Num Blocks: 181649 | Num Queries: 181713 | Num 429: 0 | Data: 24 GiB [ 47s @ 3780 calls/sec ]
Num Blocks: 186412 | Num Queries: 186476 | Num 429: 0 | Data: 24 GiB [ 48s @ 3801 calls/sec ]
Num Blocks: 191011 | Num Queries: 191075 | Num 429: 0 | Data: 25 GiB [ 49s @ 3817 calls/sec ]
Num Blocks: 195339 | Num Queries: 195403 | Num 429: 0 | Data: 26 GiB [ 50s @ 3827 calls/sec ]
Num Blocks: 198446 | Num Queries: 198510 | Num 429: 0 | Data: 26 GiB [ 51s @ 3813 calls/sec ]
Num Blocks: 201632 | Num Queries: 201696 | Num 429: 0 | Data: 26 GiB [ 52s @ 3801 calls/sec ]
Num Blocks: 205999 | Num Queries: 206063 | Num 429: 0 | Data: 27 GiB [ 53s @ 3812 calls/sec ]
Num Blocks: 210667 | Num Queries: 210731 | Num 429: 0 | Data: 28 GiB [ 54s @ 3828 calls/sec ]
Num Blocks: 215321 | Num Queries: 215385 | Num 429: 0 | Data: 28 GiB [ 55s @ 3843 calls/sec ]
Num Blocks: 219307 | Num Queries: 219371 | Num 429: 0 | Data: 29 GiB [ 56s @ 3845 calls/sec ]
Num Blocks: 223100 | Num Queries: 223164 | Num 429: 0 | Data: 29 GiB [ 57s @ 3844 calls/sec ]
Num Blocks: 226275 | Num Queries: 226338 | Num 429: 0 | Data: 30 GiB [ 58s @ 3833 calls/sec ]
Num Blocks: 229424 | Num Queries: 229488 | Num 429: 0 | Data: 30 GiB [ 59s @ 3821 calls/sec ]
Num Blocks: 234007 | Num Queries: 234071 | Num 429: 0 | Data: 31 GiB [ 1m0s @ 3834 calls/sec ]
-----------------------
Latency in milliseconds
-- Histogram:
Min value: 0
Max value: 667
Count: 234071
50p: 16.00
75p: 32.00
90p: 32.00
[0, 1) 1370 0.59% 0.59%
[1, 2) 2793 1.19% 1.78%
[2, 4) 8909 3.81% 5.58%
[4, 8) 34585 14.78% 20.36%
[8, 16) 91237 38.98% 59.34%
[16, 32) 78137 33.38% 92.72%
[32, 48) 13011 5.56% 98.28%
[48, 64) 2722 1.16% 99.44%
[64, 80) 683 0.29% 99.73%
[80, 96) 202 0.09% 99.82%
[96, 112) 114 0.05% 99.87%
[112, 128) 47 0.02% 99.89%
[128, 144) 29 0.01% 99.90%
[144, 160) 26 0.01% 99.91%
[160, 176) 19 0.01% 99.92%
[176, 192) 18 0.01% 99.93%
[192, 208) 41 0.02% 99.95%
[208, 224) 12 0.01% 99.95%
[224, 240) 13 0.01% 99.96%
[240, 256) 10 0.00% 99.96%
[256, 272) 6 0.00% 99.96%
[272, 288) 10 0.00% 99.97%
[288, 304) 3 0.00% 99.97%
[304, 320) 7 0.00% 99.97%
[320, 336) 2 0.00% 99.97%
[336, 352) 1 0.00% 99.97%
[432, 448) 12 0.01% 99.98%
[448, 464) 4 0.00% 99.98%
[496, 512) 1 0.00% 99.98%
[512, 528) 1 0.00% 99.98%
[528, 544) 1 0.00% 99.98%
[544, 560) 4 0.00% 99.98%
[560, 576) 38 0.02% 100.00%
[576, 592) 1 0.00% 100.00%
[592, 608) 1 0.00% 100.00%
[656, 672) 1 0.00% 100.00%
--
-----------------------
Resp size in bytes
-- Histogram:
Min value: 1479
Max value: 1387713
Count: 234071
50p: 131072.00
75p: 262144.00
90p: 262144.00
[1024, 2048) 4275 1.83% 1.83%
[2048, 4096) 1208 0.52% 2.34%
[4096, 8192) 2381 1.02% 3.36%
[8192, 16384) 5051 2.16% 5.52%
[16384, 32768) 11115 4.75% 10.27%
[32768, 65536) 27065 11.56% 21.83%
[65536, 131072) 78497 33.54% 55.36%
[131072, 262144) 81772 34.93% 90.30%
[262144, 524288) 20135 8.60% 98.90%
[524288, 1048576) 2525 1.08% 99.98%
[1.0 MiB, infinity) 47 0.02% 100.00%
--
Num Blocks: 234071 | Num Queries: 234071 | Num 429: 0 | Data: 31 GiB [ 1m1s @ 3772 calls/sec ]
Num Blocks: 234071 | Num Queries: 234071 | Num 429: 0 | Data: 31 GiB [ 1m2s @ 3711 calls/sec ]
Method: eth_getBlockByHash | DONE
Writing samples to file: ./sample-eth_getBlockByHash-1168442086
Connection established with response [0, 1ms]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 0
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 1
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 2
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 3
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 4
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 5
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 6
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 7
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 8
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 9
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 10
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 11
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 12
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 13
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 14
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 15
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 16
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 17
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 18
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 19
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 20
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 21
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 22
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 23
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 24
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 25
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 26
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 27
Connection established with response [0, 8ms]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 28
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 29
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 30
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 31
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 32
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 33
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 34
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 35
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 36
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 37
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 38
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 39
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 40
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 41
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 42
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 43
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 44
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 45
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 46
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 47
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 48
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 49
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 50
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 51
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 52
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 53
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 54
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 55
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 56
Connection established with response [0, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [1, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Connection established with response [2, 0s]: {"jsonrpc":"2.0","id":1,"result":"0x1"}
Warmed up client: 57
Connection established with response [0, 29ms]: {"jsonrpc":"2.0","id":1,"result":"0x1"}