hive-stream 2.0.5 → 3.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (89) hide show
  1. package/.claude/settings.local.json +12 -0
  2. package/.env.example +2 -2
  3. package/.travis.yml +11 -11
  4. package/CHANGELOG.md +166 -0
  5. package/CLAUDE.md +75 -0
  6. package/LICENSE +21 -21
  7. package/README.md +338 -238
  8. package/dist/actions.d.ts +41 -10
  9. package/dist/actions.js +126 -23
  10. package/dist/actions.js.map +1 -1
  11. package/dist/adapters/base.adapter.d.ts +25 -25
  12. package/dist/adapters/base.adapter.js +63 -49
  13. package/dist/adapters/base.adapter.js.map +1 -1
  14. package/dist/adapters/mongodb.adapter.d.ts +50 -37
  15. package/dist/adapters/mongodb.adapter.js +363 -158
  16. package/dist/adapters/mongodb.adapter.js.map +1 -1
  17. package/dist/adapters/postgresql.adapter.d.ts +49 -0
  18. package/dist/adapters/postgresql.adapter.js +507 -0
  19. package/dist/adapters/postgresql.adapter.js.map +1 -0
  20. package/dist/adapters/sqlite.adapter.d.ts +40 -41
  21. package/dist/adapters/sqlite.adapter.js +470 -397
  22. package/dist/adapters/sqlite.adapter.js.map +1 -1
  23. package/dist/api.d.ts +6 -6
  24. package/dist/api.js +95 -55
  25. package/dist/api.js.map +1 -1
  26. package/dist/config.d.ts +16 -16
  27. package/dist/config.js +18 -18
  28. package/dist/config.js.map +1 -1
  29. package/dist/contracts/coinflip.contract.d.ts +27 -14
  30. package/dist/contracts/coinflip.contract.js +253 -94
  31. package/dist/contracts/coinflip.contract.js.map +1 -1
  32. package/dist/contracts/dice.contract.d.ts +37 -29
  33. package/dist/contracts/dice.contract.js +282 -155
  34. package/dist/contracts/dice.contract.js.map +1 -1
  35. package/dist/contracts/lotto.contract.d.ts +20 -20
  36. package/dist/contracts/lotto.contract.js +246 -246
  37. package/dist/contracts/nft.contract.d.ts +24 -0
  38. package/dist/contracts/nft.contract.js +533 -0
  39. package/dist/contracts/nft.contract.js.map +1 -0
  40. package/dist/contracts/token.contract.d.ts +18 -0
  41. package/dist/contracts/token.contract.js +263 -0
  42. package/dist/contracts/token.contract.js.map +1 -0
  43. package/dist/exchanges/bittrex.d.ts +6 -6
  44. package/dist/exchanges/bittrex.js +34 -34
  45. package/dist/exchanges/coingecko.d.ts +5 -0
  46. package/dist/exchanges/coingecko.js +40 -0
  47. package/dist/exchanges/coingecko.js.map +1 -0
  48. package/dist/exchanges/exchange.d.ts +9 -9
  49. package/dist/exchanges/exchange.js +26 -26
  50. package/dist/hive-rates.d.ts +9 -9
  51. package/dist/hive-rates.js +121 -75
  52. package/dist/hive-rates.js.map +1 -1
  53. package/dist/index.d.ts +12 -11
  54. package/dist/index.js +33 -32
  55. package/dist/index.js.map +1 -1
  56. package/dist/streamer.d.ts +140 -93
  57. package/dist/streamer.js +793 -545
  58. package/dist/streamer.js.map +1 -1
  59. package/dist/test.d.ts +1 -1
  60. package/dist/test.js +25 -25
  61. package/dist/test.js.map +1 -1
  62. package/dist/types/hive-stream.d.ts +35 -6
  63. package/dist/types/hive-stream.js +2 -2
  64. package/dist/utils.d.ts +27 -27
  65. package/dist/utils.js +271 -261
  66. package/dist/utils.js.map +1 -1
  67. package/ecosystem.config.js +17 -17
  68. package/jest.config.js +8 -8
  69. package/package.json +53 -48
  70. package/test-contract-block.md +18 -18
  71. package/tests/actions.spec.ts +252 -0
  72. package/tests/adapters/actions-persistence.spec.ts +144 -0
  73. package/tests/adapters/postgresql.adapter.spec.ts +127 -0
  74. package/tests/adapters/sqlite.adapter.spec.ts +180 -42
  75. package/tests/contracts/coinflip.contract.spec.ts +221 -131
  76. package/tests/contracts/dice.contract.spec.ts +202 -159
  77. package/tests/contracts/entrants.json +728 -728
  78. package/tests/contracts/lotto.contract.spec.ts +323 -323
  79. package/tests/contracts/nft.contract.spec.ts +948 -0
  80. package/tests/contracts/token.contract.spec.ts +334 -0
  81. package/tests/helpers/mock-adapter.ts +214 -0
  82. package/tests/setup.ts +29 -18
  83. package/tests/streamer-actions.spec.ts +263 -0
  84. package/tests/streamer.spec.ts +248 -151
  85. package/tests/utils.spec.ts +91 -94
  86. package/tsconfig.build.json +3 -22
  87. package/tslint.json +20 -20
  88. package/wallaby.js +26 -26
  89. package/.env +0 -3
