forked from ruzyysmartt/Full-assets-repository
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path[.txt ruzyysmartt assets repos github
More file actions
1262 lines (1261 loc) · 73.6 KB
/
Copy path[.txt ruzyysmartt assets repos github
File metadata and controls
1262 lines (1261 loc) · 73.6 KB
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
[
{
"sha": "53bed9848c54e3bb7f98c7e4548ecdba79544194",
"node_id": "MDY6Q29tbWl0MjQxMTAzODMxOjUzYmVkOTg0OGM1NGUzYmI3Zjk4YzdlNDU0OGVjZGJhNzk1NDQxOTQ=",
"commit": {
"author": {
"name": "Michael - Blurpesec",
"email": "hahn.michael.f@gmail.com",
"date": "2020-01-31T17:41:54Z"
},
"committer": {
"name": "GitHub",
"email": "noreply@github.com",
"date": "2020-01-31T17:41:54Z"
},
"message": "Update dai and sai (#15)\n\n* added some data about tokens\r\n\r\n* further edits\r\n\r\n* added dai vs sai changes\r\n\r\n* added cc icons",
"tree": {
"sha": "998c27af3e0887e1bf7a5743b1c1d06984e5257c",
"url": "https://api.github.com/repos/github-ruzyysmartt-organizations/assets/git/trees/998c27af3e0887e1bf7a5743b1c1d06984e5257c"
},
"url": "https://api.github.com/repos/github-ruzyysmartt-organizations/assets/git/commits/53bed9848c54e3bb7f98c7e4548ecdba79544194",
"comment_count": 0,
"verification": {
"verified": true,
"reason": "valid",
"signature": "-----BEGIN PGP SIGNATURE-----\n\nwsBcBAABCAAQBQJeNGbiCRBK7hj4Ov3rIwAAdHIIAKxLgd9qIwbL/iOlnUsZbl1e\nrnEstR4TdKOw1F1LFL5TsTEeU8AxrsjjITvZxNPlrIXNJ5I0ZOOCpqjmQy80A8wg\n6GpIKWxowpx+NxO5VuTdJsJf9l73s7ovkQn6x/d4IBfI3x6sI1uNZ8YV5yuxEyHw\nGVva3iSDJFWke69xdZLTuXcLiJ5A2/S26iXiXCqjD4ljxzBK8nAJ2XNb8n734fJr\nob/tsOi/YAbDefMJYubZdsm6gxmsrfldPHLWR6jdu55KULrLewzawV5nGXMfaFic\nGRptSSPnJH8u1B3JfsgIjlL+hQH/M9TZkTNdg5VSvOqjayDoH4p8RTHmJNIk3Io=\n=OcFV\n-----END PGP SIGNATURE-----\n",
"payload": "tree 998c27af3e0887e1bf7a5743b1c1d06984e5257c\nparent cc8d215f0d3b86aa1865e6771dafc0a5b202cc2e\nauthor Michael - Blurpesec <hahn.michael.f@gmail.com> 1580492514 -0800\ncommitter GitHub <noreply@github.com> 1580492514 -0800\n\nUpdate dai and sai (#15)\n\n* added some data about tokens\r\n\r\n* further edits\r\n\r\n* added dai vs sai changes\r\n\r\n* added cc icons\r\n"
}
},
"url": "https://api.github.com/repos/github-ruzyysmartt-organizations/assets/commits/53bed9848c54e3bb7f98c7e4548ecdba79544194",
"html_url": "https://github.com/github-ruzyysmartt-organizations/assets/commit/53bed9848c54e3bb7f98c7e4548ecdba79544194",
"comments_url": "https://api.github.com/repos/github-ruzyysmartt-organizations/assets/commits/53bed9848c54e3bb7f98c7e4548ecdba79544194/comments",
"author": {
"login": "blurpesec",
"id": 29407814,
"node_id": "MDQ6VXNlcjI5NDA3ODE0",
"avatar_url": "https://avatars3.githubusercontent.com/u/29407814?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/blurpesec",
"html_url": "https://github.com/blurpesec",
"followers_url": "https://api.github.com/users/blurpesec/followers",
"following_url": "https://api.github.com/users/blurpesec/following{/other_user}",
"gists_url": "https://api.github.com/users/blurpesec/gists{/gist_id}",
"starred_url": "https://api.github.com/users/blurpesec/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/blurpesec/subscriptions",
"organizations_url": "https://api.github.com/users/blurpesec/orgs",
"repos_url": "https://api.github.com/users/blurpesec/repos",
"events_url": "https://api.github.com/users/blurpesec/events{/privacy}",
"received_events_url": "https://api.github.com/users/blurpesec/received_events",
"type": "User",
"site_admin": false
},
"committer": {
"login": "web-flow",
"id": 19864447,
"node_id": "MDQ6VXNlcjE5ODY0NDQ3",
"avatar_url": "https://avatars3.githubusercontent.com/u/19864447?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/web-flow",
"html_url": "https://github.com/web-flow",
"followers_url": "https://api.github.com/users/web-flow/followers",
"following_url": "https://api.github.com/users/web-flow/following{/other_user}",
"gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}",
"starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/web-flow/subscriptions",
"organizations_url": "https://api.github.com/users/web-flow/orgs",
"repos_url": "https://api.github.com/users/web-flow/repos",
"events_url": "https://api.github.com/users/web-flow/events{/privacy}",
"received_events_url": "https://api.github.com/users/web-flow/received_events",
"type": "User",
"site_admin": false
},
"parents": [
{
"sha": "cc8d215f0d3b86aa1865e6771dafc0a5b202cc2e",
"url": "https://api.github.com/repos/github-ruzyysmartt-organizations/assets/commits/cc8d215f0d3b86aa1865e6771dafc0a5b202cc2e",
"html_url": "https://github.com/github-ruzyysmartt-organizations/assets/commit/cc8d215f0d3b86aa1865e6771dafc0a5b202cc2e"
}
]
},
{
"sha": "cc8d215f0d3b86aa1865e6771dafc0a5b202cc2e",
"node_id": "MDY6Q29tbWl0MjQxMTAzODMxOmNjOGQyMTVmMGQzYjg2YWExODY1ZTY3NzFkYWZjMGE1YjIwMmNjMmU=",
"commit": {
"author": {
"name": "Michael - Blurpesec",
"email": "hahn.michael.f@gmail.com",
"date": "2019-12-17T02:53:58Z"
},
"committer": {
"name": "GitHub",
"email": "noreply@github.com",
"date": "2019-12-17T02:53:58Z"
},
"message": "Added auto cache bust (#14)",
"tree": {
"sha": "e655e5eab03835a8346526296b2c749f89e25b6e",
"url": "https://api.github.com/repos/github-ruzyysmartt-organizations/assets/git/trees/e655e5eab03835a8346526296b2c749f89e25b6e"
},
"url": "https://api.github.com/repos/github-ruzyysmartt-organizations/assets/git/commits/cc8d215f0d3b86aa1865e6771dafc0a5b202cc2e",
"comment_count": 0,
"verification": {
"verified": true,
"reason": "valid",
"signature": "-----BEGIN PGP SIGNATURE-----\n\nwsBcBAABCAAQBQJd+ENGCRBK7hj4Ov3rIwAAdHIIADnBmiINgFDUEdN7Q1cxXE7j\neSqXr+qOHrA1IOWEbb/3GjyB5xWW75/7BIBQFntTxbWyAxOkH0FAYI4hqhSRoK8v\nNixX1xlRDskUVER3YQ5LwSqwsC6FlT1G6BU/8U3akq15FJQjGIuRIOnFq+2Jcp5K\nI3XVdPC7K5pl8rcM5Ry290ez/DC/Ot2kvzyk86hy+j/b4+0SiGwioLPWrsOY1fD1\n+AWMDRw5cDxOj0/FINmGtSkFzk4Xqe/2HIr3LFhSnoZnYiTgzxh6crxvntx/epdH\nWFvsmK/dTT0FeVSnjVMbdvNirRejFDnuMCF16HNI/Ls3bxxNpLAlnRVG0a9f1y4=\n=5FGE\n-----END PGP SIGNATURE-----\n",
"payload": "tree e655e5eab03835a8346526296b2c749f89e25b6e\nparent 16ebd4d78040dbfffb0c8fa374b38cd2ae2021fa\nauthor Michael - Blurpesec <hahn.michael.f@gmail.com> 1576551238 -0800\ncommitter GitHub <noreply@github.com> 1576551238 -0800\n\nAdded auto cache bust (#14)\n\n"
}
},
"url": "https://api.github.com/repos/github-ruzyysmartt-organizations/assets/commits/cc8d215f0d3b86aa1865e6771dafc0a5b202cc2e",
"html_url": "https://github.com/github-ruzyysmartt-organizations/assets/commit/cc8d215f0d3b86aa1865e6771dafc0a5b202cc2e",
"comments_url": "https://api.github.com/repos/github-ruzyysmartt-organizations/assets/commits/cc8d215f0d3b86aa1865e6771dafc0a5b202cc2e/comments",
"author": {
"login": "blurpesec",
"id": 29407814,
"node_id": "MDQ6VXNlcjI5NDA3ODE0",
"avatar_url": "https://avatars3.githubusercontent.com/u/29407814?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/blurpesec",
"html_url": "https://github.com/blurpesec",
"followers_url": "https://api.github.com/users/blurpesec/followers",
"following_url": "https://api.github.com/users/blurpesec/following{/other_user}",
"gists_url": "https://api.github.com/users/blurpesec/gists{/gist_id}",
"starred_url": "https://api.github.com/users/blurpesec/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/blurpesec/subscriptions",
"organizations_url": "https://api.github.com/users/blurpesec/orgs",
"repos_url": "https://api.github.com/users/blurpesec/repos",
"events_url": "https://api.github.com/users/blurpesec/events{/privacy}",
"received_events_url": "https://api.github.com/users/blurpesec/received_events",
"type": "User",
"site_admin": false
},
"committer": {
"login": "web-flow",
"id": 19864447,
"node_id": "MDQ6VXNlcjE5ODY0NDQ3",
"avatar_url": "https://avatars3.githubusercontent.com/u/19864447?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/web-flow",
"html_url": "https://github.com/web-flow",
"followers_url": "https://api.github.com/users/web-flow/followers",
"following_url": "https://api.github.com/users/web-flow/following{/other_user}",
"gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}",
"starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/web-flow/subscriptions",
"organizations_url": "https://api.github.com/users/web-flow/orgs",
"repos_url": "https://api.github.com/users/web-flow/repos",
"events_url": "https://api.github.com/users/web-flow/events{/privacy}",
"received_events_url": "https://api.github.com/users/web-flow/received_events",
"type": "User",
"site_admin": false
},
"parents": [
{
"sha": "16ebd4d78040dbfffb0c8fa374b38cd2ae2021fa",
"url": "https://api.github.com/repos/github-ruzyysmartt-organizations/assets/commits/16ebd4d78040dbfffb0c8fa374b38cd2ae2021fa",
"html_url": "https://github.com/github-ruzyysmartt-organizations/assets/commit/16ebd4d78040dbfffb0c8fa374b38cd2ae2021fa"
}
]
},
{
"sha": "16ebd4d78040dbfffb0c8fa374b38cd2ae2021fa",
"node_id": "MDY6Q29tbWl0MjQxMTAzODMxOjE2ZWJkNGQ3ODA0MGRiZmZmYjBjOGZhMzc0YjM4Y2QyYWUyMDIxZmE=",
"commit": {
"author": {
"name": "Michael - Blurpesec",
"email": "hahn.michael.f@gmail.com",
"date": "2019-12-16T21:19:04Z"
},
"committer": {
"name": "GitHub",
"email": "noreply@github.com",
"date": "2019-12-16T21:19:04Z"
},
"message": "Added some new additions to asset mappings (#13)\n\n* added some data about tokens\r\n\r\n* further edits",
"tree": {
"sha": "1e622c1a57637b230511c2bdc4d4ad6cdbfb14a5",
"url": "https://api.github.com/repos/github-ruzyysmartt-organizations/assets/git/trees/1e622c1a57637b230511c2bdc4d4ad6cdbfb14a5"
},
"url": "https://api.github.com/repos/github-ruzyysmartt-organizations/assets/git/commits/16ebd4d78040dbfffb0c8fa374b38cd2ae2021fa",
"comment_count": 0,
"verification": {
"verified": true,
"reason": "valid",
"signature": "-----BEGIN PGP SIGNATURE-----\n\nwsBcBAABCAAQBQJd9/TICRBK7hj4Ov3rIwAAdHIIAJMUmAIZWFqzP2GSzx7glMGs\nlp5QWiJqRq6wc8gaKfMfHrbs5Cc7pvu1ypSlu9sVTcyRWTPo1rVO7Vm657Msdvij\nApwPh8F9mFvPR7Ke5s5vworp63PLdN6XPhh/4wDjK6q440xi98vu8P3yRiBzTsr6\nfM+ReXUY9IiYo8+rCTB77DQFhS7Ks8kc+ZilC3L7ggU6XjMdyMLJP4tBWpAMYTsg\n/feedFoY/9/IjsHuAOPExB6848veEgf28tUJfMdhLiUWbqIyPJIfsHXuNreT2Lmg\n5POfRiFiVlKNFYDRMMh18Ww9o4HYqBBlX45kzfZGXzuZB9fxDQEGEBi2fXtwOGs=\n=42yK\n-----END PGP SIGNATURE-----\n",
"payload": "tree 1e622c1a57637b230511c2bdc4d4ad6cdbfb14a5\nparent 540f16d465a30a329bdd132095734b3b5407d133\nauthor Michael - Blurpesec <hahn.michael.f@gmail.com> 1576531144 -0800\ncommitter GitHub <noreply@github.com> 1576531144 -0800\n\nAdded some new additions to asset mappings (#13)\n\n* added some data about tokens\r\n\r\n* further edits\r\n"
}
},
"url": "https://api.github.com/repos/github-ruzyysmartt-organizations/assets/commits/16ebd4d78040dbfffb0c8fa374b38cd2ae2021fa",
"html_url": "https://github.com/github-ruzyysmartt-organizations/assets/commit/16ebd4d78040dbfffb0c8fa374b38cd2ae2021fa",
"comments_url": "https://api.github.com/repos/github-ruzyysmartt-organizations/assets/commits/16ebd4d78040dbfffb0c8fa374b38cd2ae2021fa/comments",
"author": {
"login": "blurpesec",
"id": 29407814,
"node_id": "MDQ6VXNlcjI5NDA3ODE0",
"avatar_url": "https://avatars3.githubusercontent.com/u/29407814?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/blurpesec",
"html_url": "https://github.com/blurpesec",
"followers_url": "https://api.github.com/users/blurpesec/followers",
"following_url": "https://api.github.com/users/blurpesec/following{/other_user}",
"gists_url": "https://api.github.com/users/blurpesec/gists{/gist_id}",
"starred_url": "https://api.github.com/users/blurpesec/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/blurpesec/subscriptions",
"organizations_url": "https://api.github.com/users/blurpesec/orgs",
"repos_url": "https://api.github.com/users/blurpesec/repos",
"events_url": "https://api.github.com/users/blurpesec/events{/privacy}",
"received_events_url": "https://api.github.com/users/blurpesec/received_events",
"type": "User",
"site_admin": false
},
"committer": {
"login": "web-flow",
"id": 19864447,
"node_id": "MDQ6VXNlcjE5ODY0NDQ3",
"avatar_url": "https://avatars3.githubusercontent.com/u/19864447?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/web-flow",
"html_url": "https://github.com/web-flow",
"followers_url": "https://api.github.com/users/web-flow/followers",
"following_url": "https://api.github.com/users/web-flow/following{/other_user}",
"gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}",
"starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/web-flow/subscriptions",
"organizations_url": "https://api.github.com/users/web-flow/orgs",
"repos_url": "https://api.github.com/users/web-flow/repos",
"events_url": "https://api.github.com/users/web-flow/events{/privacy}",
"received_events_url": "https://api.github.com/users/web-flow/received_events",
"type": "User",
"site_admin": false
},
"parents": [
{
"sha": "540f16d465a30a329bdd132095734b3b5407d133",
"url": "https://api.github.com/repos/github-ruzyysmartt-organizations/assets/commits/540f16d465a30a329bdd132095734b3b5407d133",
"html_url": "https://github.com/github-ruzyysmartt-organizations/assets/commit/540f16d465a30a329bdd132095734b3b5407d133"
}
]
},
{
"sha": "540f16d465a30a329bdd132095734b3b5407d133",
"node_id": "MDY6Q29tbWl0MjQxMTAzODMxOjU0MGYxNmQ0NjVhMzBhMzI5YmRkMTMyMDk1NzM0YjNiNTQwN2QxMzM=",
"commit": {
"author": {
"name": "Michael - Blurpesec",
"email": "hahn.michael.f@gmail.com",
"date": "2019-12-02T18:35:21Z"
},
"committer": {
"name": "Maarten Zuidhoorn",
"email": "maarten@zuidhoorn.com",
"date": "2019-12-02T18:35:21Z"
},
"message": "Added dex.ag ids by symbol (#12)\n\n* added dex.ag ids by symbol\r\n\r\n* removed console.log and renamed some tings\r\n\r\n* added dexAgId to readme\r\n\r\n* rebuild list",
"tree": {
"sha": "f25b1688ad4cd9c33ac648424a8963ef98a33d77",
"url": "https://api.github.com/repos/github-ruzyysmartt-organizations/assets/git/trees/f25b1688ad4cd9c33ac648424a8963ef98a33d77"
},
"url": "https://api.github.com/repos/github-ruzyysmartt-organizations/assets/git/commits/540f16d465a30a329bdd132095734b3b5407d133",
"comment_count": 0,
"verification": {
"verified": false,
"reason": "unsigned",
"signature": null,
"payload": null
}
},
"url": "https://api.github.com/repos/github-ruzyysmartt-organizations/assets/commits/540f16d465a30a329bdd132095734b3b5407d133",
"html_url": "https://github.com/github-ruzyysmartt-organizations/assets/commit/540f16d465a30a329bdd132095734b3b5407d133",
"comments_url": "https://api.github.com/repos/github-ruzyysmartt-organizations/assets/commits/540f16d465a30a329bdd132095734b3b5407d133/comments",
"author": {
"login": "blurpesec",
"id": 29407814,
"node_id": "MDQ6VXNlcjI5NDA3ODE0",
"avatar_url": "https://avatars3.githubusercontent.com/u/29407814?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/blurpesec",
"html_url": "https://github.com/blurpesec",
"followers_url": "https://api.github.com/users/blurpesec/followers",
"following_url": "https://api.github.com/users/blurpesec/following{/other_user}",
"gists_url": "https://api.github.com/users/blurpesec/gists{/gist_id}",
"starred_url": "https://api.github.com/users/blurpesec/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/blurpesec/subscriptions",
"organizations_url": "https://api.github.com/users/blurpesec/orgs",
"repos_url": "https://api.github.com/users/blurpesec/repos",
"events_url": "https://api.github.com/users/blurpesec/events{/privacy}",
"received_events_url": "https://api.github.com/users/blurpesec/received_events",
"type": "User",
"site_admin": false
},
"committer": {
"login": "Mrtenz",
"id": 7503723,
"node_id": "MDQ6VXNlcjc1MDM3MjM=",
"avatar_url": "https://avatars2.githubusercontent.com/u/7503723?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Mrtenz",
"html_url": "https://github.com/Mrtenz",
"followers_url": "https://api.github.com/users/Mrtenz/followers",
"following_url": "https://api.github.com/users/Mrtenz/following{/other_user}",
"gists_url": "https://api.github.com/users/Mrtenz/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Mrtenz/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Mrtenz/subscriptions",
"organizations_url": "https://api.github.com/users/Mrtenz/orgs",
"repos_url": "https://api.github.com/users/Mrtenz/repos",
"events_url": "https://api.github.com/users/Mrtenz/events{/privacy}",
"received_events_url": "https://api.github.com/users/Mrtenz/received_events",
"type": "User",
"site_admin": false
},
"parents": [
{
"sha": "73fbdaf8eab8f010182155f34e3d327cf4eaea0a",
"url": "https://api.github.com/repos/github-ruzyysmartt-organizations/assets/commits/73fbdaf8eab8f010182155f34e3d327cf4eaea0a",
"html_url": "https://github.com/github-ruzyysmartt-organizations/assets/commit/73fbdaf8eab8f010182155f34e3d327cf4eaea0a"
}
]
},
{
"sha": "73fbdaf8eab8f010182155f34e3d327cf4eaea0a",
"node_id": "MDY6Q29tbWl0MjQxMTAzODMxOjczZmJkYWY4ZWFiOGYwMTAxODIxNTVmMzRlM2QzMjdjZjRlYWVhMGE=",
"commit": {
"author": {
"name": "Maarten Zuidhoorn",
"email": "maarten@zuidhoorn.com",
"date": "2019-11-22T18:38:07Z"
},
"committer": {
"name": "GitHub",
"email": "noreply@github.com",
"date": "2019-11-22T18:38:07Z"
},
"message": "Add more tests (#11)\n\n* Add more tests\r\n\r\n* Fix coverage",
"tree": {
"sha": "f9ffbf3631886ac30f156bd003a8342a1043ff97",
"url": "https://api.github.com/repos/github-ruzyysmartt-organizations/assets/git/trees/f9ffbf3631886ac30f156bd003a8342a1043ff97"
},
"url": "https://api.github.com/repos/github-ruzyysmartt-organizations/assets/git/commits/73fbdaf8eab8f010182155f34e3d327cf4eaea0a",
"comment_count": 0,
"verification": {
"verified": true,
"reason": "valid",
"signature": "-----BEGIN PGP SIGNATURE-----\n\nwsBcBAABCAAQBQJd2CsPCRBK7hj4Ov3rIwAAdHIIAAV5jxKWFdfJpx87x2HxAeCm\nIyjBO7U7TM89+qjzR/ZFb3PK5qBy6uzZeQLiTbkO5oAEw3PdNAkpNlM1fipWj7k4\n/dFy7tih+jCD2JaZT+4WFjNIjT2+g6t8OsnVV0npuM0Z1IEZDah09+1V5vl1NF9S\nLTyYKhN16ChjxdFb6DBe6s+i92kciJMHt59k1dpgK9DzlVEw3ajwL2l4vgLCmipj\nEJnQCIqU9d2UoS35gwe/qIV2isOlGJRBjgXCD68sU5vS6+uwDL2by80KqEiM8AZn\nLVyg+oqigGyKg1esGW8NawYDnTPD1NsLMyNWnWVUI2DSAHle+gI3ZtTQ+FECmJQ=\n=xQpi\n-----END PGP SIGNATURE-----\n",
"payload": "tree f9ffbf3631886ac30f156bd003a8342a1043ff97\nparent 8b9259b005043c75411b8ea8854ad97bc014d978\nauthor Maarten Zuidhoorn <maarten@zuidhoorn.com> 1574447887 +0100\ncommitter GitHub <noreply@github.com> 1574447887 +0100\n\nAdd more tests (#11)\n\n* Add more tests\r\n\r\n* Fix coverage\r\n"
}
},
"url": "https://api.github.com/repos/github-ruzyysmartt-organizations/assets/commits/73fbdaf8eab8f010182155f34e3d327cf4eaea0a",
"html_url": "https://github.com/github-ruzyysmartt-organizations/assets/commit/73fbdaf8eab8f010182155f34e3d327cf4eaea0a",
"comments_url": "https://api.github.com/repos/github-ruzyysmartt-organizations/assets/commits/73fbdaf8eab8f010182155f34e3d327cf4eaea0a/comments",
"author": {
"login": "Mrtenz",
"id": 7503723,
"node_id": "MDQ6VXNlcjc1MDM3MjM=",
"avatar_url": "https://avatars2.githubusercontent.com/u/7503723?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Mrtenz",
"html_url": "https://github.com/Mrtenz",
"followers_url": "https://api.github.com/users/Mrtenz/followers",
"following_url": "https://api.github.com/users/Mrtenz/following{/other_user}",
"gists_url": "https://api.github.com/users/Mrtenz/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Mrtenz/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Mrtenz/subscriptions",
"organizations_url": "https://api.github.com/users/Mrtenz/orgs",
"repos_url": "https://api.github.com/users/Mrtenz/repos",
"events_url": "https://api.github.com/users/Mrtenz/events{/privacy}",
"received_events_url": "https://api.github.com/users/Mrtenz/received_events",
"type": "User",
"site_admin": false
},
"committer": {
"login": "web-flow",
"id": 19864447,
"node_id": "MDQ6VXNlcjE5ODY0NDQ3",
"avatar_url": "https://avatars3.githubusercontent.com/u/19864447?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/web-flow",
"html_url": "https://github.com/web-flow",
"followers_url": "https://api.github.com/users/web-flow/followers",
"following_url": "https://api.github.com/users/web-flow/following{/other_user}",
"gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}",
"starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/web-flow/subscriptions",
"organizations_url": "https://api.github.com/users/web-flow/orgs",
"repos_url": "https://api.github.com/users/web-flow/repos",
"events_url": "https://api.github.com/users/web-flow/events{/privacy}",
"received_events_url": "https://api.github.com/users/web-flow/received_events",
"type": "User",
"site_admin": false
},
"parents": [
{
"sha": "8b9259b005043c75411b8ea8854ad97bc014d978",
"url": "https://api.github.com/repos/github-ruzyysmartt-organizations/assets/commits/8b9259b005043c75411b8ea8854ad97bc014d978",
"html_url": "https://github.com/github-ruzyysmartt-organizations/assets/commit/8b9259b005043c75411b8ea8854ad97bc014d978"
}
]
},
{
"sha": "8b9259b005043c75411b8ea8854ad97bc014d978",
"node_id": "MDY6Q29tbWl0MjQxMTAzODMxOjhiOTI1OWIwMDUwNDNjNzU0MTFiOGVhODg1NGFkOTdiYzAxNGQ5Nzg=",
"commit": {
"author": {
"name": "Maarten Zuidhoorn",
"email": "maarten@zuidhoorn.com",
"date": "2019-11-21T17:59:44Z"
},
"committer": {
"name": "GitHub",
"email": "noreply@github.com",
"date": "2019-11-21T17:59:44Z"
},
"message": "Update README (#10)\n\n* Update README\r\n\r\n* Add badges",
"tree": {
"sha": "2a88f3d17782adb8a0a109cd04a8d650d86f646c",
"url": "https://api.github.com/repos/github-ruzyysmartt-organizations/assets/git/trees/2a88f3d17782adb8a0a109cd04a8d650d86f646c"
},
"url": "https://api.github.com/repos/github-ruzyysmartt-organizations/assets/git/commits/8b9259b005043c75411b8ea8854ad97bc014d978",
"comment_count": 0,
"verification": {
"verified": true,
"reason": "valid",
"signature": "-----BEGIN PGP SIGNATURE-----\n\nwsBcBAABCAAQBQJd1tCQCRBK7hj4Ov3rIwAAdHIIABQNaJIAyqoanKV/hgzwFcYk\n44hSKZK5o4CJw7/S7CGCyA3phpqYjE0mGd6h3SKZGPph8X6B0l2debob09CjWYer\nUkNCK2Di5M4ZyN2zU6YxiWf+4wUHpERz8M3mJC6Z749Khad5bTHF/gziM9uOklIG\nUpEbVIz5q6WuKrLocGcuIkPECfR4KAS1tXUQ04m9jNXIl0pRC12qk6tOrCPgfK9z\nsJclm+eVYj7LNRDJlPhhCnNoaRm77sLEKkysAujLzqMvK9SarBlMybWaH0qT70Vt\nejtt7jjRkSNlM+ZOjPUcJkPhC1qEbpgGuBxHgp+e1b+QKV9OlyMkGrFHiZC8GAY=\n=nZ0R\n-----END PGP SIGNATURE-----\n",
"payload": "tree 2a88f3d17782adb8a0a109cd04a8d650d86f646c\nparent 4227b2119b675077c9a23f52511e6b662582166f\nauthor Maarten Zuidhoorn <maarten@zuidhoorn.com> 1574359184 +0100\ncommitter GitHub <noreply@github.com> 1574359184 +0100\n\nUpdate README (#10)\n\n* Update README\r\n\r\n* Add badges\r\n"
}
},
"url": "https://api.github.com/repos/github-ruzyysmartt-organizations/assets/commits/8b9259b005043c75411b8ea8854ad97bc014d978",
"html_url": "https://github.com/github-ruzyysmartt-organizations/assets/commit/8b9259b005043c75411b8ea8854ad97bc014d978",
"comments_url": "https://api.github.com/repos/github-ruzyysmartt-organizations/assets/commits/8b9259b005043c75411b8ea8854ad97bc014d978/comments",
"author": {
"login": "Mrtenz",
"id": 7503723,
"node_id": "MDQ6VXNlcjc1MDM3MjM=",
"avatar_url": "https://avatars2.githubusercontent.com/u/7503723?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Mrtenz",
"html_url": "https://github.com/Mrtenz",
"followers_url": "https://api.github.com/users/Mrtenz/followers",
"following_url": "https://api.github.com/users/Mrtenz/following{/other_user}",
"gists_url": "https://api.github.com/users/Mrtenz/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Mrtenz/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Mrtenz/subscriptions",
"organizations_url": "https://api.github.com/users/Mrtenz/orgs",
"repos_url": "https://api.github.com/users/Mrtenz/repos",
"events_url": "https://api.github.com/users/Mrtenz/events{/privacy}",
"received_events_url": "https://api.github.com/users/Mrtenz/received_events",
"type": "User",
"site_admin": false
},
"committer": {
"login": "web-flow",
"id": 19864447,
"node_id": "MDQ6VXNlcjE5ODY0NDQ3",
"avatar_url": "https://avatars3.githubusercontent.com/u/19864447?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/web-flow",
"html_url": "https://github.com/web-flow",
"followers_url": "https://api.github.com/users/web-flow/followers",
"following_url": "https://api.github.com/users/web-flow/following{/other_user}",
"gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}",
"starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/web-flow/subscriptions",
"organizations_url": "https://api.github.com/users/web-flow/orgs",
"repos_url": "https://api.github.com/users/web-flow/repos",
"events_url": "https://api.github.com/users/web-flow/events{/privacy}",
"received_events_url": "https://api.github.com/users/web-flow/received_events",
"type": "User",
"site_admin": false
},
"parents": [
{
"sha": "4227b2119b675077c9a23f52511e6b662582166f",
"url": "https://api.github.com/repos/github-ruzyysmartt-organizations/assets/commits/4227b2119b675077c9a23f52511e6b662582166f",
"html_url": "https://github.com/github-ruzyysmartt-organizations/assets/commit/4227b2119b675077c9a23f52511e6b662582166f"
}
]
},
{
"sha": "4227b2119b675077c9a23f52511e6b662582166f",
"node_id": "MDY6Q29tbWl0MjQxMTAzODMxOjQyMjdiMjExOWI2NzUwNzdjOWEyM2Y1MjUxMWU2YjY2MjU4MjE2NmY=",
"commit": {
"author": {
"name": "Maarten Zuidhoorn",
"email": "maarten@zuidhoorn.com",
"date": "2019-11-21T17:59:30Z"
},
"committer": {
"name": "GitHub",
"email": "noreply@github.com",
"date": "2019-11-21T17:59:30Z"
},
"message": "Fall back to existing ID if none found (#9)",
"tree": {
"sha": "116251ac989ae64bcf24553ca21eaa6441245bea",
"url": "https://api.github.com/repos/github-ruzyysmartt-organizations/assets/git/trees/116251ac989ae64bcf24553ca21eaa6441245bea"
},
"url": "https://api.github.com/repos/github-ruzyysmartt-organizations/assets/git/commits/4227b2119b675077c9a23f52511e6b662582166f",
"comment_count": 0,
"verification": {
"verified": true,
"reason": "valid",
"signature": "-----BEGIN PGP SIGNATURE-----\n\nwsBcBAABCAAQBQJd1tCCCRBK7hj4Ov3rIwAAdHIIAACUhL38vHcKzvB1lAN8yhjY\njhFFiEP4azT2TdkYdzSRLVG29und1RpxlSfTzINlgzCGWvfyXg+gxpAx29ePiNGY\nHtGjwysgO2nZkYjFCgvMmZDxmJ8NyMCsB99WWo3oCI/z8b2g7a6qVDjzx8ituGXC\ns+4frL0H1Dfec4DMHfG/4CN9oicZDf+h0I0pVX85xKhOuhuFcBF1b4b3Uw5zvf6x\na1Mt7eCBfR0dQ/prlgLl0CNa4mOTBmMLbdAru27VARV4fVGygPVtyXHMdHURwIAP\nPYInhkDihGg5zWUG/UmBqH66gdPOw9wQRk0SUeWzv0l57z0VilYg8210xRt3Vls=\n=Duqm\n-----END PGP SIGNATURE-----\n",
"payload": "tree 116251ac989ae64bcf24553ca21eaa6441245bea\nparent efc39ac3c3a947232e704d80c3a64e070a317537\nauthor Maarten Zuidhoorn <maarten@zuidhoorn.com> 1574359170 +0100\ncommitter GitHub <noreply@github.com> 1574359170 +0100\n\nFall back to existing ID if none found (#9)\n\n"
}
},
"url": "https://api.github.com/repos/github-ruzyysmartt-organizations/assets/commits/4227b2119b675077c9a23f52511e6b662582166f",
"html_url": "https://github.com/github-ruzyysmartt-organizations/assets/commit/4227b2119b675077c9a23f52511e6b662582166f",
"comments_url": "https://api.github.com/repos/github-ruzyysmartt-organizations/assets/commits/4227b2119b675077c9a23f52511e6b662582166f/comments",
"author": {
"login": "Mrtenz",
"id": 7503723,
"node_id": "MDQ6VXNlcjc1MDM3MjM=",
"avatar_url": "https://avatars2.githubusercontent.com/u/7503723?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Mrtenz",
"html_url": "https://github.com/Mrtenz",
"followers_url": "https://api.github.com/users/Mrtenz/followers",
"following_url": "https://api.github.com/users/Mrtenz/following{/other_user}",
"gists_url": "https://api.github.com/users/Mrtenz/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Mrtenz/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Mrtenz/subscriptions",
"organizations_url": "https://api.github.com/users/Mrtenz/orgs",
"repos_url": "https://api.github.com/users/Mrtenz/repos",
"events_url": "https://api.github.com/users/Mrtenz/events{/privacy}",
"received_events_url": "https://api.github.com/users/Mrtenz/received_events",
"type": "User",
"site_admin": false
},
"committer": {
"login": "web-flow",
"id": 19864447,
"node_id": "MDQ6VXNlcjE5ODY0NDQ3",
"avatar_url": "https://avatars3.githubusercontent.com/u/19864447?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/web-flow",
"html_url": "https://github.com/web-flow",
"followers_url": "https://api.github.com/users/web-flow/followers",
"following_url": "https://api.github.com/users/web-flow/following{/other_user}",
"gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}",
"starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/web-flow/subscriptions",
"organizations_url": "https://api.github.com/users/web-flow/orgs",
"repos_url": "https://api.github.com/users/web-flow/repos",
"events_url": "https://api.github.com/users/web-flow/events{/privacy}",
"received_events_url": "https://api.github.com/users/web-flow/received_events",
"type": "User",
"site_admin": false
},
"parents": [
{
"sha": "efc39ac3c3a947232e704d80c3a64e070a317537",
"url": "https://api.github.com/repos/github-ruzyysmartt-organizations/assets/commits/efc39ac3c3a947232e704d80c3a64e070a317537",
"html_url": "https://github.com/github-ruzyysmartt-organizations/assets/commit/efc39ac3c3a947232e704d80c3a64e070a317537"
}
]
},
{
"sha": "efc39ac3c3a947232e704d80c3a64e070a317537",
"node_id": "MDY6Q29tbWl0MjQxMTAzODMxOmVmYzM5YWMzYzNhOTQ3MjMyZTcwNGQ4MGMzYTY0ZTA3MGEzMTc1Mzc=",
"commit": {
"author": {
"name": "Michael - Blurpesec",
"email": "hahn.michael.f@gmail.com",
"date": "2019-11-21T17:18:37Z"
},
"committer": {
"name": "Maarten Zuidhoorn",
"email": "maarten@zuidhoorn.com",
"date": "2019-11-21T17:18:37Z"
},
"message": "update chainlink and dai (#8)",
"tree": {
"sha": "0215e469e4bc869f91caaf491a4d8d1abb73f1d5",
"url": "https://api.github.com/repos/github-ruzyysmartt-organizations/assets/git/trees/0215e469e4bc869f91caaf491a4d8d1abb73f1d5"
},
"url": "https://api.github.com/repos/github-ruzyysmartt-organizations/assets/git/commits/efc39ac3c3a947232e704d80c3a64e070a317537",
"comment_count": 0,
"verification": {
"verified": false,
"reason": "unsigned",
"signature": null,
"payload": null
}
},
"url": "https://api.github.com/repos/github-ruzyysmartt-organizations/assets/commits/efc39ac3c3a947232e704d80c3a64e070a317537",
"html_url": "https://github.com/github-ruzyysmartt-organizations/assets/commit/efc39ac3c3a947232e704d80c3a64e070a317537",
"comments_url": "https://api.github.com/repos/github-ruzyysmartt-organizations/assets/commits/efc39ac3c3a947232e704d80c3a64e070a317537/comments",
"author": {
"login": "blurpesec",
"id": 29407814,
"node_id": "MDQ6VXNlcjI5NDA3ODE0",
"avatar_url": "https://avatars3.githubusercontent.com/u/29407814?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/blurpesec",
"html_url": "https://github.com/blurpesec",
"followers_url": "https://api.github.com/users/blurpesec/followers",
"following_url": "https://api.github.com/users/blurpesec/following{/other_user}",
"gists_url": "https://api.github.com/users/blurpesec/gists{/gist_id}",
"starred_url": "https://api.github.com/users/blurpesec/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/blurpesec/subscriptions",
"organizations_url": "https://api.github.com/users/blurpesec/orgs",
"repos_url": "https://api.github.com/users/blurpesec/repos",
"events_url": "https://api.github.com/users/blurpesec/events{/privacy}",
"received_events_url": "https://api.github.com/users/blurpesec/received_events",
"type": "User",
"site_admin": false
},
"committer": {
"login": "Mrtenz",
"id": 7503723,
"node_id": "MDQ6VXNlcjc1MDM3MjM=",
"avatar_url": "https://avatars2.githubusercontent.com/u/7503723?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Mrtenz",
"html_url": "https://github.com/Mrtenz",
"followers_url": "https://api.github.com/users/Mrtenz/followers",
"following_url": "https://api.github.com/users/Mrtenz/following{/other_user}",
"gists_url": "https://api.github.com/users/Mrtenz/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Mrtenz/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Mrtenz/subscriptions",
"organizations_url": "https://api.github.com/users/Mrtenz/orgs",
"repos_url": "https://api.github.com/users/Mrtenz/repos",
"events_url": "https://api.github.com/users/Mrtenz/events{/privacy}",
"received_events_url": "https://api.github.com/users/Mrtenz/received_events",
"type": "User",
"site_admin": false
},
"parents": [
{
"sha": "a2e754a53f8132eea3e080ea6d174e3bb0022edc",
"url": "https://api.github.com/repos/github-ruzyysmartt-organizations/assets/commits/a2e754a53f8132eea3e080ea6d174e3bb0022edc",
"html_url": "https://github.com/github-ruzyysmartt-organizations/assets/commit/a2e754a53f8132eea3e080ea6d174e3bb0022edc"
}
]
},
{
"sha": "a2e754a53f8132eea3e080ea6d174e3bb0022edc",
"node_id": "MDY6Q29tbWl0MjQxMTAzODMxOmEyZTc1NGE1M2Y4MTMyZWVhM2UwODBlYTZkMTc0ZTNiYjAwMjJlZGM=",
"commit": {
"author": {
"name": "Michael - Blurpesec",
"email": "hahn.michael.f@gmail.com",
"date": "2019-11-19T04:30:50Z"
},
"committer": {
"name": "GitHub",
"email": "noreply@github.com",
"date": "2019-11-19T04:30:50Z"
},
"message": "updated readme to be accurate",
"tree": {
"sha": "f43e36bf59a295b5253c3200eaf3f36fd616d12b",
"url": "https://api.github.com/repos/github-ruzyysmartt-organizations/assets/git/trees/f43e36bf59a295b5253c3200eaf3f36fd616d12b"
},
"url": "https://api.github.com/repos/github-ruzyysmartt-organizations/assets/git/commits/a2e754a53f8132eea3e080ea6d174e3bb0022edc",
"comment_count": 0,
"verification": {
"verified": true,
"reason": "valid",
"signature": "-----BEGIN PGP SIGNATURE-----\n\nwsBcBAABCAAQBQJd02/6CRBK7hj4Ov3rIwAAdHIIAFf9AtbyY8IkeOkfMEaO4L/4\nag2BgYQYVrtD5KlMqW8Gi8w7PEZtrAxJcpPhL1dCjc7a3RxdqcdFv2Z0K//t9dMs\n7xv2dNIus4fqQ46h7rEd4TnjehwJo35LbhdVTaJX5UiRf5u+iu6DiQy3N4oqMywh\nou3w81/Hsyl7XpgNhaP7DLY3f8VHOZp3rS9fwsgiHWE4Wg1I9SnQgaIVEyUE6Ql6\nd1asbdFO6hgVqK8XhZcCGnu75ic65tekAOsOuim5ZTsV/eN0V3eSYPUWxPD258kL\na37B1y3rWE/FqW9sGOJIDK23xTvPWYlmmr+XWWjf/yGhfJru+XP+q5Jf48yQHm4=\n=y9xU\n-----END PGP SIGNATURE-----\n",
"payload": "tree f43e36bf59a295b5253c3200eaf3f36fd616d12b\nparent ea0b2eb54a610e6a41af9d3f7b925655a4298ffc\nauthor Michael - Blurpesec <hahn.michael.f@gmail.com> 1574137850 -0800\ncommitter GitHub <noreply@github.com> 1574137850 -0800\n\nupdated readme to be accurate"
}
},
"url": "https://api.github.com/repos/github-ruzyysmartt-organizations/assets/commits/a2e754a53f8132eea3e080ea6d174e3bb0022edc",
"html_url": "https://github.com/github-ruzyysmartt-organizations/assets/commit/a2e754a53f8132eea3e080ea6d174e3bb0022edc",
"comments_url": "https://api.github.com/repos/github-ruzyysmartt-organizations/assets/commits/a2e754a53f8132eea3e080ea6d174e3bb0022edc/comments",
"author": {
"login": "blurpesec",
"id": 29407814,
"node_id": "MDQ6VXNlcjI5NDA3ODE0",
"avatar_url": "https://avatars3.githubusercontent.com/u/29407814?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/blurpesec",
"html_url": "https://github.com/blurpesec",
"followers_url": "https://api.github.com/users/blurpesec/followers",
"following_url": "https://api.github.com/users/blurpesec/following{/other_user}",
"gists_url": "https://api.github.com/users/blurpesec/gists{/gist_id}",
"starred_url": "https://api.github.com/users/blurpesec/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/blurpesec/subscriptions",
"organizations_url": "https://api.github.com/users/blurpesec/orgs",
"repos_url": "https://api.github.com/users/blurpesec/repos",
"events_url": "https://api.github.com/users/blurpesec/events{/privacy}",
"received_events_url": "https://api.github.com/users/blurpesec/received_events",
"type": "User",
"site_admin": false
},
"committer": {
"login": "web-flow",
"id": 19864447,
"node_id": "MDQ6VXNlcjE5ODY0NDQ3",
"avatar_url": "https://avatars3.githubusercontent.com/u/19864447?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/web-flow",
"html_url": "https://github.com/web-flow",
"followers_url": "https://api.github.com/users/web-flow/followers",
"following_url": "https://api.github.com/users/web-flow/following{/other_user}",
"gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}",
"starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/web-flow/subscriptions",
"organizations_url": "https://api.github.com/users/web-flow/orgs",
"repos_url": "https://api.github.com/users/web-flow/repos",
"events_url": "https://api.github.com/users/web-flow/events{/privacy}",
"received_events_url": "https://api.github.com/users/web-flow/received_events",
"type": "User",
"site_admin": false
},
"parents": [
{
"sha": "ea0b2eb54a610e6a41af9d3f7b925655a4298ffc",
"url": "https://api.github.com/repos/github-ruzyysmartt-organizations/assets/commits/ea0b2eb54a610e6a41af9d3f7b925655a4298ffc",
"html_url": "https://github.com/github-ruzyysmartt-organizations/assets/commit/ea0b2eb54a610e6a41af9d3f7b925655a4298ffc"
}
]
},
{
"sha": "ea0b2eb54a610e6a41af9d3f7b925655a4298ffc",
"node_id": "MDY6Q29tbWl0MjQxMTAzODMxOmVhMGIyZWI1NGE2MTBlNmE0MWFmOWQzZjdiOTI1NjU1YTQyOThmZmM=",
"commit": {
"author": {
"name": "Michael - Blurpesec",
"email": "hahn.michael.f@gmail.com",
"date": "2019-11-19T04:30:23Z"
},
"committer": {
"name": "GitHub",
"email": "noreply@github.com",
"date": "2019-11-19T04:30:23Z"
},
"message": "swap to use cryptocompare Symbols instead of IDs (#7)",
"tree": {
"sha": "3f42abd21b1bef3550e7fa00cd62f5dae6d9d921",
"url": "https://api.github.com/repos/github-ruzyysmartt-organizations/assets/git/trees/3f42abd21b1bef3550e7fa00cd62f5dae6d9d921"
},
"url": "https://api.github.com/repos/github-ruzyysmartt-organizations/assets/git/commits/ea0b2eb54a610e6a41af9d3f7b925655a4298ffc",
"comment_count": 0,
"verification": {
"verified": true,
"reason": "valid",
"signature": "-----BEGIN PGP SIGNATURE-----\n\nwsBcBAABCAAQBQJd02/fCRBK7hj4Ov3rIwAAdHIIAIaxi7365vQacuhT0uHxDR7C\n4+0O1oMkS9coNQ+DgHgvOnEqH+7EehglvPsB4yEiQOECzeoi4PvxpXfs1uctuFEj\nXm3+0Wq260LD4wpNxbhAy4cyXzLl5nvMMRDutGix7nWfiMuBOO31caPGfQ+9TQvx\n0GC+J/XOMkpjFeC6tVSZtOGuIimF/rANyPSNWezc9ummy8NI698G9RDlzSBsyX78\njsPCaeDaHYSuKVZCHXx5jxZcJrxGF78FSh4t25jtxtAnFnWWlD6LMyiBIhiDEcEo\nN5+MAOgUPU6qYd7aheyNedXHtQd1UPPqt0+G2vmQS70AXswxdrQ3CoC69/vslVw=\n=GUTs\n-----END PGP SIGNATURE-----\n",
"payload": "tree 3f42abd21b1bef3550e7fa00cd62f5dae6d9d921\nparent a59ce1230d4e7a4781b3de2f04584a783520aaf7\nauthor Michael - Blurpesec <hahn.michael.f@gmail.com> 1574137823 -0500\ncommitter GitHub <noreply@github.com> 1574137823 -0500\n\nswap to use cryptocompare Symbols instead of IDs (#7)\n\n"
}
},
"url": "https://api.github.com/repos/github-ruzyysmartt-organizations/assets/commits/ea0b2eb54a610e6a41af9d3f7b925655a4298ffc",
"html_url": "https://github.com/github-ruzyysmartt-organizations/assets/commit/ea0b2eb54a610e6a41af9d3f7b925655a4298ffc",
"comments_url": "https://api.github.com/repos/github-ruzyysmartt-organizations/assets/commits/ea0b2eb54a610e6a41af9d3f7b925655a4298ffc/comments",
"author": {
"login": "blurpesec",
"id": 29407814,
"node_id": "MDQ6VXNlcjI5NDA3ODE0",
"avatar_url": "https://avatars3.githubusercontent.com/u/29407814?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/blurpesec",
"html_url": "https://github.com/blurpesec",
"followers_url": "https://api.github.com/users/blurpesec/followers",
"following_url": "https://api.github.com/users/blurpesec/following{/other_user}",
"gists_url": "https://api.github.com/users/blurpesec/gists{/gist_id}",
"starred_url": "https://api.github.com/users/blurpesec/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/blurpesec/subscriptions",
"organizations_url": "https://api.github.com/users/blurpesec/orgs",
"repos_url": "https://api.github.com/users/blurpesec/repos",
"events_url": "https://api.github.com/users/blurpesec/events{/privacy}",
"received_events_url": "https://api.github.com/users/blurpesec/received_events",
"type": "User",
"site_admin": false
},
"committer": {
"login": "web-flow",
"id": 19864447,
"node_id": "MDQ6VXNlcjE5ODY0NDQ3",
"avatar_url": "https://avatars3.githubusercontent.com/u/19864447?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/web-flow",
"html_url": "https://github.com/web-flow",
"followers_url": "https://api.github.com/users/web-flow/followers",
"following_url": "https://api.github.com/users/web-flow/following{/other_user}",
"gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}",
"starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/web-flow/subscriptions",
"organizations_url": "https://api.github.com/users/web-flow/orgs",
"repos_url": "https://api.github.com/users/web-flow/repos",
"events_url": "https://api.github.com/users/web-flow/events{/privacy}",
"received_events_url": "https://api.github.com/users/web-flow/received_events",
"type": "User",
"site_admin": false
},
"parents": [
{
"sha": "a59ce1230d4e7a4781b3de2f04584a783520aaf7",
"url": "https://api.github.com/repos/github-ruzyysmartt-organizations/assets/commits/a59ce1230d4e7a4781b3de2f04584a783520aaf7",
"html_url": "https://github.com/github-ruzyysmartt-organizations/assets/commit/a59ce1230d4e7a4781b3de2f04584a783520aaf7"
}
]
},
{
"sha": "a59ce1230d4e7a4781b3de2f04584a783520aaf7",
"node_id": "MDY6Q29tbWl0MjQxMTAzODMxOmE1OWNlMTIzMGQ0ZTdhNDc4MWIzZGUyZjA0NTg0YTc4MzUyMGFhZjc=",
"commit": {
"author": {
"name": "Michael - Blurpesec",
"email": "hahn.michael.f@gmail.com",
"date": "2019-11-19T02:26:46Z"
},
"committer": {
"name": "GitHub",
"email": "noreply@github.com",
"date": "2019-11-19T02:26:46Z"
},
"message": "expanded coincap api pull (#5)",
"tree": {
"sha": "5765bffba3e171c3ea87c48a4669fa7576049d83",
"url": "https://api.github.com/repos/github-ruzyysmartt-organizations/assets/git/trees/5765bffba3e171c3ea87c48a4669fa7576049d83"
},
"url": "https://api.github.com/repos/github-ruzyysmartt-organizations/assets/git/commits/a59ce1230d4e7a4781b3de2f04584a783520aaf7",
"comment_count": 0,
"verification": {
"verified": true,
"reason": "valid",
"signature": "-----BEGIN PGP SIGNATURE-----\n\nwsBcBAABCAAQBQJd01LmCRBK7hj4Ov3rIwAAdHIIAEicWxa9pvQmB3oTjpuGL8xR\n/XfkvWOtflquhasRA58WBcK0rJssIxhspb2vmC1ZSb+M+BIpcQ/w7O7uCYc4VWbz\n9ONuhIIDRtuDe5BrBIVclPBU7PTROAeNJrQ96dYB0oHN3Gg8BDdAJGQkFVoU8zn7\nooXqosN7LaX3L1TMyGqBNX/hNW1oQ+4PREPJQKPSJnnDq6oUcahfWA/Im3rwnBj+\nT1YAP+gLiaa51MBpkq2NJCJELtW6OYzNDUAq2hJWjM9AB1jXcd95WcpLoRtF40af\naKui3XNXO28hp1YVh81YtopWg1s1h4G9Va2e/rW07912jiptzzh7W/Ws55Y87lc=\n=f++z\n-----END PGP SIGNATURE-----\n",
"payload": "tree 5765bffba3e171c3ea87c48a4669fa7576049d83\nparent b769c65aba2418c0c8cb3cd6f866d51183825e54\nauthor Michael - Blurpesec <hahn.michael.f@gmail.com> 1574130406 -0500\ncommitter GitHub <noreply@github.com> 1574130406 -0500\n\nexpanded coincap api pull (#5)\n\n"
}
},
"url": "https://api.github.com/repos/github-ruzyysmartt-organizations/assets/commits/a59ce1230d4e7a4781b3de2f04584a783520aaf7",
"html_url": "https://github.com/github-ruzyysmartt-organizations/assets/commit/a59ce1230d4e7a4781b3de2f04584a783520aaf7",
"comments_url": "https://api.github.com/repos/github-ruzyysmartt-organizations/assets/commits/a59ce1230d4e7a4781b3de2f04584a783520aaf7/comments",
"author": {
"login": "blurpesec",
"id": 29407814,
"node_id": "MDQ6VXNlcjI5NDA3ODE0",
"avatar_url": "https://avatars3.githubusercontent.com/u/29407814?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/blurpesec",
"html_url": "https://github.com/blurpesec",
"followers_url": "https://api.github.com/users/blurpesec/followers",
"following_url": "https://api.github.com/users/blurpesec/following{/other_user}",
"gists_url": "https://api.github.com/users/blurpesec/gists{/gist_id}",
"starred_url": "https://api.github.com/users/blurpesec/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/blurpesec/subscriptions",
"organizations_url": "https://api.github.com/users/blurpesec/orgs",
"repos_url": "https://api.github.com/users/blurpesec/repos",
"events_url": "https://api.github.com/users/blurpesec/events{/privacy}",
"received_events_url": "https://api.github.com/users/blurpesec/received_events",
"type": "User",
"site_admin": false
},
"committer": {
"login": "web-flow",
"id": 19864447,
"node_id": "MDQ6VXNlcjE5ODY0NDQ3",
"avatar_url": "https://avatars3.githubusercontent.com/u/19864447?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/web-flow",
"html_url": "https://github.com/web-flow",
"followers_url": "https://api.github.com/users/web-flow/followers",
"following_url": "https://api.github.com/users/web-flow/following{/other_user}",
"gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}",
"starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/web-flow/subscriptions",
"organizations_url": "https://api.github.com/users/web-flow/orgs",
"repos_url": "https://api.github.com/users/web-flow/repos",
"events_url": "https://api.github.com/users/web-flow/events{/privacy}",
"received_events_url": "https://api.github.com/users/web-flow/received_events",
"type": "User",
"site_admin": false
},
"parents": [
{
"sha": "b769c65aba2418c0c8cb3cd6f866d51183825e54",
"url": "https://api.github.com/repos/github-ruzyysmartt-organizations/assets/commits/b769c65aba2418c0c8cb3cd6f866d51183825e54",
"html_url": "https://github.com/github-ruzyysmartt-organizations/assets/commit/b769c65aba2418c0c8cb3cd6f866d51183825e54"
}
]
},
{
"sha": "b769c65aba2418c0c8cb3cd6f866d51183825e54",
"node_id": "MDY6Q29tbWl0MjQxMTAzODMxOmI3NjljNjVhYmEyNDE4YzBjOGNiM2NkNmY4NjZkNTExODM4MjVlNTQ=",
"commit": {
"author": {
"name": "Maarten Zuidhoorn",
"email": "maarten@zuidhoorn.com",
"date": "2019-11-14T20:50:31Z"
},
"committer": {
"name": "GitHub",
"email": "noreply@github.com",
"date": "2019-11-14T20:50:31Z"
},
"message": "Refactor script to remove unnecessary entries (#4)",
"tree": {
"sha": "e96f83d6e19c9ee09d3942955b49311bf0a1e981",
"url": "https://api.github.com/repos/github-ruzyysmartt-organizations/assets/git/trees/e96f83d6e19c9ee09d3942955b49311bf0a1e981"
},
"url": "https://api.github.com/repos/github-ruzyysmartt-organizations/assets/git/commits/b769c65aba2418c0c8cb3cd6f866d51183825e54",
"comment_count": 0,
"verification": {
"verified": true,
"reason": "valid",
"signature": "-----BEGIN PGP SIGNATURE-----\n\nwsBcBAABCAAQBQJdzb4XCRBK7hj4Ov3rIwAAdHIIAIjqRZaVrcVvXa2GhL4pQHme\nPB30rpHfXZmKBbOrI1HgcOoDUhSO6PHZKCjs7OqEl625TAp8MyCTYxvdZXWvRazX\nUIXznyQl09urAPkeu/CgYXOvHjZW8y/MUQJfmVO7qfqcWOYTRnURwKahGzoPQceK\nwF1wQI1zvR3djfcnvXuHXj1L7OG3N8SqykbqnnrAzEeBeNusMSDYnSzZt9aIbqjD\nzcWqEC/Oul2kgcIEsGV1sYofWQCbh8wrDImeR+5vztD8ydpGoC5zl65dNmWv8xV3\njGhT4tU3G8l7lwQqqZ5+uqK6FjIYL6jwzTZcKIy6Qyxl4rd/My9F0jU4FS0mKbU=\n=GGad\n-----END PGP SIGNATURE-----\n",
"payload": "tree e96f83d6e19c9ee09d3942955b49311bf0a1e981\nparent 937ced8fa735c7c86ae7e84795f7e7c58c588a89\nauthor Maarten Zuidhoorn <maarten@zuidhoorn.com> 1573764631 +0100\ncommitter GitHub <noreply@github.com> 1573764631 +0100\n\nRefactor script to remove unnecessary entries (#4)\n\n"
}
},
"url": "https://api.github.com/repos/github-ruzyysmartt-organizations/assets/commits/b769c65aba2418c0c8cb3cd6f866d51183825e54",
"html_url": "https://github.com/github-ruzyysmartt-organizations/assets/commit/b769c65aba2418c0c8cb3cd6f866d51183825e54",
"comments_url": "https://api.github.com/repos/github-ruzyysmartt-organizations/assets/commits/b769c65aba2418c0c8cb3cd6f866d51183825e54/comments",
"author": {
"login": "Mrtenz",
"id": 7503723,
"node_id": "MDQ6VXNlcjc1MDM3MjM=",
"avatar_url": "https://avatars2.githubusercontent.com/u/7503723?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Mrtenz",
"html_url": "https://github.com/Mrtenz",
"followers_url": "https://api.github.com/users/Mrtenz/followers",
"following_url": "https://api.github.com/users/Mrtenz/following{/other_user}",
"gists_url": "https://api.github.com/users/Mrtenz/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Mrtenz/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Mrtenz/subscriptions",
"organizations_url": "https://api.github.com/users/Mrtenz/orgs",
"repos_url": "https://api.github.com/users/Mrtenz/repos",
"events_url": "https://api.github.com/users/Mrtenz/events{/privacy}",
"received_events_url": "https://api.github.com/users/Mrtenz/received_events",
"type": "User",
"site_admin": false
},
"committer": {
"login": "web-flow",
"id": 19864447,
"node_id": "MDQ6VXNlcjE5ODY0NDQ3",
"avatar_url": "https://avatars3.githubusercontent.com/u/19864447?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/web-flow",
"html_url": "https://github.com/web-flow",
"followers_url": "https://api.github.com/users/web-flow/followers",
"following_url": "https://api.github.com/users/web-flow/following{/other_user}",
"gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}",
"starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/web-flow/subscriptions",
"organizations_url": "https://api.github.com/users/web-flow/orgs",
"repos_url": "https://api.github.com/users/web-flow/repos",
"events_url": "https://api.github.com/users/web-flow/events{/privacy}",
"received_events_url": "https://api.github.com/users/web-flow/received_events",
"type": "User",
"site_admin": false
},
"parents": [
{
"sha": "937ced8fa735c7c86ae7e84795f7e7c58c588a89",
"url": "https://api.github.com/repos/github-ruzyysmartt-organizations/assets/commits/937ced8fa735c7c86ae7e84795f7e7c58c588a89",
"html_url": "https://github.com/github-ruzyysmartt-organizations/assets/commit/937ced8fa735c7c86ae7e84795f7e7c58c588a89"
}
]
},
{
"sha": "937ced8fa735c7c86ae7e84795f7e7c58c588a89",
"node_id": "MDY6Q29tbWl0MjQxMTAzODMxOjkzN2NlZDhmYTczNWM3Yzg2YWU3ZTg0Nzk1ZjdlN2M1OGM1ODhhODk=",
"commit": {
"author": {
"name": "Maarten Zuidhoorn",
"email": "maarten@zuidhoorn.com",
"date": "2019-11-14T15:13:47Z"
},
"committer": {
"name": "GitHub",
"email": "noreply@github.com",
"date": "2019-11-14T15:13:47Z"
},
"message": "Fix auto deployment (#3)\n\n* Fix auto deployment\r\n\r\n* Remove --delete flag",
"tree": {
"sha": "c3ba5831f1a331c15a9a665e74a1bd0713b06dc4",
"url": "https://api.github.com/repos/github-ruzyysmartt-organizations/assets/git/trees/c3ba5831f1a331c15a9a665e74a1bd0713b06dc4"
},
"url": "https://api.github.com/repos/github-ruzyysmartt-organizations/assets/git/commits/937ced8fa735c7c86ae7e84795f7e7c58c588a89",
"comment_count": 0,
"verification": {
"verified": true,
"reason": "valid",
"signature": "-----BEGIN PGP SIGNATURE-----\n\nwsBcBAABCAAQBQJdzW8rCRBK7hj4Ov3rIwAAdHIIAE3Ac/RPGlYHI1dJwbXRltDq\nl8WU4S0ZWkpENowlzLZwck6EJTGIE1XnpypZ4rJxFj3/IIvYmpV9IsGvnSgwJQ+2\neEllzZfa7y6QzK1eIXc9aazAiZituf0UrtmphjdUUO1SDqDvbUA961m7epaKiJqF\nYPOIErbq5uQI5oJwpPsVO7F2ggOQADRij4h92CWdHZPlahs8vZbEv8tqCDd/9HYq\ncVerlCAuKXEsNo8L2FlR+DP6SVq7m32H6A8oW94zhiqD01XHbptrPOysG0mSnkMA\n9sYRqPj0j1FtqXQzIMh50cbHPom36qJCdaVdaIVaekKAbDWzEMkBxVpoHodqqDY=\n=ens0\n-----END PGP SIGNATURE-----\n",
"payload": "tree c3ba5831f1a331c15a9a665e74a1bd0713b06dc4\nparent 68e90947b74601b137df24c450eaef4777abdd01\nauthor Maarten Zuidhoorn <maarten@zuidhoorn.com> 1573744427 +0100\ncommitter GitHub <noreply@github.com> 1573744427 +0100\n\nFix auto deployment (#3)\n\n* Fix auto deployment\r\n\r\n* Remove --delete flag\r\n"
}
},
"url": "https://api.github.com/repos/github-ruzyysmartt-organizations/assets/commits/937ced8fa735c7c86ae7e84795f7e7c58c588a89",
"html_url": "https://github.com/github-ruzyysmartt-organizations/assets/commit/937ced8fa735c7c86ae7e84795f7e7c58c588a89",
"comments_url": "https://api.github.com/repos/github-ruzyysmartt-organizations/assets/commits/937ced8fa735c7c86ae7e84795f7e7c58c588a89/comments",
"author": {
"login": "Mrtenz",
"id": 7503723,
"node_id": "MDQ6VXNlcjc1MDM3MjM=",
"avatar_url": "https://avatars2.githubusercontent.com/u/7503723?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Mrtenz",
"html_url": "https://github.com/Mrtenz",
"followers_url": "https://api.github.com/users/Mrtenz/followers",
"following_url": "https://api.github.com/users/Mrtenz/following{/other_user}",
"gists_url": "https://api.github.com/users/Mrtenz/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Mrtenz/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Mrtenz/subscriptions",
"organizations_url": "https://api.github.com/users/Mrtenz/orgs",
"repos_url": "https://api.github.com/users/Mrtenz/repos",
"events_url": "https://api.github.com/users/Mrtenz/events{/privacy}",
"received_events_url": "https://api.github.com/users/Mrtenz/received_events",
"type": "User",
"site_admin": false
},