-
Notifications
You must be signed in to change notification settings - Fork 0
/
results.log
1646 lines (1646 loc) · 75.7 KB
/
results.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
$ bun test:pjs; bun test:papi
$ bun run test-pjs.ts
2024-09-04 07:06:37 API/INIT: RPC methods not decorated: chainHead_v1_body, chainHead_v1_call, chainHead_v1_continue, chainHead_v1_follow, chainHead_v1_header, chainHead_v1_stopOperation, chainHead_v1_storage, chainHead_v1_unfollow, chainHead_v1_unpin, chainSpec_v1_chainName, chainSpec_v1_genesisHash, chainSpec_v1_properties, transactionWatch_v1_submitAndWatch, transactionWatch_v1_unwatch, transaction_v1_broadcast, transaction_v1_stop
[19.22s] Get entries
[
{
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 2, 66, 145, 124, 211, 20, 35, 160, 19, 94, 140, 129, 113, 142, 178, 89, 172, 176, 104, 16, 234, 240, 199, 113, 235, 192, 54, 236, 151, 117, 148, 26, 75, 206, 150, 140, 126, 165, 39 ],
value: {
poolId: "16",
points: "20,000,000,000",
lastRecordedRewardCounter: "270,675,639,691,460,810",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 2, 176, 78, 201, 38, 66, 58, 57, 101, 178, 16, 187, 45, 199, 216, 185, 202, 77, 126, 172, 11, 15, 113, 77, 27, 196, 88, 168, 246, 126, 83, 57, 215, 170, 139, 73, 246, 104, 31 ],
value: {
poolId: "16",
points: "2,801,345,827,122",
lastRecordedRewardCounter: "290,180,780,188,288,738",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 4, 175, 7, 164, 135, 48, 0, 0, 10, 29, 190, 172, 158, 1, 77, 34, 64, 196, 58, 59, 22, 107, 46, 46, 47, 245, 201, 2, 118, 245, 85, 75, 212, 55, 147, 135, 246, 148, 52 ],
value: {
poolId: "39",
points: "0",
lastRecordedRewardCounter: "307,559,840,565,014,929",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 5, 32, 87, 106, 86, 4, 76, 150, 143, 94, 30, 58, 6, 189, 35, 126, 45, 25, 89, 109, 227, 170, 194, 196, 225, 219, 52, 105, 245, 31, 66, 31, 221, 245, 4, 102, 80, 103, 28 ],
value: {
poolId: "54",
points: "488,170,500,000",
lastRecordedRewardCounter: "258,406,509,346,532,649",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 5, 194, 8, 97, 210, 191, 181, 178, 51, 227, 33, 230, 154, 177, 242, 108, 244, 185, 153, 157, 224, 21, 213, 145, 139, 26, 104, 97, 223, 155, 173, 224, 12, 176, 138, 41, 237, 43, 37 ],
value: {
poolId: "54",
points: "1,856,423,074,275",
lastRecordedRewardCounter: "311,930,740,585,649,062",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 7, 150, 67, 211, 171, 114, 85, 140, 1, 239, 14, 233, 12, 156, 196, 164, 105, 0, 44, 41, 59, 202, 77, 218, 97, 42, 61, 246, 162, 49, 46, 40, 43, 226, 47, 185, 31, 15, 11 ],
value: {
poolId: "54",
points: "0",
lastRecordedRewardCounter: "239,099,993,229,880,697",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 8, 2, 189, 238, 204, 79, 254, 94, 149, 59, 10, 102, 71, 185, 4, 170, 25, 128, 23, 106, 248, 249, 85, 28, 159, 86, 165, 126, 92, 103, 57, 224, 60, 111, 166, 212, 159, 88, 122 ],
value: {
poolId: "54",
points: "1,910,000,000,000",
lastRecordedRewardCounter: "286,874,707,042,409,130",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 12, 23, 40, 233, 235, 162, 124, 118, 125, 76, 35, 125, 21, 113, 221, 172, 99, 149, 206, 230, 206, 83, 101, 33, 55, 157, 150, 253, 230, 165, 158, 43, 124, 252, 39, 63, 14, 118, 75 ],
value: {
poolId: "39",
points: "15,776,725,166,547",
lastRecordedRewardCounter: "310,931,802,671,254,825",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 13, 44, 147, 2, 186, 127, 36, 16, 189, 134, 15, 8, 94, 94, 132, 208, 28, 110, 254, 213, 0, 59, 248, 219, 47, 73, 138, 253, 94, 109, 145, 73, 117, 87, 63, 140, 68, 199, 126 ],
value: {
poolId: "6",
points: "0",
lastRecordedRewardCounter: "306,303,849,388,494,124",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 15, 90, 70, 229, 81, 20, 239, 200, 82, 49, 216, 92, 171, 247, 96, 101, 167, 95, 214, 169, 181, 60, 20, 243, 73, 189, 128, 184, 242, 221, 185, 96, 162, 80, 203, 162, 110, 220, 125 ],
value: {
poolId: "61",
points: "218,034,696,609",
lastRecordedRewardCounter: "211,174,560,685,634,629",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 15, 140, 149, 137, 237, 209, 233, 50, 2, 35, 155, 239, 32, 50, 166, 166, 175, 196, 87, 80, 106, 106, 224, 75, 176, 119, 27, 139, 79, 201, 160, 25, 70, 14, 189, 9, 82, 179, 13 ],
value: {
poolId: "39",
points: "95,000,000,000",
lastRecordedRewardCounter: "239,973,655,177,705,724",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 17, 165, 208, 217, 186, 37, 126, 214, 200, 60, 82, 191, 161, 156, 151, 101, 86, 17, 112, 67, 40, 249, 151, 59, 27, 94, 159, 74, 15, 10, 139, 53, 25, 239, 98, 150, 87, 250, 110 ],
value: {
poolId: "54",
points: "861,336,576,072",
lastRecordedRewardCounter: "292,708,313,257,476,591",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 19, 87, 40, 149, 148, 91, 120, 160, 86, 163, 191, 95, 186, 99, 100, 100, 36, 194, 38, 175, 19, 95, 2, 86, 132, 15, 6, 49, 167, 149, 189, 166, 156, 35, 111, 40, 212, 229, 100 ],
value: {
poolId: "16",
points: "0",
lastRecordedRewardCounter: "271,049,290,320,078,780",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 19, 141, 173, 217, 20, 195, 146, 190, 222, 118, 230, 3, 181, 130, 11, 135, 253, 141, 126, 158, 94, 40, 29, 29, 53, 68, 64, 179, 62, 35, 63, 113, 151, 29, 179, 5, 13, 228, 32 ],
value: {
poolId: "54",
points: "13,000,028,580,479",
lastRecordedRewardCounter: "311,246,794,936,654,774",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 24, 191, 42, 251, 7, 196, 139, 64, 117, 62, 242, 233, 63, 63, 192, 124, 93, 31, 68, 119, 208, 39, 136, 132, 255, 169, 55, 201, 207, 106, 196, 82, 92, 178, 19, 134, 168, 101, 115 ],
value: {
poolId: "47",
points: "2,989,546,555,701",
lastRecordedRewardCounter: "238,193,665,519,103,912",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 25, 225, 134, 59, 125, 233, 246, 50, 67, 14, 243, 192, 107, 186, 167, 182, 15, 225, 170, 13, 236, 234, 215, 71, 115, 183, 199, 243, 226, 214, 82, 37, 151, 197, 104, 136, 166, 90, 27 ],
value: {
poolId: "61",
points: "1,185,380,481,711",
lastRecordedRewardCounter: "307,377,798,833,890,208",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 31, 177, 31, 222, 218, 104, 41, 124, 88, 239, 242, 191, 109, 201, 3, 177, 116, 184, 231, 240, 97, 12, 193, 2, 46, 122, 22, 157, 115, 110, 1, 46, 21, 194, 125, 250, 163, 167, 18 ],
value: {
poolId: "5",
points: "78,150,125,263,630",
lastRecordedRewardCounter: "300,246,431,998,673,495",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 32, 50, 34, 246, 129, 238, 236, 94, 96, 45, 94, 228, 52, 96, 82, 246, 176, 247, 147, 141, 159, 244, 128, 149, 20, 220, 234, 180, 53, 168, 219, 190, 176, 10, 232, 252, 54, 106, 2 ],
value: {
poolId: "49",
points: "351,884,578,031",
lastRecordedRewardCounter: "260,888,324,098,335,247",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 32, 153, 166, 233, 145, 203, 243, 62, 57, 148, 228, 254, 48, 241, 122, 169, 102, 22, 118, 108, 91, 113, 186, 157, 49, 45, 147, 40, 188, 168, 245, 172, 20, 67, 53, 150, 175, 48, 52 ],
value: {
poolId: "39",
points: "309,000,000,000",
lastRecordedRewardCounter: "266,218,760,025,321,482",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 39, 39, 171, 135, 167, 4, 193, 70, 69, 28, 80, 59, 199, 163, 187, 111, 205, 172, 115, 54, 169, 91, 191, 225, 27, 43, 93, 86, 84, 194, 120, 201, 196, 234, 147, 158, 17, 218, 1 ],
value: {
poolId: "39",
points: "19,000,000,000",
lastRecordedRewardCounter: "236,450,096,747,552,583",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 40, 7, 163, 130, 210, 1, 255, 110, 11, 212, 0, 41, 167, 12, 83, 156, 167, 176, 11, 46, 48, 208, 98, 241, 166, 96, 106, 219, 22, 65, 223, 73, 139, 13, 123, 174, 132, 194, 25 ],
value: {
poolId: "16",
points: "17,358,287,331,776",
lastRecordedRewardCounter: "309,588,231,755,104,562",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 40, 187, 97, 71, 205, 53, 219, 224, 39, 110, 91, 90, 139, 162, 125, 255, 120, 205, 111, 57, 44, 172, 233, 206, 166, 27, 84, 70, 138, 71, 0, 11, 118, 30, 105, 175, 137, 93, 114 ],
value: {
poolId: "4",
points: "837,981,192,833",
lastRecordedRewardCounter: "138,098,799,039,767,600",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 41, 65, 13, 164, 137, 170, 190, 212, 32, 7, 85, 167, 184, 154, 67, 69, 9, 136, 74, 237, 205, 17, 29, 137, 224, 215, 7, 3, 25, 54, 107, 251, 53, 133, 85, 17, 151, 138, 85 ],
value: {
poolId: "54",
points: "30,000,000,000",
lastRecordedRewardCounter: "205,832,783,045,310,262",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 42, 24, 72, 121, 201, 90, 180, 26, 125, 139, 97, 2, 178, 216, 237, 209, 208, 208, 191, 209, 134, 159, 43, 167, 227, 96, 66, 80, 42, 236, 137, 117, 12, 252, 255, 10, 186, 29, 2 ],
value: {
poolId: "39",
points: "1,189,641,425,290",
lastRecordedRewardCounter: "292,109,950,261,228,659",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 42, 116, 176, 187, 55, 184, 231, 74, 227, 224, 106, 50, 71, 249, 197, 152, 35, 100, 185, 203, 49, 97, 22, 162, 93, 238, 161, 86, 209, 51, 64, 229, 27, 128, 248, 188, 235, 97, 51 ],
value: {
poolId: "54",
points: "2,768,886,699,039",
lastRecordedRewardCounter: "310,193,212,008,210,728",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 49, 24, 58, 211, 102, 72, 26, 152, 244, 248, 120, 103, 24, 220, 205, 195, 98, 111, 89, 39, 194, 149, 210, 169, 166, 19, 115, 174, 174, 216, 15, 200, 59, 99, 33, 5, 33, 49, 67 ],
value: {
poolId: "54",
points: "0",
lastRecordedRewardCounter: "303,609,233,055,669,378",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 49, 139, 133, 134, 11, 16, 131, 201, 65, 88, 79, 200, 13, 98, 114, 177, 227, 205, 245, 58, 238, 2, 196, 195, 249, 138, 196, 198, 234, 254, 43, 196, 197, 243, 251, 27, 80, 208, 64 ],
value: {
poolId: "61",
points: "1,979,576,689,353",
lastRecordedRewardCounter: "304,396,580,571,587,635",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 50, 160, 187, 194, 218, 229, 199, 92, 16, 35, 50, 199, 27, 168, 42, 57, 6, 232, 145, 231, 221, 41, 202, 25, 69, 209, 219, 142, 235, 253, 148, 122, 196, 104, 21, 14, 129, 180, 108 ],
value: {
poolId: "16",
points: "5,779,976,893,131",
lastRecordedRewardCounter: "308,842,856,933,497,774",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 53, 59, 185, 109, 16, 62, 90, 38, 119, 106, 227, 143, 224, 131, 10, 43, 87, 101, 43, 37, 231, 76, 98, 75, 241, 149, 11, 227, 165, 8, 179, 175, 73, 153, 81, 39, 56, 215, 118 ],
value: {
poolId: "61",
points: "1,129,856,391,766",
lastRecordedRewardCounter: "285,460,775,941,439,797",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 53, 165, 162, 155, 31, 231, 115, 178, 152, 59, 5, 154, 210, 189, 218, 31, 167, 213, 53, 205, 110, 183, 42, 107, 253, 108, 240, 234, 195, 153, 189, 115, 129, 57, 251, 188, 165, 161, 71 ],
value: {
poolId: "54",
points: "339,137,324,749",
lastRecordedRewardCounter: "279,168,767,597,588,815",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 54, 7, 13, 203, 196, 210, 150, 20, 200, 45, 143, 34, 235, 134, 99, 68, 93, 98, 240, 148, 188, 255, 53, 145, 100, 6, 217, 94, 187, 255, 8, 110, 51, 26, 166, 90, 119, 149, 40 ],
value: {
poolId: "39",
points: "2,495,989,485,432",
lastRecordedRewardCounter: "246,137,244,480,656,486",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 55, 187, 209, 34, 69, 31, 128, 150, 242, 60, 190, 87, 19, 75, 183, 36, 22, 85, 43, 8, 157, 180, 120, 50, 187, 71, 245, 184, 37, 128, 139, 111, 92, 139, 172, 151, 164, 126, 126 ],
value: {
poolId: "19",
points: "38,867,395,565",
lastRecordedRewardCounter: "155,116,779,017,214,796",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 57, 194, 177, 206, 168, 2, 66, 156, 146, 122, 74, 225, 86, 165, 171, 148, 244, 81, 247, 176, 42, 108, 28, 102, 26, 163, 25, 134, 230, 161, 219, 109, 55, 142, 198, 194, 152, 187, 42 ],
value: {
poolId: "39",
points: "0",
lastRecordedRewardCounter: "296,747,714,605,385,269",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 58, 124, 131, 54, 225, 9, 213, 243, 118, 227, 183, 172, 109, 215, 252, 207, 62, 120, 207, 192, 251, 199, 241, 107, 2, 255, 103, 110, 174, 194, 238, 166, 218, 82, 204, 34, 228, 53, 254 ],
value: {
poolId: "25",
points: "0",
lastRecordedRewardCounter: "298,761,144,950,920,523",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 58, 154, 220, 83, 245, 239, 194, 86, 210, 16, 50, 74, 77, 167, 252, 176, 12, 21, 156, 88, 144, 53, 19, 65, 142, 108, 234, 64, 5, 22, 22, 105, 54, 52, 225, 87, 156, 83, 2 ],
value: {
poolId: "16",
points: "26,700,065,097",
lastRecordedRewardCounter: "198,722,756,229,540,180",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 61, 7, 35, 182, 113, 112, 12, 102, 240, 28, 51, 116, 47, 147, 176, 41, 241, 75, 30, 214, 46, 79, 42, 51, 208, 0, 130, 19, 211, 53, 105, 149, 249, 1, 238, 47, 149, 80, 86 ],
value: {
poolId: "129",
points: "1,621,009,747,223",
lastRecordedRewardCounter: "204,543,723,749,697,865",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 61, 48, 254, 71, 183, 26, 86, 28, 206, 134, 51, 249, 77, 79, 69, 255, 195, 65, 128, 77, 87, 113, 95, 82, 112, 215, 134, 94, 9, 139, 48, 232, 123, 112, 193, 242, 115, 99, 102 ],
value: {
poolId: "54",
points: "147,495,645,607",
lastRecordedRewardCounter: "303,041,043,329,927,591",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 62, 128, 105, 65, 4, 53, 222, 126, 217, 110, 254, 161, 31, 3, 229, 244, 162, 147, 4, 92, 60, 40, 229, 116, 93, 5, 132, 122, 213, 145, 168, 124, 153, 194, 17, 218, 226, 198, 119 ],
value: {
poolId: "58",
points: "6,160,000,000,000",
lastRecordedRewardCounter: "289,160,346,454,832,360",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 63, 46, 133, 186, 218, 250, 37, 2, 51, 105, 219, 79, 97, 169, 36, 82, 143, 16, 61, 153, 19, 237, 143, 131, 3, 239, 181, 246, 114, 85, 89, 13, 147, 241, 127, 107, 134, 210, 54 ],
value: {
poolId: "64",
points: "200,000,000,000",
lastRecordedRewardCounter: "256,342,160,324,066,720",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 64, 189, 78, 37, 240, 151, 101, 123, 134, 245, 81, 142, 209, 116, 233, 236, 217, 100, 199, 12, 244, 161, 225, 75, 133, 255, 198, 199, 47, 207, 90, 124, 79, 212, 255, 55, 63, 235, 17 ],
value: {
poolId: "12",
points: "5,581,140,644,397",
lastRecordedRewardCounter: "312,351,436,665,548,026",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 66, 85, 198, 103, 58, 123, 14, 105, 211, 50, 203, 169, 150, 170, 165, 69, 101, 114, 30, 9, 119, 161, 165, 5, 91, 197, 246, 126, 234, 185, 172, 228, 33, 48, 210, 17, 70, 151, 43 ],
value: {
poolId: "12",
points: "0",
lastRecordedRewardCounter: "240,684,105,034,598,249",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 69, 81, 9, 26, 222, 151, 0, 80, 23, 132, 200, 211, 100, 5, 194, 199, 121, 95, 49, 115, 185, 66, 90, 99, 207, 198, 133, 169, 29, 19, 22, 55, 121, 67, 174, 130, 136, 230, 63 ],
value: {
poolId: "129",
points: "10,000,000,000",
lastRecordedRewardCounter: "154,534,483,507,120,925",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 69, 159, 233, 173, 169, 56, 232, 138, 7, 241, 26, 18, 112, 137, 201, 194, 24, 27, 145, 140, 252, 97, 225, 186, 192, 160, 26, 74, 10, 207, 16, 5, 102, 191, 7, 185, 102, 143, 12 ],
value: {
poolId: "39",
points: "4,052,268,909,260",
lastRecordedRewardCounter: "300,997,277,876,567,037",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 71, 161, 122, 43, 147, 167, 81, 38, 137, 188, 105, 58, 203, 194, 29, 178, 160, 28, 103, 115, 175, 212, 33, 84, 44, 14, 48, 179, 73, 43, 53, 11, 103, 70, 216, 157, 59, 39, 64 ],
value: {
poolId: "12",
points: "1,839,730,702,079",
lastRecordedRewardCounter: "192,469,694,040,714,927",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 72, 177, 81, 229, 140, 41, 119, 238, 32, 130, 56, 36, 252, 109, 185, 31, 244, 141, 240, 234, 121, 250, 108, 54, 56, 18, 180, 195, 247, 140, 39, 38, 62, 78, 234, 37, 176, 130, 69 ],
value: {
poolId: "108",
points: "1,293,790,104,091",
lastRecordedRewardCounter: "251,840,901,018,378,758",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 74, 218, 82, 251, 222, 138, 73, 244, 133, 185, 146, 228, 59, 90, 118, 29, 100, 39, 158, 209, 136, 93, 243, 99, 194, 240, 157, 59, 208, 162, 179, 162, 85, 153, 168, 83, 72, 189, 69 ],
value: {
poolId: "62",
points: "542,332,979,421",
lastRecordedRewardCounter: "311,194,760,164,227,108",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 75, 9, 25, 150, 41, 105, 76, 200, 134, 12, 141, 155, 116, 30, 196, 83, 47, 97, 72, 37, 31, 96, 152, 221, 62, 170, 41, 234, 12, 188, 188, 203, 164, 3, 217, 240, 129, 159, 124 ],
value: {
poolId: "3",
points: "39,055,524,363",
lastRecordedRewardCounter: "2,037,590,184,629,520",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 75, 106, 253, 7, 106, 45, 200, 46, 51, 197, 225, 74, 83, 232, 116, 202, 168, 231, 198, 211, 11, 210, 15, 108, 81, 205, 167, 218, 250, 173, 28, 70, 92, 160, 4, 254, 97, 166, 62 ],
value: {
poolId: "54",
points: "139,546,712,185",
lastRecordedRewardCounter: "222,455,580,925,872,969",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 77, 124, 118, 236, 245, 191, 13, 236, 125, 158, 50, 1, 1, 167, 187, 109, 0, 4, 233, 79, 89, 143, 194, 158, 26, 101, 171, 90, 11, 250, 230, 87, 195, 139, 19, 35, 218, 102, 111 ],
value: {
poolId: "1",
points: "250,000,000,000",
lastRecordedRewardCounter: "281,551,805,759,023,577",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 77, 136, 89, 234, 136, 175, 143, 68, 6, 212, 153, 254, 146, 23, 239, 38, 99, 112, 70, 112, 93, 214, 184, 105, 10, 96, 26, 40, 111, 194, 255, 70, 139, 238, 242, 193, 214, 77, 37 ],
value: {
poolId: "189",
points: "1,244,510,910,668",
lastRecordedRewardCounter: "44,028,354,470,540,781",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 81, 212, 123, 223, 216, 197, 181, 124, 137, 216, 153, 54, 132, 148, 132, 209, 5, 139, 107, 215, 95, 31, 253, 82, 254, 167, 54, 185, 162, 175, 88, 187, 204, 151, 224, 128, 169, 85, 112 ],
value: {
poolId: "54",
points: "1,021,390,120,952",
lastRecordedRewardCounter: "225,040,877,241,026,526",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 82, 75, 25, 47, 156, 246, 86, 248, 24, 44, 174, 143, 223, 248, 75, 242, 237, 9, 138, 2, 126, 22, 43, 214, 114, 66, 75, 125, 241, 225, 65, 172, 44, 106, 203, 221, 168, 56, 126 ],
value: {
poolId: "16",
points: "10,595,633,559,678",
lastRecordedRewardCounter: "308,842,856,933,497,774",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 85, 38, 56, 58, 240, 12, 246, 48, 162, 56, 174, 20, 209, 155, 249, 227, 196, 241, 134, 76, 88, 161, 15, 30, 172, 11, 31, 144, 212, 185, 179, 179, 240, 254, 91, 89, 121, 216, 50 ],
value: {
poolId: "54",
points: "3,310,000,000,000",
lastRecordedRewardCounter: "212,439,654,656,034,718",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 85, 129, 34, 251, 55, 82, 165, 19, 174, 83, 9, 50, 179, 141, 225, 189, 109, 112, 181, 126, 158, 31, 234, 161, 197, 37, 147, 18, 26, 211, 33, 138, 195, 187, 143, 149, 48, 227, 80 ],
value: {
poolId: "44",
points: "10,000,000,000",
lastRecordedRewardCounter: "35,550,941,939,373,589",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 86, 124, 201, 2, 228, 111, 27, 32, 252, 1, 165, 91, 125, 79, 113, 182, 168, 132, 42, 97, 133, 194, 135, 166, 100, 23, 43, 117, 194, 20, 130, 193, 210, 253, 233, 65, 69, 172, 26 ],
value: {
poolId: "61",
points: "380,000,000,000",
lastRecordedRewardCounter: "223,809,177,275,545,599",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 88, 160, 23, 230, 5, 210, 42, 74, 196, 61, 207, 245, 43, 228, 70, 77, 92, 5, 27, 115, 122, 58, 155, 233, 214, 80, 182, 145, 120, 250, 241, 149, 32, 202, 16, 62, 74, 213, 70 ],
value: {
poolId: "16",
points: "544,846,372,668",
lastRecordedRewardCounter: "302,644,888,895,296,064",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 88, 247, 175, 58, 194, 11, 224, 216, 167, 168, 190, 215, 194, 74, 132, 107, 129, 29, 199, 200, 102, 38, 238, 111, 222, 198, 155, 214, 230, 192, 61, 231, 24, 109, 130, 62, 147, 47, 18 ],
value: {
poolId: "54",
points: "340,000,000,000",
lastRecordedRewardCounter: "247,235,472,484,459,130",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 89, 131, 252, 95, 211, 123, 147, 238, 33, 181, 223, 160, 82, 241, 144, 93, 218, 151, 194, 28, 135, 105, 44, 14, 48, 105, 15, 124, 43, 65, 18, 141, 1, 166, 150, 223, 142, 134, 109 ],
value: {
poolId: "54",
points: "603,181,104,056",
lastRecordedRewardCounter: "309,003,372,516,502,367",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 91, 65, 7, 113, 196, 12, 246, 90, 191, 111, 108, 50, 193, 191, 54, 88, 202, 249, 41, 101, 166, 166, 243, 94, 128, 0, 220, 219, 154, 127, 17, 140, 236, 42, 44, 115, 208, 146, 87 ],
value: {
poolId: "32",
points: "45,775,773,534,252",
lastRecordedRewardCounter: "29,856,636,352,879,092",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 91, 194, 176, 19, 50, 155, 137, 163, 89, 158, 113, 236, 24, 151, 167, 157, 235, 136, 83, 133, 43, 101, 189, 173, 97, 13, 164, 159, 107, 25, 95, 21, 119, 232, 190, 206, 122, 90, 63 ],
value: {
poolId: "4",
points: "16,984,419,572,638",
lastRecordedRewardCounter: "283,403,695,462,172,714",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 94, 31, 104, 21, 81, 194, 105, 110, 148, 79, 26, 13, 86, 47, 231, 62, 144, 207, 227, 5, 133, 146, 44, 40, 109, 56, 0, 239, 205, 188, 76, 71, 61, 95, 35, 14, 68, 10, 78 ],
value: {
poolId: "39",
points: "1,200,000,000,000",
lastRecordedRewardCounter: "258,241,003,227,964,606",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 94, 110, 164, 232, 243, 128, 226, 6, 208, 46, 55, 97, 174, 223, 230, 9, 95, 141, 93, 107, 167, 50, 157, 61, 157, 88, 94, 69, 44, 105, 149, 16, 240, 235, 251, 175, 118, 18, 51 ],
value: {
poolId: "16",
points: "16,675,158,515,555",
lastRecordedRewardCounter: "309,588,231,755,104,562",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 95, 111, 189, 152, 73, 120, 222, 250, 23, 245, 238, 136, 254, 53, 52, 125, 234, 21, 195, 119, 46, 175, 135, 17, 195, 193, 17, 93, 173, 35, 172, 144, 236, 187, 128, 74, 189, 67, 53 ],
value: {
poolId: "54",
points: "109,859,495,332",
lastRecordedRewardCounter: "209,806,667,401,999,453",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 98, 73, 119, 255, 22, 239, 78, 227, 239, 113, 2, 86, 68, 125, 216, 160, 26, 48, 85, 41, 101, 149, 62, 88, 116, 35, 209, 56, 140, 17, 133, 172, 60, 72, 86, 43, 89, 8, 152 ],
value: {
poolId: "12",
points: "50,000,000,000",
lastRecordedRewardCounter: "155,512,765,755,970,259",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 98, 126, 170, 12, 180, 66, 34, 40, 39, 158, 150, 218, 100, 106, 215, 11, 203, 251, 54, 220, 202, 51, 25, 108, 151, 24, 134, 135, 242, 180, 140, 92, 68, 151, 12, 100, 159, 54, 41 ],
value: {
poolId: "54",
points: "102,733,218,947",
lastRecordedRewardCounter: "303,156,576,648,779,697",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 98, 184, 191, 249, 176, 52, 46, 208, 31, 33, 231, 81, 114, 229, 216, 156, 110, 96, 99, 85, 63, 23, 251, 250, 195, 216, 163, 125, 36, 232, 192, 195, 88, 150, 35, 139, 148, 74, 40 ],
value: {
poolId: "16",
points: "224,177,303,666",
lastRecordedRewardCounter: "288,123,062,586,399,889",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 101, 145, 53, 174, 64, 91, 140, 110, 115, 151, 44, 2, 183, 73, 145, 203, 135, 95, 89, 98, 165, 253, 5, 95, 236, 153, 183, 141, 219, 179, 245, 174, 207, 185, 46, 189, 35, 188, 83 ],
value: {
poolId: "54",
points: "5,600,066,240,381",
lastRecordedRewardCounter: "311,246,794,936,654,774",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 101, 181, 160, 30, 246, 197, 214, 147, 212, 163, 15, 23, 28, 208, 93, 249, 185, 38, 128, 7, 93, 197, 109, 122, 102, 223, 42, 139, 71, 12, 58, 218, 191, 149, 202, 102, 91, 163, 154 ],
value: {
poolId: "16",
points: "3,693,573,448,400",
lastRecordedRewardCounter: "309,588,231,755,104,562",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 102, 221, 50, 96, 9, 234, 203, 202, 89, 34, 114, 139, 222, 127, 111, 174, 235, 199, 82, 152, 224, 224, 247, 80, 218, 240, 8, 15, 71, 94, 248, 173, 210, 101, 212, 31, 51, 233, 76 ],
value: {
poolId: "16",
points: "2,558,198,142,013",
lastRecordedRewardCounter: "306,613,123,110,626,833",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 103, 124, 55, 11, 88, 160, 135, 184, 57, 125, 179, 105, 223, 209, 11, 65, 198, 164, 184, 66, 105, 79, 42, 57, 213, 9, 90, 153, 48, 242, 150, 110, 114, 4, 94, 37, 78, 71, 0 ],
value: {
poolId: "54",
points: "0",
lastRecordedRewardCounter: "274,611,564,417,679,951",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 104, 16, 200, 43, 174, 44, 199, 202, 214, 119, 129, 220, 92, 136, 42, 173, 23, 35, 39, 48, 59, 3, 230, 205, 116, 158, 101, 132, 68, 138, 21, 129, 175, 67, 246, 86, 248, 166, 64 ],
value: {
poolId: "54",
points: "31,626,050,172",
lastRecordedRewardCounter: "173,558,605,636,664,459",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 104, 240, 221, 66, 71, 196, 247, 174, 135, 94, 129, 88, 178, 162, 225, 207, 225, 156, 53, 245, 192, 131, 74, 202, 35, 25, 48, 15, 28, 87, 14, 235, 233, 222, 122, 229, 125, 32, 43 ],
value: {
poolId: "28",
points: "7,279,020,667,626",
lastRecordedRewardCounter: "339,713,098,013,039,192",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 106, 165, 197, 255, 197, 70, 251, 162, 158, 97, 107, 99, 237, 67, 40, 102, 39, 177, 46, 136, 0, 42, 54, 82, 169, 27, 103, 76, 102, 132, 43, 158, 198, 120, 197, 128, 81, 228, 75 ],
value: {
poolId: "1",
points: "650,000,000,000",
lastRecordedRewardCounter: "195,853,742,814,825,621",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 106, 242, 121, 59, 218, 6, 25, 204, 185, 126, 141, 176, 165, 152, 30, 56, 178, 66, 199, 217, 61, 22, 23, 74, 195, 212, 202, 246, 45, 245, 206, 222, 130, 247, 83, 55, 72, 193, 126 ],
value: {
poolId: "16",
points: "170,000,000,000",
lastRecordedRewardCounter: "70,886,574,520,575,623",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 107, 171, 31, 125, 90, 97, 215, 130, 127, 34, 18, 200, 24, 224, 43, 131, 187, 47, 129, 171, 198, 133, 149, 93, 38, 182, 221, 123, 97, 192, 169, 99, 96, 183, 222, 148, 159, 67, 69 ],
value: {
poolId: "12",
points: "515,316,454,756",
lastRecordedRewardCounter: "241,135,052,379,788,963",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 109, 121, 8, 2, 16, 98, 237, 108, 152, 67, 130, 212, 89, 171, 31, 13, 98, 19, 111, 201, 214, 113, 143, 94, 104, 162, 186, 242, 255, 201, 175, 81, 91, 88, 169, 112, 216, 132, 33 ],
value: {
poolId: "16",
points: "291,058,851,678",
lastRecordedRewardCounter: "303,436,243,810,634,490",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 109, 187, 159, 59, 246, 196, 25, 120, 162, 186, 44, 59, 181, 225, 242, 221, 9, 47, 193, 135, 40, 236, 9, 50, 246, 234, 113, 103, 205, 22, 27, 125, 32, 204, 141, 225, 212, 103, 213 ],
value: {
poolId: "16",
points: "2,030,062,356,415",
lastRecordedRewardCounter: "259,597,922,710,886,343",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 110, 54, 243, 182, 1, 160, 203, 216, 82, 164, 35, 125, 148, 137, 137, 131, 238, 104, 161, 27, 170, 52, 153, 234, 165, 53, 224, 143, 152, 39, 240, 61, 80, 162, 43, 242, 162, 73, 50 ],
value: {
poolId: "16",
points: "89,059,173,597",
lastRecordedRewardCounter: "221,927,676,915,165,942",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 111, 205, 63, 176, 126, 74, 126, 228, 211, 149, 30, 49, 83, 193, 121, 52, 40, 43, 151, 252, 124, 80, 235, 12, 234, 143, 16, 177, 75, 11, 78, 240, 138, 176, 222, 71, 161, 109, 93 ],
value: {
poolId: "16",
points: "0",
lastRecordedRewardCounter: "300,232,794,951,112,336",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 111, 244, 102, 149, 128, 0, 187, 147, 10, 245, 118, 62, 30, 28, 141, 92, 155, 234, 109, 202, 228, 216, 85, 81, 215, 71, 29, 89, 67, 39, 64, 200, 241, 234, 146, 63, 252, 94, 92 ],
value: {
poolId: "61",
points: "10,959,467,116,609",
lastRecordedRewardCounter: "223,374,299,921,223,715",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 114, 199, 66, 77, 159, 2, 126, 228, 198, 214, 79, 35, 133, 223, 109, 158, 249, 162, 74, 177, 40, 108, 24, 51, 21, 32, 160, 251, 148, 173, 168, 184, 55, 88, 3, 176, 101, 154, 89 ],
value: {
poolId: "4",
points: "1,798,618,025,803",
lastRecordedRewardCounter: "284,726,379,711,714,421",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 116, 122, 147, 119, 136, 96, 206, 34, 86, 201, 135, 194, 95, 67, 158, 127, 140, 14, 82, 143, 124, 175, 168, 213, 162, 148, 212, 148, 66, 92, 104, 16, 152, 148, 5, 139, 29, 207, 123 ],
value: {
poolId: "39",
points: "16,200,000,000,000",
lastRecordedRewardCounter: "305,415,259,088,867,483",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 120, 76, 225, 75, 214, 183, 44, 116, 231, 120, 243, 214, 5, 36, 208, 163, 27, 131, 45, 241, 19, 76, 76, 91, 118, 198, 213, 139, 243, 88, 24, 220, 243, 81, 203, 250, 95, 108, 145 ],
value: {
poolId: "12",
points: "365,558,346,859",
lastRecordedRewardCounter: "312,281,046,081,301,319",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 121, 47, 154, 102, 88, 12, 10, 4, 72, 249, 227, 56, 224, 155, 168, 129, 146, 189, 167, 215, 93, 119, 222, 214, 200, 54, 6, 40, 109, 228, 1, 227, 138, 195, 59, 237, 168, 35, 124 ],
value: {
poolId: "54",
points: "6,793,593,372,910",
lastRecordedRewardCounter: "274,944,275,322,648,329",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 124, 190, 177, 38, 159, 56, 111, 182, 4, 155, 222, 239, 211, 253, 201, 138, 218, 179, 164, 234, 62, 29, 92, 114, 212, 147, 238, 40, 230, 222, 65, 54, 53, 69, 224, 243, 75, 1, 115 ],
value: {
poolId: "16",
points: "282,173,618,240",
lastRecordedRewardCounter: "301,779,631,300,252,673",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 125, 83, 117, 222, 156, 11, 91, 91, 253, 137, 221, 242, 58, 68, 176, 45, 69, 43, 223, 213, 66, 165, 56, 139, 128, 115, 47, 171, 240, 102, 155, 200, 204, 174, 145, 129, 251, 166, 233 ],
value: {
poolId: "5",
points: "1,009,409,215,428",
lastRecordedRewardCounter: "292,762,831,145,007,124",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 126, 37, 253, 115, 151, 236, 20, 248, 170, 150, 21, 174, 206, 185, 166, 114, 199, 161, 146, 131, 84, 45, 29, 57, 245, 255, 105, 150, 165, 120, 16, 174, 26, 189, 19, 25, 115, 238, 125 ],
value: {
poolId: "54",
points: "147,203,481,594",
lastRecordedRewardCounter: "311,693,628,404,971,654",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 126, 49, 152, 52, 162, 156, 71, 188, 234, 166, 45, 47, 58, 25, 108, 161, 40, 50, 97, 18, 243, 0, 114, 76, 248, 84, 92, 165, 117, 65, 238, 113, 149, 150, 166, 39, 43, 218, 109 ],
value: {
poolId: "54",
points: "532,336,845,724",
lastRecordedRewardCounter: "304,697,162,689,922,803",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 126, 76, 105, 119, 159, 135, 5, 236, 225, 49, 21, 147, 87, 0, 47, 129, 33, 34, 22, 215, 41, 43, 155, 24, 0, 28, 6, 158, 247, 21, 50, 235, 189, 159, 94, 95, 10, 96, 82 ],
value: {
poolId: "8",
points: "170,000,000,000",
lastRecordedRewardCounter: "239,743,872,870,784,190",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 127, 191, 17, 95, 7, 211, 241, 42, 210, 17, 209, 71, 34, 175, 21, 243, 159, 154, 109, 240, 20, 145, 195, 66, 195, 125, 52, 33, 220, 117, 82, 78, 21, 84, 90, 111, 3, 243, 69 ],
value: {
poolId: "39",
points: "20,000,000,000",
lastRecordedRewardCounter: "176,906,024,471,339,226",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 128, 160, 184, 246, 120, 158, 158, 112, 217, 119, 25, 7, 142, 134, 111, 230, 213, 132, 21, 249, 85, 61, 73, 218, 27, 159, 105, 143, 162, 144, 179, 119, 220, 33, 248, 31, 234, 135, 61 ],
value: {
poolId: "121",
points: "10,000,000,000",
lastRecordedRewardCounter: "201,921,694,159,577,087",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 128, 251, 158, 122, 155, 228, 9, 214, 135, 228, 171, 101, 45, 209, 120, 25, 241, 177, 191, 86, 46, 74, 53, 147, 173, 157, 127, 76, 246, 77, 130, 93, 178, 246, 176, 83, 244, 203, 51 ],
value: {
poolId: "12",
points: "5,217,261,680,231",
lastRecordedRewardCounter: "308,814,147,322,933,675",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 129, 169, 76, 45, 79, 195, 76, 128, 127, 69, 177, 42, 184, 141, 97, 23, 95, 37, 89, 215, 255, 196, 128, 131, 135, 235, 5, 240, 104, 6, 255, 22, 129, 2, 152, 237, 31, 128, 120 ],
value: {
poolId: "39",
points: "0",
lastRecordedRewardCounter: "304,008,572,662,871,792",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 129, 203, 241, 247, 20, 157, 131, 34, 92, 219, 227, 252, 219, 104, 87, 59, 223, 31, 210, 86, 174, 191, 231, 153, 96, 216, 214, 46, 159, 152, 53, 42, 113, 99, 58, 152, 236, 208, 152 ],
value: {
poolId: "84",
points: "90,334,950,599,547",
lastRecordedRewardCounter: "274,016,091,910,567,152",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 130, 22, 225, 196, 249, 254, 15, 104, 113, 229, 143, 41, 72, 60, 215, 83, 32, 250, 236, 138, 105, 236, 165, 108, 175, 176, 52, 100, 168, 30, 140, 205, 78, 176, 148, 113, 204, 24, 54 ],
value: {
poolId: "129",
points: "1,320,927,579,310",
lastRecordedRewardCounter: "112,979,393,989,662,471",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 130, 163, 213, 40, 144, 9, 101, 38, 30, 11, 206, 24, 53, 52, 72, 75, 135, 178, 249, 48, 151, 6, 157, 100, 125, 166, 144, 91, 132, 95, 141, 84, 205, 33, 84, 208, 85, 2, 56 ],
value: {
poolId: "12",
points: "1,916,750,053,088",
lastRecordedRewardCounter: "57,828,304,079,074,741",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 131, 9, 89, 52, 16, 238, 109, 202, 46, 23, 200, 49, 232, 228, 68, 13, 136, 47, 205, 150, 141, 31, 45, 232, 37, 117, 183, 39, 169, 126, 193, 6, 99, 172, 90, 124, 139, 132, 116 ],
value: {
poolId: "16",
points: "526,114,644,357",
lastRecordedRewardCounter: "300,904,507,370,340,181",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 133, 129, 16, 66, 9, 233, 171, 164, 212, 236, 36, 254, 128, 18, 82, 124, 171, 36, 21, 188, 118, 19, 12, 47, 145, 232, 182, 158, 5, 52, 109, 102, 119, 21, 234, 215, 219, 200, 110 ],
value: {
poolId: "12",
points: "5,173,162,733,084",
lastRecordedRewardCounter: "309,694,673,071,119,318",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 134, 130, 227, 143, 80, 142, 100, 202, 171, 89, 252, 161, 182, 201, 238, 57, 144, 108, 232, 221, 75, 32, 142, 236, 124, 116, 175, 82, 34, 85, 92, 151, 101, 41, 235, 74, 176, 117, 66 ],
value: {
poolId: "54",
points: "999,559,720,799",
lastRecordedRewardCounter: "235,579,117,519,947,014",
unbondingEras: [Object ...],
},
}, {
keyArgs: Uint8Array(72) [ 122, 109, 56, 222, 170, 1, 203, 110, 118, 238, 105, 136, 159, 22, 150, 39, 60, 95, 105, 226, 112, 213, 183, 160, 127, 153, 150, 254, 158, 78, 4, 136, 0, 136, 53, 87, 78, 22, 31, 48, 135, 81, 241, 214, 112, 117, 4, 50, 235, 247, 100, 114, 166, 112, 95, 119, 33, 112, 106, 227, 209, 229, 27, 237, 255, 21, 125, 202, 105, 194, 226, 146 ],
value: {
poolId: "39",
points: "4,045,743,016,808",
lastRecordedRewardCounter: "302,311,322,604,997,298",
unbondingEras: [Object ...],
},
},
... 46196 more items
]
$ bun run test-papi.ts
[562.57s] Get entries
[
{
keyArgs: [ "14ctR6ZWNUycejiiJY7aW8kWL8CRNSJWimmcEZDExzMoRKpP" ],
value: {
pool_id: 16,
points: 20000000000n,
last_recorded_reward_counter: 270675639691460810n,
unbonding_eras: [],
},
}, {
keyArgs: [ "12JFwUszJsgVUr5YW3QcheYmDZHNYHiPELbuJx3rm6guhrse" ],
value: {
pool_id: 16,
points: 2801345827122n,
last_recorded_reward_counter: 290180780188288738n,
unbonding_eras: [],
},
}, {
keyArgs: [ "1141JHASgzBK1B8TtrxELrCHXua4vsNvXze5QhD4h7STErr" ],
value: {
pool_id: 39,
points: 0n,
last_recorded_reward_counter: 307559840565014929n,
unbonding_eras: [
[ 1568, 240000000000n ]
],
},
}, {
keyArgs: [ "14QQmmK8Rg2ESsiYCVJUMYTkZXfjzoywDYtcBcHUuXVpPS7X" ],
value: {
pool_id: 54,
points: 488170500000n,
last_recorded_reward_counter: 258406509346532649n,
unbonding_eras: [],
},
}, {
keyArgs: [ "152ewMmA7Jr2HY7VMqTwBkyiTbJqXrMFQsioy4QA647URNiS" ],
value: {
pool_id: 54,
points: 1856423074275n,
last_recorded_reward_counter: 311930740585649062n,
unbonding_eras: [],
},
}, {
keyArgs: [ "14AaH9HGLvUPhY1jr75mMPpNfzNCxmbBgWy4eCsQDVNimz7f" ],
value: {
pool_id: 54,
points: 0n,
last_recorded_reward_counter: 239099993229880697n,
unbonding_eras: [
[ 1420, 805000000000n ]
],
},
}, {
keyArgs: [ "1391qFaEw38DRsCor6nuU386Cayzq49NnKonR2ucDt3mgYeq" ],
value: {
pool_id: 54,
points: 1910000000000n,
last_recorded_reward_counter: 286874707042409130n,
unbonding_eras: [],
},
}, {
keyArgs: [ "13gMsYjbbXvhvMER9r5nqmB8AmxGejX59CY8vWoJjutxUyib" ],
value: {
pool_id: 39,
points: 15776725166547n,
last_recorded_reward_counter: 310931802671254825n,
unbonding_eras: [],
},
}, {
keyArgs: [ "1Nx4rX4douQUBieXhxZutJEsSb37nBXZ5ibUEY7cxjCsFV6" ],
value: {
pool_id: 6,
points: 0n,
last_recorded_reward_counter: 306303849388494124n,
unbonding_eras: [
[ 1566, 16232323959n ]
],
},
}, {
keyArgs: [ "15XezeNpMdGTTugnauyNCa9QJ9MRnWPZ93AcsdgWpEwxdpY3" ],
value: {
pool_id: 61,
points: 218034696609n,
last_recorded_reward_counter: 211174560685634629n,
unbonding_eras: [],
},
}, {
keyArgs: [ "128a2iqwjNKvYZN2YXffE7cWVNjzzWmvqmkLfq9oThRbvLww" ],
value: {
pool_id: 39,
points: 95000000000n,
last_recorded_reward_counter: 239973655177705724n,
unbonding_eras: [],
},
}, {
keyArgs: [ "15rcjKqCDngDYSrW4vkyFA2EY9eaxVF6h7ecs3s6g4DHVQX1" ],
value: {
pool_id: 54,
points: 861336576072n,
last_recorded_reward_counter: 292708313257476591n,
unbonding_eras: [],
},
}, {
keyArgs: [ "14dEQ8uTYkSoB1KELwfEXWSjQg92iZwHn7c2XEyGgAdSijwV" ],
value: {
pool_id: 16,
points: 0n,
last_recorded_reward_counter: 271049290320078780n,
unbonding_eras: [
[ 1496, 51000000000n ]
],
},
}, {
keyArgs: [ "15KGBfS75tzaCkcqUSs6aJTN91Vn3wV4yANFRqjowf2EJCHJ" ],
value: {
pool_id: 54,
points: 13000028580479n,
last_recorded_reward_counter: 311246794936654774n,
unbonding_eras: [],
},
}, {
keyArgs: [ "12TWtrApkLcXyWmBvbjrVcspmXTfidfMe7vFFt3p7Cvj2LdJ" ],
value: {
pool_id: 47,
points: 2989546555701n,
last_recorded_reward_counter: 238193665519103912n,
unbonding_eras: [],
},
}, {
keyArgs: [ "128uKFo94ewG8BrRXyqVQFDj8753XNfgsDUp9DSGdh8erKwS" ],
value: {
pool_id: 61,
points: 1185380481711n,
last_recorded_reward_counter: 307377798833890208n,
unbonding_eras: [],
},
}, {
keyArgs: [ "13p3MjxvUSveDsBpJ6rFQ8t4BkmHcmpWced3pMJHDgrnNs8X" ],
value: {
pool_id: 5,
points: 78150125263630n,
last_recorded_reward_counter: 300246431998673495n,
unbonding_eras: [],
},
}, {
keyArgs: [ "138k5ARcdPchzYU9MFxr5vzL8gEvvDfHGKZuons5VpR1LDz1" ],
value: {
pool_id: 49,
points: 351884578031n,
last_recorded_reward_counter: 260888324098335247n,
unbonding_eras: [],
},
}, {
keyArgs: [ "12Qb5JVaVBvjDBYLqAdXLXepgK6PRtEK4SXYDpuFqUin1gPt" ],
value: {
pool_id: 39,
points: 309000000000n,
last_recorded_reward_counter: 266218760025321482n,
unbonding_eras: [],
},
}, {
keyArgs: [ "12b8tAGaiqJ3hBPzsyuQsHWemoYSesDLGFHbm5kLwXUckHLe" ],
value: {
pool_id: 39,
points: 19000000000n,
last_recorded_reward_counter: 236450096747552583n,
unbonding_eras: [],
},
}, {
keyArgs: [ "13VHnJJWKzgpY8vc3APiGe7DCDqdjv2k23jR33dY2gD55en7" ],
value: {
pool_id: 16,
points: 17358287331776n,
last_recorded_reward_counter: 309588231755104562n,
unbonding_eras: [],
},
}, {
keyArgs: [ "164uSVzKiQJuybU9eSmQwktCf63hp25nG8sjiSGkvAamqLHw" ],
value: {
pool_id: 4,
points: 837981192833n,
last_recorded_reward_counter: 138098799039767600n,
unbonding_eras: [],
},
}, {
keyArgs: [ "15o8fdc8XgPpebHH2ka15ChHAjnHvsfur6YoycHbiYe1NBNQ" ],
value: {
pool_id: 54,
points: 30000000000n,