-
Notifications
You must be signed in to change notification settings - Fork 50
/
tokensBySymbol.json
15425 lines (15425 loc) · 822 KB
/
tokensBySymbol.json
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
{
"188": {
"addr": "0xb6ed7644c69416d67b522e20bc294a9a9b405b31",
"decimals": 8,
"description": "The implementation of Bitcoin Core on the Ethereum network as a smart contract. Mined using Proof of Work.",
"links": [
{ "Github": "https://github.com/0xbitcoin/0xbitcoin-token" },
{ "Reddit": "https://reddit.com/r/0xbitcoin" },
{ "Website": "https://0xbitcoin.org" }
],
"name": 188,
"symbol": 188
},
"STX": {
"addr": "0x006bea43baa3f7a6f765f14f10a1a1b08334ef45",
"decimals": 18,
"description": "Stox is an open source, Bancor based prediction market platform. Using the wisdom of the crowd, every day people will be able to predict and trade the outcome of events in almost any imaginable category: Finance, sports, politics and even the weather.",
"links": [
{ "CoinMarketCap": "https://coinmarketcap.com/currencies/stox/" },
{ "Github": "https://github.com/stx-technologies/stox-token" },
{ "Reddit": "https://www.reddit.com/r/STOX/" },
{ "Telegram": "https://t.me/joinchat/DByWw0Pnq9BAy4FqPv_Lyg" },
{ "Twitter": "https://twitter.com/stx_coin" },
{ "Website": "https://www.stox.com/" },
{ "Website": "https://www.stox.com" },
{ "Whitepaper": "https://www.stox.com/assets/stox-whitepaper.pdf" }
],
"name": "Stox",
"symbol": "STX"
},
"FKX": {
"addr": "0x009e864923b49263c7f10d19b7f8ab7a9a5aad33",
"decimals": 18,
"description": "Fort Knoxster is an all in one encrypted messaging platform across multiple devices. The FKX token is used as a utility to power the platform's services.",
"links": [
{ "Bitcointalk": "https://bitcointalk.org/index.php?topic=2326058.0" },
{ "Blog": "https://medium.com/fortknoxster" },
{ "Facebook": "https://www.facebook.com/FortKnoxster" },
{ "Github": "https://github.com/FortKnoxster" },
{ "Reddit": "https://www.reddit.com/r/FortKnoxster/" },
{ "Telegram": "https://t.me/FortKnoxster" },
{ "Twitter": "https://twitter.com/FortKnoxster" },
{ "Website": "https://fortknoxster.com/" },
{ "YouTube": "https://www.youtube.com/channel/UCZB8URO26cktviSxp3SeHig/videos" }
],
"name": "Knoxstertoken",
"symbol": "FKX"
},
"EETHER": {
"addr": "0x00a0cbe98e4d110b0fa82646152d77babf2951d0",
"decimals": 18,
"description": "Project E-ether token is a subsidiary project of Ethereum that will solely focus on being a token for payment. We already have a list of merchants that agreed to accept E-ether as a currency. We aim to create the BEST TOKEN for daily transaction.",
"links": [{ "Website": "http://e-ether.info/" }],
"name": "EETHER",
"symbol": "EETHER"
},
"EXC": {
"addr": "0x00c4b398500645eb5da00a1a379a88b11683ba01",
"decimals": 18,
"description": "Eximchain’s public blockchain network enables privacy, scalability and security for the supply chain. Eximchain-powered supply chain solutions help enterprises to connect, transact, and share information more efficiently and securely.",
"links": [
{ "Blog": "https://medium.com/eximchain" },
{ "CoinGecko": "https://www.coingecko.com/en/coins/eximchain/" },
{ "CoinMarketCap": "https://coinmarketcap.com/currencies/eximchain/" },
{ "Email": "mailto:[email protected]" },
{ "Facebook": "https://www.facebook.com/eximchain/" },
{ "Github": "https://github.com/eximchain" },
{ "Telegram": "https://t.me/eximchain" },
{ "Twitter": "https://twitter.com/eximchainexc" },
{ "Website": "https://eximchain.com" },
{ "Whitepaper": "https://www.eximchain.com/documents/Whitepaper-Eximchain.pdf" }
],
"name": "Eximchain Token",
"symbol": "EXC"
},
"BALI": {
"addr": "0x013a06558f07d9e6f9a00c95a33f3a0e0255176b",
"decimals": 18,
"description": "BALI Coin is a cryptocurrency created to be used as a mean of payment in the tourism industry, for example for hotel bookings, ticket reservations, car rentals and other tourism facilities. BALI coin is an open source cryptocurrency, using advanced Ethereum blockchain technology. With BALI Coin your money will be stored in your personal wallet, strictly confidential and absolutely private. In doing the transaction, money from the sending account will be transfered directly to the recipient, not through any intermediaries. Bali Coin is based on Ethereum ERC20 platform token, which has the potential to become the biggest smart contract system in the world for travel and tourism market. Team BALI Coin confidently innovate this capacity through the enabled BALI coin eco system.",
"links": [
{ "Email": "mailto:[email protected]" },
{ "Facebook": "https://www.facebook.com/Bali-Coin-815339625300724/" },
{ "Github": "https://github.com/adamyusfan/balicoin" },
{ "Telegram": "https://t.me/joinchat/CdUpoBDN10siPVeKzXFTdQ" },
{ "Twitter": "https://twitter.com/balicoincrypto" },
{ "Website": "https://balicoin.io/" },
{
"Whitepaper": "https://balicoin.io/wp-content/uploads/2017/11/ICO-white-paper-BALI-Proofread-14-Nov-2017-english.pdf"
}
],
"name": "BALI COIN",
"symbol": "BALI"
},
"ICOS": {
"addr": "0x014b50466590340d41307cc54dcee990c8d58aa8",
"decimals": 6,
"description": "ICOS Platform is your crypto crowdsale platform — easily discover & get tokens from upcoming, ongoing, and past campaigns.",
"links": [
{ "Blog": "https://medium.com/icobox-io" },
{ "Email": "mailto:[email protected]" },
{ "Facebook": "https://www.facebook.com/icobox.io" },
{ "Telegram": "https://t.me/icobox_en" },
{ "Website": "https://icos.icobox.io/" },
{ "Website": "https://icos.icobox.io" },
{ "Whitepaper": "https://icos.icobox.io/WhitePaper.pdf" }
],
"name": "ICOS",
"symbol": "ICOS"
},
"EDASH": {
"addr": "0x01a28adc0edd796b570ec4da734e1aa809f6f1fc",
"decimals": 18,
"description": "eDash",
"links": [{ "Website": "http://edashcoin.org" }],
"name": "eDash",
"symbol": "EDASH"
},
"GNTM": {
"addr": "0x01afc37f4f85babc47c0e2d0eababc7fb49793c8",
"decimals": 18,
"description": "Golem’s objective is to use (almost) any computing resource to execute tasks that today need to rely on centralized solutions.\nGolem network is going to be a decentralized ecosystem, with combined power of users’ machines and dedicated software delivering all necessary resources to complete any computing task.Golem is going create the first decentralized global market for computing power combined with flexible tools for developers to distribute and monetize their software.",
"links": [{ "Website": "https://golem.network/" }],
"name": "TokenWrapper",
"symbol": "GNTM"
},
"CCB": {
"addr": "0x01c67791309c71aa4ed373025a0c089696d7c9e4",
"decimals": 18,
"description": "Building the Ecological Chain of Global Automobile Industry Based on Block Chain Technology",
"links": [{ "Website": "http://www.cccoin.top/index.php#home" }],
"name": "CCB",
"symbol": "CCB"
},
"FLLW": {
"addr": "0x0200412995f1bafef0d3f97c4e28ac2515ec1ece",
"decimals": 18,
"description": "Follow Coin is a new platform that wants to make the crypto world accessible to everyone. Our goal is to lower the barriers of crypto investment markets by providing tools and services that make interacting, handling and trading crypto coins easy. For people that are new to the world of cryptocurrency it is often difficult to know when to buy which coin. Now Follow Coin is here to help you out. As a beginning trader it is a real challenge to maintain an overview of the market. The learning curve for investing in crypto assets is extremely steep. That’s why Follow Coin connects (inexperienced) users with influencers that know everything about the cryptocurrency world. We have a working mobile app available in the app-stores, under the name Follow Coin, feel free to take a look!",
"links": [
{ "Bitcointalk": "https://bitcointalk.org/index.php?topic=2303917.0" },
{ "Blog": "https://medium.com/@followcoin" },
{ "Email": "mailto:[email protected]" },
{ "Facebook": "https://www.facebook.com/followcoin/" },
{ "Github": "https://github.com/FollowCoin/" },
{ "Reddit": "https://www.reddit.com/r/Followcoin/" },
{ "Telegram": "https://t.me/FollowCoin" },
{ "Twitter": "https://twitter.com/FollowCoinbv" },
{ "Website": "https://followcoin.io/" },
{ "Whitepaper": "https://followcoin.io/docs/followcoin-whitepaper.pdf" }
],
"name": "Follow Coin",
"symbol": "FLLW"
},
"OCC": {
"addr": "0x0235fe624e044a05eed7a43e16e3083bc8a4287a",
"decimals": 18,
"description": "A cofounder-based ERC20 token written to be performant for the most common ERC20 token functions (transfer, transferFrom, and approve). Used in turn-based decentralized entertainment applications and simple for the recent cryptocurrency entrant.",
"links": [
{ "Github": "https://github.com/OriginalCrypto/occ-contracts" },
{ "Reddit": "https://www.reddit.com/r/OriginalCryptoCoin/" },
{ "Telegram": "https://t.me/OrigCryptoCoin" },
{ "Twitter": "https://twitter.com/OrigCryptoCoin" },
{ "Website": "https://originalcryptocoin.com" },
{ "Whitepaper": "https://originalcryptocoin.com/wp-content/uploads/2018/02/OriginalCryptoCoin_WhitePaper_v1.pdf" }
],
"name": "Original Crypto Coin",
"symbol": "OCC"
},
"GTKT": {
"addr": "0x025abad9e518516fdaafbdcdb9701b37fb7ef0fa",
"decimals": 0,
"description": "StarCredits is the ethereum token for entertainment project Back to Earth. It can be used to:\n-Sway real-time story outcomes\n-Earn in-game content\n-Unlock special features\n-Discover hidden puzzles\n-Purchase specific storylines\nGoldenTickets is the sister token to StarCredits (STRC) for the entertainment project Back to Earth. There are only 920 in circulation. They can be used on exclusive opportunities in the project, or traded in for a share of 88K $STRC that will be spilt evenly between the remaining GTKT during a second Token Sale.",
"links": [
{ "Bitcointalk": "https://bitcointalk.org/index.php?topic=1759190.0" },
{ "Blog": "https://backto.earth/blog/" },
{ "Email": "mailto:[email protected]" },
{ "Facebook": "https://www.facebook.com/backtoearthproductions/" },
{ "Github": "https://github.com/sprux/BackToEarth" },
{ "Telegram": "https://t.me/backtoearth" },
{ "Twitter": "https://twitter.com/_backtoearth" },
{ "Website": "https://backto.earth/" },
{ "Website": "https://backto.earth" },
{ "Whitepaper": "https://backto.earth/blog/back-to-earth-white-paper/" }
],
"name": "GoldenTickets",
"symbol": "GTKT"
},
"DEL": {
"addr": "0x02b9806a64cb05f02aa8dcc1c178b88159a61304",
"decimals": 18,
"description": "We've built the world's most efficient and robust prediction market platform, to aid the global flow of information and open up new possibilities for people around the world to profit from sharing knowledge with one another.",
"links": [
{ "Blog": "https://medium.com/@Delphi_Markets" },
{ "Email": "mailto:[email protected]" },
{ "Facebook": "https://www.facebook.com/DelphiMarketsOfficial" },
{ "Github": "https://github.com/delphi-markets" },
{ "Twitter": "https://twitter.com/Delphi_Markets" },
{ "Website": "https://delphi.markets/" },
{ "Whitepaper": "https://delphi.markets/whitepaper.pdf" }
],
"name": "Delphi",
"symbol": "DEL"
},
"STU": {
"addr": "0x0371a82e4a9d0a4312f3ee2ac9c6958512891372",
"decimals": 18,
"description": "Decentralized Student Marketplace for Online Jobs",
"links": [
{ "Bitcointalk": "https://bitcointalk.org/index.php?topic=1980078.msg19714383#msg19714383" },
{ "Blog": "https://medium.com/bitjob" },
{ "CoinMarketCap": "https://coinmarketcap.com/currencies/student-coin/" },
{ "Email": "mailto:[email protected]" },
{ "Facebook": "https://www.facebook.com/bitJobmarket/" },
{ "Github": "https://github.com/bitjobteam" },
{ "Telegram": "https://t.me/bitjob" },
{ "Twitter": "https://twitter.com/BitJob_Team" },
{ "WeChat": "https://weixin.qq.com/g/AjPEZ_jxP0UO3wWg" },
{ "Website": "https://bitjob.io/" },
{ "Website": "http://bitjob.io/" },
{ "Whitepaper": "https://drive.google.com/file/d/0B6VVmGzOdFPBb3FCdUlsNGVWMWM/view" }
],
"name": "bitjob",
"symbol": "STU"
},
"BTCM": {
"__FORKDELTA_CUSTOM_SYMBOL": "BITCOINEREUM",
"addr": "0x03df4c372a29376d2c8df33a1b5f001cd8d68b0e",
"decimals": 8,
"description": "The First Bitcoin Minable ERC20 Token on the Ethereum Blockchain",
"links": [
{ "Bitcointalk": "https://bitcointalk.org/index.php?topic=2254220.0" },
{ "Email": "mailto:[email protected]" },
{ "Twitter": "https://twitter.com/btcmtoken" },
{ "Website": "http://www.bitcoinereum.com/" },
{ "Website": "http://bitcoinereum.com/" }
],
"name": "Bitcoinereum",
"symbol": "BTCM"
},
"FBR": {
"addr": "0x0425cbbc5ff784203fe8d82beefa2b02634351f5",
"decimals": 18,
"description": "Building a global blockchain developer network centered around simple to use APIs, tools, and services. Let us help you develop and deploy your next generation distributed application.",
"links": [{ "Website": "http://happyfbr.com/" }],
"name": "Happyfbr",
"symbol": "FBR"
},
"EGR": {
"addr": "0x044dd17bbbcbf1cf65f543918561bf8cf8130e7b",
"decimals": 3,
"description": "A Trustworthy Distributed Platform for Copyright Registration and File Integrity Verification",
"links": [
{ "Bitcointalk": "https://bitcointalk.org/index.php?topic=2294845" },
{ "Blog": "https://medium.com/@engravedTech" },
{ "Email": "mailto:[email protected]" },
{ "Github": "https://github.com/engravedTech" },
{ "Telegram": "https://t.me/joinchat/GshO5UJrdVC_kZhqIK9LAw" },
{ "Twitter": "https://twitter.com/engravedTech" },
{ "Website": "https://engraved.tech" },
{ "Whitepaper": "https://engraved.tech/files/whitepaper.pdf" }
],
"name": "Engraved Token",
"symbol": "EGR"
},
"DTT": {
"addr": "0x049a5bf874f241d94232137ef728a9c7dd0d7550",
"decimals": 18,
"description": "DataTrading is a platform based on artificial intelligence for analytics and forecasting of exchange markets with open development modules, accessible to each member of the community.",
"links": [
{ "Bitcointalk": "https://bitcointalk.org/index.php?topic=2306909.0" },
{ "Blog": "https://blog.data-trading.com/" },
{ "Email": "mailto:[email protected]" },
{ "Facebook": "https://www.facebook.com/DataTrading" },
{ "Github": "https://github.com/data-trading" },
{ "Telegram": "https://t.me/datatradingENG" },
{ "Telegram": "https://t.me/datatradingRU" },
{ "Telegram": "https://t.me/datatradingChina" },
{ "Twitter": "https://twitter.com/datatrading_" },
{ "Website": "https://data-trading.com/" },
{ "Whitepaper": "https://data-trading.com/pdf/datatrading_whitepaper_en_2017-12-27.pdf" },
{ "YouTube": "https://www.youtube.com/channel/UC6QWQbo8AFxG0ghmbihdBDA" }
],
"name": "DataTrading Token",
"symbol": "DTT"
},
"WYV": {
"addr": "0x056017c55aE7AE32d12AeF7C679dF83A85ca75Ff",
"decimals": 18,
"description": "The Wyvern Exchange is a decentralized digital asset exchange running on the Ethereum blockchain. Using the Wyvern Exchange, you can buy or sell anything you can represent on Ethereum, from virtual kittens to smart contracts, to or from anyone in the world.\nThe WYV token is a protocol token: it powers the Wyvern Protocol, which the Exchange utilizes. Users must pay a small fee in WYV to settle purchases on the Exchange. WYV tokenholders are also shareholders in the Wyvern DAO, the decentralized autonomous organization which governs the Wyvern Protocol.",
"links": [
{ "Bitcointalk": "https://bitcointalk.org/index.php?topic=2258319.0" },
{ "Blog": "https://medium.com/project-wyvern" },
{ "Facebook": "https://www.facebook.com/WyvernExchange" },
{ "Github": "https://github.com/projectwyvern" },
{ "Reddit": "https://www.reddit.com/r/projectwyvern" },
{ "Telegram": "https://t.me/projectwyvern" },
{ "Twitter": "https://twitter.com/wyvernexchange" },
{ "Website": "https://projectwyvern.com" },
{ "Whitepaper": "https://github.com/ProjectWyvern/wyvern-protocol/raw/master/build/whitepaper.pdf" }
],
"name": "Wyvern Token",
"symbol": "WYV"
},
"LTCRED": {
"addr": "0x059e3ead0a5675e4139c820d799e20be9c75bc3d",
"decimals": 8,
"description": "Litecoin Red (LTCRED) is a tokenized ERC-20 version of Litecoin. The concept was spun off the successful Bitcoin Red (BTCRED) token and looks to give the same community another option that relies upon the same “RED” values and ideas.",
"links": [
{ "Bitcointalk": "https://bitcointalk.org/index.php?topic=2474976.0" },
{ "Email": "mailto:[email protected]" },
{ "Slack": "https://litecoinred.slack.com/" },
{ "Telegram": "https://t.me/litecoinred" },
{ "Twitter": "https://twitter.com/litecoinred" },
{ "Website": "https://litecoinred.com/" }
],
"name": "Litecoin Red",
"symbol": "LTCRED"
},
"LCT": {
"addr": "0x05c7065d644096a4e4c3fe24af86e36de021074b",
"decimals": 18,
"description": "A new lending platform that combines all the cryptocurrency lending platforms in a way that simply makes sense. But we are not just \"another\" lending platform among all the other platforms. We are the one that combines the possibilities of the crypto lending platforms into one.",
"links": [
{ "CoinMarketCap": "https://coinmarketcap.com/currencies/lendconnect/" },
{ "Email": "mailto:[email protected]" },
{ "Telegram": "https://t.me/joinchat/AAAAAE1W8wql5nyoOFx4QQ" },
{ "Website": "https://lendconnect.io/" },
{ "Whitepaper": "https://lendconnect.io/LendConnect_whitepaper.pdf" }
],
"name": "LendConnect Token",
"symbol": "LCT"
},
"ELYTE": {
"addr": "0x05d379b48a8622ae4018309e116420db4a38a225",
"decimals": 18,
"description": "New card and payment system with 1 mil total supply.",
"links": [
{ "Email": "mailto:[email protected]" },
{ "Facebook": "https://facebook.com/EthereumLyte" },
{ "Telegram": "https://t.me/joinchat/E6tXj0dThqzzjVlWJRuxLw" },
{ "Website": "https://www.elyte.biz" },
{ "Whitepaper": "https://main.elyte.biz/?page_id=9" },
{ "Bitcointalk": "https://bitcointalk.org/index.php?topic=2618851" },
{ "Github": "https://github.com/philicibine/EthereumLyte" }
],
"name": "EthereumLyte",
"symbol": "ELYTE"
},
"ZIL": {
"addr": "0x05f4a42e251f2d52b8ed15e9fedaacfcef1fad27",
"decimals": 12,
"description": "Zilliqa - The Next Generation, High Throughput Blockchain Platform\nZilliqa is a new blockchain platform that is designed to scale in an open, permission-less distributed network securely. The core feature that makes Zilliqa scalable is sharding — dividing the network into several smaller component networks (called shards) capable of processing transactions in parallel.",
"links": [
{ "Email": "mailto:[email protected]" },
{ "Github": "https://github.com/zilliqa" },
{ "Reddit": "https://www.reddit.com/r/zilliqa/" },
{ "Slack": "https://zilliqa.slack.com/" },
{ "Telegram": "https://t.me/zilliqa" },
{ "Twitter": "https://twitter.com/zilliqa" },
{ "Website": "https://www.zilliqa.com/" },
{ "Whitepaper": "https://docs.zilliqa.com/whitepaper.pdf" },
{ "Blog": "https://blog.zilliqa.com/" }
],
"name": "Zilliqa",
"symbol": "ZIL"
},
"ACE": {
"addr": "0x06147110022b768ba8f99a8f385df11a151a9cc8",
"decimals": 0,
"description": "Blockchain-based celebrity management platform that applies decentralized scouting and community voting to ensure transparent engagement for millions of users: celebrities + fans + brands & advertisers.",
"links": [
{ "Bitcointalk": "https://bitcointalk.org/index.php?topic=2043613.0" },
{ "Blog": "https://medium.com/@tokenstars" },
{ "CoinMarketCap": "https://coinmarketcap.com/currencies/ace/" },
{ "Email": "mailto:[email protected]" },
{ "Facebook": "https://www.facebook.com/TokenStars/" },
{ "Github": "https://github.com/token-stars" },
{ "Reddit": "https://www.reddit.com/r/TokenStars/" },
{ "Telegram": "https://t.me/TokenStars_en" },
{ "Twitter": "https://twitter.com/TokenStars" },
{ "Website": "https://tokenstars.com/en/ace" },
{ "Whitepaper": "https://tokenstars.com/upload/files/ace_by_tokenstars_whitepaper.pdf" }
],
"name": "ACE Token",
"symbol": "ACE"
},
"EXN": {
"addr": "0x0766e79a6fd74469733e8330b3b461c0320ff059",
"decimals": 18,
"description": "ExchangeN.com is New Altcoin CryptoCurrency Exchange which is Fast Secure and Support all Devices.",
"links": [
{ "Bitcointalk": "https://bitcointalk.org/index.php?topic=2198546.0" },
{ "Email": "mailto:[email protected]" },
{ "Twitter": "https://twitter.com/ExchangeN_com" },
{ "Website": "http://www.exchangen.com/" }
],
"name": "EXN",
"symbol": "EXN"
},
"IBTC": {
"addr": "0x0784dbabb6c6834bddfb7cfee116ba049e5dafab",
"decimals": 18,
"description": "iBTC is a tokenized version of Bitcoin on the Ethereum blockchain to help bitcoin to achieve is full potential. There are 21 million iBTC, and no additional tokens will ever be produced.",
"links": [
{ "Bitcointalk": "https://bitcointalk.org/index.php?topic=2251334.0" },
{ "Blog": "http://ibtctoken.com/blog" },
{ "Email": "mailto:[email protected]" },
{ "Reddit": "https://www.reddit.com/r/iBTCToken" },
{ "Telegram": "https://t.me/joinchat/FNH590OePKXIG4kci-Z--w" },
{ "Twitter": "https://twitter.com/ibtctoken" },
{ "Website": "http://ibtctoken.com/" }
],
"name": "IBTC",
"symbol": "IBTC"
},
"DALC": {
"addr": "0x07d9e49ea402194bf48a8276dafb16e4ed633317",
"decimals": 8,
"description": "A crypto token that powers dalemat ecosystem. This is a community that hopes to teach and educate as many as possible on how crypto currency trading and investing can be used to improve their finances.",
"links": [
{ "Bitcointalk": "https://bitcointalk.org/index.php?topic=2057829.0" },
{ "CoinMarketCap": "https://coinmarketcap.com/currencies/dalecoin/" },
{ "Email": "mailto:[email protected]" },
{ "Facebook": "https://www.facebook.com/dalecoin/" },
{ "Telegram": "https://t.me/dalecoin" },
{ "Twitter": "https://twitter.com/DalecoinN" },
{ "Website": "http://www.dalecoin.org/" }
],
"name": "DALECOIN",
"symbol": "DALC"
},
"DLT": {
"addr": "0x07e3c70653548b04f0a75970c1f81b4cbbfb606f",
"decimals": 18,
"description": "Agrello provides an AI powered interface allowing you to build smart contract-based legal agreements on the blockchain. No coding or legal skills required.",
"links": [
{ "Blog": "https://blog.agrello.org/" },
{ "CoinMarketCap": "https://coinmarketcap.com/currencies/agrello-delta/" },
{ "Email": "mailto:[email protected]" },
{ "Facebook": "https://www.facebook.com/agrellofoundation/" },
{ "Reddit": "https://www.reddit.com/r/Agrello/" },
{ "Telegram": "https://t.me/agrello" },
{ "Twitter": "https://twitter.com/AgrelloOfficial" },
{ "Website": "https://www.agrello.org/" },
{ "Whitepaper": "https://docs.agrello.org/Agrello-Self-Aware_Whitepaper-English.pdf" }
],
"name": "Delta",
"symbol": "DLT"
},
"ARTIS": {
"addr": "0x082e13494f12ebb7206fbf67e22a6e1975a1a669",
"decimals": 8,
"description": "ARTIS is a token designed for the upcoming Artis Turba cryptocurrency exchange. Artis Turba aims to simply the trading process by providing an intuitive User Interface along with Buy, Sell and Hold signals generated from our own unique algorithm that reads trends and cycles. Furthermore the ARTIS Affiliate Reward Program or AARP will reward ARTIS holders by sharing revenue generated on the Artis Turba exchange pro rata to the ARTIS they hold.",
"links": [
{ "Bitcointalk": "https://bitcointalk.org/index.php?topic=2539340.0" },
{ "Blog": "https://artisturba.com/blog/" },
{ "Email": "mailto:[email protected]" },
{ "Facebook": "https://www.facebook.com/ArtisTurba/" },
{ "Github": "https://github.com/artisturba" },
{ "Instagram": "https://www.instagram.com/artisturba/" },
{ "Telegram": "https://t.me/artisturba" },
{ "Telegram": "https://t.me/joinchat/HbNVngqZZnyHytw-9Xb5cg" },
{ "Twitter": "https://twitter.com/ArtisTurba" },
{ "Website": "https://artisturba.com/" },
{ "Whitepaper": "https://artisturba.com/wp-content/uploads/2018/01/White_Paper_JanuaryV180114.pdf" }
],
"name": "ArtisTurba",
"symbol": "ARTIS"
},
"PLC": {
"addr": "0x0835ecd15ddf08d4786304d71b4672dc5c40f011",
"decimals": 18,
"description": "DS Plus is a platform with a cryptocashback service, working on basis of a mobile application with the PlusCoin cryptocurrency integrated, based on the Ethereum Blockchain.",
"links": [
{ "Bitcointalk": "https://bitcointalk.org/index.php?topic=2067375.0" },
{ "Blog": "https://medium.com/@DSPlus.io" },
{ "Email": "mailto:[email protected]" },
{ "Facebook": "https://www.facebook.com/DS-PLUS-Fork-128078354505520/" },
{ "Github": "https://github.com/dsplus/PlusCoin" },
{ "Slack": "https://join.slack.com/t/pluscointeam/shared_invite/MjM3ODY2MDU1MDc5LTE1MDQ2NzcxOTEtZDQwMzU5NDZkZA" },
{ "Telegram": "https://t.me/PlusCoinENG" },
{ "Twitter": "https://twitter.com/DsplusF" },
{ "Website": "https://pluscoin.io/" },
{ "Whitepaper": "https://pluscoin.io/images/dsp/pluscoin_wp.pdf" }
],
"name": "PlusCoin",
"symbol": "PLC"
},
"EDG": {
"addr": "0x08711d3b02c8758f2fb3ab4e80228418a7f8e39c",
"decimals": 0,
"description": "The Ethereum smart contract-based Casino offers a 0% house edge and solves the casino transparency question once and for all.",
"links": [
{ "Bitcointalk": "https://bitcointalk.org/index.php?topic=1718384.0" },
{ "Blog": "https://medium.com/Edgeless" },
{ "CoinMarketCap": "https://coinmarketcap.com/currencies/edgeless/" },
{ "Email": "mailto:[email protected]" },
{ "Facebook": "https://www.facebook.com/EdgelessCasino/?fref=ts" },
{ "Github": "https://github.com/EdgelessCasino" },
{ "Reddit": "https://www.reddit.com/r/Edgeless/" },
{ "Telegram": "https://t.me/joinchat/AAAAAEBTy7K9KXQcQsyozQ" },
{ "Twitter": "https://twitter.com/edgelessproject" },
{ "Website": "https://edgeless.io/" },
{ "Whitepaper": "https://github.com/EdgelessCasino/White_paper/blob/master/White_Paper.pdf" }
],
"name": "Edgeless",
"symbol": "EDG"
},
"LTG": {
"addr": "0x0879e0c9822b75f31f0b0ed2a30be9f484a57c2f",
"decimals": 0,
"description": "Litecoin Gold is an ERC20 token with the feature of smart contracts and is faster as well as cheaper than Bitcoin Gold.",
"links": [
{ "Bitcointalk": "https://bitcointalk.org/index.php?topic=2297409.msg23311623" },
{ "Email": "mailto:[email protected]" },
{ "Telegram": "https://t.me/joinchat/Df-u3hGeP00dMvqE7Sti9Q" },
{ "Twitter": "https://twitter.com/litecoingold" },
{ "Website": "http://www.litecoingold.info/" },
{ "Website": "http://www.litecoingold.info" }
],
"name": "LiteCoinGold",
"symbol": "LTG"
},
"BTCE": {
"addr": "0x0886949c1b8c412860c4264ceb8083d1365e86cf",
"decimals": 8,
"description": "EthereumBitcoin (BTCE) is a Tokenized Version of Bitcoin on the Ethereum Blockchain and a Global Cryptocurrency (digital money) of the Internet.",
"links": [
{ "Email": "mailto:[email protected]" },
{ "Twitter": "https://twitter.com/BTCE_Token" },
{ "Website": "https://btcetoken.com/" },
{ "Website": "https://btcetoken.com" }
],
"name": "EthereumBitcoin",
"symbol": "BTCE"
},
"PGL": {
"addr": "0x089a6d83282fb8988a656189f1e7a73fa6c1cac2",
"decimals": 18,
"description": "Massive Multiplayer Online Real Time Economic Strategy",
"links": [
{ "Bitcointalk": "https://bitcointalk.org/index.php?topic=1877080.0" },
{ "Email": "mailto:[email protected]" },
{ "Facebook": "https://www.facebook.com/prospectors.io/" },
{ "Github": "https://github.com/ProspectorsWorld/Prospectors" },
{ "Slack": "http://prospectors.herokuapp.com/" },
{ "Twitter": "https://twitter.com/prospectorsgame" },
{ "Website": "https://prospectors.io/" },
{ "Website": "https://www.prospectors.io/" },
{ "Whitepaper": "https://prospectors.io/white_paper_en.pdf" }
],
"name": "Token Prospectors Gold",
"symbol": "PGL"
},
"٨": {
"__FORKDELTA_CUSTOM_SYMBOL": "DCN",
"addr": "0x08d32b0da63e2c3bcf8019c9c5d849d7a9d791e6",
"decimals": 0,
"description": "Dentacoin: Health Care Industry should be in the hands of the people.\nThis industrial blockchain concept was invented by <a href=\"http://dentacoin.com/\" target=\"_blank\">Dentacoin Foundation</a> in the Netherlands.\nDentaprime International PLC is a digital technology leader in dental services.\nEstablished in London and proven successful and profitable, Dentaprime now plans to globally expand their two smart clinic concepts and distribute a blockchain token called Dentacoin (DCN). Having already implemented Industry 4.0 technology, robotics and integrated digitalisation, Dentaprime offers the highest quality dentistry affordable to all people, regardless of their income.\nThe Dentacoin ERC20 token is configured to be used globally by all individuals.\nDentacoin Fundation, the DCN inventor, bought 100% of Dentaprime International PLCs’ shares thus the disposition over the company will be in the hands of Dentacoin Foundation and will be connected to the blockchain.\nEach DCN represents and participates in the company’s shares and dividends. The DCN community will vote for important decisions of the company through an integrated voting system.\nFurther projects are planned:\nThe health data base: In addition to the currency (DCN), the Ethereum blockchain will securely handle all private patient data. Further data will be updatable and accessible to patients.\nThe Insurance: Following treatment, Dentaprime will offer each patient a DCN paid insurance policy for lifelong free dental procedures to prevent all the health consequences related to old-age poverty.\nDentacoin will develop as both, a stable growing international currency and an attractive alternate derivate system for investors.",
"links": [
{ "Bitcointalk": "https://bitcointalk.org/index.php?topic=1944236.0" },
{ "Blog": "https://www.dentacoin.com/blog/" },
{ "CoinMarketCap": "https://coinmarketcap.com/currencies/dentacoin/" },
{ "Email": "mailto:[email protected]" },
{ "Facebook": "https://www.facebook.com/dentacoin/" },
{ "Github": "https://github.com/Dentacoin" },
{ "Reddit": "https://www.reddit.com/r/Dentacoin/" },
{ "Slack": "https://dentacoin.slack.com/" },
{ "Twitter": "https://twitter.com/dentacoin" },
{ "Website": "https://dentacoin.com/" },
{ "Whitepaper": "https://www.dentacoin.com/white-paper/Whitepaper-en%20v.1.0.pdf" }
],
"name": "Dentacoin",
"symbol": "٨"
},
"TNT": {
"addr": "0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8",
"decimals": 8,
"description": "Tierion is using the blockchain to transform how the world secures and shares data.",
"links": [
{ "Bitcointalk": "https://bitcointalk.org/index.php?topic=2027510.0" },
{ "Blog": "https://medium.com/@WayneVaughan" },
{ "CoinMarketCap": "https://coinmarketcap.com/currencies/tierion/" },
{ "Email": "mailto:[email protected]" },
{ "Facebook": "https://www.facebook.com/TierionInc/" },
{ "Github": "https://github.com/Tierion" },
{ "Reddit": "https://www.reddit.com/r/tierion/" },
{ "Telegram": "https://t.me/tierion" },
{ "Twitter": "https://twitter.com/Tierion" },
{ "Website": "https://tokensale.tierion.com/" },
{ "Website": "https://tierion.com/" },
{ "Whitepaper": "https://tokensale.tierion.com/whitepaper" }
],
"name": "Tierion Network Token",
"symbol": "TNT"
},
"DHG": {
"addr": "0x08f8117155aa9414b67113a47ad269d47974e9dc",
"decimals": 18,
"description": "On traditional server architectures, every aplication need to set up its own servers that run their own code in isolated silos, making sharing of data hard. If a single app is compromised or goes offline, many user and other apps are effected. On a blockchain, anyone can setup a node that replicates the necessary data for all nodes to reach an agreement and be compensated by users and app developers. This allows user data to remain private and apps to be decentralized like the internet was supposed to work.",
"links": [
{ "Bitcointalk": "https://bitcointalk.org/index.php?topic=2393171.0" },
{ "Email": "mailto:[email protected]" },
{ "Telegram": "https://t.me/dash_gold" },
{ "Twitter": "https://twitter.com/DASH_GOLD1" },
{ "Website": "https://www.dash-gold.net/" },
{ "Website": "https://dash-gold.net/" },
{ "Whitepaper": "https://dash-gold.net/doc/DashGold.pdf" }
],
"name": "DASH GOLD",
"symbol": "DHG"
},
"CLRT": {
"addr": "0x08fd34559f2ed8585d3810b4d96ab8a05c9f97c5",
"decimals": 18,
"description": "ClusterToken is an ERC20 compliant Smart contract token that will bring rewards to token holders by using what’s called “Self Mining Smart Contract” technology. This means that no mining equipment or additional equipment is involved to receive mining profits from the ClusterToken Smart contract.\nThe ClusterToken reward structure is designed to apply what’s known as “Proportional Reward” system. Most of the tokens released on the blockchain have no further use once purchased in terms of extra rewards. ClusterToken will reward all token holders on a periodic base.",
"links": [
{ "Email": "mailto:[email protected]" },
{ "Facebook": "https://www.clustertoken.io/#" },
{ "Twitter": "https://twitter.com/ClusterToken" },
{ "Website": "https://www.clustertoken.io/" },
{ "Whitepaper": "https://github.com/clustertoken/clustertoken/blob/master/docs/WhitePaper.md" }
],
"name": "ClusterToken",
"symbol": "CLRT"
},
"LND": {
"addr": "0x0947b0e6d821378805c9598291385ce7c791a6b2",
"decimals": 18,
"description": "Lendingblock is a securities lending platform for the cryptoeconomy. Borrow or lend any cryptocurrency. Generate stable and secure returns without sacrificing token ownership and borrow at market rates to support funding, hedging or investing strategies.",
"links": [
{ "Blog": "https://www.lendingblocklibrary.com/" },
{ "CoinMarketCap": "https://coinmarketcap.com/currencies/lendingblock/" },
{ "Email": "mailto:[email protected]" },
{ "Facebook": "https://www.facebook.com/lendingblock" },
{ "Github": "https://github.com/lendingblock" },
{ "Linkedin": "https://www.linkedin.com/company/18359515/" },
{ "Reddit": "https://www.reddit.com/r/Lendingblock/" },
{ "Telegram": "https://t.me/lendingblock" },
{ "Twitter": "https://twitter.com/lendingblock" },
{ "Website": "https://lendingblock.com" },
{ "Whitepaper": "https://lendingblock.com/#section-whitepaper" }
],
"name": "Lendingblock",
"symbol": "LND"
},
"NVT": {
"addr": "0x09d8b66c48424324b25754a873e290cae5dca439",
"decimals": 18,
"description": "The Nova Token enables the creation, sale, and trading of collectible tokenized cards across any digital trading card game. The Nova Token can also be used to enter in-game tournaments and pay for other in-game purchases. This allows the Nova Token to completely replace fiat currencies in any game that implements it. Game developers that are integrated into the Nova Token platform benefit because they earn a share of Nova Token revenue.",
"links": [
{ "Facebook": "https://www.facebook.com/NovaBlitz/" },
{ "Twitter": "https://twitter.com/NovaBlitz" },
{ "Website": "https://novablitz.com/" }
],
"name": "Nova Token",
"symbol": "NVT"
},
"MOL": {
"addr": "0x09debe702678140c1be278213109719fab98d0d8",
"decimals": 18,
"description": "Molik is a public Ethereum-based jewelry shopping platform for use in mainstream online mall, that enables real-time, peer-to-peer value exchange and payment services.",
"links": [
{ "Email": "mailto:[email protected]" },
{ "Facebook": "https://www.facebook.com/molikjewelry/" },
{ "Website": "https://molikcoin.imweb.me/" },
{ "Website": "https://molikcoin.imweb.me" }
],
"name": "MolikToken",
"symbol": "MOL"
},
"ELITE": {
"addr": "0x0a76aad21948ea1ef447d26dee91a54370e151e0",
"decimals": 18,
"description": "Community-Focused ERC-20 Token for Payments",
"links": [{ "Website": "http://ethereumlite.org" }],
"name": "Ethereum Lite",
"symbol": "ELITE"
},
"DNT": {
"addr": "0x0abdace70d3790235af448c88547603b945604ea",
"decimals": 18,
"description": "A network of decentralized markets and communities. Create, operate, and govern. Powered by Ethereum, Aragon, and IPFS.",
"links": [
{ "Blog": "https://blog.district0x.io/" },
{ "CoinMarketCap": "https://coinmarketcap.com/currencies/district0x/" },
{ "Email": "mailto:[email protected]" },
{ "Github": "https://github.com/district0x" },
{ "Slack": "https://district0x-slack.herokuapp.com/" },
{ "Twitter": "https://twitter.com/district0x" },
{ "Website": "https://district0x.io/" },
{ "Whitepaper": "https://district0x.io/docs/district0x-whitepaper.pdf" }
],
"name": "district0x Network Token",
"symbol": "DNT"
},
"FRD": {
"addr": "0x0abefb7611cb3a01ea3fad85f33c3c934f8e2cf4",
"decimals": 18,
"description": "Farad Cryptoken is the first of its kind among the cryptocurrencies on the market. The main difference of farad Cryptoken is that, it is supported by real economic activity which is the production of Ultra-capacitors within the company.",
"links": [
{ "Bitcointalk": "https://bitcointalk.org/index.php?topic=2075985.0" },
{ "Email": "mailto:[email protected]" },
{ "Facebook": "https://www.facebook.com/faradcryptoken/" },
{ "Github": "https://github.com/VirtueFintech/FaradCryptoken" },
{ "Reddit": "https://www.reddit.com/r/icocrypto/comments/6v1fte/farad_cryptoken_ico_backed_by_real_business/" },
{ "Slack": "https://faradcryptoken.slack.com/" },
{ "Telegram": "https://t.me/joinchat/Bz_rXUN6T6yNR0AKBLevQw" },
{ "Twitter": "https://twitter.com/FARADCryptoken" },
{ "Website": "https://farad.energy/" },
{ "Whitepaper": "https://s3-ap-southeast-1.amazonaws.com/farad/en/FaradWhitepaper.pdf" }
],
"name": "FARAD",
"symbol": "FRD"
},
"ITT": {
"addr": "0x0aef06dcccc531e581f0440059e6ffcc206039ee",
"decimals": 8,
"description": "Designed for EVERYONE from beginners to professional traders in cryptocurrency markets, the ITT platform sends you actionable and personalized alerts to successfully trade in these nascent and volatile markets.",
"links": [
{ "Email": "mailto:[email protected]" },
{ "Facebook": "https://www.facebook.com/IntelligentTradingFoundation" },
{ "Github": "https://github.com/IntelligentTrading" },
{ "Reddit": "https://www.reddit.com/r/ITT_Token" },
{ "Telegram": "https://t.me/intelligenttrading" },
{ "Twitter": "https://twitter.com/tryITF" },
{ "WeChat": "https://weixin.qq.com/g/AYStjdxwNMUtFIU5" },
{ "Website": "http://intelligenttrading.org/" },
{ "Whitepaper": "http://intelligenttrading.org/white-paper/" }
],
"name": "Intelligent Trading Token",
"symbol": "ITT"
},
"MTX": {
"addr": "0x0af44e2784637218dd1d32a322d44e603a8f0c6a",
"decimals": 18,
"description": "Matryx provides an environment in which collaboration is monetarily incentivized, grants are distributed fairly, R&D expenses are reduced and time is saved.",
"links": [
{ "Blog": "https://blog.matryx.ai/" },
{ "CoinMarketCap": "https://coinmarketcap.com/currencies/matryx/" },
{ "Email": "mailto:[email protected]" },
{ "Facebook": "https://www.facebook.com/matryxai/" },
{ "Reddit": "https://www.reddit.com/r/matryx/" },
{ "Telegram": "https://t.me/matryxtoken" },
{ "Twitter": "https://twitter.com/matryx_ai" },
{ "Website": "https://matryx.ai/" },
{ "Whitepaper": "https://matryx.ai/matryx-whitepaper.pdf" }
],
"name": "MatryxToken",
"symbol": "MTX"
},
"PLBT": {
"addr": "0x0affa06e7fbe5bc9a764c979aa66e8256a631f02",
"decimals": 6,
"description": "Polybius is a project aimed to create a regulated bank for the digital generation.",
"links": [
{ "CoinMarketCap": "https://coinmarketcap.com/currencies/Polybius/" },
{ "Email": "mailto:[email protected]" },
{ "Facebook": "https://www.facebook.com/projectpolybius/" },
{ "Telegram": "https://t.me/polybius_eng" },
{ "Twitter": "https://twitter.com/PolybiusBank" },
{ "Website": "https://polybius.io" },
{ "Website": "https://polybius.io/" },
{ "Whitepaper": "https://polybius.io/media/tw_en.pdf" }
],
"name": "Polybius",
"symbol": "PLBT"
},
"RIYA": {
"addr": "0x0b1724cc9fda0186911ef6a75949e9c0d3f0f2f3",
"decimals": 8,
"description": "ETHERIYA: AN Ethereum Token Backed Micro & Macro Freelance Marketplace",
"links": [
{ "Bitcointalk": "https://bitcointalk.org/index.php?topic=1975694.0" },
{ "CoinMarketCap": "https://coinmarketcap.com/currencies/etheriya/" },
{ "Email": "mailto:[email protected]" },
{ "Website": "http://www.etheriya.net/" },
{ "Whitepaper": "https://drive.google.com/file/d/0B9nA1PpRUjmuTG4ySFUzQXhwUkU/view" }
],
"name": "Etheriya",
"symbol": "RIYA"
},
"JWT": {
"addr": "0x0b24fdf35876bbe2a1cc925321b8c301017474d4",
"decimals": 0,
"description": "With Just Wallet, you can in a few minutes create your e-currency, e-wallet and online payment processing.",
"links": [{ "Website": "https://justwallet.trade/" }],
"name": "Just",
"symbol": "JWT"
},
"INT": {
"addr": "0x0b76544f6c413a555f309bf76260d1e02377c02a",
"decimals": 6,
"description": "We are a small startup group focusing on IoT based decentralized applications. Our team members are located in Singapore, Canada, US and China. Our INT foundation is located in Singapore with an official website of http://intchain.io.",
"links": [
{ "Email": "mailto:[email protected]" },
{ "Facebook": "https://www.facebook.com/INTChain" },
{ "Github": "https://github.com/intfoundation" },
{ "Reddit": "https://www.reddit.com/user/INTCHAIN/" },
{ "Slack": "https://intchainworkspace.slack.com/" },
{ "Telegram": "https://t.me/INTChainOfficial" },
{ "Twitter": "https://twitter.com/intchain" },
{ "Website": "https://intchain.io/en/" },
{ "Website": "https://intchain.io/" },
{ "Whitepaper": "https://intchain.io/whitepaper/INT-whitepaper-1.0-EN.pdf" }
],
"name": "Internet Node Token",
"symbol": "INT"
},
"SWFTC": {
"addr": "0x0bb217e40f8a5cb79adf04e1aab60e5abd0dfc1e",
"decimals": 8,
"description": "Built by the leading minds in Artificial Intelligence, Big Data and Blockchain, SWFT integrates the world’s major exchanges to effectively achieve hedge risking, provide customer with an easy and efficient platform for cryptocurrency exchange.",
"links": [{ "Website": "http://www.swftcoin.com/" }],
"name": "SwftCoin",
"symbol": "SWFTC"
},
"VCA": {
"addr": "0x0bee5ca8dda2c0b8edd1c4369f7cc35d243e547f",
"decimals": 8,
"description": "VirtualCash (VCA) is a virtual money integrated in Ethereum blockchain that will serve as the main payment method for our e-commerce online store and for VCA conversion to Paypal and WesternUnion.",
"links": [
{ "Website": "http://www.virtualcash.shop" },
{ "Twitter": "https://twitter.com/VCA_VirtualCash" },
{ "Github": "https://github.com/virtualcash/crowdsalecontractsource" },
{ "Telegram": "https://t.me/virtualcash" },
{ "Discord": "https://discord.gg/TkE2QUq" },
{ "Whitepaper": "http://www.virtualcash.shop/crowdsale/docs/VCA-whitepaper-en.pdf" },
{ "Bitcointalk": "https://bitcointalk.org/index.php?topic=2821367" },
{ "Facebook": "https://www.facebook.com/VCA.VirtualCash/" }
],
"name": "Virtual Cash",
"symbol": "VCA"
},
"EZEC": {
"addr": "0x0c6c9beeeb5de377210930f09a7ac9a99ff5e981",
"decimals": 18,
"description": "eZCash",
"links": [{ "Website": "http://ezcash.network" }],
"name": "eZCash",
"symbol": "EZEC"
},
"DATA": {
"addr": "0x0cf0ee63788a0849fe5297f3407f701e122cc023",
"decimals": 18,
"description": "Streamr provides a complete system to create unstoppable real-time data apps, even without writing code. Currently, the valuable data you produce is at the mercy of large corporations. In the Streamr network, it’s yours to use and sell as you wish, and travels through a decentralised peer-to-peer network controlled by no one and incentivized by the DATAcoin token.",
"links": [
{ "Blog": "https://blog.streamr.com/" },
{ "CoinMarketCap": "https://coinmarketcap.com/currencies/streamr-datacoin/" },
{ "Email": "mailto:[email protected]" },
{ "Github": "https://github.com/streamr-dev" },
{ "Slack": "https://slack.streamr.com/" },
{ "Twitter": "https://twitter.com/streamrinc" },
{ "Website": "https://www.streamr.com/" },
{ "Website": "https://www.streamr.com" },
{ "Whitepaper": "https://www.streamr.com/whitepaper" }
],
"name": "DATAcoin",
"symbol": "DATA"
},
"J8T": {
"addr": "0x0d262e5dc4a06a0f1c90ce79c7a60c09dfc884e4",
"decimals": 8,
"description": "JET8 is a decentralized mobile engagement network connecting influencers, audiences and brands through the value of social currency.",
"links": [
{ "Blog": "https://medium.com/@jet8" },
{ "CoinMarketCap": "https://coinmarketcap.com/currencies/jet8/" },
{ "Email": "mailto:[email protected]" },
{ "Reddit": "https://www.reddit.com/r/JET8/" },
{ "Telegram": "https://t.me/Jet8_ecosystem" },
{ "Twitter": "https://twitter.com/jet8app" },
{ "Website": "https://jet8.io/" },
{ "Whitepaper": "https://jet8.io/downloads/180223_J8T_Whitepaper_ENG.pdf" },
{ "YouTube": "https://www.youtube.com/watch?v=f93gjf5Zl8o" }
],
"name": "J8T Token",
"symbol": "J8T"
},
"BAT": {
"addr": "0x0d8775f648430679a709e98d2b0cb6250d2887ef",
"decimals": 18,
"description": "From the creator of JavaScript and the co-founder of Mozilla and Firefox, with a solid team – funded by Founders Fund, Foundation Capital, Propel Venture Partners, Pantera Capital, DCG, Danhua Capital, Huiyin Blockchain Venture among others.\nBasic Attention Token radically improves the efficiency of digital advertising by creating a new token that can be exchanged between publishers, advertisers and users. It all happens on the Ethereum blockchain.\nThe token can be used to obtain a variety of advertising and attention-based services on the Brave platform. The utility of the token is based on user attention, which simply means a person’s focused mental engagement.",
"links": [
{ "CoinMarketCap": "https://coinmarketcap.com/currencies/basic-attention-token/" },
{ "Email": "mailto:https://medium.com/@attentiontoken" },
{ "Reddit": "https://www.reddit.com/r/BATProject/" },
{ "Twitter": "https://twitter.com/@attentiontoken" },
{ "Website": "https://basicattentiontoken.org/" }
],
"name": "Basic Attention Token",
"symbol": "BAT"
},
"AVT": {
"addr": "0x0d88ed6e74bbfd96b831231638b66c05571e824f",
"decimals": 18,
"description": "A REVOLUTIONARY GLOBAL STANDARD FOR A MORE FAIR, SECURE, AND TRANSPARENT TICKETING INDUSTRY.",
"links": [
{ "Bitcointalk": "https://bitcointalk.org/index.php?topic=2047321.0" },
{ "Blog": "https://medium.com/aventus" },
{ "CoinMarketCap": "https://coinmarketcap.com/currencies/aventus/" },
{ "Github": "https://github.com/AventusSystems" },
{ "Reddit": "https://www.reddit.com/r/Aventus/" },
{ "Slack": "https://slack.aventus.io/" },
{ "Twitter": "https://twitter.com/AventusSystems" },
{ "Website": "https://aventus.io/" },
{ "Whitepaper": "https://aventus.io/doc/whitepaper.pdf" }
],
"name": "AVENTUS",
"symbol": "AVT"
},
"IQN": {
"addr": "0x0db8d8b76bc361bacbb72e2c491e06085a97ab31",
"decimals": 18,
"description": "IQeon is the first platform where players can earn money thanks to their intelligence and achievements. This will be realized by using the internal currency in the IQeon ecosystem, which at any time can be converted to the crypto currency – IQeon tokens (IQN) issued based on Ethereum blockchain. IQeon tokens (IQN) can be freely exchanged at existing cryptocurrency exchanges, or transferred to fiat money on a card.",
"links": [
{ "Bitcointalk": "https://bitcointalk.org/index.php?topic=2479328.0" },
{ "Blog": "https://medium.com/@iqeon" },
{ "Email": "mailto:[email protected]" },
{ "Facebook": "https://www.facebook.com/iqeon/" },
{ "Github": "https://github.com/iqeon/smart-contract" },
{ "Instagram": "https://www.instagram.com/iqeon.io/" },
{ "Reddit": "https://www.reddit.com/r/IQeon/" },
{ "Slack": "https://iqeon.slack.com/" },
{
"Slack": "https://iqeon.slack.com/join/shared_invite/enQtMzEwMDM0OTc0MzA1LTlmYzNhYzVmOGUzY2JjMWE3M2Y1YzlmOGMyZTU1ZDdmYTJmZTA5ZWFjOWM3YjIwMzgyZjY4ZjRjYzQ1NzQzZGY"
},
{ "Telegram": "https://t.me/IQeonICO" },
{ "Twitter": "https://twitter.com/iqeon" },
{ "Website": "https://iqeon.io" },
{ "Whitepaper": "https://iqeon.s3.eu-central-1.amazonaws.com/documentation/IQeon_Whitepaper_EN.pdf" }
],
"name": "iQeon",
"symbol": "IQN"
},
"POE": {
"addr": "0x0e0989b1f9b8a38983c2ba8053269ca62ec9b195",
"decimals": 8,
"description": "POE is the native token of Po.et, a platform which simplifies the process for publishing, licensing and authentication of digital assets. Po.et aims to create a blockchain-based platform with added smart contract functionality and applications to facilitate distribution of digital creative works and remove barriers to entry for publishers and digital media creators.",
"links": [
{ "Bitcointalk": "https://bitcointalk.org/index.php?topic=2027214.0" },
{ "Blog": "https://blog.po.et/" },
{ "CoinMarketCap": "https://coinmarketcap.com/currencies/poet/" },
{ "Email": "mailto:[email protected]" },
{ "Reddit": "https://www.reddit.com/r/poetproject/" },
{ "Slack": "https://poet-slack.herokuapp.com/" },
{ "Telegram": "https://github.com/poetapp" },
{ "Twitter": "https://twitter.com/_poetproject" },
{ "Website": "https://po.et/" },
{ "Whitepaper": "https://po.et/whitepaper.pdf" }
],
"name": "Po.et",
"symbol": "POE"
},
"LEV": {
"addr": "0x0f4ca92660efad97a9a70cb0fe969c755439772c",
"decimals": 9,
"description": "Leverj is a Consensus-supported project that has raised over $11 Million in presale. It is a pseudo-decentralized exchange that does ordermatching and handling centralized while the funds custody is decentralized. The LEV token can be used to earn FEE tokens which allow the user to pay for trading fees in the Leverj platform. The platform is already built to facilitate trading on Bitcoin, it is only a matter of porting the system over to Ethereum, which Leverj has already designed and partially implemented.",
"links": [
{ "Bitcointalk": "https://bitcointalk.org/index.php?topic=2258761.0" },
{ "Blog": "https://blog.leverj.io/" },
{ "CoinMarketCap": "https://coinmarketcap.com/currencies/leverj/" },
{ "Email": "mailto:[email protected]" },
{ "Facebook": "https://www.facebook.com/leverj.io/" },
{ "Github": "https://github.com/leverj" },
{ "Reddit": "https://www.reddit.com/r/Leverj/" },
{ "Telegram": "https://t.me/leverj" },
{ "Twitter": "https://twitter.com/Leverj_io" },
{ "Website": "https://leverj.io/" },
{ "Website": "https://www.leverj.io/" },
{ "Whitepaper": "https://leverj.io/whitepaper.pdf" }
],
"name": "Leverj",
"symbol": "LEV"
},
"XSC": {
"addr": "0x0f513ffb4926ff82d7f60a05069047aca295c413",
"decimals": 18,
"description": "Crowdstart coin is mined by the contribution to blockchain protocols, applications and theory. It represents the value that a token holder has created for the development of blockchain technology through technological advancement or actions inciting usage of blockchain products.",
"links": [
{ "Blog": "http://crowdstart.capital/blog/" },
{ "Email": "mailto:[email protected]" },
{ "Slack": "https://crowdstartcapital.slack.com/" },
{ "Website": "http://crowdstart.capital/xsc-overview/" },
{ "Website": "http://crowdstart.capital/" }
],
"name": "CrowdstartCoin",
"symbol": "XSC"
},
"XMRG": {
"addr": "0x0f598112679b78e17a4a9febc83703710d33489c",
"decimals": 8,
"description": "Monero Gold Token is an ERC20 token that aims to become the first globally accepted ERC20 token used for purchasing and selling of goods, services and more. With a professional team consisting of 8 experts in their field we believe our vision can be accomplished together with our community.",
"links": [
{ "Bitcointalk": "https://bitcointalk.org/index.php?topic=2486560" },
{ "Blog": "https://medium.com/@monerogoldtoken" },
{ "Telegram": "https://t.me/joinchat/GRIKyxEB8BPqDqz6Xaz_Bw" },
{ "Twitter": "https://twitter.com/monerogoldtoken" },
{ "Website": "https://monero-gold.org/" }
],
"name": "Monero Gold",
"symbol": "XMRG"