-
Notifications
You must be signed in to change notification settings - Fork 55
/
newssources.js
8936 lines (8935 loc) · 395 KB
/
newssources.js
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
const newssources = {
// general
general: [
{
name: "CoinDesk",
feed: "https://www.coindesk.com/arc/outboundfeeds/rss/?outputType=xml",
site: "https://coindesk.com",
about: "CoinDesk is the leading digital media, events and information services company for the crypto asset and blockchain technology community. Its mandate is to inform, educate and connect the global community as the authoritative daily news provider dedicated to chronicling the space.",
pic: "@/assets/news/coindesk.svg",
},
{
name: "Cointelegraph",
feed: "https://cointelegraph.com/rss",
site: "https://cointelegraph.com",
about: "Cointelegraph is the leading independent digital media resource covering a wide range of news on blockchain technology, crypto assets, and emerging fintech trends. Each day our team delivers the most accurate and up-to-date news from both the decentralized and centralized worlds.",
pic: "@/assets/news/cointelegraph.svg",
},
{
name: "Blockonomi",
feed: "https://blockonomi.com/feed",
site: "https://blockonomi.com",
about: "Blockonomi is a fast-growing publication launched in 2017 which aims to cover all aspects of Cryptocurrencies, fintech and the blockchain economy. We focus on bringing you the latest unbiased news, information articles, reviews and tutorials to help you gain an understanding.",
pic: "@/assets/news/blockonomi.svg",
},
{
name: "CryptoSlate",
feed: "https://cryptoslate.com/feed",
site: "https://cryptoslate.com",
about: "CryptoSlate was founded in mid-2017 by Seattle-based technology entrepreneurs, Nate Whitehill and Matthew Blancarte. CryptoSlate's mission is to foster an informed crypto-community through accurate, objective, and timely blockchain and cryptocurrency news coverage.",
pic: "@/assets/news/cryptoslate.svg",
},
{
name: "NewsBTC",
feed: "https://www.newsbtc.com/feed",
site: "https://www.newsbtc.com",
about: "NewsBTC is a premier news and resource platform, working since October 2013 to bring quality news content, reviews, technical analysis and other unique insights to the ever-growing cryptocurrency community.",
pic: "@/assets/news/newsbtc.svg",
},
{
name: "Bitcoin Magazine",
feed: "https://bitcoinmagazine.com/feed",
site: "https://bitcoinmagazine.com",
about: "Bitcoin Magazine is the oldest and most established source of news, information and expert commentary on Bitcoin, its underlying blockchain technology and the industry that has grown up around it. Founded by Mihai Alisie and Vitalik Buterin, the creator of Ethereum, in May 2012",
pic: "@/assets/news/bitcoinmagazine.svg",
},
// {
// name: "/r/CryptoCurrency",
// feed: "https://www.reddit.com/r/CryptoCurrency/.rss",
// site: "https://www.reddit.com/r/CryptoCurrency",
// about: "Subreddit for the discussion of CryptoCurrency 'The official source for CryptoCurrency News, Discussion & Analysis.'",
// pic: "@/assets/news/reddit.svg",
// },
// {
// name: "/r/gpumining",
// feed: "https://www.reddit.com/r/gpumining/.rss",
// site: "https://www.reddit.com/r/gpumining",
// about: "Subreddit for the discussion of GPU mining 'The community of GPU mining enthusiasts, both professionals and hobbyists.'",
// pic: "@/assets/news/reddit.svg",
// },
// {
// name: "/r/bitcoin",
// feed: "https://www.reddit.com/r/bitcoin/.rss",
// site: "https://www.reddit.com/r/bitcoin",
// about: "Subreddit for the discussion of Bitcoin 'The official source for CryptoCurrency News, Discussion & Analysis.'",
// pic: "@/assets/news/reddit.svg",
// },
// {
// name: "/r/btc",
// feed: "https://www.reddit.com/r/btc/.rss",
// site: "https://www.reddit.com/r/btc",
// about: "Subreddit for the discussion of Bitcoin '/r/btc was created to foster and support free and open Bitcoin discussion, Bitcoin news, and exclusive AMA (Ask Me Anything) interviews from top Bitcoin industry leaders!'",
// pic: "@/assets/news/reddit.svg",
// },
// {
// name: "/r/BitCoinMining",
// feed: "https://www.reddit.com/r/BitCoinMining/.rss",
// site: "https://www.reddit.com/r/BitCoinMining",
// about: "Subreddit for the discussion of BitCoinMining 'The official bitcoin mining forum / subreddit / chat room / place to be!'",
// pic: "@/assets/news/reddit.svg",
// },
// {
// name: "Medium Topic Cryptocurrency",
// feed: "https://medium.com/feed/topic/cryptocurrency",
// site: "https://medium.com/topic/cryptocurrency",
// about: "Cryptocurrency on Medium: An ode to the anti-banks.",
// pic: "@/assets/news/medium.svg",
// },
],
// asset specific
assets: {
zelcash: [
{
name: "Flux Blog",
feed: "https://fluxofficial.medium.com/feed",
site: "https://fluxofficial.medium.com",
about: "Blog source for all things Flux, officially, from the Zelcore Team.",
pic: "@/assets/logos/FLUX.svg",
},
{
name: "Flux Twitter",
feed: "https://rss.app/feeds/RwkHCp2Q16Yz99nE.xml",
site: "https://twitter.com/RunOnFlux",
about: "Official Flux Twitter.",
pic: "@/assets/logos/FLUX.svg",
},
{
name: "Zelcore Twitter",
feed: "https://rss.app/feeds/ael0ZqAdoP0hsZIT.xml",
site: "https://twitter.com/zelcore_io",
about: "Official zelcore Twitter.",
pic: "@/assets/logos/FLUX.svg",
},
],
testnet: [
{
name: "Flux Blog",
feed: "https://fluxofficial.medium.com/feed",
site: "https://fluxofficial.medium.com",
about: "Blog source for all things Flux, officially, from the Zelcore Team.",
pic: "@/assets/logos/FLUX.svg",
},
{
name: "Flux Twitter",
feed: "https://rss.app/feeds/RwkHCp2Q16Yz99nE.xml",
site: "https://twitter.com/RunOnFlux",
about: "Official Flux Twitter.",
pic: "@/assets/logos/FLUX.svg",
},
{
name: "Zelcore Twitter",
feed: "https://rss.app/feeds/ael0ZqAdoP0hsZIT.xml",
site: "https://twitter.com/zelcore_io",
about: "Official zelcore Twitter.",
pic: "@/assets/logos/FLUX.svg",
},
],
bitcoin: [
{
name: "Bitcoin News",
feed: "https://www.reddit.com/r/bitcoin/.rss",
site: "https://www.reddit.com/r/bitcoin",
about: "Subreddit for the discussion of Bitcoin 'The official source for CryptoCurrency News, Discussion & Analysis.'",
pic: "@/assets/logos/BTC.svg",
},
],
ethereum: [
{
name: "Ethereum Reddit",
feed: "https://www.reddit.com/r/ethereum/.rss",
site: "https://www.reddit.com/r/ethereum",
about: "Ethereum Reddit with the latest news and announcements",
pic: "@/assets/logos/ETH.svg",
},
{
name: "Ethereum Twitter",
feed: "https://rss.app/feeds/aDDmxI7YNo3DGzXo.xml",
site: "https://twitter.com/ethereum",
about: "Official ethereum Twitter.",
pic: "@/assets/logos/ETH.svg",
},
],
litecoin: [
{
name: "Litecoin Foundation Blog",
feed: "https://blog.litecoin.org/rss",
site: "https://blog.litecoin.org",
about: "Blog related to Litecoin cryptocurrency",
pic: "@/assets/logos/LTC.svg",
},
{
name: "Litecoin Twitter",
feed: "https://rss.app/feeds/0rycizFwILgnCQxK.xml",
site: "https://twitter.com/litecoin",
about: "Official litecoin Twitter.",
pic: "@/assets/logos/LTC.svg",
},
],
zcash: [
{
name: "Zcash Twitter",
feed: "https://rss.app/feeds/QhLLuJkVaZQ0JQwQ.xml",
site: "https://twitter.com/electriccoinco",
about: "Official zcash Twitter.",
pic: "@/assets/logos/ZEC.svg",
},
],
bitcoinz: [
{
name: "BitcoinZ Twitter",
feed: "https://rss.app/feeds/edLdZLMgdpXHrjvJ.xml",
site: "https://twitter.com/bitcoinzteam",
about: "BitcoinZ - 100% community focused and ran Zcash fork.",
pic: "@/assets/logos/BTCZ.svg",
},
],
ravencoin: [
{
name: "Ravencoin Twitter",
feed: "https://rss.app/feeds/Df6CxIMlIoytAyQR.xml",
site: "https://twitter.com/ravencoin",
about: "Ravencoin is a peer-to-peer blockchain, handling the efficient creation and transfer of assets from one party to another.",
pic: "@/assets/logos/RVN.svg",
},
],
bitcore: [
{
name: "Bitcore Twitter",
feed: "https://rss.app/feeds/lfKWouhQ8kFqb2zB.xml",
site: "https://twitter.com/Bitcore_BTX",
about: "Bitcore is a cryptocurrency that is based on 0.15.2 of Bitcoin Core.",
pic: "@/assets/logos/BTX.svg",
},
],
binance: [
{
name: "Binance Blog",
feed: "https://medium.com/feed/@binance",
site: "https://medium.com/@binance",
about: "Binance Exchange provides cryptocurrency trading for fintech and blockchain enthusiasts globally, with multilingual support over a variety of services.",
pic: "@/assets/logos/BNB.svg",
},
{
name: "Binance Twitter",
feed: "https://rss.app/feeds/8vFkLzEdwKqBLpqq.xml",
site: "https://twitter.com/bnbchain",
about: "Official BNB chain Twitter",
pic: "@/assets/logos/BNB.svg",
},
],
bnbbinance: [
{
name: "Binance Blog",
feed: "https://medium.com/feed/@binance",
site: "https://medium.com/@binance",
about: "Binance Exchange provides cryptocurrency trading for fintech and blockchain enthusiasts globally, with multilingual support over a variety of services.",
pic: "@/assets/logos/BNB.svg",
},
{
name: "Binance Twitter",
feed: "https://rss.app/feeds/8vFkLzEdwKqBLpqq.xml",
site: "https://twitter.com/bnbchain",
about: "Official BNB chain Twitter",
pic: "@/assets/logos/BNB.svg",
},
],
sonm: [
{
name: "Sonm Blog",
feed: "https://medium.com/feed/@sonm",
site: "https://medium.com/@sonm",
about: "Sonm, Global Fog Computing Platform",
pic: "@/assets/logos/SONM.svg",
},
{
name: "Sonm Twitter",
feed: "https://rss.app/feeds/G910fAypgEX18AI9.xml",
site: "https://twitter.com/sonmdevelopment",
about: "Official Sonm Twitter",
pic: "@/assets/logos/SONM.svg",
},
],
omisego: [
{
name: "OmiseGO Blog",
feed: "https://medium.com/feed/@omise_go",
site: "https://medium.com/@omise_go",
about: "OmiseGO is an impact driven and technology first company that builds on blockchain to enable access to financial services that are fast, fair and secure. ",
pic: "@/assets/logos/OMG.svg",
},
],
zilliqa: [
{
name: "Zilliqa Blog",
feed: "https://blog.zilliqa.com/feed",
site: "https://blog.zilliqa.com",
about: "Next generation, high-throughput blockchain platform",
pic: "@/assets/logos/ZIL.svg",
},
{
name: "Zilliqa Twitter",
feed: "https://rss.app/feeds/4XbRLvQd7kBBMWGb.xml",
site: "https://twitter.com/zilliqa",
about: "Official Zilliqa Twitter",
pic: "@/assets/logos/ZIL.svg",
},
],
zrx: [
{
name: "0x Blog",
feed: "https://blog.0xproject.com/feed",
site: "https://blog.0xproject.com",
about: "0x is an open protocol that allows token to token trading on decentralized exchanges and relayers. Initially it has been built for the trading of ERC20 tokens, but has been built in such a way that it could easily be integrated into other chains in the future.",
pic: "@/assets/logos/ZRX.svg",
},
{
name: "0x Project Twitter",
feed: "https://rss.app/feeds/fZ2IqB3tay1DYQI6.xml",
site: "https://twitter.com/0xproject",
about: "Official 0x Project Twitter",
pic: "@/assets/logos/ZRX.svg",
},
],
golem: [
{
name: "Golem Blog",
feed: "https://blog.golemproject.net/rss",
site: "https://blog.golemproject.net",
about: "Golem (GNT) is a peer-to-peer decentralized marketplace for computing power.",
pic: "@/assets/logos/GNT.svg",
},
{
name: "Golem Twitter",
feed: "https://rss.app/feeds/DyU82yosN9Sr1aZy.xml",
site: "https://twitter.com/golemproject",
about: "Official Golem Twitter",
pic: "@/assets/logos/GNT.svg",
},
],
kucoin: [
{
name: "Kucoin Blog",
feed: "https://rss.app/feeds/gOa8TdWvEeJze5VN.xml",
site: "https://twitter.com/kucoincom",
about: "Kucoin is a cryptocurrency exchange.",
pic: "@/assets/logos/KCS.svg",
},
],
bat: [
{
name: "Basic Attention token Blog",
feed: "https://medium.com/feed/@AttentionToken",
site: "https://medium.com/@AttentionToken",
about: "The token aims to correctly price user attention within the platform. Advertisers pay BAT to website publishers for the attention of users. ",
pic: "@/assets/logos/BAT.svg",
},
{
name: "Basic Attention Twitter",
feed: "https://rss.app/feeds/Bibd8JKPRm9Hc1si.xml",
site: "https://twitter.com/AttentionToken",
about: "Official Basic Attention Token (BAT) Twitter",
pic: "@/assets/logos/BAT.svg",
},
],
maker: [
{
name: "MakerDAO Blog",
feed: "https://blog.makerdao.com/feed",
site: "https://blog.makerdao.com",
about: "Maker is comprised of a stablecoin, collateral loans, and decentralized governance.",
pic: "@/assets/logos/MKR.svg",
},
{
name: "Maker DAO Twitter",
feed: "https://rss.app/feeds/uY50Ho8GINRBfpmS.xml",
site: "https://twitter.com/MakerDAO",
about: "Official Maker DAO Twitter",
pic: "@/assets/logos/MKR.svg",
},
],
kyber: [
{
name: "Kyber Blog",
feed: "https://blog.kyber.network/feed",
site: "https://blog.kyber.network",
about: "Kyber’s on-chain liquidity protocol allows decentralized token swaps to be integrated into any application, enabling value exchange to be performed seamlessly between all parties in the ecosystem.",
pic: "@/assets/logos/KNCL.svg",
},
{
name: "Kyber Twitter",
feed: "https://rss.app/feeds/TGtBCjNweQqZjMgD.xml",
site: "https://twitter.com/kybernetwork",
about: "Official Kyber Twitter",
pic: "@/assets/logos/KNCL.svg",
},
],
enigma: [
{
name: "Enigma Blog",
feed: "need feed",
site: "https://blog.enigma.co/@EnigmaMPC",
about: "Enigma is building a privacy layer for the decentralized web. Our protocol enables scalable, end-to-end decentralized applications",
pic: "@/assets/logos/ENG.svg",
},
],
tenx: [
{
name: "TenX Blog",
feed: "https://blog.tenx.tech/feed",
site: "https://blog.tenx.tech",
about: "Be in full control. Hold, send and receive popular cryptocurrencies such as Bitcoin, Ethereum, and Litecoin— right at your fingertips.",
pic: "@/assets/logos/PAY.svg",
},
{
name: "TenX Twitter",
feed: "https://rss.app/feeds/ri6bLDuFO7QG38Aj.xml",
site: "https://twitter.com/tenxwallet",
about: "Official TenX Twitter",
pic: "@/assets/logos/PAY.svg",
},
],
substratum: [
{
name: "Substratum Blog",
feed: "https://medium.com/feed/@SubstratumNet",
site: "https://medium.com/@SubstratumNet",
about: "Substratum is an open-source network that allows anyone to allocate spare computing resources to make the internet a free and fair place for the entire world.",
pic: "@/assets/logos/SUB.svg",
},
{
name: "Substratum Twitter",
feed: "https://rss.app/feeds/3WO2jiD0efGi9qlr.xml",
site: "https://twitter.com/substratumnet",
about: "Official Substratum Twitter",
pic: "@/assets/logos/SUB.svg",
},
],
civic: [
{
name: "Civic Blog",
feed: "https://www.civic.com/blog/feed",
site: "https://www.civic.com/blog",
about: "Civic is giving businesses & individuals the tools to control and protect identities.",
pic: "@/assets/logos/CVC.svg",
},
{
name: "Civic Twitter",
feed: "https://rss.app/feeds/c45TFpG6FUY9XuCG.xml",
site: "https://twitter.com/civickey",
about: "Official Civic Twitter",
pic: "@/assets/logos/CVC.svg",
},
],
stox: [
{
name: "Stox Blog",
feed: "https://blog.stox.com/feed",
site: "https://blog.stox.com",
about: "Predict on the hottest markets, create your own predictions, and make profit on one platform",
pic: "@/assets/logos/STOX.svg",
},
{
name: "Stox Twitter",
feed: "https://rss.app/feeds/bo9ACn2xkZwPXG59.xml",
site: "https://twitter.com/stx_coin",
about: "Official Stox Twitter",
pic: "@/assets/logos/STOX.svg",
},
],
bitcoingold: [
{
name: "Bitcoingold Blog",
feed: "https://medium.com/feed/@btcgpu",
site: "https://medium.com/@btcgpu",
about: "BTG is a cryptocurrency with Bitcoin fundamentals, mined on common GPUs instead of specialty ASICs.",
pic: "@/assets/logos/BTG.svg",
},
{
name: "Bitcoingold Twitter",
feed: "https://rss.app/feeds/j6AR9WrIxauTy4Ii.xml",
site: "https://twitter.com/bitcoingold",
about: "Official Bitcoingold Twitter",
pic: "@/assets/logos/BTG.svg",
},
],
snowgem: [
{
name: "Snowgem Blog",
feed: "https://snowgem.org/blog?format=feed&type=rss",
site: "https://snowgem.org/blog",
about: "SnowGem is a cryptocurrency that is forked from Zcash with the addition of masternodes.",
pic: "@/assets/logos/XSG.svg",
},
],
gemlink: [
{
name: "Gemlink Twitter",
feed: "https://rss.app/feeds/JW8chf0TDwGvzQyo.xml",
site: "https://twitter.com/gemlinkt",
about: "Gemlink is one of the currencies that ensure the anonymity of transactions, so it is worth considering your investment if privacy is particularly important to you. ",
pic: "@/assets/logos/GEMLINK.svg",
},
],
btcp: [
{
name: "BTCP Blog",
feed: "https://medium.com/feed/@bitcoinprivate",
site: "https://medium.com/@bitcoinprivate",
about: "Fork of Zclassic and Bitcoin",
pic: "@/assets/logos/BTCP.svg",
},
{
name: "BTCP Twitter",
feed: "https://rss.app/feeds/bKtZrJL3eUJe0pvo.xml",
site: "https://twitter.com/bitcoinprivate",
about: "Official Bitcoin Private [BTCP] Twitter",
pic: "@/assets/logos/BTCP.svg",
},
],
anon: [
{
name: "Anon Blog",
feed: "https://medium.com/feed/anonymous-bitcoin",
site: "https://medium.com/anonymous-bitcoin",
about: "ANON is an advancement of the technology of both the Bitcoin and ZClassic blockchain through a co-fork of both cryptocurrencies.",
pic: "@/assets/logos/ANON.svg",
},
{
name: "Anon Twitter",
feed: "https://rss.app/feeds/rz7jUpFGUWc9mWwd.xml",
site: "https://twitter.com/ANON_WeAreANON",
about: "Official Anon Twitter",
pic: "@/assets/logos/ANON.svg",
},
],
zen: [
{
name: "Horizen Blog",
feed: "https://blog.zenprotocol.com/feed",
site: "https://blog.zenprotocol.com",
about: "Create financial instruments, applications, and contractual obligations - secured by a trustless and decentralized network.",
pic: "@/assets/logos/ZEN.svg",
},
{
name: "Horizen Twitter",
feed: "https://rss.app/feeds/C2TvtZvOOlbZtc4U.xml",
site: "https://twitter.com/horizenglobal",
about: "Official Horizen Twitter",
pic: "@/assets/logos/ZEN.svg",
},
],
safecoin: [
{
name: "Safecoin Twitter",
feed: "https://rss.app/feeds/tfZxlxBTpFvE2pJF.xml",
site: "https://twitter.com/safecoins",
about: "Safecoin is the cryptocurrency of the SAFE (Secure Access For Everyone) network.",
pic: "@/assets/logos/SAFE.svg",
},
],
komodo: [
{
name: "Komodo Blog",
feed: "https://medium.com/feed/@komodoplatform",
site: "https://medium.com/@komodoplatform",
about: "Komodo is an end-to-end blockchain infrastructure solutions provider. Recognized as one of the world's most innovative projects",
pic: "@/assets/logos/KMD.svg",
},
{
name: "Komodo Twitter",
feed: "https://rss.app/feeds/uGlz5nkakVjI3ixA.xml",
site: "https://twitter.com/KomodoPlatform",
about: "Official Komodo Twitter",
pic: "@/assets/logos/KMD.svg",
},
],
zcoin: [
{
name: "Zcoin Medium",
feed: "https://medium.com/feed/@zcoin",
site: "https://medium.com/@zcoin",
about: "Firo (FIRO) formerly Zcoin (XZC) is a cryptocurrency focused on privacy and decentralization. Firo recent accomplishment is a privacy protocol Lelantus. It is also the first coin to implement the Zerocoin protocol that enables financial privacy through the power of zero knowledge proofs with a focus on making privacy easy to use. It is also set to be the first to release MTP an ASIC resistant, anti-botnet proof of work algorithm that remains lightweight to verify to ensure fair distribution of coins and decentralized security.\r\n\r\nZcoin is an open source decentralized cryptocurrency that focuses on achieving privacy and anonymity for its users while transacting. To achieve this privacy and anonymity, Zcoin uses zero-knowledge proofs via Zerocoin protocol which is one of the most cited cryptography papers at this point in time. In other words, when you transact using <a href=\"https://www.coingecko.com/en/coins/bitcoin\">Bitcoin</a> or <a href=\"https://www.coingecko.com/en/coins/ethereum\">Ethereum</a> or something similar, your transaction history is always linked to your coins by default which makes you vulnerable. That, because all it takes is one link to your personal information or IP to find out the origin of the coins.However, if you transact using Zcoin’s Zerocoin feature, none of your transaction histories is linked to the actual coins and only the receiver and sender know that you have actually exchanged funds.\r\n\r\nZerocoin is a cryptocurrency proposed by Johns Hopkins University professor Matthew D. Green and graduate students Ian Miers and Christina Garman as an extension to the Bitcoin protocol that would add true cryptographic anonymity to Bitcoin transactions. Zerocoin was first implemented into a fully functional cryptocurrency released to the public by Poramin Insom, as Zcoin who is also the lead developer, in September 2016. At the initial stage, Zcoin uses the Lyra2z algorithm for proof of work, then they will transition to a Merkle Tree proof of work algorithm, known as MTP. MTP is a unique memory hard algorithm that aims to solve several problems. Memory hard algorithms help prevent the development of ASICs which lead to centralized mining farms. \r\n\r\nMemory hard algorithms also prevent the use of botnets infecting computers for mining purposes. If a botnet was using up multiple gigs of memory, you’d be likely to notice something is wrong. “The basic concept is that it should establish the same price/cost for a single computation unit on all platforms meaning that there is no single device that should gain a significant advantage over another for the same price hence promoting egalitarian computing.",
pic: "@/assets/logos/FIRO.svg",
},
{
name: "Zcoin Medium 2",
feed: "https://medium.com/feed/@firo-financial-privacy",
site: "https://medium.com/@firo-financial-privacy",
about: "Firo (FIRO) formerly Zcoin (XZC) is a cryptocurrency focused on privacy and decentralization. Firo recent accomplishment is a privacy protocol Lelantus. It is also the first coin to implement the Zerocoin protocol that enables financial privacy through the power of zero knowledge proofs with a focus on making privacy easy to use. It is also set to be the first to release MTP an ASIC resistant, anti-botnet proof of work algorithm that remains lightweight to verify to ensure fair distribution of coins and decentralized security.\r\n\r\nZcoin is an open source decentralized cryptocurrency that focuses on achieving privacy and anonymity for its users while transacting. To achieve this privacy and anonymity, Zcoin uses zero-knowledge proofs via Zerocoin protocol which is one of the most cited cryptography papers at this point in time. In other words, when you transact using <a href=\"https://www.coingecko.com/en/coins/bitcoin\">Bitcoin</a> or <a href=\"https://www.coingecko.com/en/coins/ethereum\">Ethereum</a> or something similar, your transaction history is always linked to your coins by default which makes you vulnerable. That, because all it takes is one link to your personal information or IP to find out the origin of the coins.However, if you transact using Zcoin’s Zerocoin feature, none of your transaction histories is linked to the actual coins and only the receiver and sender know that you have actually exchanged funds.\r\n\r\nZerocoin is a cryptocurrency proposed by Johns Hopkins University professor Matthew D. Green and graduate students Ian Miers and Christina Garman as an extension to the Bitcoin protocol that would add true cryptographic anonymity to Bitcoin transactions. Zerocoin was first implemented into a fully functional cryptocurrency released to the public by Poramin Insom, as Zcoin who is also the lead developer, in September 2016. At the initial stage, Zcoin uses the Lyra2z algorithm for proof of work, then they will transition to a Merkle Tree proof of work algorithm, known as MTP. MTP is a unique memory hard algorithm that aims to solve several problems. Memory hard algorithms help prevent the development of ASICs which lead to centralized mining farms. \r\n\r\nMemory hard algorithms also prevent the use of botnets infecting computers for mining purposes. If a botnet was using up multiple gigs of memory, you’d be likely to notice something is wrong. “The basic concept is that it should establish the same price/cost for a single computation unit on all platforms meaning that there is no single device that should gain a significant advantage over another for the same price hence promoting egalitarian computing.",
pic: "@/assets/logos/FIRO.svg",
},
{
name: "Zcoin Twitter",
feed: "https://rss.app/feeds/KAZpf9renhlH4O72.xml",
site: "https://twitter.com/zcoinofficial",
about: "Official Zcoin Twitter.",
pic: "@/assets/logos/FIRO.svg",
},
{
name: "Zcoin Twitter 2",
feed: "https://rss.app/feeds/FbDSS12SkPaLne7c.xml",
site: "https://twitter.com/firoorg",
about: "Official Firo Twitter.",
pic: "@/assets/logos/FIRO.svg",
},
],
usdt: [
{
name: "Tether Reddit",
feed: "https://reddit.com/r/Tether/.rss",
site: "https://reddit.com/r/Tether",
about: "USDT is a stablecoin (stable-value cryptocurrency) that mirrors the price of the U.S. dollar, issued by a Hong Kong-based company Tether.",
pic: "@/assets/logos/USDT.svg",
},
{
name: "Tether Twitter",
feed: "https://rss.app/feeds/xJRDF7TtcLWgwx91.xml",
site: "https://twitter.com/tether_to",
about: "Official USDT Twitter",
pic: "@/assets/logos/USDT.svg",
},
],
usdterc: [
{
name: "Tether Reddit",
feed: "https://reddit.com/r/Tether/.rss",
site: "https://reddit.com/r/Tether",
about: "USDT is a stablecoin (stable-value cryptocurrency) that mirrors the price of the U.S. dollar, issued by a Hong Kong-based company Tether.",
pic: "@/assets/logos/USDT.svg",
},
{
name: "Tether Twitter",
feed: "https://rss.app/feeds/xJRDF7TtcLWgwx91.xml",
site: "https://twitter.com/tether_to",
about: "Official USDT Twitter",
pic: "@/assets/logos/USDT.svg",
},
],
zero: [
{
name: "Zero Blog",
feed: "https://medium.com/feed/@zerocurrency",
site: "https://medium.com/@zerocurrency",
about: "Zerocoin is a project to fix a major weakness in Bitcoin: the lack of privacy guarantees we take for granted in using credit cards and cash. Our goal is to build a cryptocurrency where your neighbors, friends and enemies can’t see what you bought or for how much.",
pic: "@/assets/logos/ZER.svg",
},
{
name: "Zero Twitter",
feed: "https://rss.app/feeds/gd79zJZjj8ySL5dr.xml",
site: "https://twitter.com/ZeroCurrencies",
about: "Official Zero Twitter",
pic: "@/assets/logos/ZER.svg",
},
],
bitcoincash: [
{
name: "BitcoinCash Blog",
feed: "https://news.bitcoin.com/feed",
site: "https://news.bitcoin.com",
about: "Bitcoin Cash is a fork of Bitcoin. It has bigger blocks.",
pic: "@/assets/logos/BCH.svg",
},
],
arcblock: [
{
name: "ArcBlock Blog",
feed: "https://medium.com/feed/arcblock",
site: "https://medium.com/arcblock",
about: "The World’s First Blockchain Ecosystem for Building and Deploying Decentralized Applications",
pic: "@/assets/logos/ARC.svg",
},
{
name: "ArcBlock Twitter",
feed: "https://rss.app/feeds/J7skrV0xZT34Ykhr.xml",
site: "https://twitter.com/DeFi_ARC",
about: "Official ArcBlock Twitter",
pic: "@/assets/logos/ARC.svg",
},
],
adex: [
{
name: "Adex Blog",
feed: "https://medium.com/feed/the-adex-blog",
site: "https://medium.com/the-adex-blog",
about: "AdEx is an open-source, blockchain based, decentralised digital ad exchange platform which uses Ethereum smart contracts",
pic: "@/assets/logos/ADX.svg",
},
{
name: "Adex Twitter",
feed: "https://rss.app/feeds/BarGARa6nOeAMWPK.xml",
site: "https://twitter.com/AdEx_Ads",
about: "Official Adex Twitter",
pic: "@/assets/logos/ADX.svg",
},
],
aeternity: [
{
name: "Aeternity Blog",
feed: "https://blog.aeternity.com/feed",
site: "https://blog.aeternity.com",
about: "æternity is a scalable blockchain platform that enables high-speed transacting, purely-functional smart contracts, and decentralized oracles.",
pic: "@/assets/logos/AE.svg",
},
{
name: "Aeternity Twitter",
feed: "https://rss.app/feeds/mtMjjUBDC7jptgKf.xml",
site: "https://twitter.com/aelfblockchain",
about: "Official Aeternity Twitter",
pic: "@/assets/logos/AE.svg",
},
],
airswap: [
{
name: "Airswap Blog",
feed: "https://medium.com/feed/@airswap",
site: "https://medium.com/@airswap",
about: "AirSwap is a peer-to-peer trading network built on Ethereum. Our mission is to empower people through global, frictionless trade.",
pic: "@/assets/logos/AST.svg",
},
{
name: "Airswap Twitter",
feed: "https://rss.app/feeds/jQo3jiCIWX2zCQCH.xml",
site: "https://twitter.com/airswap",
about: "Official Airswap Twitter",
pic: "@/assets/logos/AST.svg",
},
],
bigbom: [
{
name: "Bigbomb Blog",
feed: "https://medium.com/feed/bigbomeco",
site: "https://medium.com/bigbomeco",
about: "Bigbom's application ecosystem provides wide sets of features like optimization, contract sign, ads tracking, ads payment among other features.",
pic: "@/assets/logos/BBO.svg",
},
],
appcoins: [
{
name: "AppCoins Blog",
feed: "https://medium.com/feed/@appcoins",
site: "https://medium.com/@appcoins",
about: "The first ICO serving 200 million users to create a trusted economy without intermediaries. Supported by Aptoide App Store.",
pic: "@/assets/logos/APPC.svg",
},
{
name: "AppCoins Twitter",
feed: "https://rss.app/feeds/N3zgtDtYi8McJGpy.xml",
site: "https://twitter.com/appcoinsproject",
about: "Official AppCoins Twitter",
pic: "@/assets/logos/APPC.svg",
},
],
bluzelle: [
{
name: "Bluzelle Blog",
feed: "https://medium.com/feed/@Bluzelle",
site: "https://medium.com/@Bluzelle",
about: "Bluzelle is a smart, in-memory data store technology, used as a cache or database. Highly available, durable and globally distributed.",
pic: "@/assets/logos/BLZ.svg",
},
{
name: "Bluzelle Twitter",
feed: "https://rss.app/feeds/LUBpahhk2d1J8lAd.xml",
site: "https://twitter.com/bluzellehq",
about: "Official Bluzelle Twitter",
pic: "@/assets/logos/BLZ.svg",
},
],
bancor: [
{
name: "Bancor Blog",
feed: "https://medium.com/feed/@bancor",
site: "https://medium.com/@bancor",
about: "Bancor Protocol is a standard for the creation of Smart Tokens™, cryptocurrencies with built-in convertibility directly through their smart contracts.",
pic: "@/assets/logos/BNT.svg",
},
{
name: "Bancor Twitter",
feed: "https://rss.app/feeds/IOJzHnmzduKq1oZA.xml",
site: "https://twitter.com/Carbondefixyz",
about: "Official Bancor Twitter",
pic: "@/assets/logos/BNT.svg",
},
],
coinfi: [
{
name: "Coinfi Blog",
feed: "https://blog.coinfi.com/feed",
site: "https://blog.coinfi.com",
about: "Crypto market intelligence platform",
pic: "@/assets/logos/COFI.svg",
},
{
name: "Coinfi Twitter",
feed: "https://rss.app/feeds/pTo0jIbBHjpjqWzo.xml",
site: "https://twitter.com/coin_fi",
about: "Official Coinfi Twitter",
pic: "@/assets/logos/COFI.svg",
},
],
dai: [
{
name: "Sai Blog",
feed: "https://medium.com/feed/@MakerDAO",
site: "https://medium.com/@MakerDAO",
about: "Sai is an asset-backed, hard currency for the 21st century. The first decentralized stablecoin on the Ethereum blockchain.",
pic: "@/assets/logos/SAI.svg",
},
{
name: "Sai Twitter",
feed: "https://rss.app/feeds/uY50Ho8GINRBfpmS.xml",
site: "https://twitter.com/MakerDAO",
about: "Official Sai Twitter",
pic: "@/assets/logos/SAI.svg",
},
],
digixgoldtoken: [
{
name: "Digix Gold Token Blog",
feed: "https://medium.com/feed/digix",
site: "https://medium.com/digix",
about: "Using blockchain technology, DigixDAO represent physical gold with DGX tokens, where 1 DGX represents 1 gram of gold on Ethereum.",
pic: "@/assets/logos/DGX.svg",
},
{
name: "Digix Gold Token Twitter",
feed: "https://rss.app/feeds/XtIyyMPYFd6Dud0e.xml",
site: "https://twitter.com/digixglobal",
about: "Official Digix Gold Token Twitter",
pic: "@/assets/logos/DGX.svg",
},
],
electrify: [
{
name: "Electrify Blog",
feed: "https://medium.com/feed/electrifyasia",
site: "https://medium.com/electrifyasia",
about: "ELECTRIFY is the first retail electricity marketplace in Southeast-Asia addressing the need for transparency and security in the consumption of energy.",
pic: "@/assets/logos/ELEC.svg",
},
{
name: "Electrify Twitter",
feed: "https://rss.app/feeds/NEUDdwkSK80pgAuU.xml",
site: "https://twitter.com/electrifyasia",
about: "Official Electrify Twitter",
pic: "@/assets/logos/ELEC.svg",
},
],
aelf: [
{
name: "Aelf Blog",
feed: "https://medium.com/feed/@aelfblockchain",
site: "https://medium.com/@aelfblockchain",
about: "Building a Decentralized Cloud Computing Blockchain Network",
pic: "@/assets/logos/ELF.svg",
},
{
name: "Aelf Twitter",
feed: "https://rss.app/feeds/mtMjjUBDC7jptgKf.xml",
site: "https://twitter.com/aelfblockchain",
about: "Official Aelf Twitter",
pic: "@/assets/logos/ELF.svg",
},
],
enjincoin: [
{
name: "Enjincoin Blog",
feed: "https://blog.enjincoin.io/feed",
site: "https://blog.enjincoin.io",
about: "Enjin Coin is a smart cryptocurrency fueling a modular blockchain development platform for creating, integrating and scaling tokenized gaming assets",
pic: "@/assets/logos/EJN.svg",
},
{
name: "Enjincoin Twitter",
feed: "https://rss.app/feeds/PtKRIhKbZJgcshTr.xml",
site: "https://twitter.com/enjin",
about: "Official Enjincoin Twitter",
pic: "@/assets/logos/EJN.svg",
},
],
storj: [
{
name: "Storj Blog",
feed: "https://medium.com/feed/@storjproject",
site: "https://medium.com/@storjproject",
about: "Storj is an open source decentralized cloud storage platform.",
pic: "@/assets/logos/STORJ.svg",
},
{
name: "Storj Twitter",
feed: "https://rss.app/feeds/uuD29XRes737aeuv.xml",
site: "https://twitter.com/storj",
about: "Official Storj Twitter",
pic: "@/assets/logos/STORJ.svg",
},
],
iost: [
{
name: "IOST Blog",
feed: "https://medium.com/feed/iost",
site: "https://medium.com/iost",
about: "IOST is an ultra-fast, decentralized blockchain network based on the next-generation consensus algorithm “Proof of Believability” (PoB).",
pic: "@/assets/logos/IOST.svg",
},
{
name: "IOST Twitter",
feed: "https://rss.app/feeds/Hn92Z2UTb437jvCg.xml",
site: "https://twitter.com/IOST_Official",
about: "Official IOST Twitter",
pic: "@/assets/logos/IOST.svg",
},
],
dent: [
{
name: "Dent Blog",
feed: "https://medium.com/feed/dent-coin",
site: "https://medium.com/dent-coin",
about: "Dent plans to disrupt the mobile operator industry by creating an open marketplace for buying and selling of mobile data.",
pic: "@/assets/logos/DENT.svg",
},
{
name: "Dent Twitter",
feed: "https://rss.app/feeds/kNyivPpmIdlOy4th.xml",
site: "https://twitter.com/dentcoin",
about: "Official Dent Twitter",
pic: "@/assets/logos/DENT.svg",
},
],
ethlend: [
{
name: "EthLend Blog",
feed: "https://medium.com/feed/aave",
site: "https://medium.com/aave",
about: "The World's First Crypto Lending Marketplace",
pic: "@/assets/LEND.svg",
},
],
chainlink: [
{
name: "Chainlink Blog",
feed: "https://blog.chain.link/rss",
site: "https://blog.chain.link",
about: "The Chainlink network provides reliable tamper-proof inputs and outputs for complex smart contracts on any blockchain.",
pic: "@/assets/logos/LINK.svg",
},
{
name: "Chainlink Twitter",
feed: "https://rss.app/feeds/bVaykzGtebxg1Fej.xml",
site: "https://twitter.com/chainlink",
about: "Official Chainlink Twitter",
pic: "@/assets/logos/LINK.svg",
},
],
decentraland: [
{
name: "Decentraland Blog",
feed: "https://medium.com/feed/@decentraland",
site: "https://medium.com/@decentraland",
about: "Decentraland is a virtual reality platform powered by the Ethereum blockchain.",
pic: "@/assets/logos/MANA.svg",
},
{
name: "Decentraland Twitter",
feed: "https://rss.app/feeds/q0DQS2yAK61nO6oo.xml",
site: "https://twitter.com/decentraland",
about: "Official Decentraland Twitter",
pic: "@/assets/logos/MANA.svg",
},
],
loopring: [
{
name: "Loopring blog",
feed: "https://medium.com/feed/loopring-protocol",
site: "https://medium.com/loopring-protocol",
about: "Powering secure, transparent, and high-liqudity decentralized trading experiences.",
pic: "@/assets/logos/LRC.svg",
},
{
name: "Loopring Twitter",
feed: "https://rss.app/feeds/78Y0gstKoan0Uhb9.xml",
site: "https://twitter.com/loopringorg",
about: "Official Loopring Twitter",
pic: "@/assets/logos/LRC.svg",
},
],
qash: [
{
name: "Qash Blog",
feed: "https://medium.com/feed/quoineglobal",
site: "https://medium.com/quoineglobal",
about: "Liquid, formerly Quoine, is building a universal liquidity solution for cryptoasset trading and a suite of services, Worldbook and Prime Brokerage, using the Qash (QASH) token.",
pic: "@/assets/logos/QASH.svg",
},
{
name: "Qash Twitter",
feed: "https://rss.app/feeds/xBZMi8pGJHa2xNir.xml",
site: "https://twitter.com/Liquid_Global",
about: "Official Qash Twitter",
pic: "@/assets/logos/QASH.svg",
},
],
iconomi: [
{
name: "Iconomi Blog",
feed: "https://medium.com/feed/iconominet",
site: "https://medium.com/iconominet",
about: "The ICONOMI platform is designed for beginners and experienced investors alike.",
pic: "@/assets/logos/ICN.svg",
},
],
mco: [
{
name: "Crypto.com Blog",
feed: "https://medium.com/feed/@Crypto.com",
site: "https://medium.com/@Crypto.com",
about: "At Crypto.com, we are on a mission to accelerate the world's transition to cryptocurrency.",
pic: "@/assets/logos/MCO.svg",
},
{
name: "Crypto.com Twitter",
feed: "https://rss.app/feeds/fY947WKtYxgeB2UH.xml",