@@ -1,729 +1,729 @@
1
- [{
2
- "from": "beggars",
3
- "amount": "10.000 HIVE",
4
- "memo": {
5
- "hiveContract": {
6
- "id": "hivestream",
7
- "name": "testlotto",
8
- "action": "buy",
9
- "payload": {
10
- "type": "hourly"
11
- }
12
- }
13
- }
14
- },
15
- {
16
- "from": "beggars",
17
- "amount": "10.000 HIVE",
18
- "memo": {
19
- "hiveContract": {
20
- "id": "hivestream",
21
- "name": "testlotto",
22
- "action": "buy",
23
- "payload": {
24
- "type": "hourly"
25
- }
26
- }
27
- }
28
- },
29
- {
30
- "from": "beggars",
31
- "amount": "10.000 HIVE",
32
- "memo": {
33
- "hiveContract": {
34
- "id": "hivestream",
35
- "name": "testlotto",
36
- "action": "buy",
37
- "payload": {
38
- "type": "hourly"
39
- }
40
- }
41
- }
42
- },
43
- {
44
- "from": "aggroed",
45
- "amount": "10.000 HIVE",
46
- "memo": {
47
- "hiveContract": {
48
- "id": "hivestream",
49
- "name": "testlotto",
50
- "action": "buy",
51
- "payload": {
52
- "type": "hourly"
53
- }
54
- }
55
- }
56
- },
57
- {
58
- "from": "yabapmatt",
59
- "amount": "10.000 HIVE",
60
- "memo": {
61
- "hiveContract": {
62
- "id": "hivestream",
63
- "name": "testlotto",
64
- "action": "buy",
65
- "payload": {
66
- "type": "hourly"
67
- }
68
- }
69
- }
70
- },
71
- {
72
- "from": "ngc",
73
- "amount": "10.000 HIVE",
74
- "memo": {
75
- "hiveContract": {
76
- "id": "hivestream",
77
- "name": "testlotto",
78
- "action": "buy",
79
- "payload": {
80
- "type": "hourly"
81
- }
82
- }
83
- }
84
- },
85
- {
86
- "from": "berniesanders",
87
- "amount": "10.000 HIVE",
88
- "memo": {
89
- "hiveContract": {
90
- "id": "hivestream",
91
- "name": "testlotto",
92
- "action": "buy",
93
- "payload": {
94
- "type": "hourly"
95
- }
96
- }
97
- }
98
- },
99
- {
100
- "from": "inertia",
101
- "amount": "10.000 HIVE",
102
- "memo": {
103
- "hiveContract": {
104
- "id": "hivestream",
105
- "name": "testlotto",
106
- "action": "buy",
107
- "payload": {
108
- "type": "hourly"
109
- }
110
- }
111
- }
112
- },
113
- {
114
- "from": "someguy123",
115
- "amount": "10.000 HIVE",
116
- "memo": {
117
- "hiveContract": {
118
- "id": "hivestream",
119
- "name": "testlotto",
120
- "action": "buy",
121
- "payload": {
122
- "type": "hourly"
123
- }
124
- }
125
- }
126
- },
127
- {
128
- "from": "harpagon",
129
- "amount": "10.000 HIVE",
130
- "memo": {
131
- "hiveContract": {
132
- "id": "hivestream",
133
- "name": "testlotto",
134
- "action": "buy",
135
- "payload": {
136
- "type": "hourly"
137
- }
138
- }
139
- }
140
- },
141
- {
142
- "from": "skatehive",
143
- "amount": "10.000 HIVE",
144
- "memo": {
145
- "hiveContract": {
146
- "id": "hivestream",
147
- "name": "testlotto",
148
- "action": "buy",
149
- "payload": {
150
- "type": "hourly"
151
- }
152
- }
153
- }
154
- },
155
- {
156
- "from": "penguinpablo",
157
- "amount": "10.000 HIVE",
158
- "memo": {
159
- "hiveContract": {
160
- "id": "hivestream",
161
- "name": "testlotto",
162
- "action": "buy",
163
- "payload": {
164
- "type": "hourly"
165
- }
166
- }
167
- }
168
- },
169
- {
170
- "from": "dbroze",
171
- "amount": "10.000 HIVE",
172
- "memo": {
173
- "hiveContract": {
174
- "id": "hivestream",
175
- "name": "testlotto",
176
- "action": "buy",
177
- "payload": {
178
- "type": "hourly"
179
- }
180
- }
181
- }
182
- },
183
- {
184
- "from": "holger80",
185
- "amount": "10.000 HIVE",
186
- "memo": {
187
- "hiveContract": {
188
- "id": "hivestream",
189
- "name": "testlotto",
190
- "action": "buy",
191
- "payload": {
192
- "type": "hourly"
193
- }
194
- }
195
- }
196
- },
197
- {
198
- "from": "fsdfsdfsdf",
199
- "amount": "10.000 HIVE",
200
- "memo": {
201
- "hiveContract": {
202
- "id": "hivestream",
203
- "name": "testlotto",
204
- "action": "buy",
205
- "payload": {
206
- "type": "hourly"
207
- }
208
- }
209
- }
210
- },
211
- {
212
- "from": "jlfksdjf09809809",
213
- "amount": "10.000 HIVE",
214
- "memo": {
215
- "hiveContract": {
216
- "id": "hivestream",
217
- "name": "testlotto",
218
- "action": "buy",
219
- "payload": {
220
- "type": "hourly"
221
- }
222
- }
223
- }
224
- },
225
- {
226
- "from": "fsdpppp",
227
- "amount": "10.000 HIVE",
228
- "memo": {
229
- "hiveContract": {
230
- "id": "hivestream",
231
- "name": "testlotto",
232
- "action": "buy",
233
- "payload": {
234
- "type": "hourly"
235
- }
236
- }
237
- }
238
- },
239
- {
240
- "from": "zzxcz",
241
- "amount": "10.000 HIVE",
242
- "memo": {
243
- "hiveContract": {
244
- "id": "hivestream",
245
- "name": "testlotto",
246
- "action": "buy",
247
- "payload": {
248
- "type": "hourly"
249
- }
250
- }
251
- }
252
- },
253
- {
254
- "from": "czx322",
255
- "amount": "10.000 HIVE",
256
- "memo": {
257
- "hiveContract": {
258
- "id": "hivestream",
259
- "name": "testlotto",
260
- "action": "buy",
261
- "payload": {
262
- "type": "hourly"
263
- }
264
- }
265
- }
266
- },
267
- {
268
- "from": "g7a9hhh",
269
- "amount": "10.000 HIVE",
270
- "memo": {
271
- "hiveContract": {
272
- "id": "hivestream",
273
- "name": "testlotto",
274
- "action": "buy",
275
- "payload": {
276
- "type": "hourly"
277
- }
278
- }
279
- }
280
- },
281
- {
282
- "from": "netscape",
283
- "amount": "10.000 HIVE",
284
- "memo": {
285
- "hiveContract": {
286
- "id": "hivestream",
287
- "name": "testlotto",
288
- "action": "buy",
289
- "payload": {
290
- "type": "hourly"
291
- }
292
- }
293
- }
294
- },
295
- {
296
- "from": "firefox",
297
- "amount": "10.000 HIVE",
298
- "memo": {
299
- "hiveContract": {
300
- "id": "hivestream",
301
- "name": "testlotto",
302
- "action": "buy",
303
- "payload": {
304
- "type": "hourly"
305
- }
306
- }
307
- }
308
- },
309
- {
310
- "from": "chrome",
311
- "amount": "10.000 HIVE",
312
- "memo": {
313
- "hiveContract": {
314
- "id": "hivestream",
315
- "name": "testlotto",
316
- "action": "buy",
317
- "payload": {
318
- "type": "hourly"
319
- }
320
- }
321
- }
322
- },
323
- {
324
- "from": "safari",
325
- "amount": "10.000 HIVE",
326
- "memo": {
327
- "hiveContract": {
328
- "id": "hivestream",
329
- "name": "testlotto",
330
- "action": "buy",
331
- "payload": {
332
- "type": "hourly"
333
- }
334
- }
335
- }
336
- },
337
- {
338
- "from": "mozilla",
339
- "amount": "10.000 HIVE",
340
- "memo": {
341
- "hiveContract": {
342
- "id": "hivestream",
343
- "name": "testlotto",
344
- "action": "buy",
345
- "payload": {
346
- "type": "hourly"
347
- }
348
- }
349
- }
350
- },
351
- {
352
- "from": "godzilla",
353
- "amount": "10.000 HIVE",
354
- "memo": {
355
- "hiveContract": {
356
- "id": "hivestream",
357
- "name": "testlotto",
358
- "action": "buy",
359
- "payload": {
360
- "type": "hourly"
361
- }
362
- }
363
- }
364
- },
365
- {
366
- "from": "amazon",
367
- "amount": "10.000 HIVE",
368
- "memo": {
369
- "hiveContract": {
370
- "id": "hivestream",
371
- "name": "testlotto",
372
- "action": "buy",
373
- "payload": {
374
- "type": "hourly"
375
- }
376
- }
377
- }
378
- },
379
- {
380
- "from": "microsoft",
381
- "amount": "10.000 HIVE",
382
- "memo": {
383
- "hiveContract": {
384
- "id": "hivestream",
385
- "name": "testlotto",
386
- "action": "buy",
387
- "payload": {
388
- "type": "hourly"
389
- }
390
- }
391
- }
392
- },
393
- {
394
- "from": "shaylagh",
395
- "amount": "10.000 HIVE",
396
- "memo": {
397
- "hiveContract": {
398
- "id": "hivestream",
399
- "name": "testlotto",
400
- "action": "buy",
401
- "payload": {
402
- "type": "hourly"
403
- }
404
- }
405
- }
406
- },
407
- {
408
- "from": "tamara",
409
- "amount": "10.000 HIVE",
410
- "memo": {
411
- "hiveContract": {
412
- "id": "hivestream",
413
- "name": "testlotto",
414
- "action": "buy",
415
- "payload": {
416
- "type": "hourly"
417
- }
418
- }
419
- }
420
- },
421
- {
422
- "from": "george",
423
- "amount": "10.000 HIVE",
424
- "memo": {
425
- "hiveContract": {
426
- "id": "hivestream",
427
- "name": "testlotto",
428
- "action": "buy",
429
- "payload": {
430
- "type": "hourly"
431
- }
432
- }
433
- }
434
- },
435
- {
436
- "from": "michael",
437
- "amount": "10.000 HIVE",
438
- "memo": {
439
- "hiveContract": {
440
- "id": "hivestream",
441
- "name": "testlotto",
442
- "action": "buy",
443
- "payload": {
444
- "type": "hourly"
445
- }
446
- }
447
- }
448
- },
449
- {
450
- "from": "ringo",
451
- "amount": "10.000 HIVE",
452
- "memo": {
453
- "hiveContract": {
454
- "id": "hivestream",
455
- "name": "testlotto",
456
- "action": "buy",
457
- "payload": {
458
- "type": "hourly"
459
- }
460
- }
461
- }
462
- },
463
- {
464
- "from": "khaleesi",
465
- "amount": "10.000 HIVE",
466
- "memo": {
467
- "hiveContract": {
468
- "id": "hivestream",
469
- "name": "testlotto",
470
- "action": "buy",
471
- "payload": {
472
- "type": "hourly"
473
- }
474
- }
475
- }
476
- },
477
- {
478
- "from": "sophie",
479
- "amount": "10.000 HIVE",
480
- "memo": {
481
- "hiveContract": {
482
- "id": "hivestream",
483
- "name": "testlotto",
484
- "action": "buy",
485
- "payload": {
486
- "type": "hourly"
487
- }
488
- }
489
- }
490
- },
491
- {
492
- "from": "daisy",
493
- "amount": "10.000 HIVE",
494
- "memo": {
495
- "hiveContract": {
496
- "id": "hivestream",
497
- "name": "testlotto",
498
- "action": "buy",
499
- "payload": {
500
- "type": "hourly"
501
- }
502
- }
503
- }
504
- },
505
- {
506
- "from": "scott",
507
- "amount": "10.000 HIVE",
508
- "memo": {
509
- "hiveContract": {
510
- "id": "hivestream",
511
- "name": "testlotto",
512
- "action": "buy",
513
- "payload": {
514
- "type": "hourly"
515
- }
516
- }
517
- }
518
- },
519
- {
520
- "from": "trustme",
521
- "amount": "10.000 HIVE",
522
- "memo": {
523
- "hiveContract": {
524
- "id": "hivestream",
525
- "name": "testlotto",
526
- "action": "buy",
527
- "payload": {
528
- "type": "hourly"
529
- }
530
- }
531
- }
532
- },
533
- {
534
- "from": "justinsunsucks",
535
- "amount": "10.000 HIVE",
536
- "memo": {
537
- "hiveContract": {
538
- "id": "hivestream",
539
- "name": "testlotto",
540
- "action": "buy",
541
- "payload": {
542
- "type": "hourly"
543
- }
544
- }
545
- }
546
- },
547
- {
548
- "from": "fuckjustinsun",
549
- "amount": "10.000 HIVE",
550
- "memo": {
551
- "hiveContract": {
552
- "id": "hivestream",
553
- "name": "testlotto",
554
- "action": "buy",
555
- "payload": {
556
- "type": "hourly"
557
- }
558
- }
559
- }
560
- },
561
- {
562
- "from": "hivechain",
563
- "amount": "10.000 HIVE",
564
- "memo": {
565
- "hiveContract": {
566
- "id": "hivestream",
567
- "name": "testlotto",
568
- "action": "buy",
569
- "payload": {
570
- "type": "hourly"
571
- }
572
- }
573
- }
574
- },
575
- {
576
- "from": "hivebees",
577
- "amount": "10.000 HIVE",
578
- "memo": {
579
- "hiveContract": {
580
- "id": "hivestream",
581
- "name": "testlotto",
582
- "action": "buy",
583
- "payload": {
584
- "type": "hourly"
585
- }
586
- }
587
- }
588
- },
589
- {
590
- "from": "workmeup",
591
- "amount": "10.000 HIVE",
592
- "memo": {
593
- "hiveContract": {
594
- "id": "hivestream",
595
- "name": "testlotto",
596
- "action": "buy",
597
- "payload": {
598
- "type": "hourly"
599
- }
600
- }
601
- }
602
- },
603
- {
604
- "from": "gettingangry",
605
- "amount": "10.000 HIVE",
606
- "memo": {
607
- "hiveContract": {
608
- "id": "hivestream",
609
- "name": "testlotto",
610
- "action": "buy",
611
- "payload": {
612
- "type": "hourly"
613
- }
614
- }
615
- }
616
- },
617
- {
618
- "from": "angermanagement",
619
- "amount": "10.000 HIVE",
620
- "memo": {
621
- "hiveContract": {
622
- "id": "hivestream",
623
- "name": "testlotto",
624
- "action": "buy",
625
- "payload": {
626
- "type": "hourly"
627
- }
628
- }
629
- }
630
- },
631
- {
632
- "from": "testingaccount",
633
- "amount": "10.000 HIVE",
634
- "memo": {
635
- "hiveContract": {
636
- "id": "hivestream",
637
- "name": "testlotto",
638
- "action": "buy",
639
- "payload": {
640
- "type": "hourly"
641
- }
642
- }
643
- }
644
- },
645
- {
646
- "from": "pleasestop",
647
- "amount": "10.000 HIVE",
648
- "memo": {
649
- "hiveContract": {
650
- "id": "hivestream",
651
- "name": "testlotto",
652
- "action": "buy",
653
- "payload": {
654
- "type": "hourly"
655
- }
656
- }
657
- }
658
- },
659
- {
660
- "from": "hmmyeah",
661
- "amount": "10.000 HIVE",
662
- "memo": {
663
- "hiveContract": {
664
- "id": "hivestream",
665
- "name": "testlotto",
666
- "action": "buy",
667
- "payload": {
668
- "type": "hourly"
669
- }
670
- }
671
- }
672
- },
673
- {
674
- "from": "areyouimpressed",
675
- "amount": "10.000 HIVE",
676
- "memo": {
677
- "hiveContract": {
678
- "id": "hivestream",
679
- "name": "testlotto",
680
- "action": "buy",
681
- "payload": {
682
- "type": "hourly"
683
- }
684
- }
685
- }
686
- },
687
- {
688
- "from": "shesaidno",
689
- "amount": "10.000 HIVE",
690
- "memo": {
691
- "hiveContract": {
692
- "id": "hivestream",
693
- "name": "testlotto",
694
- "action": "buy",
695
- "payload": {
696
- "type": "hourly"
697
- }
698
- }
699
- }
700
- },
701
- {
702
- "from": "whoishungry",
703
- "amount": "10.000 HIVE",
704
- "memo": {
705
- "hiveContract": {
706
- "id": "hivestream",
707
- "name": "testlotto",
708
- "action": "buy",
709
- "payload": {
710
- "type": "hourly"
711
- }
712
- }
713
- }
714
- },
715
- {
716
- "from": "crappydapp",
717
- "amount": "10.000 HIVE",
718
- "memo": {
719
- "hiveContract": {
720
- "id": "hivestream",
721
- "name": "testlotto",
722
- "action": "buy",
723
- "payload": {
724
- "type": "hourly"
725
- }
726
- }
727
- }
728
- }
1
+ [{
2
+ "from": "beggars",
3
+ "amount": "10.000 HIVE",
4
+ "memo": {
5
+ "hiveContract": {
6
+ "id": "hivestream",
7
+ "name": "testlotto",
8
+ "action": "buy",
9
+ "payload": {
10
+ "type": "hourly"
11
+ }
12
+ }
13
+ }
14
+ },
15
+ {
16
+ "from": "beggars",
17
+ "amount": "10.000 HIVE",
18
+ "memo": {
19
+ "hiveContract": {
20
+ "id": "hivestream",
21
+ "name": "testlotto",
22
+ "action": "buy",
23
+ "payload": {
24
+ "type": "hourly"
25
+ }
26
+ }
27
+ }
28
+ },
29
+ {
30
+ "from": "beggars",
31
+ "amount": "10.000 HIVE",
32
+ "memo": {
33
+ "hiveContract": {
34
+ "id": "hivestream",
35
+ "name": "testlotto",
36
+ "action": "buy",
37
+ "payload": {
38
+ "type": "hourly"
39
+ }
40
+ }
41
+ }
42
+ },
43
+ {
44
+ "from": "aggroed",
45
+ "amount": "10.000 HIVE",
46
+ "memo": {
47
+ "hiveContract": {
48
+ "id": "hivestream",
49
+ "name": "testlotto",
50
+ "action": "buy",
51
+ "payload": {
52
+ "type": "hourly"
53
+ }
54
+ }
55
+ }
56
+ },
57
+ {
58
+ "from": "yabapmatt",
59
+ "amount": "10.000 HIVE",
60
+ "memo": {
61
+ "hiveContract": {
62
+ "id": "hivestream",
63
+ "name": "testlotto",
64
+ "action": "buy",
65
+ "payload": {
66
+ "type": "hourly"
67
+ }
68
+ }
69
+ }
70
+ },
71
+ {
72
+ "from": "ngc",
73
+ "amount": "10.000 HIVE",
74
+ "memo": {
75
+ "hiveContract": {
76
+ "id": "hivestream",
77
+ "name": "testlotto",
78
+ "action": "buy",
79
+ "payload": {
80
+ "type": "hourly"
81
+ }
82
+ }
83
+ }
84
+ },
85
+ {
86
+ "from": "berniesanders",
87
+ "amount": "10.000 HIVE",
88
+ "memo": {
89
+ "hiveContract": {
90
+ "id": "hivestream",
91
+ "name": "testlotto",
92
+ "action": "buy",
93
+ "payload": {
94
+ "type": "hourly"
95
+ }
96
+ }
97
+ }
98
+ },
99
+ {
100
+ "from": "inertia",
101
+ "amount": "10.000 HIVE",
102
+ "memo": {
103
+ "hiveContract": {
104
+ "id": "hivestream",
105
+ "name": "testlotto",
106
+ "action": "buy",
107
+ "payload": {
108
+ "type": "hourly"
109
+ }
110
+ }
111
+ }
112
+ },
113
+ {
114
+ "from": "someguy123",
115
+ "amount": "10.000 HIVE",
116
+ "memo": {
117
+ "hiveContract": {
118
+ "id": "hivestream",
119
+ "name": "testlotto",
120
+ "action": "buy",
121
+ "payload": {
122
+ "type": "hourly"
123
+ }
124
+ }
125
+ }
126
+ },
127
+ {
128
+ "from": "harpagon",
129
+ "amount": "10.000 HIVE",
130
+ "memo": {
131
+ "hiveContract": {
132
+ "id": "hivestream",
133
+ "name": "testlotto",
134
+ "action": "buy",
135
+ "payload": {
136
+ "type": "hourly"
137
+ }
138
+ }
139
+ }
140
+ },
141
+ {
142
+ "from": "skatehive",
143
+ "amount": "10.000 HIVE",
144
+ "memo": {
145
+ "hiveContract": {
146
+ "id": "hivestream",
147
+ "name": "testlotto",
148
+ "action": "buy",
149
+ "payload": {
150
+ "type": "hourly"
151
+ }
152
+ }
153
+ }
154
+ },
155
+ {
156
+ "from": "penguinpablo",
157
+ "amount": "10.000 HIVE",
158
+ "memo": {
159
+ "hiveContract": {
160
+ "id": "hivestream",
161
+ "name": "testlotto",
162
+ "action": "buy",
163
+ "payload": {
164
+ "type": "hourly"
165
+ }
166
+ }
167
+ }
168
+ },
169
+ {
170
+ "from": "dbroze",
171
+ "amount": "10.000 HIVE",
172
+ "memo": {
173
+ "hiveContract": {
174
+ "id": "hivestream",
175
+ "name": "testlotto",
176
+ "action": "buy",
177
+ "payload": {
178
+ "type": "hourly"
179
+ }
180
+ }
181
+ }
182
+ },
183
+ {
184
+ "from": "holger80",
185
+ "amount": "10.000 HIVE",
186
+ "memo": {
187
+ "hiveContract": {
188
+ "id": "hivestream",
189
+ "name": "testlotto",
190
+ "action": "buy",
191
+ "payload": {
192
+ "type": "hourly"
193
+ }
194
+ }
195
+ }
196
+ },
197
+ {
198
+ "from": "fsdfsdfsdf",
199
+ "amount": "10.000 HIVE",
200
+ "memo": {
201
+ "hiveContract": {
202
+ "id": "hivestream",
203
+ "name": "testlotto",
204
+ "action": "buy",
205
+ "payload": {
206
+ "type": "hourly"
207
+ }
208
+ }
209
+ }
210
+ },
211
+ {
212
+ "from": "jlfksdjf09809809",
213
+ "amount": "10.000 HIVE",
214
+ "memo": {
215
+ "hiveContract": {
216
+ "id": "hivestream",
217
+ "name": "testlotto",
218
+ "action": "buy",
219
+ "payload": {
220
+ "type": "hourly"
221
+ }
222
+ }
223
+ }
224
+ },
225
+ {
226
+ "from": "fsdpppp",
227
+ "amount": "10.000 HIVE",
228
+ "memo": {
229
+ "hiveContract": {
230
+ "id": "hivestream",
231
+ "name": "testlotto",
232
+ "action": "buy",
233
+ "payload": {
234
+ "type": "hourly"
235
+ }
236
+ }
237
+ }
238
+ },
239
+ {
240
+ "from": "zzxcz",
241
+ "amount": "10.000 HIVE",
242
+ "memo": {
243
+ "hiveContract": {
244
+ "id": "hivestream",
245
+ "name": "testlotto",
246
+ "action": "buy",
247
+ "payload": {
248
+ "type": "hourly"
249
+ }
250
+ }
251
+ }
252
+ },
253
+ {
254
+ "from": "czx322",
255
+ "amount": "10.000 HIVE",
256
+ "memo": {
257
+ "hiveContract": {
258
+ "id": "hivestream",
259
+ "name": "testlotto",
260
+ "action": "buy",
261
+ "payload": {
262
+ "type": "hourly"
263
+ }
264
+ }
265
+ }
266
+ },
267
+ {
268
+ "from": "g7a9hhh",
269
+ "amount": "10.000 HIVE",
270
+ "memo": {
271
+ "hiveContract": {
272
+ "id": "hivestream",
273
+ "name": "testlotto",
274
+ "action": "buy",
275
+ "payload": {
276
+ "type": "hourly"
277
+ }
278
+ }
279
+ }
280
+ },
281
+ {
282
+ "from": "netscape",
283
+ "amount": "10.000 HIVE",
284
+ "memo": {
285
+ "hiveContract": {
286
+ "id": "hivestream",
287
+ "name": "testlotto",
288
+ "action": "buy",
289
+ "payload": {
290
+ "type": "hourly"
291
+ }
292
+ }
293
+ }
294
+ },
295
+ {
296
+ "from": "firefox",
297
+ "amount": "10.000 HIVE",
298
+ "memo": {
299
+ "hiveContract": {
300
+ "id": "hivestream",
301
+ "name": "testlotto",
302
+ "action": "buy",
303
+ "payload": {
304
+ "type": "hourly"
305
+ }
306
+ }
307
+ }
308
+ },
309
+ {
310
+ "from": "chrome",
311
+ "amount": "10.000 HIVE",
312
+ "memo": {
313
+ "hiveContract": {
314
+ "id": "hivestream",
315
+ "name": "testlotto",
316
+ "action": "buy",
317
+ "payload": {
318
+ "type": "hourly"
319
+ }
320
+ }
321
+ }
322
+ },
323
+ {
324
+ "from": "safari",
325
+ "amount": "10.000 HIVE",
326
+ "memo": {
327
+ "hiveContract": {
328
+ "id": "hivestream",
329
+ "name": "testlotto",
330
+ "action": "buy",
331
+ "payload": {
332
+ "type": "hourly"
333
+ }
334
+ }
335
+ }
336
+ },
337
+ {
338
+ "from": "mozilla",
339
+ "amount": "10.000 HIVE",
340
+ "memo": {
341
+ "hiveContract": {
342
+ "id": "hivestream",
343
+ "name": "testlotto",
344
+ "action": "buy",
345
+ "payload": {
346
+ "type": "hourly"
347
+ }
348
+ }
349
+ }
350
+ },
351
+ {
352
+ "from": "godzilla",
353
+ "amount": "10.000 HIVE",
354
+ "memo": {
355
+ "hiveContract": {
356
+ "id": "hivestream",
357
+ "name": "testlotto",
358
+ "action": "buy",
359
+ "payload": {
360
+ "type": "hourly"
361
+ }
362
+ }
363
+ }
364
+ },
365
+ {
366
+ "from": "amazon",
367
+ "amount": "10.000 HIVE",
368
+ "memo": {
369
+ "hiveContract": {
370
+ "id": "hivestream",
371
+ "name": "testlotto",
372
+ "action": "buy",
373
+ "payload": {
374
+ "type": "hourly"
375
+ }
376
+ }
377
+ }
378
+ },
379
+ {
380
+ "from": "microsoft",
381
+ "amount": "10.000 HIVE",
382
+ "memo": {
383
+ "hiveContract": {
384
+ "id": "hivestream",
385
+ "name": "testlotto",
386
+ "action": "buy",
387
+ "payload": {
388
+ "type": "hourly"
389
+ }
390
+ }
391
+ }
392
+ },
393
+ {
394
+ "from": "shaylagh",
395
+ "amount": "10.000 HIVE",
396
+ "memo": {
397
+ "hiveContract": {
398
+ "id": "hivestream",
399
+ "name": "testlotto",
400
+ "action": "buy",
401
+ "payload": {
402
+ "type": "hourly"
403
+ }
404
+ }
405
+ }
406
+ },
407
+ {
408
+ "from": "tamara",
409
+ "amount": "10.000 HIVE",
410
+ "memo": {
411
+ "hiveContract": {
412
+ "id": "hivestream",
413
+ "name": "testlotto",
414
+ "action": "buy",
415
+ "payload": {
416
+ "type": "hourly"
417
+ }
418
+ }
419
+ }
420
+ },
421
+ {
422
+ "from": "george",
423
+ "amount": "10.000 HIVE",
424
+ "memo": {
425
+ "hiveContract": {
426
+ "id": "hivestream",
427
+ "name": "testlotto",
428
+ "action": "buy",
429
+ "payload": {
430
+ "type": "hourly"
431
+ }
432
+ }
433
+ }
434
+ },
435
+ {
436
+ "from": "michael",
437
+ "amount": "10.000 HIVE",
438
+ "memo": {
439
+ "hiveContract": {
440
+ "id": "hivestream",
441
+ "name": "testlotto",
442
+ "action": "buy",
443
+ "payload": {
444
+ "type": "hourly"
445
+ }
446
+ }
447
+ }
448
+ },
449
+ {
450
+ "from": "ringo",
451
+ "amount": "10.000 HIVE",
452
+ "memo": {
453
+ "hiveContract": {
454
+ "id": "hivestream",
455
+ "name": "testlotto",
456
+ "action": "buy",
457
+ "payload": {
458
+ "type": "hourly"
459
+ }
460
+ }
461
+ }
462
+ },
463
+ {
464
+ "from": "khaleesi",
465
+ "amount": "10.000 HIVE",
466
+ "memo": {
467
+ "hiveContract": {
468
+ "id": "hivestream",
469
+ "name": "testlotto",
470
+ "action": "buy",
471
+ "payload": {
472
+ "type": "hourly"
473
+ }
474
+ }
475
+ }
476
+ },
477
+ {
478
+ "from": "sophie",
479
+ "amount": "10.000 HIVE",
480
+ "memo": {
481
+ "hiveContract": {
482
+ "id": "hivestream",
483
+ "name": "testlotto",
484
+ "action": "buy",
485
+ "payload": {
486
+ "type": "hourly"
487
+ }
488
+ }
489
+ }
490
+ },
491
+ {
492
+ "from": "daisy",
493
+ "amount": "10.000 HIVE",
494
+ "memo": {
495
+ "hiveContract": {
496
+ "id": "hivestream",
497
+ "name": "testlotto",
498
+ "action": "buy",
499
+ "payload": {
500
+ "type": "hourly"
501
+ }
502
+ }
503
+ }
504
+ },
505
+ {
506
+ "from": "scott",
507
+ "amount": "10.000 HIVE",
508
+ "memo": {
509
+ "hiveContract": {
510
+ "id": "hivestream",
511
+ "name": "testlotto",
512
+ "action": "buy",
513
+ "payload": {
514
+ "type": "hourly"
515
+ }
516
+ }
517
+ }
518
+ },
519
+ {
520
+ "from": "trustme",
521
+ "amount": "10.000 HIVE",
522
+ "memo": {
523
+ "hiveContract": {
524
+ "id": "hivestream",
525
+ "name": "testlotto",
526
+ "action": "buy",
527
+ "payload": {
528
+ "type": "hourly"
529
+ }
530
+ }
531
+ }
532
+ },
533
+ {
534
+ "from": "justinsunsucks",
535
+ "amount": "10.000 HIVE",
536
+ "memo": {
537
+ "hiveContract": {
538
+ "id": "hivestream",
539
+ "name": "testlotto",
540
+ "action": "buy",
541
+ "payload": {
542
+ "type": "hourly"
543
+ }
544
+ }
545
+ }
546
+ },
547
+ {
548
+ "from": "fuckjustinsun",
549
+ "amount": "10.000 HIVE",
550
+ "memo": {
551
+ "hiveContract": {
552
+ "id": "hivestream",
553
+ "name": "testlotto",
554
+ "action": "buy",
555
+ "payload": {
556
+ "type": "hourly"
557
+ }
558
+ }
559
+ }
560
+ },
561
+ {
562
+ "from": "hivechain",
563
+ "amount": "10.000 HIVE",
564
+ "memo": {
565
+ "hiveContract": {
566
+ "id": "hivestream",
567
+ "name": "testlotto",
568
+ "action": "buy",
569
+ "payload": {
570
+ "type": "hourly"
571
+ }
572
+ }
573
+ }
574
+ },
575
+ {
576
+ "from": "hivebees",
577
+ "amount": "10.000 HIVE",
578
+ "memo": {
579
+ "hiveContract": {
580
+ "id": "hivestream",
581
+ "name": "testlotto",
582
+ "action": "buy",
583
+ "payload": {
584
+ "type": "hourly"
585
+ }
586
+ }
587
+ }
588
+ },
589
+ {
590
+ "from": "workmeup",
591
+ "amount": "10.000 HIVE",
592
+ "memo": {
593
+ "hiveContract": {
594
+ "id": "hivestream",
595
+ "name": "testlotto",
596
+ "action": "buy",
597
+ "payload": {
598
+ "type": "hourly"
599
+ }
600
+ }
601
+ }
602
+ },
603
+ {
604
+ "from": "gettingangry",
605
+ "amount": "10.000 HIVE",
606
+ "memo": {
607
+ "hiveContract": {
608
+ "id": "hivestream",
609
+ "name": "testlotto",
610
+ "action": "buy",
611
+ "payload": {
612
+ "type": "hourly"
613
+ }
614
+ }
615
+ }
616
+ },
617
+ {
618
+ "from": "angermanagement",
619
+ "amount": "10.000 HIVE",
620
+ "memo": {
621
+ "hiveContract": {
622
+ "id": "hivestream",
623
+ "name": "testlotto",
624
+ "action": "buy",
625
+ "payload": {
626
+ "type": "hourly"
627
+ }
628
+ }
629
+ }
630
+ },
631
+ {
632
+ "from": "testingaccount",
633
+ "amount": "10.000 HIVE",
634
+ "memo": {
635
+ "hiveContract": {
636
+ "id": "hivestream",
637
+ "name": "testlotto",
638
+ "action": "buy",
639
+ "payload": {
640
+ "type": "hourly"
641
+ }
642
+ }
643
+ }
644
+ },
645
+ {
646
+ "from": "pleasestop",
647
+ "amount": "10.000 HIVE",
648
+ "memo": {
649
+ "hiveContract": {
650
+ "id": "hivestream",
651
+ "name": "testlotto",
652
+ "action": "buy",
653
+ "payload": {
654
+ "type": "hourly"
655
+ }
656
+ }
657
+ }
658
+ },
659
+ {
660
+ "from": "hmmyeah",
661
+ "amount": "10.000 HIVE",
662
+ "memo": {
663
+ "hiveContract": {
664
+ "id": "hivestream",
665
+ "name": "testlotto",
666
+ "action": "buy",
667
+ "payload": {
668
+ "type": "hourly"
669
+ }
670
+ }
671
+ }
672
+ },
673
+ {
674
+ "from": "areyouimpressed",
675
+ "amount": "10.000 HIVE",
676
+ "memo": {
677
+ "hiveContract": {
678
+ "id": "hivestream",
679
+ "name": "testlotto",
680
+ "action": "buy",
681
+ "payload": {
682
+ "type": "hourly"
683
+ }
684
+ }
685
+ }
686
+ },
687
+ {
688
+ "from": "shesaidno",
689
+ "amount": "10.000 HIVE",
690
+ "memo": {
691
+ "hiveContract": {
692
+ "id": "hivestream",
693
+ "name": "testlotto",
694
+ "action": "buy",
695
+ "payload": {
696
+ "type": "hourly"
697
+ }
698
+ }
699
+ }
700
+ },
701
+ {
702
+ "from": "whoishungry",
703
+ "amount": "10.000 HIVE",
704
+ "memo": {
705
+ "hiveContract": {
706
+ "id": "hivestream",
707
+ "name": "testlotto",
708
+ "action": "buy",
709
+ "payload": {
710
+ "type": "hourly"
711
+ }
712
+ }
713
+ }
714
+ },
715
+ {
716
+ "from": "crappydapp",
717
+ "amount": "10.000 HIVE",
718
+ "memo": {
719
+ "hiveContract": {
720
+ "id": "hivestream",
721
+ "name": "testlotto",
722
+ "action": "buy",
723
+ "payload": {
724
+ "type": "hourly"
725
+ }
726
+ }
727
+ }
728
+ }
729
729
  ]