forked from TrueBlocks/trueblocks-core
-
Notifications
You must be signed in to change notification settings - Fork 1
/
names.txt
1000 lines (1000 loc) · 198 KB
/
names.txt
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
# Do not edit this file. It will be replaced during upgrade. If you want to add named accounts, add them to names_custom.txt
group subgroup address name description symbol source logo is_contract is_private is_shared
30-Contracts 0x00cf36853aa4024fb5bf5cc377dfd85844b411a0 dAppNode Donations (Giveth) Giveth website TRUE FALSE TRUE
30-Contracts 0x06012c8cf97bead5deae237070f9587f8e7a266d CryptoKitties The famous first ERC721 token CK Etherscan.io TRUE FALSE TRUE
30-Contracts 0x0abdace70d3790235af448c88547603b945604ea district0x A network of decentralized markets and communities. Create, operate, and govern. Powered by Ethereum, Aragon, and IPFS. DNT Etherscan.io district0x.png TRUE FALSE TRUE
30-Contracts 0x1820a4b7618bde71dce8cdc73aab6c95905fad24 1820 Registry Registration smart contract as described in this EIP: https://eips.ethereum.org/EIPS/eip-1820 REG QuickBlocks TRUE FALSE TRUE
30-Contracts 0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c Bancor Bancor Protocol is a standard for a new generation of cryptocurrencies called Smart Tokens BNT Etherscan.io bancor.png TRUE FALSE TRUE
30-Contracts 0x1fd169A4f5c59ACf79d0Fd5d91D1201EF1Bce9f1 Moloch DAO TrueBlocks.io TRUE FALSE TRUE
30-Contracts 0x211a94468Ba1e379236B45cA42Dc63eE93139c7E Moloch Guild Bank TrueBlocks.io TRUE FALSE TRUE
30-Contracts 0x2157a7894439191e520825fe9399ab8655e0f708 Uniswap Exchange Template Uniswap exchange template Uniswap website TRUE FALSE TRUE
30-Contracts 0x304a554a310c7e546dfe434669c62820b7d83490 DarkDAO TrueBlocks.io TRUE FALSE TRUE
30-Contracts 0x37f25bd26848cf02614c29338dd71a4d03b62218 Camp Decentral Donations (Giveth) Giveth website TRUE FALSE TRUE
30-Contracts 0x52c782a023847342274e8e7f12360b820ed8c777 Tennagraph (Giveth) No Vote on ProgPow Giveth website TRUE FALSE TRUE
30-Contracts 0x5adf43dd006c6c36506e2b2dfa352e60002d22dc Giveth Donations Vault GHT Giveth website TRUE FALSE TRUE
30-Contracts 0x6090a6e47849629b7245dfa1ca21d94cd15878ef ENS Related ENS TrueBlocks.io TRUE FALSE TRUE
30-Contracts 0x713b73c3994442b533e6a083ec968e40606810ec Eth Early Adoption Reg An early, known-dead address useful for testing EEAR quickBlocks.io TRUE FALSE TRUE
30-Contracts 0x7b3e509c78faee4c589d3d07ea0c8929aa2835e3 Moloch Paying Proxy TrueBlocks.io TRUE FALSE TRUE
30-Contracts 0x807640a13483f8ac783c557fcdf27be11ea4ac7a The Dao Extra Balance Account TrueBlocks.io TRUE FALSE TRUE
30-Contracts 0x8942595a2dc5181df0465af0d7be08c8f23c93af Gnosis Safe for Moloch TrueBlocks.io TRUE FALSE TRUE
30-Contracts 0x89d24a6b4ccb1b6faa2625fe562bdd9a23260359 Dai Stablecoin v1.0 No description DAI Etherscan.io dai_stablecoin.png TRUE FALSE TRUE
30-Contracts 0x8f951903c9360345b4e1b536c7f5ae8f88a64e79 Giveth Donations Giveth website TRUE FALSE TRUE
30-Contracts 0x914d1b8b43e92723e64fd0a06f5bdb8dd9b10c79 DarkDAOextraBalance TrueBlocks.io TRUE FALSE TRUE
30-Contracts 0x960b236a07cf122663c4303350609a66a7b288c0 Aragon Create and manage unstoppable organizations. Aragon lets you manage entire organizations using the blockchain. This makes Aragon organizations more efficient than their traditional counterparties. ANT Etherscan.io aragon_28.png TRUE FALSE TRUE
30-Contracts 0x9e6316f44baeeee5d41a1070516cc5fa47baf227 ShapeShift 2 TrueBlocks.io TRUE FALSE TRUE
30-Contracts 0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2 Maker Maker is a Decentralized Autonomous Organization that creates and insures the dai stablecoin on the Ethereum blockchain MKR Etherscan.io mkr-etherscan-35.png TRUE FALSE TRUE
30-Contracts 0xa1eb40c284c5b44419425c4202fa8dabff31006b Proof of Attendance Token Proof of Attendance Token POAP Etherscan.io TRUE FALSE TRUE
30-Contracts 0xaa1a6e3e6ef20068f7f8d8c835d2d22fd5116444 ReplaySafeSplit TrueBlocks.io TRUE FALSE TRUE
30-Contracts 0xb9ef770b6a5e12e45983c5d80545258aa38f3b78 0chain 0chain is an infinitely scalable decentralized Cloud for any application. ZCN Etherscan.io ochain_28_2.png TRUE FALSE TRUE
30-Contracts 0xbb9bc244d798123fde783fcc1c72d3bb8c189413 The DAO The infamous DAO smart contract DAO Etherscan.io TRUE FALSE TRUE
30-Contracts 0xbf4ed7b27f1d666546e30d74d50d173d20bca754 WithdrawDAO TrueBlocks.io TRUE FALSE TRUE
30-Contracts 0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2 Wrapped Ether WETH TrueBlocks.io TRUE FALSE TRUE
30-Contracts 0xc0a47dfe034b400b47bdad5fecda2621de6c4d95 Uniswap Factory Contract Uniswap factory contract UNI Uniswap website TRUE FALSE TRUE
30-Contracts 0xd2e16a20dd7b1ae54fb0312209784478d069c7b0 DaoManagedAcct TrueBlocks.io TRUE FALSE TRUE
30-Contracts 0xDa4a4626d3E16e094De3225A751aAb7128e96526 DAO Curator TrueBlocks.io TRUE FALSE TRUE
30-Contracts 0xfb6916095ca1df60bb79ce92ce3ea74c37c5d359 Etherum Tip Jar The ethereum tip jar TIP Ethereum.org TRUE FALSE TRUE
33-Set Protocol 01-Core 0x5ecd8e3b059bc5a69e2d7a73c60bd4e9788972ff Set Protocol Vault https://github.com/SetProtocol/set-protocol-contracts TRUE FALSE TRUE
33-Set Protocol 01-Core 0x75fbbdeafe23a48c0736b2731b956b7a03adcfb2 Set Protocol Core https://github.com/SetProtocol/set-protocol-contracts TRUE FALSE TRUE
33-Set Protocol 01-Core Caller 0xf3862af14cbb4d9b781e41a3d4d74e7c2cdb73e2 Set Protocol Core Caller https://github.com/SetProtocol/set-protocol-contracts TRUE FALSE TRUE
33-Set Protocol 02-Modules 0x1db929398958082d2080aa1b501e460503f60467 Rebalance Auction Module https://github.com/SetProtocol/set-protocol-contracts TRUE FALSE TRUE
33-Set Protocol 02-Modules 0x1f6ee9ce38e6beeb968bb91f755998548d3165e0 Rebalancing Token Issuance Module https://github.com/SetProtocol/set-protocol-contracts TRUE FALSE TRUE
33-Set Protocol 02-Modules 0x38e5462bbe6a72f79606c1a0007468aa4334a92b Exchange Issue Module https://github.com/SetProtocol/set-protocol-contracts TRUE FALSE TRUE
33-Set Protocol 02-Modules 0x8440f6a2c42118bed0d6e6a89bf170ffd13e21c0 Issuance Order Module https://github.com/SetProtocol/set-protocol-contracts TRUE FALSE TRUE
33-Set Protocol 03-Factories 0x14f0321be5e581abf9d5bc76260bf015dc04c53d Set Token Factory https://github.com/SetProtocol/set-protocol-contracts TRUE FALSE TRUE
33-Set Protocol 03-Factories 0x4c4c649455c6433dc48ff1571c9e50ac58f0cefa Rebalancing Set Token Factory https://github.com/SetProtocol/set-protocol-contracts TRUE FALSE TRUE
33-Set Protocol 04-Libraries 0x293dcc7c8350ce9f1283572ac89861f768158151 Standard Settle Rebalance Library https://github.com/SetProtocol/set-protocol-contracts TRUE FALSE TRUE
33-Set Protocol 04-Libraries 0x5374e7a0f9e0ad299e094825a220354b6ca6c787 EIP 712 Library https://github.com/SetProtocol/set-protocol-contracts TRUE FALSE TRUE
33-Set Protocol 04-Libraries 0x931a809658b677390c80a443415d16f4fcd37d1e Rebalancing Helper Library https://github.com/SetProtocol/set-protocol-contracts TRUE FALSE TRUE
33-Set Protocol 04-Libraries 0xa71978db8333586c65be76ed559e7e51fc81ec66 Standard Propose Library https://github.com/SetProtocol/set-protocol-contracts TRUE FALSE TRUE
33-Set Protocol 04-Libraries 0xadd948fd8ce465a0920bd3678e8b9ec86d00c79c Standard Fail Auction Library https://github.com/SetProtocol/set-protocol-contracts TRUE FALSE TRUE
33-Set Protocol 04-Libraries 0xb2aa8743633bfcb0bc6aecd6cc0aff96d961f218 Exchange Issue Library https://github.com/SetProtocol/set-protocol-contracts TRUE FALSE TRUE
33-Set Protocol 04-Libraries 0xc5d96411341d16c4bd16733500d6ab8c5421097e Standard Start Rebalance Library https://github.com/SetProtocol/set-protocol-contracts TRUE FALSE TRUE
33-Set Protocol 04-Libraries 0xc6e977741487dd8457397b185709cd89b0cf5e7e Order Library https://github.com/SetProtocol/set-protocol-contracts TRUE FALSE TRUE
33-Set Protocol 04-Libraries 0xf8ba20d0307c1b07cdf31bdf6c1efad786e6b448 Standard Place Bid Library https://github.com/SetProtocol/set-protocol-contracts TRUE FALSE TRUE
33-Set Protocol 05-Wrappers 0x12951b9eaa200237f9080c95ad93cc74c9d9bd45 Zero Ex Exchange Wrapper https://github.com/SetProtocol/set-protocol-contracts TRUE FALSE TRUE
33-Set Protocol 05-Wrappers 0x3700414bb6716fcd8b14344fb10ddd91fdea59ec Kyber Network Wrapper https://github.com/SetProtocol/set-protocol-contracts TRUE FALSE TRUE
33-Set Protocol 05-Wrappers 0x3d9da970fa85cb1fa9d405145d4c485224da045e ERC 20 Wrapper https://github.com/SetProtocol/set-protocol-contracts TRUE FALSE TRUE
33-Set Protocol 05-Wrappers 0x9378ad514c00e4869656ee27b634d852dd48fead Taker Wallet Wrapper https://github.com/SetProtocol/set-protocol-contracts TRUE FALSE TRUE
33-Set Protocol 06-Other 0x18b739aabc019d9ef160d44ba8a9dd6a717372af Payable Exchange Issue https://github.com/SetProtocol/set-protocol-contracts TRUE FALSE TRUE
33-Set Protocol 06-Other 0x25c499e7306248c308cef403d9824110817b305c Transfer Proxy https://github.com/SetProtocol/set-protocol-contracts TRUE FALSE TRUE
33-Set Protocol 06-Other 0x38891a2d24f71440f58aa1c6b9739fe93aa416d2 Initial Collateral Set https://github.com/SetProtocol/set-protocol-contracts TRUE FALSE TRUE
33-Set Protocol 06-Other 0x504e2230baace0974a61822d8f7ac255be3bf061 Bit Eth Rebalance Manager https://github.com/SetProtocol/set-protocol-contracts TRUE FALSE TRUE
33-Set Protocol 06-Other 0x50711c5cea991d54d37a2384d22568734976d154 Signature Validator https://github.com/SetProtocol/set-protocol-contracts TRUE FALSE TRUE
33-Set Protocol 06-Other 0x7f6e5d07f7e90f3ede0a5986671ef7734fbe04a9 Bit Eth Rebalancing Set Token https://github.com/SetProtocol/set-protocol-contracts TRUE FALSE TRUE
33-Set Protocol 06-Other 0x818c639ca5f986115eacf77e58d4804de1dd5d40 Linear Auction Price Curve https://github.com/SetProtocol/set-protocol-contracts TRUE FALSE TRUE
33-Set Protocol 06-Other 0x8d5cf870354fffae0586b639da6d4e4f6c659c69 WhiteList https://github.com/SetProtocol/set-protocol-contracts TRUE FALSE TRUE
34-Kyber Network 0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950 Kyber Network TrueBlocks.io TRUE FALSE TRUE
34-Kyber Network 0x57f8160e1c59d16c01bbe181fd94db4e56b60495 Kyber Weth Reserve TrueBlocks.io TRUE FALSE TRUE
34-Kyber Network 0x63825c174ab367968ec60f061753d3bbd36a0d8f Kyber Reserve TrueBlocks.io TRUE FALSE TRUE
34-Kyber Network 0x798abda6cc246d0edba912092a2a3dbd3d11191b Kyber Conversion Rates TrueBlocks.io TRUE FALSE TRUE
34-Kyber Network 0xdfc85c08d5e5924ab49750e006cf8a826ffb7b13 Kyber Sanity Rates TrueBlocks.io TRUE FALSE TRUE
34-Kyber Network 0xb0d27b025d5f79f955fa37cd3170b998661abff3 Kyber Orderbook Reserve TrueBlocks.io TRUE FALSE TRUE
34-Kyber Network 0x52166528fcc12681af996e409ee3a421a4e128a3 Kyber Fee Burner TrueBlocks.io TRUE FALSE TRUE
34-Kyber Network 0xc0d3e654676b117663143eac33b45b620171244b Kyber Order List TrueBlocks.io TRUE FALSE TRUE
50-Tokens 0x0000000000085d4780b73119b644ae5ecd22b376 TrueUSD The only regulated, exchange-independent stablecoin backed 1-for-1 with US Dollars TUSD Etherscan.io trueusdtoken_28.png TRUE FALSE TRUE
50-Tokens 0x001f0aa5da15585e5b2305dbab2bac425ea71007 IPSX Blockchain based system fully automated, with full clearing of utility tokens associating the price and distribution based on offer and demand for IPs IPSX Etherscan.io ipexchange_28.png TRUE FALSE TRUE
50-Tokens 0x006bea43baa3f7a6f765f14f10a1a1b08334ef45 Stox Blockchain Prediction Markets Platform. STX Etherscan.io stox_28.png TRUE FALSE TRUE
50-Tokens 0x009e864923b49263c7f10d19b7f8ab7a9a5aad33 Knoxstertoken FortKnoxster offers end-to-end encrypted inbox, chat, decentralized storage, calling, video conferencing, voice messages and much more. FKX Etherscan.io fortknoxster28.png TRUE FALSE TRUE
50-Tokens 0x00c4b398500645eb5da00a1a379a88b11683ba01 Eximchain Token Eximchain’s public blockchain network enables privacy, scalability and security for the supply chain. EXC Etherscan.io eximchaintoken_28.png TRUE FALSE TRUE
50-Tokens 0x0142c3b2fc51819b5af5dfc4aa52df9722790851 Paycentos Paycent is a hybrid mobile app that lets users convert digital assets to fiat and vice versa in real time. PYN Etherscan.io paycent_28.png TRUE FALSE TRUE
50-Tokens 0x0198f46f520f33cd4329bd4be380a25a90536cd5 PlayChip No description PLA Etherscan.io playchip_28.png TRUE FALSE TRUE
50-Tokens 0x0223fc70574214f65813fe336d870ac47e147fae CZR CanonChain will be triggered from the protocol layer and the chip layer of the communication to provide a robust foundation for the entire blockchain industry. CZR Etherscan.io canonchain_28.png TRUE FALSE TRUE
50-Tokens 0x02725836ebf3ecdb1cdf1c7b02fcbbfaa2736af8 BitAir Payments solutions for the travel industry. BTCA Etherscan.io bitair_28.png TRUE FALSE TRUE
50-Tokens 0x02f2d4a04e6e01ace88bd2cd632875543b2ef577 PKG Token Decentralized game platform operating on Blockchain, using the VR/AR technologies and machine learning tool to enhance the experience of playing games and purchasing digital goods in games. PKG Etherscan.io pkg_28.png TRUE FALSE TRUE
50-Tokens 0x02f61fd266da6e8b102d4121f5ce7b992640cf98 LikeCoin LikeCoin aims to reinvent the Like by realigning creativity and reward. We enable attribution and cross-application collaboration on creative contents LIKE Etherscan.io like_28.png TRUE FALSE TRUE
50-Tokens 0x033030feebd93e3178487c35a9c8ca80874353c9 BDT Token The ICO market is becoming more regulated, but this isn’t stopping scams from penetrating the cryptocurrency community. That is why we created the Founding Community Bitdepositary with integrated payment systems. BDT Etherscan.io bitdepositary_28.png TRUE FALSE TRUE
50-Tokens 0x0371a82e4a9d0a4312f3ee2ac9c6958512891372 Student Coin Student jobs marketplace. STU Etherscan.io bitjob_28.jpg TRUE FALSE TRUE
50-Tokens 0x03c780cd554598592b97b7256ddaad759945b125 BTRN Biotron is a fully transparent personal data analytics platform on blockchain. BTRN Etherscan.io biotron_28.png TRUE FALSE TRUE
50-Tokens 0x049399a6b048d52971f7d122ae21a1532722285f Fire Lotto Decentralized lottery platform based on the Ethereum blockchain and managed by smart contracts without any human intervention. FLOT Etherscan.io firelotto_28.png TRUE FALSE TRUE
50-Tokens 0x04f2e7221fdb1b52a68169b25793e51478ff0329 Cappasity Cappasity brings an in-store browsing experience to online retail through interactive 3D images. CAPP Etherscan.io cappasity28.png TRUE FALSE TRUE
50-Tokens 0x054c64741dbafdc19784505494029823d89c3b13 ETERNAL TOKEN The Eternal Project is an undertaking for the rapid spread of Eternal Wallet and Eternal Coin around the world, by utilizing the skills and infrastructures of global corporations and individuals. XET Etherscan.io eternaltoken_28.png TRUE FALSE TRUE
50-Tokens 0x056fd409e1d7a124bd7017459dfea2f387b6d5cd Gemini dollar Gemini dollar combines the creditworthiness and price stability of the U.S. dollar with blockchain technology and the oversight of U.S. regulators. GUSD Etherscan.io gemini_28.png TRUE FALSE TRUE
50-Tokens 0x05860d453c7974cbf46508c06cba14e211c629ce Eden Coin No description EDN Etherscan.io edenchain.png TRUE FALSE TRUE
50-Tokens 0x05aaaa829afa407d83315cded1d45eb16025910c SP8DE Token The Game of Chance.Changed SPX Etherscan.io sp8de_28.png TRUE FALSE TRUE
50-Tokens 0x05c7065d644096a4e4c3fe24af86e36de021074b LendConnect Aims to be a passive-income-generating Platform. LCT Etherscan.io lendconnect_28.png TRUE FALSE TRUE
50-Tokens 0x05d412ce18f24040bb3fa45cf2c69e506586d8e8 MFTU Coin for custom CyberFM 'Mainstream For The Underground' royalty payments. MFTU Etherscan.io mftu_28.png TRUE FALSE TRUE
50-Tokens 0x05f4a42e251f2d52b8ed15e9fedaacfcef1fad27 Zilliqa Zilliqa is a high-throughput public blockchain platform - designed to scale to thousands of transactions per second. ZIL Etherscan.io zilliqa_28_2.png TRUE FALSE TRUE
50-Tokens 0x06147110022b768ba8f99a8f385df11a151a9cc8 ACE ACE is a utility token, that serves as a form of access to the TokenStars platform and its internal currency. TokenStars is the first talent management platform on the blockchain, that will connect talents & celebrities with fans and advertisers. ACE Etherscan.io tokenstars_28.png TRUE FALSE TRUE
50-Tokens 0x0707681f344deb24184037fc0228856f2137b02e FNKOSToken FNKOS is a fog computing-based blockchain operating system designed to make the best use of the edge computing resources such as idle hardware network and storage resources. FNKOS Etherscan.io foglink_28.png TRUE FALSE TRUE
50-Tokens 0x0743392132d1a03a902c477e5a176f256ba3220c Coimatic 3.0 A global decentralized blockchain deal and discount marketplace. CTIC3 Etherscan.io coimatic.png TRUE FALSE TRUE
50-Tokens 0x076a93a40bf9e0d21d3f75dd1e0584ddbe0f9d1a Qurito The online community where you earn for sharing knowledge & ideas. QURO Etherscan.io qurito_28.png TRUE FALSE TRUE
50-Tokens 0x076c97e1c869072ee22f8c91978c99b4bcb02591 CommerceBlock Infrastructure company that provides a suite of tools for traditional asset markets to leverage the highly flexible and powerful qualities of blockchain based digital asset protocols CBT Etherscan.io commerceblock.png TRUE FALSE TRUE
50-Tokens 0x0784dbabb6c6834bddfb7cfee116ba049e5dafab IBTC IBTC is a tokenized version of Bitcoin build on Ethereum blockchain. IBTC Etherscan.io ibtc_28.png TRUE FALSE TRUE
50-Tokens 0x07d9e49ea402194bf48a8276dafb16e4ed633317 DALECOIN DaleCoin is an ERC20 token based on the Ethereum blockchain which shall serve as a payment token for goods and services to whoever wishes to accept it. DALC Etherscan.io dalecoin2.png TRUE FALSE TRUE
50-Tokens 0x07e3c70653548b04f0a75970c1f81b4cbbfb606f Delta Legally Binding Smart Contracts, Powered by AI. DLT Etherscan.io agrello_delta_28.png TRUE FALSE TRUE
50-Tokens 0x08711d3b02c8758f2fb3ab4e80228418a7f8e39c Edgeless The Ethereum smart contract-based that offers a 0% house edge and solves the transparency question once and for all. EDG Etherscan.io edgeless.png TRUE FALSE TRUE
50-Tokens 0x08d32b0da63e2c3bcf8019c9c5d849d7a9d791e6 Dentacoin Aims to be the blockchain solution for the global dental industry. Dentacoin Etherscan.io Dentacoin.png TRUE FALSE TRUE
50-Tokens 0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8 Tierion Network Token Tierion creates software to reduce the cost and complexity of trust. Anchoring data to the blockchain and generating a timestamp proof. TNT Etherscan.io tierion_28.png TRUE FALSE TRUE
50-Tokens 0x0947b0e6d821378805c9598291385ce7c791a6b2 Lendingblock Lendingblock is an open exchange for cryptocurrency loans, where borrowers and lenders are instantly matched in simple, safe and transparent way. LND Etherscan.io lendingblock_28_2.png TRUE FALSE TRUE
50-Tokens 0x0a43edfe106d295e7c1e591a4b04b5598af9474c DevCon 2 - Token 1 TrueBlocks.io TRUE FALSE TRUE
50-Tokens 0x0aef06dcccc531e581f0440059e6ffcc206039ee Intelligent Trading Technologies Applying artificial intelligence and technical analysis, our fleet of data bots follow real-time data sources and send you actionable alerts for success in cryptocurrency markets. ITT Etherscan.io itt_token_28.jpg TRUE FALSE TRUE
50-Tokens 0x0af44e2784637218dd1d32a322d44e603a8f0c6a Matryx Matryx is the Collaborative Research & Development Engine of Nanome’s VR toolset. MTX Etherscan.io matryx_28.png TRUE FALSE TRUE
50-Tokens 0x0affa06e7fbe5bc9a764c979aa66e8256a631f02 Polybius Private banking platform PLBT Etherscan.io polybius.png TRUE FALSE TRUE
50-Tokens 0x0b1724cc9fda0186911ef6a75949e9c0d3f0f2f3 Etheriya AN Ethereum Token Backed Micro & Macro Freelance Marketplace. RIYA Etherscan.io etheriya.png TRUE FALSE TRUE
50-Tokens 0x0b4bdc478791897274652dc15ef5c135cae61e60 DAEX Token DAEX is an open and decentralized clearing and settlement ecosystem for all cryptocurrency exchanges. DAX Etherscan.io daextoken_28.png TRUE FALSE TRUE
50-Tokens 0x0b76544f6c413a555f309bf76260d1e02377c02a Internet Node Token IOT applications INT Etherscan.io int_28_2.png TRUE FALSE TRUE
50-Tokens 0x0bb217e40f8a5cb79adf04e1aab60e5abd0dfc1e SwftCoin SWFT is a cross-blockchain platform. SWFTC Etherscan.io swiftcoin_28_2.png TRUE FALSE TRUE
50-Tokens 0x0bc61dded5f6710c637cf8288eb6058766ce1921 CEN Connecting the Financial World Coinsuper Ecosystem Network CEN Etherscan.io coinsuper_28.png TRUE FALSE TRUE
50-Tokens 0x0bef619cf38cf0c22967289b8419720fbd1db9f7 AEN HealthTech, Smart Capital, and Prime Brokerage Solutions AEN Etherscan.io aenco_28.png TRUE FALSE TRUE
50-Tokens 0x0c6e8a8358cbde54f8e4cd7f07d5ac38aec8c5a4 PlatonCoin Platon Finance with its PlatonCoin token is an ecosystem that connects the digital crypto-world with the real one. Through the Platon Club, the project aims to drive adoption of cryptocurrencies. PLTC Etherscan.io platonfinance_28.png TRUE FALSE TRUE
50-Tokens 0x0cf0ee63788a0849fe5297f3407f701e122cc023 DATAcoin Streamr is building the world’s leading Marketplace and decentralised Network for real-time data. DATA Etherscan.io streamr2_28.png TRUE FALSE TRUE
50-Tokens 0x0d262e5dc4a06a0f1c90ce79c7a60c09dfc884e4 J8T Democratizing influence. J8T Etherscan.io jet8_28.png TRUE FALSE TRUE
50-Tokens 0x0d8775f648430679a709e98d2b0cb6250d2887ef BAT The Basic Attention Token is the new token for the digital advertising industry. BAT Etherscan.io bat.png TRUE FALSE TRUE
50-Tokens 0x0d88ed6e74bbfd96b831231638b66c05571e824f AVT An open-source protocol that delivers the global standard for ticketing. AVT Etherscan.io aventus_28.png TRUE FALSE TRUE
50-Tokens 0x0db8d8b76bc361bacbb72e2c491e06085a97ab31 iQeon decentralized PvP gaming platform integrating games, applications and services based on intelligent competitions between users created to help players monetize their in-gaming achievements. IQN Etherscan.io iqeon.png TRUE FALSE TRUE
50-Tokens 0x0df721639ca2f7ff0e1f618b918a65ffb199ac4e uDOO Howdoo is a decentralized social platform for users, content creators, & advertisers. UDOO Etherscan.io howdoo_28.png TRUE FALSE TRUE
50-Tokens 0x0e0989b1f9b8a38983c2ba8053269ca62ec9b195 Po.et Po.et aims to reclaim value for content creators, publishers and consumers. POE Etherscan.io poet_28_2.png TRUE FALSE TRUE
50-Tokens 0x0e8d6b471e332f140e7d9dbb99e5e3822f728da6 ABYSS The next-generation digital distribution platform, delivering all types of video games (including AAA-titles), to the fast-growing global game community. ABYSS Etherscan.io abyss2_28.png TRUE FALSE TRUE
50-Tokens 0x0ea984e789302b7b612147e4e4144e64f21425eb WaleTokeN Wal-e is social media project behind of WaleTokeN, we developing Live video streaming social network application, this application will allowed you connect with people through live videos and messaging. WTN Etherscan.io waletoken_28.png TRUE FALSE TRUE
50-Tokens 0x0ebb614204e47c09b6c3feb9aaecad8ee060e23e CPAY Cryptopay aims to provide the ability to spend, save, and transact digital currencies. CPAY Etherscan.io cryptopay28.png TRUE FALSE TRUE
50-Tokens 0x0f02e27745e3b6e9e1310d19469e2b5d7b5ec99a Peculium Saving management on blockchain technology PCL Etherscan.io peculiumtoken_28.png TRUE FALSE TRUE
50-Tokens 0x0f4ca92660efad97a9a70cb0fe969c755439772c Leverj Decentralized leveraged exchange. LEV Etherscan.io leverj_28.png TRUE FALSE TRUE
50-Tokens 0x0f5d2fb29fb7d3cfee444a200298f468908cc942 Decentraland Decentraland is a virtual reality platform powered by the Ethereum blockchain. Users can create, experience, and monetize content and applications MANA Etherscan.io decentraland_28.png?v=1 TRUE FALSE TRUE
50-Tokens 0x0f8c45b896784a1e408526b9300519ef8660209c XMAX No description XMX Etherscan.io xmax_28.png TRUE FALSE TRUE
50-Tokens 0x1014613e2b3cbc4d575054d4982e580d9b99d7b1 BitCapitalVendorToken No description BCV Etherscan.io bitcapital_28.png TRUE FALSE TRUE
50-Tokens 0x103c3a209da59d3e7c4a89307e66521e081cfdf0 Genesis Vision A platform for the private trust management market, built on Blockchain technology and Smart Contracts. GVT Etherscan.io genesisvision_28.png TRUE FALSE TRUE
50-Tokens 0x1063ce524265d5a3a624f4914acd573dd89ce988 Aigang Aigang is DAO Insurance Protocol Crowd-sourced insurance pools discovery. AIX Etherscan.io aigang_28.png TRUE FALSE TRUE
50-Tokens 0x107c4504cd79c5d2696ea0030a8dd4e92601b82e Bloom Decentralized credit scoring powered by Ethereum and IPFS. BLT Etherscan.io hellobloom_28.png TRUE FALSE TRUE
50-Tokens 0x1122b6a0e00dce0563082b6e2953f3a943855c1f Centrality Token Centrality is a graph theory term – a point in a decentralised system that unites to other points. CENNZ Etherscan.io centrality_28.png TRUE FALSE TRUE
50-Tokens 0x1183f92a5624d68e85ffb9170f16bf0443b4c242 QVT Sell and buy crypto assets around the world for local payment methods. QVT Etherscan.io qvolta_28.png TRUE FALSE TRUE
50-Tokens 0x123ab195dd38b1b40510d467a6a359b201af056f LGO Exchange with decentralized ledgers LGO Etherscan.io legolas_28.png TRUE FALSE TRUE
50-Tokens 0x1245ef80f4d9e02ed9425375e8f649b9221b31d8 ArbitrageCT Trading crypto-currency terminal for two exchanges simultaneously. ARCT Etherscan.io arbitragect_28.png TRUE FALSE TRUE
50-Tokens 0x12759512d326303b45f1cec8f7b6fd96f387778e TrakInvest Token Virtual social trading platform for equities and cryptocurrencies powered by proprietary AI engine TRAK Etherscan.io trakinvest_28.png TRUE FALSE TRUE
50-Tokens 0x12b19d3e2ccc14da04fae33e63652ce469b3f2fd GRID Grid+ creates products that enable mainstream use of digital assets and cryptocurrencies. Grid+ strives to be the hardware, software, and cryptocurrency experts building the foundation for a more efficient and inclusive financial future. GRID Etherscan.io grid_28.png TRUE FALSE TRUE
50-Tokens 0x12b306fa98f4cbb8d4457fdff3a0a0a56f07ccdf Spectre.ai D-Token Broker-less financial trading platform. SXDT Etherscan.io spectre-ai_28.png TRUE FALSE TRUE
50-Tokens 0x12fef5e57bf45873cd9b62e9dbd7bfb99e32d73e Cofoundit Cofound.it is a platform that connects you to teams that have trained to become serious blockchain businesses CFI Etherscan.io cofoundit.png TRUE FALSE TRUE
50-Tokens 0x13119e34e140097a507b07a5564bde1bc375d9e6 MoneyToken MoneyToken provides crypto-backed loans, stablecoin MTC and decentralized exchange service IMT Etherscan.io moneytoken_28.png TRUE FALSE TRUE
50-Tokens 0x138a8752093f4f9a79aaedf48d4b9248fab93c9c Musiconomi No description MCI Etherscan.io musiconomi28.png TRUE FALSE TRUE
50-Tokens 0x139d9397274bb9e2c29a9aa8aa0b5874d30d62e3 BoutsPro Professional Karate Sports Organization BOUTS Etherscan.io boutspro_28.png TRUE FALSE TRUE
50-Tokens 0x13c2fab6354d3790d8ece4f0f1a3280b4a25ad96 PHI Token PHI = Platform for Hybrid Investments, a marketplace for financial services and products both for traditional than crypto assets. PHI Etherscan.io phitoken_28.png TRUE FALSE TRUE
50-Tokens 0x13f11c9905a08ca76e3e853be63d4f0944326c72 Divi Exchange Token Digital Currency DIVX Etherscan.io diviproject_28.png TRUE FALSE TRUE
50-Tokens 0x13f1b7fdfbe1fc66676d56483e21b1ecb40b58e2 Accelerator A proof-of-stake smart contract backed by a physical mining facility. ACC Etherscan.io accelerator_28.png TRUE FALSE TRUE
50-Tokens 0x13f25cd52b21650caa8225c9942337d914c9b030 realchain No description RCT Etherscan.io realchain_28.png TRUE FALSE TRUE
50-Tokens 0x1410434b0346f5be678d0fb554e5c7ab620f8f4a KAN A decentralized cryptocurrency-concentrated & content payment community. KAN Etherscan.io kanland28.png TRUE FALSE TRUE
50-Tokens 0x1460a58096d80a50a2f1f956dda497611fa4f165 Own Own (formerly Chainium) is a security token blockchain project focused on revolutionising equity markets. CHX Etherscan.io owntoken_28_3.png TRUE FALSE TRUE
50-Tokens 0x146d8d942048ad517479c9bab1788712af180fde Mobile Integrated Blockchain MIB coin is a Mobile Mining based Blockchain that has constructed an ecosystem that minimizes the maintenance of Blockchain Network. MIB Etherscan.io mibtoken_28.png TRUE FALSE TRUE
50-Tokens 0x14c926f2290044b647e1bf2072e67b495eff1905 Bethereum Bethereum is a decentralised, social-betting platform based on Ethereum technology and Smart Contracts. Bether is the digital ERC-223 token powering the Bethereum solution. BETHER Etherscan.io bethereum_28.png TRUE FALSE TRUE
50-Tokens 0x151202c9c18e495656f372281f493eb7698961d5 DEBITUM No description DEB Etherscan.io debitum_28.png TRUE FALSE TRUE
50-Tokens 0x153ed9cc1b792979d2bde0bbf45cc2a7e436a5f9 XOVBank XOV is researching and building a Global Decentralised Bank using blockchain technology. XOV Etherscan.io xovtoken_28.png TRUE FALSE TRUE
50-Tokens 0x15bda08c3afbf5955d6e9b235fd55a1fd0dbc829 Alpha Coin Alpha coin is based for the basis of first-class mining, experts were appointed to develop the mining farm APC Etherscan.io alphacoin_28.png TRUE FALSE TRUE
50-Tokens 0x1602af2c782cc03f9241992e243290fccf73bb13 Qubitica A distributed blockchain enterprise. QBIT Etherscan.io qubitica_28_3.png TRUE FALSE TRUE
50-Tokens 0x168296bb09e24a88805cb9c33356536b980d3fc5 RHOC The RChain Platform aims to be a decentralized, economically sustainable public compute infrastructure. RHOC Etherscan.io rchain.png TRUE FALSE TRUE
50-Tokens 0x16f812be7fff02caf662b85d5d58a5da6572d4df United Traders Token TTC Protocol is a decentralized and token-incentivized protocol for social network services and online communities UTT Etherscan.io UTT_2.png TRUE FALSE TRUE
50-Tokens 0x170b275ced089fffaebfe927f445a350ed9160dc OwnData Owndata is a crypto marketplace for data sellers and buyers. OWN Etherscan.io owndata_28.png TRUE FALSE TRUE
50-Tokens 0x171d750d42d661b62c277a6b486adb82348c3eca Omnitude Omnitude is a middleware layer allowing eCommerce businesses to adopt blockchain quickly and efficiently, without needing to replace current systems. ECOM Etherscan.io omnitude_28.png TRUE FALSE TRUE
50-Tokens 0x1776e1f26f98b1a5df9cd347953a26dd3cb46671 Numeraire The stock market is inefficient with respect to new developments in machine learning — only a fraction of the world's data scientists have access to its data. Numerai is changing this. NMR Etherscan.io numeraire_28_2.png TRUE FALSE TRUE
50-Tokens 0x177d39ac676ed1c67a2b268ad7f1e58826e5b0af CoinDash Get insight about your crypto portfolio. Benchmark it against the market and other traders. Follow the best performing investors and invest exactly like them with the copy trade feature. Discover new opportunities, and new tools. CDT Etherscan.io blox_28_2.png TRUE FALSE TRUE
50-Tokens 0x17aa18a4b64a55abed7fa543f2ba4e91f2dce482 Insight Chain Insight Chain is an EOS-based data ecosystem on the blockchain, works on building Wall Street-like financial order in the blockchain domain. INB Etherscan.io insightchain28.png TRUE FALSE TRUE
50-Tokens 0x17e67d1cb4e349b9ca4bc3e17c7df2a397a7bb64 Freyr Coin Blockchain-based collectibles data authentication platform FREC Etherscan.io freyrchain_28.png TRUE FALSE TRUE
50-Tokens 0x17fd666fa0784885fa1afec8ac624d9b7e72b752 FLiK No description FLIK Etherscan.io flikcoin28.png TRUE FALSE TRUE
50-Tokens 0x1829aa045e21e0d59580024a951db48096e01782 FuzeX Cryptocurrency, credit, debit and reward payments at your fingertips FXT Etherscan.io fuzex_28.png TRUE FALSE TRUE
50-Tokens 0x1844b21593262668b7248d0f57a220caaba46ab9 Oyster Pearl Platform for website monetization and distributed storage, built on IOTA Tangle and Ethereum PRL Etherscan.io oyster28_2.png TRUE FALSE TRUE
50-Tokens 0x1961b3331969ed52770751fc718ef530838b6dee BitDegree The BitDegree platform will offer students the best online courses with a clear and transparent blockchain based reward system and achievement tracking. BDG Etherscan.io bitdegree28.png TRUE FALSE TRUE
50-Tokens 0x1966d718a565566e8e202792658d7b5ff4ece469 nDEX nDEX Network is a next generation decentralized ethereum token exchange. Our primary goal is to provide a clean, fast and secure trading environment with lowest service charge. NDX Etherscan.io ndx_28.png TRUE FALSE TRUE
50-Tokens 0x1985365e9f78359a9b6ad760e32412f4a445e862 Reputation Augur combines the magic of prediction markets with the power of a decentralized network to create a stunningly accurate forecasting tool REP Etherscan.io augur.png TRUE FALSE TRUE
50-Tokens 0x1a0f2ab46ec630f9fd638029027b552afa64b94c Aston X Document Distribution Platform ATX Etherscan.io atx_28.png TRUE FALSE TRUE
50-Tokens 0x1a66e09f7dccc10eae46e27cfa6b8d44a50df1e7 PRASM AI-Based Decentralized Bioinformatic Network PSM Etherscan.io prasm_28.png TRUE FALSE TRUE
50-Tokens 0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db AppCoins AppCoins is meant for use in the AppCoins blockchain platform to perform transactions in the app store ecosystem. APPC Etherscan.io appcoins_28.png TRUE FALSE TRUE
50-Tokens 0x1a95b271b0535d15fa49932daba31ba612b52946 minereum Self-mining smart contract. MNE Etherscan.io minereum.png TRUE FALSE TRUE
50-Tokens 0x1b22c32cd936cb97c28c5690a0695a82abf688e6 MyWish Aims to provide a service for funds management in case of different life events, in safe and convenient way. WISH Etherscan.io mywish_28.png TRUE FALSE TRUE
50-Tokens 0x1b793e49237758dbd8b752afc9eb4b329d5da016 ViteToken High-performance Decentralized Application Platform VITE Etherscan.io vite_28.png TRUE FALSE TRUE
50-Tokens 0x1b9743f556d65e757c4c650b4555baf354cb8bd3 EthBits ETBS Token ETHBITS iTrade aims to provide new users with all the information needed to decide whom to follow, including a full profile outlining profit and loss in different time frames and historical graphs of performance. ETBS Etherscan.io ethbits2_28.png TRUE FALSE TRUE
50-Tokens 0x1bcbc54166f6ba149934870b60506199b6c9db6d ROC No description ROC Etherscan.io rasputin_28.png TRUE FALSE TRUE
50-Tokens 0x1c4481750daa5ff521a2a7490d9981ed46465dbd BLOCKMASON CREDIT PROTOCOL TOKEN Democratizing the creation of credit through permanently recorded debts and obligations. BCPT Etherscan.io blockmason_28_2.png TRUE FALSE TRUE
50-Tokens 0x1c62aca2b7605db3606eacda7bc67a1857ddb8ff Soniq Token The Soniq project mission is using the innovative blockchain technology to support and connect people who want to be a part of the music world and monetize their favorite hobby. SONIQ Etherscan.io soniq_28.png TRUE FALSE TRUE
50-Tokens 0x1c79ab32c66acaa1e9e81952b8aaa581b43e54e7 TEAM TEAM is a utility token for TokenStars - the talent management platform, that connects sports & entertainment stars with fans and advertisers, bringing interaction between them to a new level. TEAM Etherscan.io tokenstars_28.png TRUE FALSE TRUE
50-Tokens 0x1c83501478f1320977047008496dacbd60bb15ef DigitexFutures The DGTX Token is a protocol token that has real world utility and value. Its value derives directly from its utility as a vehicle for the commission-free trading of liquid futures contracts on the price of Bitcoin, Ethereum and Litecoin against the US Dollar. DGTX Etherscan.io digitextoken_28.png TRUE FALSE TRUE
50-Tokens 0x1cb3209d45b2a60b7fbca1ccdbf87f674237a4aa ThoreCoin THR represents a basket of top-traded high-demand coins Simply put, it’s a Basket of Multiple cryptocurrencies in which you can invest by buying tokens THR Etherscan.io thorecoin_28.png TRUE FALSE TRUE
50-Tokens 0x1ccaa0f2a7210d76e1fdec740d5f323e2e1b1672 Faceter Сomputer vision surveillance technology powered by fog network of miners. FACE Etherscan.io faceter_28.png TRUE FALSE TRUE
50-Tokens 0x1d462414fe14cf489c7a21cac78509f4bf8cd7c0 CanYaCoin Blockchain-Powered Marketplace of Services CAN Etherscan.io canya2_28.png TRUE FALSE TRUE
50-Tokens 0x1d4ccc31dab6ea20f461d329a0562c1c58412515 Talao Reputation Protocol and Decentralized Marketplace based on Ethereum blockchain TALAO Etherscan.io talao_28.png TRUE FALSE TRUE
50-Tokens 0x1dea979ae76f26071870f824088da78979eb91c8 SPINDLE Unique Investment/Asset Management Platform SPD Etherscan.io spindle_28.png TRUE FALSE TRUE
50-Tokens 0x1e26b3d07e57f453cae30f7ddd2f945f5bf3ef33 ClearCoin ClearCoin makes buying and selling of media on the blockchain simple and seamless. Its platform powers a system allowing for complete data transparency everyone can trust. XCLR Etherscan.io clearcoin_28.png TRUE FALSE TRUE
50-Tokens 0x1e49ff77c355a3e38d6651ce8404af0e48c5395f ModulTrade Token A smart-contract open ecosystem providing small businesses access to global trade by using a crypto token for payment or borrowing. MTRc Etherscan.io modultrade_28.png TRUE FALSE TRUE
50-Tokens 0x1f54638b7737193ffd86c19ec51907a7c41755d8 Sola Token No description SOL Etherscan.io sola_28.png TRUE FALSE TRUE
50-Tokens 0x1fe70be734e473e5721ea57c8b5b01e6caa52686 RNTB Token BitRent is the blockchain platform meant to attract commercial and residential property investments at an early stage of construction in order to gain maximum profit by selling and renting out the acquired property RNTB Etherscan.io rntb_28.png TRUE FALSE TRUE
50-Tokens 0x2008e3057bd734e10ad13c9eae45ff132abc1722 Zebi Coin Blockchaining India’s Big Data ZCO Etherscan.io zebi_28.png TRUE FALSE TRUE
50-Tokens 0x20e94867794dba030ee287f1406e100d03c84cd3 DEW DEW is a Decentralized Exchange and also a gateway to the global blockchain securities market, through an almighty account, you can trade Blockchain Assets, Stocks, Futures, Forex, ETF, Bet Contract etc. DEW Etherscan.io dewone_28.png TRUE FALSE TRUE
50-Tokens 0x20f7a3ddf244dc9299975b4da1c39f8d5d75f05a Sapien Network Sapien is a decentralized social news platform. SPN Etherscan.io sapien_28_2.png TRUE FALSE TRUE
50-Tokens 0x2167fb82309cf76513e83b25123f8b0559d6b48f LionCoin LION token is an ERC20 token powered by the Ethereum Blockchain. It is a utility token designed to operate inside of the CoinLion trading platform and research portal. LION Etherscan.io coinlion_28.png TRUE FALSE TRUE
50-Tokens 0x21d5678a62dfe63a47062469ebb2fac2817d8832 YoloCash A decentralized e-commerce platform builds on blockchain for loyalty rewards. YLC Etherscan.io yoloworld_28.png TRUE FALSE TRUE
50-Tokens 0x2233799ee2683d75dfefacbcd2a26c78d34b470d Network Network Learning is an e-learning platform where users who are new to cryptocurrency can come visit to learn the basics. NTWK Etherscan.io networktoken_28.png TRUE FALSE TRUE
50-Tokens 0x226bb599a12c826476e3a771454697ea52e9e220 Propy Property Transactions Secured Through Blockchain. PRO Etherscan.io propy_28.png TRUE FALSE TRUE
50-Tokens 0x228ba514309ffdf03a81a205a6d040e429d6e80c Global Social Chain Social Chain based on hundreds of millions of users. GSC Etherscan.io gsc_28.png TRUE FALSE TRUE
50-Tokens 0x23352036e911a22cfc692b5e2e196692658aded9 Friendz Coin A digital marketing revolutionon the blockchain FDZ Etherscan.io friendz_28.png TRUE FALSE TRUE
50-Tokens 0x2344871f523cbb28a4f60045531184cf1f03ad24 RoBET - Truly Decentralized Sportsbetting RoBet is an Ethereum based sportsbook platform regulated by smart contracts. ROBET Etherscan.io robettoken3_28.png TRUE FALSE TRUE
50-Tokens 0x23b75bc7aaf28e2d6628c3f424b3882f8f072a3c Vice No description VIT Etherscan.io viceindustry_28.png TRUE FALSE TRUE
50-Tokens 0x23ccc43365d9dd3882eab88f43d515208f832430 MidasProtocol A smart, secure, user-friendly, multi-coin wallet for all essential crypto needs, from safekeeping, intelligent trading, portfolio management, easy conversion to fiat and spending of cryptocurrencies - MidasProtocol.io MAS Etherscan.io midasprotocol_28.png TRUE FALSE TRUE
50-Tokens 0x241ba672574a78a3a604cdd0a94429a73a84a324 4NEW CLEAN GREEN ENERGY FOR CRYPTO MINING KWATT Etherscan.io 4newtoken_28.png TRUE FALSE TRUE
50-Tokens 0x24692791bc444c5cd0b81e3cbcaba4b04acd1f3b UnikoinGold UnikoinGold is an ethereum-based, decentralized crypto token designed for high-volume, high security, inexpensive gaming and esports related transactions on the Unikrn platform. UKG Etherscan.io unikoingold_28.png TRUE FALSE TRUE
50-Tokens 0x24dcc881e7dd730546834452f21872d5cb4b5293 SCRL Scroll is a data storage, management and logistics platform that uses blockchain technology to add better cryptography and more transparency to the Internet of Information. SCRL Etherscan.io scrollnetwork2_28.png TRUE FALSE TRUE
50-Tokens 0x24ddff6d8b8a42d835af3b440de91f3386554aa4 IUNGO Decentralised global wireless internet provider ING Etherscan.io iungo.png TRUE FALSE TRUE
50-Tokens 0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6 Raiden The Raiden Network is an off-chain scaling solution, enabling near-instant, low-fee and scalable payments. It’s complementary to the Ethereum blockchain and works with any ERC20 compatible token. RDN Etherscan.io raiden28.png TRUE FALSE TRUE
50-Tokens 0x2604fa406be957e542beb89e6754fcde6815e83f Playkey Decentralized Cloud Gaming Platform. PKT Etherscan.io playkey_28.png TRUE FALSE TRUE
50-Tokens 0x263c618480dbe35c300d8d5ecda19bbb986acaed MOT To build a decentralized, privacy-preserving ecosystem of financial products, services, and applications with unrestricted access for all. MOT Etherscan.io olympuslab_28.png TRUE FALSE TRUE
50-Tokens 0x264dc2dedcdcbb897561a57cba5085ca416fb7b4 QunQunCommunities Incentive community platform based on blockchain technology. QUN Etherscan.io qunqun_28.png TRUE FALSE TRUE
50-Tokens 0x26cb3641aaa43911f1d4cb2ce544eb652aac7c47 CrystalToken Crystal Token is a cryptocurrency token innovating the field of smart trading with the novel Crystal AI Trading which rewards token holders constantly. CYL Etherscan.io crystaltoken_28.png TRUE FALSE TRUE
50-Tokens 0x26db5439f651caf491a87d48799da81f191bdb6b CashBetCoin Blockchain-Powered iGaming Platform CBC Etherscan.io cashbetcoin1_28.png TRUE FALSE TRUE
50-Tokens 0x26e75307fc0c021472feb8f727839531f112f317 Crypto20 Tokenized Crypto Index Fund. C20 Etherscan.io crypto20_28.png TRUE FALSE TRUE
50-Tokens 0x27054b13b1b798b345b591a4d22e6562d47ea75a AirSwap AirSwap is based on the Swap protocol, a peer-to-peer protocol for trading Ethereum tokens AST Etherscan.io airswap_28_2.png TRUE FALSE TRUE
50-Tokens 0x27695e09149adc738a978e9a678f99e4c39e9eb9 KickCoin KICKICO is a platform for safe and easy fundraising for ICO, preICO, crowdfunding and crowdinvesting. KICK Etherscan.io kickcoin_28_2.png TRUE FALSE TRUE
50-Tokens 0x27dce1ec4d3f72c3e457cc50354f1f975ddef488 AirToken AirToken is an Ethereum-based ERC-20 digital utility token that facilitates the transfer of mobile airtime, data and currency, as well as payments for goods and services, with minimal friction and fees. AIR Etherscan.io airtoken_28.png TRUE FALSE TRUE
50-Tokens 0x27f706edde3ad952ef647dd67e24e38cd0803dd6 UselessEthereumToken The world's first 100% honest Ethereum ICO. UET Etherscan.io uetoken_28.png TRUE FALSE TRUE
50-Tokens 0x2859021ee7f2cb10162e67f33af2d22764b31aff Silent Notary Token SilentNotary is a multiplatform decentralized service for confirmation of event existence. SilentNotary converts an event into legally significant evidence, excluding the possibility of falsification. SNTR Etherscan.io silentnotary.png TRUE FALSE TRUE
50-Tokens 0x286708f069225905194673755f12359e6aff6fe1 STACS The STACS Protocol is a unique public/permission hybrid global Blockchain to issue, trade, clear and settle Digital Securities. STACS Etherscan.io stacktoken_28.png TRUE FALSE TRUE
50-Tokens 0x286bda1413a2df81731d4930ce2f862a35a609fe WaBi Tael is a digital token for safe consumer products. Tael are used as loyalty points in the Techrock ecosystem to reward consumers and encourage behavior while generating data. WaBi Etherscan.io taelpay_28.png TRUE FALSE TRUE
50-Tokens 0x28b5e12cce51f15594b0b91d5b5adaa70f684a02 NapoleonX No description NPX Etherscan.io napoleonx_28_2.png TRUE FALSE TRUE
50-Tokens 0x28c8d01ff633ea9cd8fc6a451d7457889e698de6 Ethereum Gold Ethereumgold is a nonprofit that aims to connects people to low-cost financial services to fight poverty and develop individual potential. ETG Etherscan.io ethereumgold_28.png TRUE FALSE TRUE
50-Tokens 0x28dee01d53fed0edf5f6e310bf8ef9311513ae40 BlitzPredict Decentralized Betting Exchange, Built on Augur and 0x XBP Etherscan.io blitzpredict_28.png TRUE FALSE TRUE
50-Tokens 0x29d75277ac7f0335b2165d0895e8725cbf658d73 BitDice Bitdice Casino. CSNO Etherscan.io bitdice28.png TRUE FALSE TRUE
50-Tokens 0x2a05d22db079bc40c2f77a1d1ff703a56e631cc1 BitAsean BitAsean is Ethereum-based Token. Their aim is for BitAsean to be the cryptocurrency of the ASEAN region. BAS Etherscan.io BitAsean_28.png TRUE FALSE TRUE
50-Tokens 0x2a093bcf0c98ef744bb6f69d74f2f85605324290 FoodCoin FoodCoin Ecosystem is a blockchain ecosystem, architecturally designed to create a global marketplace of food and agricultural products based on our experience with the active 1000 EcoFarms platform. FOOD Etherscan.io foodcoin_28.png TRUE FALSE TRUE
50-Tokens 0x2aec18c5500f21359ce1bea5dc1777344df4c0dc FarmaTrust Token The global tracking system which provides security to the pharmaceutical companies, governments, regulators and the public, that counterfeit drugs do not enter the supply chain. FTT Etherscan.io farmatrust_28.png TRUE FALSE TRUE
50-Tokens 0x2baac9330cf9ac479d819195794d79ad0c7616e3 AdBank Online advertising platform, middleman-free. ADB Etherscan.io adbank_28.png TRUE FALSE TRUE
50-Tokens 0x2bba3cf6de6058cc1b4457ce00deb359e2703d7f HashCoin As a platform and bridge linking the physical and digital world, HashFuture aims to solve the problem of digital assets property rights issues and cross-chain asset transfer. HSC Etherscan.io hashcoin_28.png TRUE FALSE TRUE
50-Tokens 0x2bdc0d42996017fce214b21607a515da41a9e0c5 SkinCoin SkinCoin is a multipurpose cryptocurrency for gaming industry. SKIN Etherscan.io skincoin_28.png TRUE FALSE TRUE
50-Tokens 0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca Simple Token OST KIT gives you all the tools you need to run your blockchain-powered economy on open scalable sidechains. ST Etherscan.io ost_28.png TRUE FALSE TRUE
50-Tokens 0x2c82c73d5b34aa015989462b2948cd616a37641f Spectre.ai U-Token Broker-less financial trading platform. SXUT Etherscan.io spectre-ai_28.png TRUE FALSE TRUE
50-Tokens 0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724 VIB Viberate is a crowdsourced live music ecosystem and a blockchain-based marketplace, where musicians are matched with booking agencies and event organizers. VIB Etherscan.io viberate2_28.png TRUE FALSE TRUE
50-Tokens 0x2ccbff3a042c68716ed2a2cb0c544a9f1d1935e1 DMarket a blockchain-based cross-game universe for turning virtual items into real assets. DMT Etherscan.io dmarket2_28.png TRUE FALSE TRUE
50-Tokens 0x2cf618c19041d9db330d8222b860a624021f30fb CRUISEBIT Cruisebit Coin is crypto currency that represents digital value provided by blockchain technology CRBT Etherscan.io cruisebit_28.png TRUE FALSE TRUE
50-Tokens 0x2d0e95bd4795d7ace0da3c0ff7b706a5970eb9d3 All Sports Coin All Sports public blockchain hopes to fill in the blank of blockchain application in sports industry through blockchain technology. SOC Etherscan.io allsportschain_28.png TRUE FALSE TRUE
50-Tokens 0x2d184014b5658c453443aa87c8e9c4d57285620b JSE Token JSEcoin is a consumer focused web platform built on top of a browser mined blockchain JSE Etherscan.io jsecoin_28.png TRUE FALSE TRUE
50-Tokens 0x2d3e7d4870a51b918919e7b851fe19983e4c38d5 UBCoin The Ubcoin is a crypto-goods p2p exchange where anyone can safely and instantly sell any good’s and become a cryptocurrency holder. UBC Etherscan.io ubcoin_28.png TRUE FALSE TRUE
50-Tokens 0x2daee1aa61d60a252dc80564499a69802853583a Authorship Aims to make the Internet More Free and Accessible For Authors and Readers. ATS Etherscan.io authorship_28.png TRUE FALSE TRUE
50-Tokens 0x2e071d2966aa7d8decb1005885ba1977d6038a65 DICE Provably fair online Ether gaming on the Ethereum Blockchain ROL Etherscan.io etheroll.png TRUE FALSE TRUE
50-Tokens 0x2ecb13a8c458c379c4d9a7259e202de03c8f3d19 Block-Chain.com Token Block-chain.com is the guide to the world of blockchain and cryptocurrency. BC Etherscan.io blockchaincom_28.png TRUE FALSE TRUE
50-Tokens 0x2f141ce366a2462f02cea3d12cf93e4dca49e4fd Free Coin Social project to promote cryptocurrency usage and increase global wealth FREE Etherscan.io freecoin_28.png TRUE FALSE TRUE
50-Tokens 0x2f85e502a988af76f7ee6d83b7db8d6c0a823bf9 LatiumX tasking platform to incorporate an automated rating system in tandem with a one-to-many task relationship structure LATX Etherscan.io latiumx_28.png TRUE FALSE TRUE
50-Tokens 0x2f9b6779c37df5707249eeb3734bbfc94763fbe2 CrowdWizToken Democratize the investing process by eliminating intermediaries and placing the power and control where it belongs - entirely into the hands of investors. WIZ Etherscan.io TRUE FALSE TRUE
50-Tokens 0x2fa32a39fc1c399e0cc7b2935868f5165de7ce97 PayFair PAYFAIR is a decentralized Escrow platform and p2p exchange. PFR Etherscan.io payfair2_28.png TRUE FALSE TRUE
50-Tokens 0x2fb12bccf6f5dd338b76be784a93ade072425690 BEAT Beat aims to unleash the value of verified health and sports data using cutting edge blockchain technology. BEAT Etherscan.io beat_28.png TRUE FALSE TRUE
50-Tokens 0x30cecb5461a449a90081f5a5f55db4e048397bab Tracto A technology for rapid and anonymous coin transaction organization. TRCT Etherscan.io tracto_28.png TRUE FALSE TRUE
50-Tokens 0x3136ef851592acf49ca4c825131e364170fa32b3 CoinFi CoinFi offers crowdsourced and professionally curated research, analysis, trading signals, trading algorithms, and market-moving news to give cryptocurrency traders the real-time market intelligence needed to gain an edge. COFI Etherscan.io coinfi_28.png TRUE FALSE TRUE
50-Tokens 0x31f3d9d1bece0c033ff78fa6da60a6048f3e13c5 EBCoin The universal cryptocurrency based on Ethereum for travelers in the world EBC Etherscan.io ebcoin_28.png TRUE FALSE TRUE
50-Tokens 0x3209f98bebf0149b769ce26d71f7aea8e435efea Traxia Membership Token A decentralized global trade finance ecosystem. TMT Etherscan.io traxia_28.png TRUE FALSE TRUE
50-Tokens 0x327682779bab2bf4d1337e8974ab9de8275a7ca8 Blockport Social crypto exchange based on a hybrid-decentralized architecture. BPT Etherscan.io blockport.png TRUE FALSE TRUE
50-Tokens 0x32d74896f05204d1b6ae7b0a3cebd7fc0cd8f9c7 Kcash Kcash, which is positioned to become digital bank on the blockchain, is the first cross-chain digital wallet from China and manages the most types of digital assets in the world. KCASH Etherscan.io kcash_28.png TRUE FALSE TRUE
50-Tokens 0x3363d570f6df3c74d486bb8785d3ebfb9e2347d3 HedgeTrade HedgeTrade is a platform uniquely designed for trading predictions, analysis, and education. HEDG Etherscan.io hedgefundtoken_28.png TRUE FALSE TRUE
50-Tokens 0x336f646f87d9f6bc6ed42dd46e8b3fd9dbd15c22 Crystal Clear Token Decentralized Service System CCT Etherscan.io crystalclear_28.png TRUE FALSE TRUE
50-Tokens 0x33c623a2baafeb8d15dfaf3ce44095efec83d72c SGPay SGPay is the payments system built for the mobile platform. It aims to combine new digital tokens, next generation innovators and modern e-payment systems together. SGP Etherscan.io sgpay_28.png TRUE FALSE TRUE
50-Tokens 0x33f90dee07c6e8b9682dd20f73e6c358b2ed0f03 Trident Group The Trident Group Cryptographic Token (TRDT) is the lifeblood of the Trident Blockchain Platform, allowing the instant & secure transmission of information worldwide while securing the Trident Network. TRDT Etherscan.io trident28.png TRUE FALSE TRUE
50-Tokens 0x340d2bde5eb28c1eed91b2f790723e3b160613b7 BLOCKv Create and Public Digital virtual goods on the blockchain VEE Etherscan.io blockv_28.png TRUE FALSE TRUE
50-Tokens 0x3543638ed4a9006e4840b105944271bcea15605d UNetworkToken A Decentralized Protocol for Publishing and Valuing Online Content UUU Etherscan.io unetwork_28.png TRUE FALSE TRUE
50-Tokens 0x3597bfd533a99c9aa083587b074434e61eb0a258 DENT Aims to disrupt the mobile operator industry by creating an open marketplace for buying and selling of mobile data. DENT Etherscan.io dentcoin.png TRUE FALSE TRUE
50-Tokens 0x35a69642857083ba2f30bfab735dacc7f0bac969 BBN Banyan Network is a fusion of big data network based on blockchain technology called Data Fusion Value Chain Network (DVN). BBN Etherscan.io banyan28.png TRUE FALSE TRUE
50-Tokens 0x36905fc93280f52362a1cbab151f25dc46742fb5 BTOCoin Bottos is more than an AI public chain with both data and model marketplaces, Bottos is a platform for the value exchange of AI and affiliated industries based on data feeding, with the ultimate goal of building a distributed AI new ecosystem. BTO Etherscan.io bottos_28_3.png TRUE FALSE TRUE
50-Tokens 0x36d10c6800d569bb8c4fe284a05ffe3b752f972c We Show Token Decentralized blockchain base short-video entertainment platform WET Etherscan.io weshow_28.png TRUE FALSE TRUE
50-Tokens 0x378903a03fb2c3ac76bb52773e3ce11340377a32 Clipper Coin Capital No description CCCX Etherscan.io clippercoin_28.png TRUE FALSE TRUE
50-Tokens 0x37d40510a2f5bc98aa7a0f7bf4b3453bcfb90ac1 Beluga Banking Infrastructure Token No description BBI Etherscan.io belugapay_28.png TRUE FALSE TRUE
50-Tokens 0x37e8789bb9996cac9156cd5f5fd32599e6b91289 AidCoin Powering the AIDChain platform to make the nonprofit sector more transparent. AID Etherscan.io aidcoin_28.png TRUE FALSE TRUE
50-Tokens 0x37f04d2c3ae075fad5483bb918491f656b12bdb6 Vestchain VestChain is the unique blockchain platform that has full capacity to tackle the problems inherent to the existing blockchains, i.e that of expandability and time needed for confirmation. VEST Etherscan.io vestchain_28.png TRUE FALSE TRUE
50-Tokens 0x3833dda0aeb6947b98ce454d89366cba8cc55528 SPHTX Integrating Blockchain with Enterprise Applications. SPHTX Etherscan.io sophiatx_28.png TRUE FALSE TRUE
50-Tokens 0x3839d8ba312751aa0248fed6a8bacb84308e20ed Bezop Bezop is a complete solution for running a successful ecommerce business online for new and experienced users. Bez Etherscan.io bezop_28.png TRUE FALSE TRUE
50-Tokens 0x386467f1f3ddbe832448650418311a479eecfc57 Embers A decentralized creative commerce platform. EMB Etherscan.io embers_28.png TRUE FALSE TRUE
50-Tokens 0x3883f5e181fccaf8410fa61e12b59bad963fb645 Theta Token A decentralized peer-to-peer network that aims to offer improved video delivery at lower costs. THETA Etherscan.io theta_28.png TRUE FALSE TRUE
50-Tokens 0x38c6a68304cdefb9bec48bbfaaba5c5b47818bb2 HPBCoin HPB (High-Performance Blockchain) is a new kind of block chain hardware and software architecture, which includes a chip acceleration engine and the blockchain platform, aiming to realize the performance extension of distributed applications HPB Etherscan.io hpbcoin_28.png TRUE FALSE TRUE
50-Tokens 0x39013f961c378f02c2b82a6e1d31e9812786fd9d Speed Mining Service A diversified virtual currency mining operation. SMS Etherscan.io smscoin_28.png TRUE FALSE TRUE
50-Tokens 0x3918c42f14f2eb1168365f911f63e540e5a306b5 Neural Protocol NEURAL PROTOCOL (NRP) is a decentralized blockchain-based payment instrument that aims to bring together buyers and sellers in a marketplace. NRP Etherscan.io nrptoken_28.png TRUE FALSE TRUE
50-Tokens 0x39bb259f66e1c59d5abef88375979b4d20d98022 WAX Token Global Decentralized Marketplace for Virtual Assets. WAX Etherscan.io wax.png TRUE FALSE TRUE
50-Tokens 0x3a1237d38d0fb94513f85d61679cad7f38507242 Mindexcoin Mindexcoin (MIC) is a token that enables data operations in the Ethereum Decentralized Network. MIC Etherscan.io mindexcoin_28.png TRUE FALSE TRUE
50-Tokens 0x3a1bda28adb5b0a812a7cf10a1950c920f79bcd3 FLIP FLIP CRYPTO-TOKEN FOR GAMERS FROM GAMING EXPERTS FLP Etherscan.io gameflip_28.png TRUE FALSE TRUE
50-Tokens 0x3a92bd396aef82af98ebc0aa9030d25a23b11c6b Tokenbox TBX is an utility token that providing an access to the platform’s services. TBX Etherscan.io tokenbox_28.png TRUE FALSE TRUE
50-Tokens 0x3abdff32f76b42e7635bdb7e425f0231a5f3ab17 ConnectJob ConnectJob, Decentralized App to offer users to pay services with crypto. CJT Etherscan.io connectjob_28.png TRUE FALSE TRUE
50-Tokens 0x3adfc4999f77d04c8341bac5f3a76f58dff5b37a Privatix Internet Broadband Marketplace powered by P2P VPN Network on Blockchain. PRIX Etherscan.io privatix_28.png TRUE FALSE TRUE
50-Tokens 0x3c4a3ffd813a107febd57b2f01bc344264d90fde EnergiToken EnergiToken rewards energy saving behaviour. Our blockchain solution will create a platform to reward energy efficient behaviour through EnergiToken. ETK Etherscan.io energitoken_28.png TRUE FALSE TRUE
50-Tokens 0x3c6a7ab47b5f058be0e7c7fe1a4b7925b8aca40e Cajutel No description CAJ Etherscan.io cajutel_28.png TRUE FALSE TRUE
50-Tokens 0x3d1ba9be9f66b8ee101911bc36d3fb562eac2244 RvT The Decentralized & Mobile Cyber Security Token. RVT Etherscan.io rivet_28.png TRUE FALSE TRUE
50-Tokens 0x3e1d5a855ad9d948373ae68e4fe1f094612b1322 HyperQuant Token HyperQuant is a professional platform for digital asset management and dApps creation that is based on the cutting-edge AI and Fast Order Delivery protocol HQT Etherscan.io hyperquant_28.jpg TRUE FALSE TRUE
50-Tokens 0x3e65e1eefde5ea7ccfc9a9a1634abe90f32262f8 BaaSid BaaSid is 100% decentralized and stores your personal information on a network without a central database. BAAS Etherscan.io baasid_28.png TRUE FALSE TRUE
50-Tokens 0x3f06b5d78406cd97bdf10f5c420b241d32759c80 CYBERFM Cyber-FM Radio provides listeners access to music that is not normally available within the “Mainstream.” CYFM Etherscan.io cyberfmradio_28.png TRUE FALSE TRUE
50-Tokens 0x3fd8f39a962efda04956981c31ab89fab5fb8bc8 Rotharium Rotharium Platform interfaces allow connection of standard cloud or on-premise database solutions to the blockchain. RTH Etherscan.io rotharium_28.png TRUE FALSE TRUE
50-Tokens 0x40395044ac3c0c57051906da938b54bd6557f212 MobileGo A dedicated token to bring eSports to everyone. MGO Etherscan.io mobilego_28.png TRUE FALSE TRUE
50-Tokens 0x408e41876cccdc0f92210600ef50372656052a38 Republic A decentralized dark pool for trustless cross-chain atomic trading of Ether, ERC20 tokens and Bitcoin pairs. REN Etherscan.io republicprotocol_28.png TRUE FALSE TRUE
50-Tokens 0x4092678e4e78230f46a1534c0fbc8fa39780892b OCoin ODYSSEY’s mission is to build the next-generation decentralized sharing economy & Peer to Peer Ecosystem. OCN Etherscan.io odyssey_28.png TRUE FALSE TRUE
50-Tokens 0x4156d3342d5c385a87d264f90653733592000581 Salt SALT lets you leverage your blockchain assets to secure cash loans. We make it easy to get money without having to sell your favorite investment. SALT Etherscan.io salt_28.png TRUE FALSE TRUE
50-Tokens 0x4162178b78d6985480a308b2190ee5517460406d Colu Local Network A Decentralized Payment Network Powered By Communities CLN Etherscan.io colu_28.png TRUE FALSE TRUE
50-Tokens 0x41875c2332b0877cdfaa699b641402b7d4642c32 FUTURAX Cryptocurrency exchanger platform. FTXT Etherscan.io futurex_28.png TRUE FALSE TRUE
50-Tokens 0x419b8ed155180a8c9c64145e76dad49c0a4efb97 AltEstate token ALT is a utility token for Alt.Estate — the IT company offering a new solution for real estate tokenization ALT Etherscan.io altstate_28.png TRUE FALSE TRUE
50-Tokens 0x419c4db4b9e25d6db2ad9691ccb832c8d9fda05e Dragon Dragonchain simplifies the integration of real business applications onto a blockchain. DRGN Etherscan.io dragonchain_28.png TRUE FALSE TRUE
50-Tokens 0x419d0d8bdd9af5e606ae2232ed285aff190e711b FunFair FunFair is a decentralised gaming platform powered by Ethereum smart contracts FUN Etherscan.io FunFair.png TRUE FALSE TRUE
50-Tokens 0x41ab1b6fcbb2fa9dced81acbdec13ea6315f2bf2 XinFin XDCE Hybrid Blockchain technology company focused on international trade and finance. XDCE Etherscan.io xinfin_28.png TRUE FALSE TRUE
50-Tokens 0x41dbecc1cdc5517c6f76f6a6e836adbee2754de3 MedToken Medicalchain uses blockchain technology to securely store health records and maintain a single version of the truth. MTN Etherscan.io medicalchain_28.png TRUE FALSE TRUE
50-Tokens 0x41e5560054824ea6b0732e656e3ad64e20e94e45 Civic Giving businesses and individuals the tools to control and protect identities CVC Etherscan.io civic_28_2.png TRUE FALSE TRUE
50-Tokens 0x4212fea9fec90236ecc51e41e2096b16ceb84555 Six Domain Asset SixDomainChain (SDChain) is a decentralized public blockchain ecosystem that integrates international standards of IoT Six-Domain Model and reference architecture standards for distributed blockchain. SDA Etherscan.io sdchain_28.png TRUE FALSE TRUE
50-Tokens 0x422866a8f0b032c5cf1dfbdef31a20f4509562b0 Adshares Adshares Network is a decentralized, peer-to-peer market for programmatic advertising. Adshares gives advertisers and publishers ability to trade directly without the need for centralized ad exchanges. ADST Etherscan.io adshares_28.png TRUE FALSE TRUE
50-Tokens 0x4234f63b1d202f6c016ca3b6a0d41d7d85f17716 QNTU A blockchain-powered lottery for a blockchain-powered future QNTU Etherscan.io quantaplc_28.png TRUE FALSE TRUE
50-Tokens 0x423b5f62b328d0d6d44870f4eee316befa0b2df5 GoToken GOToken aims to be the cryptocurrency for mobility services: those of the ParkinGO world. It is introduced into its business processes to ensure transparency. GOT Etherscan.io gonetwork_28.png TRUE FALSE TRUE
50-Tokens 0x4270bb238f6dd8b1c3ca01f96ca65b2647c06d3c FOTA Blockchain Platform for Global OTC Derivatives Market FOTA Etherscan.io fortuna_28.png TRUE FALSE TRUE
50-Tokens 0x4289c043a12392f1027307fb58272d8ebd853912 AiLink Token Open social platform based on blockchain ALI Etherscan.io ailink_28_2.png TRUE FALSE TRUE
50-Tokens 0x42d6622dece394b54999fbd73d108123806f6a18 SPANK A cryptoeconomic powered adult entertainment ecosystem built on the Ethereum network. SPANK Etherscan.io spankchain_28.png TRUE FALSE TRUE
50-Tokens 0x4355fc160f74328f9b383df2ec589bb3dfd82ba0 Opus Decentralised music platform built on Ethereum and IPFS. OPT Etherscan.io opus_28.png TRUE FALSE TRUE
50-Tokens 0x43567eb78638a55bbe51e9f9fb5b2d7ad1f125aa HAC Token (“HACKSPACE”) is a fund based platform that finances innovative hardware startup teams with cutting edge products and technologies. HAC Etherscan.io hackspace_28.png TRUE FALSE TRUE
50-Tokens 0x436f0f3a982074c4a05084485d421466a994fe53 Rate3 Payment Without Borders - A decentralised protocol for cross border payments and credit scoring. Empowered by Stellar and Ethereum. RTE Etherscan.io rate3_28.png TRUE FALSE TRUE
50-Tokens 0x4375e7ad8a01b8ec3ed041399f62d9cd120e0063 BZ Digital asset trading exchanges, providing professional digital asset trading and OTC (Over The Counter) services. BZ Etherscan.io bitz_token_28.png TRUE FALSE TRUE
50-Tokens 0x44197a4c44d6a059297caf6be4f7e172bd56caaf ELTCOIN Ethereum Limited Total Coin ELTCOIN Etherscan.io eltcoin_28.png TRUE FALSE TRUE
50-Tokens 0x44449fa4d607f807d1ed4a69ad942971728391c8 XMED Chain Token Connecting global medical data and find your ideal cross-border medical solution XMCT Etherscan.io xmct_28.png TRUE FALSE TRUE
50-Tokens 0x4470bb87d77b963a013db939be332f927f2b992e AdEx Decentralized Ad Network ADX Etherscan.io adex_28_2.png TRUE FALSE TRUE
50-Tokens 0x44bf22949f9cc84b61b9328a9d885d1b5c806b41 Mozo Token Mozo Project is a blockchain-based solution designed to help brick & mortar retailers drive foot traffic to their venues. MOZO Etherscan.io mozocoin_28.png TRUE FALSE TRUE
50-Tokens 0x45245bc59219eeaaf6cd3f382e078a461ff9de7b BANKEX The BANKEX Proof-of-Asset (PoA) Protocol is a new standard used to create smart assets and smart contracts for decentralized capital markets BKX Etherscan.io bankex_28.png TRUE FALSE TRUE
50-Tokens 0x45e42d659d9f9466cd5df622506033145a9b89bc Nexium The Economy of Beyond The Void is based on the Ethereum Blockchain, which can be used with tokens called Nexium. NxC Etherscan.io nexium_28.png TRUE FALSE TRUE
50-Tokens 0x461733c17b0755ca5649b6db08b3e213fcf22546 ATN ATN is a global artificial intelligence API marketplace where developers, technology suppliers and buyers come together to access and develop new and innovative forms of A.I. technology. ATN Etherscan.io atnetwork_28.png TRUE FALSE TRUE
50-Tokens 0x4618519de4c304f3444ffa7f812dddc2971cc688 Kind Ads Token Kind Ads is an advertising platform that serves user-friendly ads through more effective channels like email and push notifications. KIND Etherscan.io kindad_28.png TRUE FALSE TRUE
50-Tokens 0x46492473755e8df960f8034877f61732d718ce96 StarCredits Pariticipants can use a blockchain token to interact with the story on a deeper level. STRC Etherscan.io starcredits2_28.png TRUE FALSE TRUE
50-Tokens 0x464ebe77c293e473b48cfe96ddcf88fcf7bfdac0 Kryll A Crypto Traders Community KRL Etherscan.io kryll_28.png TRUE FALSE TRUE
50-Tokens 0x4672bad527107471cb5067a887f4656d585a8a31 Dropil Dropil focuses on innovative technologies for autonomous & intelligent trading, reporting and storage in the cryptocurrency world. DROP Etherscan.io dropil_28.png TRUE FALSE TRUE
50-Tokens 0x4689a4e169eb39cc9078c0940e21ff1aa8a39b9c Proton Token Data Intelligent Collaboration Network PTT Etherscan.io proton_28.png TRUE FALSE TRUE
50-Tokens 0x46b9ad944d1059450da1163511069c718f699d31 CREDITS CREDITS is an open blockchain platform with autonomous smart contracts and the internal cryptocurrency. The platform is designed to create services for blockchain systems using self-executing smart contracts and a public data registry. CS Etherscan.io credits2_28.png TRUE FALSE TRUE
50-Tokens 0x47bc01597798dcd7506dcca36ac4302fc93a8cfb Crowd Machine Compute Token Cyber Movie Chain is a project base on ERC-20 platform to develop a comprehensive block chain technology solution consisting of its Cyber Movie Chain Platform. CMCT Etherscan.io crowdmachine_28.png TRUE FALSE TRUE
50-Tokens 0x47d1a59cbdd19aee060c859c0009277e245328ae Sonder Overcome the barriers to integration of blockchain-technologies into e-commerce market. SNR Etherscan.io sonder_28.png TRUE FALSE TRUE
50-Tokens 0x47dd62d4d075dead71d0e00299fc56a2d747bebb EQUAL A Self-deflationary, Fairly Distributed, Multiplatform Utility Token. EQL Etherscan.io equaltoken_28.png TRUE FALSE TRUE
50-Tokens 0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7 TokenClub Token TokenClub, a blockchain-based cryptocurrency investment service community TCT Etherscan.io tokenclub_28.png TRUE FALSE TRUE
50-Tokens 0x48c1b2f3efa85fbafb2ab951bf4ba860a08cdbb7 ShowHand Showhand is the cryptocurrency of global gaming Industry and is trying to make gambling more inclusive, fair and decentralized. HAND Etherscan.io showhand_28.png TRUE FALSE TRUE
50-Tokens 0x48df4e0296f908ceab0428a5182d19b31fc037d6 Fitrova Fitrova is Revolutionizing the Health & Fitness Industry by Harnessing Blockchain Technology FRV Etherscan.io fitrova_28.png TRUE FALSE TRUE
50-Tokens 0x48f775efbe4f5ece6e0df2f7b5932df56823b990 Revain Revain is a new-generation feedback platform, based on the blockchain technology that does not allow to change or delete reviews and its authors get rewards for creating them! R Etherscan.io revaintoken_28.png TRUE FALSE TRUE
50-Tokens 0x48ff53777f747cfb694101222a944de070c15d36 Ether Kingdoms Token Ether Kingdoms is a new crypto-game with own ERC20 token, IMP. Key features: up to 365% annual POS reward, no ICO, fair Airdrop distribution only, already tradable on several exchanges. IMP Etherscan.io imp_28.png TRUE FALSE TRUE
50-Tokens 0x490c95be16384e1f28b9e864e98ffecfcbff386d REPME RPM token is a digital currency used as a medium of exchange and an appreciating store of value RPM Etherscan.io repme_28.png TRUE FALSE TRUE
50-Tokens 0x491c9a23db85623eed455a8efdd6aba9b911c5df HeroNodeToken Hero Node is a cross-public-blockchain and cross-platform DApp development platform and solutions. HER Etherscan.io heronode_28.png TRUE FALSE TRUE
50-Tokens 0x4946fcea7c692606e8908002e55a582af44ac121 FOAM Token The FOAM Proof of Location protocol empowers a permissionless and autonomous network of radio beacons that can offer secure location services independent of external centralized sources such as GPS through time synchronization. FOAM Etherscan.io foam_28.png TRUE FALSE TRUE
50-Tokens 0x499a6b77bc25c26bcf8265e2102b1b3dd1617024 Bitether Project based on online and offline shopping market all across the globe. BTR Etherscan.io bitether_28_2.png TRUE FALSE TRUE
50-Tokens 0x49aec0752e68d0282db544c677f6ba407ba17ed7 Billionaire Token Decentralized games on the blockchain. XBL Etherscan.io billionairetoken2_28.png TRUE FALSE TRUE
50-Tokens 0x49b127bc33ce7e1586ec28cec6a65b112596c822 ALX Blockchain Mobile Games Platform for Emerging Markets ALX Etherscan.io alax_28.png TRUE FALSE TRUE
50-Tokens 0x49bd2da75b1f7af1e4dfd6b1125fecde59dbec58 Linkey Token A platform to connect digital assets to real community. LKY Etherscan.io linkey_28.png TRUE FALSE TRUE
50-Tokens 0x4a220e6096b25eadb88358cb44068a3248254675 Quant Blockchain operating system that connects the world’s networks and facilitates the development of multi-chain applications. QNT Etherscan.io quantnetwork_28_2.png TRUE FALSE TRUE
50-Tokens 0x4a42d2c580f83dce404acad18dab26db11a1750e Relex Relex- setting new standards for FDI real estate development. RLX Etherscan.io relex3_28.png TRUE FALSE TRUE
50-Tokens 0x4a527d8fc13c5203ab24ba0944f4cb14658d1db6 Morpheus Infrastructure Token Morpheus Labs Blockchain Platform as a Service (BPaaS) simplifies and expedites your blockchain application development and gives you the flexibility to choose between available programming languages and blockchain runtimes that better suit your needs. MITx Etherscan.io morpheuslab_28.png TRUE FALSE TRUE
50-Tokens 0x4a6058666cf1057eac3cd3a5a614620547559fc9 Brickblock Online real estate broker BBK Etherscan.io brickblock2_28.png TRUE FALSE TRUE
50-Tokens 0x4aac461c86abfa71e9d00d9a2cde8d74e4e1aeea ZINC With a straightforward integration into any hiring process, Zinc simplifies, accelerates and reduces the cost of the hiring journey for workers and recruiters within the technology sector. ZINC Etherscan.io zincwork_28.png TRUE FALSE TRUE
50-Tokens 0x4af328c52921706dcb739f25786210499169afe6 Sakura Bloom SKB is a token used for various services, including Bitcoin exchange, direct cash exchange, making purchases, etc. SKB Etherscan.io sakurabloom_28.png TRUE FALSE TRUE
50-Tokens 0x4bbbc57af270138ef2ff2c50dbfad684e9e0e604 WABnetwork WAB network is a 5.0 Blockchain with outstanding features, a completed decentralization blockchain with remarkable transaction speed of millions per second. WAB Etherscan.io wabnetwork_28.png TRUE FALSE TRUE
50-Tokens 0x4bf4f2ea258bf5cb69e9dc0ddb4a7a46a7c10c53 Rapids Fast and secure payments across social media via blockchain technology RPD Etherscan.io rapids_28.png TRUE FALSE TRUE
50-Tokens 0x4c0fbe1bb46612915e7967d2c3213cd4d87257ad APIS Key currency of masternode coin & the first masternode mediation. APIS Etherscan.io apis_28.png TRUE FALSE TRUE
50-Tokens 0x4c383bdcae52a6e1cb810c76c70d6f31a249ec9b Rusgas RusGas is a project aimed at funding and subsequent implementation of researches in natural gas production, processing, storage, and transportation. RGS Etherscan.io rusgas_28.PNG TRUE FALSE TRUE
50-Tokens 0x4cc19356f2d37338b9802aa8e8fc58b0373296e7 SelfKey SelfKey is a blockchain based self-sovereign identity ecosystem that aims to empower individuals and companies to find more freedom, privacy and wealth through the full ownership of their digital identity. KEY Etherscan.io selfkey_28.png TRUE FALSE TRUE
50-Tokens 0x4ce6b362bc77a24966dda9078f9cef81b3b886a7 NPER NPER is a project that implements a global IP platform on blockchain main network NPER Etherscan.io nper_28.png TRUE FALSE TRUE
50-Tokens 0x4ceda7906a5ed2179785cd3a40a69ee8bc99c466 AION A multi-tier blockchain system designed to address unsolved questions of scalability, privacy, and interoperability in blockchain networks AION Etherscan.io aion-network_28.png TRUE FALSE TRUE
50-Tokens 0x4cf488387f035ff08c371515562cba712f9015d4 WePower Blockchain Green energy trading platform WPR Etherscan.io wepower_28.png TRUE FALSE TRUE
50-Tokens 0x4d807509aece24c0fa5a102b6a3b059ec6e14392 Menlo One Menlo One is a framework for making decentralized applications as fast and easy to use as their centralized predecessors. Users earn tokens for serving blockchain data from lightening Content Nodes. ONE Etherscan.io menlotoken_28.png TRUE FALSE TRUE
50-Tokens 0x4d8fc1453a0f359e99c9675954e656d80d996fbf Bee Beenest is a home sharing platform for hosts to list their homes and for guests to find accommodations. BEE Etherscan.io beetoken_28.png TRUE FALSE TRUE
50-Tokens 0x4dc3643dbc642b72c158e7f3d2ff232df61cb6ce Amber Combining high-tech sensors, blockchain protocol and smart contracts, we are building a universally verifiable, community-driven ecosystem to assure the quality, safety & origins of products. AMB Etherscan.io ambrosus_28.png TRUE FALSE TRUE
50-Tokens 0x4df47b4969b2911c966506e3592c41389493953b FundRequest FundRequest is more than a platform to fund projects. We provide the best experience to fund an issue and incentivise the open source community. FND Etherscan.io fundrequest_28.png TRUE FALSE TRUE
50-Tokens 0x4df812f6064def1e5e029f1ca858777cc98d2d81 Xaurum Xaurum is unit of value on the golden blockchain, it represents an increasing amount of gold and can be exchanged for it by melting XAUR Etherscan.io TRUE FALSE TRUE
50-Tokens 0x4e005a760e00e17c4912a8070eec047cfecbabbb NEXT.exchange A hybrid exchange registered as an N. V. (Public company) in the Netherlands and provides fiat pairs to all altcoins on its platform NEXT Etherscan.io nextexchange_28.png TRUE FALSE TRUE
50-Tokens 0x4e0603e2a27a30480e5e3a4fe548e29ef12f64be Credo Token Credo is the token you earn when someone you don’t know sends you an unsolicited email. You can use the Credo you earn to send your own emails to people you don’t know, trade it for other currencies, or hold onto it as its power increases. CREDO Etherscan.io credo_28.png TRUE FALSE TRUE
50-Tokens 0x4e15361fd6b4bb609fa63c81a2be19d873717870 Fantom Token DAG based smart contract platform that solves the issue of scalability and confirmation time of the existing blockchain technology. FTM Etherscan.io fantom_28.png TRUE FALSE TRUE
50-Tokens 0x4f27053f32eda8af84956437bc00e5ffa7003287 ThriveToken decentralized Ad marketplace THRT Etherscan.io thrive_28.png TRUE FALSE TRUE
50-Tokens 0x4f3afec4e5a3f2a6a1a411def7d7dfe50ee057bf Digix Gold Token Gold Backed Tokens DGX Etherscan.io digix_dgx_28.png TRUE FALSE TRUE
50-Tokens 0x4f878c0852722b0976a955d68b376e4cd4ae99e5 WaykiCoin WaykiChain aims to build the blockchain 3.0 commercial public chain, provide enterprise-level blockchain infrastructure and industry solutions, and create a new business model in the new era. WIC Etherscan.io waykichain_28.png TRUE FALSE TRUE
50-Tokens 0x501262281b2ba043e2fbf14904980689cddb0c78 Mithril Ore Mithril Ore is a Casper Ethereum Staking Pool. Participation in Casper may be limited due to complexity, network-congestion, and/or lack of funds. This token allows participation by resolving these variables. MORE Etherscan.io mithrilore_28.png TRUE FALSE TRUE
50-Tokens 0x50ee674689d75c0f88e8f83cfe8c4b69e8fd590d EmphyCoin Decentralized blockchain lodging ecosystem EPY Etherscan.io emphy_28.png TRUE FALSE TRUE
50-Tokens 0x5121e348e897daef1eef23959ab290e5557cf274 PolyAi POLY AI was made with the purpose of attracting investments, in order to serve the AI developing project. AI Etherscan.io polynetwork_28.png TRUE FALSE TRUE
50-Tokens 0x5136c98a80811c3f46bdda8b5c4555cfd9f812f0 indaHash Coin Influencer marketing tool to connect brands and influencers. IDH Etherscan.io indahash_28.png TRUE FALSE TRUE
50-Tokens 0x514910771af9ca656af840dff83e8264ecf986ca ChainLink Token Chainlink is a blockchain-based middleware, acting as a bridge between cryptocurrency smart contracts and off-chain resources like data feeds, various web APIs, and traditional bank account payments. LINK Etherscan.io chainlink_28_2.png TRUE FALSE TRUE
50-Tokens 0x516e5436bafdc11083654de7bb9b95382d08d5de Ormeus Coin Ormeus Coin is a new digital money system backed by an industrial crypto mining operation ORME Etherscan.io ormeus28.png TRUE FALSE TRUE
50-Tokens 0x519475b31653e46d20cd09f9fdcf3b12bdacb4f5 VIU A decentralized video sharing platform VIU Etherscan.io viuly_28.png TRUE FALSE TRUE
50-Tokens 0x51db5ad35c671a87207d88fc11d593ac0c8415bd Moeda Loyalty Points Moeda is a cooperative banking system powered by blockchain, built for everyone. MDA Etherscan.io moeda_28.png TRUE FALSE TRUE
50-Tokens 0x52a7cb918c11a16958be40cba7e31e32a499a465 fidentiaX Marketplace for Tradable Insurance Policies FDX Etherscan.io fidentiaX_28.png TRUE FALSE TRUE
50-Tokens 0x52fb36c83ad33c1824912fc81071ca5eeb8ab390 Fidelium Token Cross-Exchange Trading Platform FID Etherscan.io fidelium_28.png TRUE FALSE TRUE
50-Tokens 0x539efe69bcdd21a83efd9122571a64cc25e0282b Ethereum Blue BLUE is anERC20 token built from the ground-up to facilitate payments and transfers without sacrificing your security. BLUE Etherscan.io etherblue_28.png TRUE FALSE TRUE
50-Tokens 0x540e5fff293f523acd26291b5bc7ac5713991feb PitisCoin No description PTS Etherscan.io pitis_28.png TRUE FALSE TRUE
50-Tokens 0x543ff227f64aa17ea132bf9886cab5db55dcaddf DAOstack DAOstack powers decentralized companies, funds and markets to make fast and innovative decisions at scale. GEN Etherscan.io daostack1_28.png TRUE FALSE TRUE
50-Tokens 0x55296f69f40ea6d20e478533c15a6b08b654e758 XY Oracle Blockchain's crypto-location oracle network XYO Etherscan.io xyoracle_28_2.png TRUE FALSE TRUE
50-Tokens 0x554c20b7c486beee439277b4540a434566dc4c02 Decision Token Horizon State has built a token-based blockchain voting and decision-making platform that delivers unprecedented trust through the integrity and post-unforgeable attributes of blockchain technology. HST Etherscan.io horizonstate2_28.png TRUE FALSE TRUE
50-Tokens 0x554ffc77f4251a9fb3c0e3590a6a205f8d4e067d ZMINE Token ZMINE Token will be available for purchasing and exchanging for GPUs and use our mining services. The company also has the policy to buy tokens back and burn. ZMN Etherscan.io zmine_28.png TRUE FALSE TRUE
50-Tokens 0x5554e04e76533e1d14c52f05beef6c9d329e1e30 Autonio Decentralized AI Trading Application for Cryptocurrencies. NIO Etherscan.io autonio_28.png TRUE FALSE TRUE
50-Tokens 0x55648de19836338549130b1af587f16bea46f66b Pebbles Publica aims to be an evolutionary publishing platform using blockchain and cryptocurrency technology to innovate in how books are funded, distributed, bought, and read. PBL Etherscan.io publica.png TRUE FALSE TRUE
50-Tokens 0x558ec3152e2eb2174905cd19aea4e34a23de9ad6 Bread BRD is the simple and secure bitcoin wallet. BRD Etherscan.io bread_28.png TRUE FALSE TRUE
50-Tokens 0x5635ddeabf9cdda686995fe90beb5411831563fc TravelNote Travel platform with blockchain technology. TVNT Etherscan.io travelnote_28.png TRUE FALSE TRUE
50-Tokens 0x568f9f32969e29b5ce1a4545be5398e8cc7c4401 FiveBalance Five Balance Token is the world digital asset for human resource development. FBN Etherscan.io fivebalance_28.png TRUE FALSE TRUE
50-Tokens 0x56b6431f45d08eed55f34371386326c739eacbcc Ethereum Meta Ethereum Meta addresses the lack of privacy in Ethereum. ETHM Etherscan.io ethermeta_28.png TRUE FALSE TRUE
50-Tokens 0x56d1ae30c97288da4b58bc39f026091778e4e316 DAGT Crypto Platform Decentralized platform which allows holders of blockchain assets to leverage their holdings as collateral for assets guarantee. DAGT Etherscan.io dagt_28.png TRUE FALSE TRUE
50-Tokens 0x5732046a883704404f284ce41ffadd5b007fd668 Bluzelle Aims to be the next-gen database protocol for the decentralized internet. BLZ Etherscan.io bluzelle28.png TRUE FALSE TRUE
50-Tokens 0x574f84108a98c575794f75483d801d1d5dc861a5 Robotina token Internet of things, artificial intelligence and blockchain empowering energy consumers ROX Etherscan.io robotina_28.png TRUE FALSE TRUE
50-Tokens 0x57ab1e02fee23774580c119740129eac7081e9d3 Synth sUSD sUSD is part of the Synethix network. SUSD Etherscan.io synthetix-sUSD_28.png TRUE FALSE TRUE
50-Tokens 0x588047365df5ba589f923604aac23d673555c623 NaviToken Naviaddress is a unified digital ID for any place and object. NAVI Etherscan.io navi_28.png TRUE FALSE TRUE
50-Tokens 0x58a4884182d9e835597f405e5f258290e46ae7c2 NOAHCOIN No description NOAH Etherscan.io noahcoin_28.png TRUE FALSE TRUE
50-Tokens 0x59061b6f26bb4a9ce5828a19d35cfd5a4b80f056 Legends Las Vegas entertainment re-imagined. LGD Etherscan.io legendsroom_28.png TRUE FALSE TRUE
50-Tokens 0x595832f8fc6bf59c85c527fec3740a1b7a361269 PowerLedger Power Ledger is a peer-to-peer marketplace for renewable energy. POWR Etherscan.io powerledger_28_2.png TRUE FALSE TRUE
50-Tokens 0x5a84969bb663fb64f6d015dcf9f622aedc796750 IDICE gambling & betting platform ICE Etherscan.io idice.png TRUE FALSE TRUE
50-Tokens 0x5acd19b9c91e596b1f062f18e3d02da7ed8d1e50 BTC LITE No description BTCL Etherscan.io btclite_28.png TRUE FALSE TRUE
50-Tokens 0x5adc961d6ac3f7062d2ea45fefb8d8167d44b190 Dether A peer-to-peer ecosystem of crypto buyers, sellers and physical shops. DTH Etherscan.io dether3_28.png TRUE FALSE TRUE
50-Tokens 0x5af2be193a6abca9c8817001f45744777db30756 Ethos People-powered cryptocurrency services for the blockchain ETHOS Etherscan.io ethos_28.png TRUE FALSE TRUE
50-Tokens 0x5b0751713b2527d7f002c0c4e2a37e1219610a6b Horse DAPP to bet on the price of cryptocurrencies. HORSE Etherscan.io ethorse_28.png TRUE FALSE TRUE
50-Tokens 0x5b11aacb6bddb9ffab908fdce739bf4aed554327 TrueDeck TrueDeck is a unified blockchain-based platform built for the online casino industry. TrueDeck provides a medium of exchange for all actors involved i.e. players, developers, operators etc. TDP Etherscan.io truedecktoken_28.png TRUE FALSE TRUE
50-Tokens 0x5b26c5d0772e5bbac8b3182ae9a13f9bb2d03765 Education A decentralized peer-to-peer project learning network for teaching people how to build complete products. LEDU Etherscan.io liveedu_28.png TRUE FALSE TRUE
50-Tokens 0x5b2e4a700dfbc560061e957edec8f6eeeb74a320 Insolar INS is developing a platform to enable direct interaction between brands and people in the consumer sector. INS Etherscan.io insolar_28_2.png TRUE FALSE TRUE
50-Tokens 0x5c2f940281e735ca3496d8138be12d18023dce9f BANANA TOKEN Chimpion is an all in one ecommerce, point of sale, digital wallet with crypto to fiat settlement system. BNANA Etherscan.io bananatoken_28.png TRUE FALSE TRUE
50-Tokens 0x5c3a228510d246b78a3765c20221cbf3082b44a4 Storiqa crypto marketplace- Sell and buy goods with cryptocurrencies STQ Etherscan.io storiqa_28.png TRUE FALSE TRUE
50-Tokens 0x5c543e7ae0a1104f78406c340e9c64fd9fce5170 vSlice An Ethereum Gaming Platform Token VSL Etherscan.io vslice.png TRUE FALSE TRUE
50-Tokens 0x5c64031c62061865e5fd0f53d3cdaef80f72e99d HASHGARD The protocol of distributed and trusted asset management. GARD Etherscan.io hashgard1_28.png TRUE FALSE TRUE
50-Tokens 0x5c743a35e903f6c584514ec617acee0611cf44f3 Experty emocratizing the digital consultations market EXY Etherscan.io experty_28.png TRUE FALSE TRUE
50-Tokens 0x5ca381bbfb58f0092df149bd3d243b08b9a8386e MXCToken Inspiring fast, efficient, decentralized data exchanges using LPWAN-Blockchain Technology. MXC Etherscan.io mxc_28.png TRUE FALSE TRUE
50-Tokens 0x5ca9a71b1d01849c0a95490cc00559717fcf0d1d Aeternity Scalable smart contracts interfacing with real world data. AE Etherscan.io aeternity_28_2.png TRUE FALSE TRUE
50-Tokens 0x5cf04716ba20127f1e2297addcf4b5035000c9eb NKN NKN is the new kind of P2P network connectivity protocol & ecosystem powered by a novel public blockchain. NKN Etherscan.io nkntoken_28.png TRUE FALSE TRUE
50-Tokens 0x5d48f293baed247a2d0189058ba37aa238bd4725 NeuroChain Clausius Implementing AI Into the Heart of the Blockchain NCC Etherscan.io neuro_28.png TRUE FALSE TRUE
50-Tokens 0x5d4abc77b8405ad177d8ac6682d584ecbfd46cec Primas Token A content publishing platform. PST Etherscan.io primas_28.png TRUE FALSE TRUE
50-Tokens 0x5d4d57cd06fa7fe99e26fdc481b468f77f05073c Netkoin Location Based Advertising On The Blockchain. NTK Etherscan.io netkoin_28.png TRUE FALSE TRUE
50-Tokens 0x5d51fcced3114a8bb5e90cdd0f9d682bcbcc5393 B2BX Aims to provide cryptocurrency liquidity for brokers, stock exchanges, hedge funds and other institutional clients. B2BX Etherscan.io b2bx_28.png TRUE FALSE TRUE
50-Tokens 0x5d65d971895edc438f465c17db6992698a52318d Nebulas Decentralized Search Framework NAS Etherscan.io nebulas_28.png TRUE FALSE TRUE
50-Tokens 0x5dbac24e98e2a4f43adc0dc82af403fca063ce2c EngagementToken Rewarding publishers and creators. EGT Etherscan.io engagementtoken_28.png TRUE FALSE TRUE
50-Tokens 0x5dbe296f97b23c4a6aa6183d73e574d02ba5c719 Level-Up Coin Play2Live is a blockchain-based streaming platform for gamers and eSports fans. LUC Etherscan.io lucg.png TRUE FALSE TRUE
50-Tokens 0x5e3346444010135322268a4630d2ed5f8d09446c LockTrip Hotel Booking & Vacation Rental Marketplace With 0% Commissions. LOC Etherscan.io locktrip_28_2.png TRUE FALSE TRUE
50-Tokens 0x5e6016ae7d7c49d347dcf834860b9f3ee282812b EZToken EZToken aims to be The crypto equivalent to skymiles. EZT Etherscan.io eztoken_28.png TRUE FALSE TRUE
50-Tokens 0x5e6b6d9abad9093fdc861ea1600eba1b355cd940 IOT Chain IoT Chain aims to be a A High Security Lite IoT OS ITC Etherscan.io iotchain28.png TRUE FALSE TRUE
50-Tokens 0x5f53f7a8075614b699baad0bc2c899f4bad8fbbf Rebellious Rebellious is a company based in the Netherlands. Using their unique approach, they aim to build a strong currency powered by an even stronger community that’s motivated by growth rather than greed. REBL Etherscan.io rebellioustoken_28.png TRUE FALSE TRUE
50-Tokens 0x607f4c5bb672230e8672085532f7e901544a7375 RLC Blockchain Based distributed cloud computing RLC Etherscan.io iexec_28.png TRUE FALSE TRUE
50-Tokens 0x618e75ac90b12c6049ba3b27f5d5f8651b0037f6 QASH We envision QASH to be the preferred payment token for financial services, like the Bitcoin for financial services. As more financial institutions, fintech startups and partners adopt QASH as a method of payment, the utility of QASH will scale, fueling the Fintech revolution. QASH Etherscan.io qash_28_2.png TRUE FALSE TRUE
50-Tokens 0x621d78f2ef2fd937bfca696cabaf9a779f59b3ed DCORP From idea to Funding - DCORP Ventures is a community governed blockchain company that funds and realizes innovating ideas. DRP Etherscan.io dcorp.png TRUE FALSE TRUE
50-Tokens 0x622dffcc4e83c64ba959530a5a5580687a57581b CUBE CUBE is an autonomous car security platform backed by blockchain technology. AUTO Etherscan.io cube_28.png TRUE FALSE TRUE
50-Tokens 0x624d520bab2e4ad83935fa503fb130614374e850 smartshare token No description SSP Etherscan.io smartshare_28.png TRUE FALSE TRUE
50-Tokens 0x63b992e6246d88f07fc35a056d2c365e6d441a3d Soma Community SOMA brings a social trading experience to consumers while providing a robust tracking and authentication protocol for business. SCT Etherscan.io soma_28.png TRUE FALSE TRUE
50-Tokens 0x63e634330a20150dbb61b15648bc73855d6ccf07 Lancer Token Collection of the systems which facilitate the inter-transaction between Linker Coin and various economic networks built on crypto-currency market, financial market, e-commerce market, etc. LNC Etherscan.io blocklancer_28.png TRUE FALSE TRUE
50-Tokens 0x63f584fa56e60e4d0fe8802b27c7e6e3b33e007f ContentBox Token Blockchain Infrastructure For The Digital Content Industry. Empowering a decentralized digital content ecosystem. BOX Etherscan.io contentbox_28.png TRUE FALSE TRUE
50-Tokens 0x6425c6be902d692ae2db752b3c268afadb099d3b RED MWAT RED-F is a tokenized franchise offer on the European Union energy market, that allows anyone to create and operate their own retail energy business and earn revenues. MWAT Etherscan.io restartenergy_28.png TRUE FALSE TRUE
50-Tokens 0x64cdf819d3e75ac8ec217b3496d7ce167be42e80 InsurePal Distributed social proof insurance. IPL Etherscan.io insurepal_28.png TRUE FALSE TRUE
50-Tokens 0x6531f133e6deebe7f2dce5a0441aa7ef330b4e53 TIME ChronoBank.io is a wide-ranging blockchain project, aimed at disrupting the HR/recruitment/finance industries TIME Etherscan.io chronobank.png TRUE FALSE TRUE
50-Tokens 0x65be44c747988fbf606207698c944df4442efe19 Finally Usable Crypto Karma No description FUCK Etherscan.io fucktoken_28.png TRUE FALSE TRUE
50-Tokens 0x660e71483785f66133548b10f6926dc332b06e61 Adelphoi Adel is a technology incubator for blockchain innovation. ADL Etherscan.io adelphoi_28.png TRUE FALSE TRUE
50-Tokens 0x66186008c1050627f979d464eabb258860563dbe MediShares Mutual Aid Marketplace On BlockChain MDS Etherscan.io medishares28.png TRUE FALSE TRUE
50-Tokens 0x662abcad0b7f345ab7ffb1b1fbb9df7894f18e66 CarTaxi A blockchain platform based on Ethereum for automated service for car towing. CTX Etherscan.io cartaxi28.png TRUE FALSE TRUE
50-Tokens 0x667088b212ce3d06a1b553a7221e1fd19000d9af WINGS A decentralized platform to create, join and manage projects WINGS Etherscan.io wingsdao.png TRUE FALSE TRUE
50-Tokens 0x66d9c4d19b4c8e23a54c6dc4ceed141f66b8111c Fountain 2 No description FTN Etherscan.io fountain_28.png TRUE FALSE TRUE
50-Tokens 0x6704b673c70de9bf74c8fba4b4bd748f0e2190e1 UBEX Token Ubex is a global decentralized advertising exchange where companies advertise effectively, while publishers profitably tokenize ad slots on their resources. UBEX Etherscan.io ubex28.png TRUE FALSE TRUE
50-Tokens 0x6710c63432a2de02954fc0f851db07146a6c0312 SyncFab Smart Manufacturing Blockchain Revolutionizing Hardware Manufacturing with Blockchain MFG Etherscan.io syncfab_28.png TRUE FALSE TRUE
50-Tokens 0x671abbe5ce652491985342e85428eb1b07bc6c64 Quantum Quantum aims to be a deflationary currency. QAU Etherscan.io quantum.png TRUE FALSE TRUE
50-Tokens 0x672a1ad4f667fb18a333af13667aa0af1f5b5bdd Verify A distributed reputation protocol built on the Ethereum blockchain. CRED Etherscan.io verifytoken_28.png TRUE FALSE TRUE
50-Tokens 0x6745fab6801e376cd24f03572b9c9b0d4edddccf Sense Sense creates blockchain based smart contracts in chat and rewards humans for the contributions they make to one another conversationally, across Sensay and other messenger applications. SENSE Etherscan.io sensetoken_28.png TRUE FALSE TRUE
50-Tokens 0x6758b7d441a9739b98552b373703d8d3d14f9e62 POA ERC20 on Foundation POA Network is an Ethereum-based platform that offers an open-source framework for smart contracts. POA20 Etherscan.io poa_28_2.png TRUE FALSE TRUE
50-Tokens 0x6781a0f84c7e9e846dcb84a9a5bd49333067b104 ZAP TOKEN Zap project is a suite of tools for creating smart contract oracles and a marketplace to find and subscribe to existing data feeds that have been oraclized ZAP Etherscan.io zapstore_28.png TRUE FALSE TRUE
50-Tokens 0x679badc551626e01b23ceecefbc9b877ea18fc46 Ccore Crypto Payment Platform CCO Etherscan.io ccore3_28.png TRUE FALSE TRUE
50-Tokens 0x6810e776880c02933d47db1b9fc05908e5386b96 Gnosis Crowd Sourced Wisdom - The next generation blockchain network. Speculate on anything with an easy-to-use prediction market GNO Etherscan.io gnosis.png TRUE FALSE TRUE
50-Tokens 0x684e2dcb12bb755237e07242529c82f78a84ea61 WELL Token Global blockchain protocol designed for healthcare WELL Etherscan.io well28.png TRUE FALSE TRUE
50-Tokens 0x6863be0e7cf7ce860a574760e9020d519a8bdc47 On.Live The marketplace for paid advice live broadcast and computing power ONL Etherscan.io onlive_28.png TRUE FALSE TRUE
50-Tokens 0x687174f8c49ceb7729d925c3a961507ea4ac7b28 GAT GATCOIN aims to transform traditional discount coupons, loyalty points and shopping vouchers into liquid, tradable digital tokens. GAT Etherscan.io gatcoin_28.png TRUE FALSE TRUE
50-Tokens 0x687bfc3e73f6af55f0ccca8450114d107e781a0e QChi QChi is designed for peer to peer transactions aimed at computer, gaming, health and tourism capital market. QCH Etherscan.io qchi_28_2.png TRUE FALSE TRUE
50-Tokens 0x6888a16ea9792c15a4dcf2f6c623d055c8ede792 Signals The Signal Token (SIG) Protocol is designed to decentralize the buying, selling, and rewarding of attention across media platforms by removing centralized intermediaries from advertising transactions. SIG Etherscan.io spectiv_28.png TRUE FALSE TRUE
50-Tokens 0x68909e586eeac8f47315e84b4c9788dd54ef65bb EvenCoin EvenCoin is a new self-mining smart contract where no hardware is required to mine EvenCoin but it gets mining in parallel to even numbers of Ethereum blocks with ERC20 compliant with a total supply of 100 Million coins. EVN Etherscan.io evencoin_28_2.png TRUE FALSE TRUE
50-Tokens 0x68aa3f232da9bdc2343465545794ef3eea5209bd Mothership Decentralized AI for Collective Governance. MSP Etherscan.io mothership_28.png TRUE FALSE TRUE
50-Tokens 0x68d57c9a1c35f63e2c83ee8e49a64e9d70528d25 SIRIN SIRIN LABS’ aims to become the world’s leader in secure open source consumer electronics, bridging the gap between the mass market and the blockchain econom SRN Etherscan.io sirin_28.png TRUE FALSE TRUE
50-Tokens 0x697beac28b09e122c4332d163985e8a73121b97f QRL The Quantum Resistant Ledger (QRL) aims to be a future-proof post-quantum value store and decentralized communication layer which tackles the threat Quantum Computing will pose to cryptocurrencies. QRL Etherscan.io qrl_28.png TRUE FALSE TRUE
50-Tokens 0x69c4bb240cf05d51eeab6985bab35527d04a8c64 OPEN blockchain infrastructure for applications OPEN Etherscan.io openplatform_28.png TRUE FALSE TRUE
50-Tokens 0x6a750d255416483bec1a31ca7050c6dac4263b57 Maximine Coin A Transparent Distributed Pool Revenue System MXM Etherscan.io maximine_28.png TRUE FALSE TRUE
50-Tokens 0x6aac8cb9861e42bf8259f5abdc6ae3ae89909e11 Bitcoin Red No description BTCR Etherscan.io bitcoinred_28.png TRUE FALSE TRUE
50-Tokens 0x6aeb95f06cda84ca345c2de0f3b7f96923a44f4c Berry Rentberry offers users a fully operational long-term rental platform. It leverages blockchain technology to ensure seamless rental experience. BERRY Etherscan.io rentberry_28.png TRUE FALSE TRUE
50-Tokens 0x6aedbf8dff31437220df351950ba2a3362168d1b Dragonglass Dragonglass provides a seamless solution for cryptocurrency mining DGS Etherscan.io dragonglass_28.png TRUE FALSE TRUE
50-Tokens 0x6b193e107a773967bd821bcf8218f3548cfa2503 Posscoin Posscoin is an innovative payment network and a new kind of money. POSS Etherscan.io posscoin_28.png TRUE FALSE TRUE
50-Tokens 0x6ba460ab75cd2c56343b3517ffeba60748654d26 UpToken crypto ATM network UP Etherscan.io uptoken_28.png TRUE FALSE TRUE
50-Tokens 0x6c2adc2073994fb2ccc5032cc2906fa221e9b391 Delphy Token Prediction markets built on the blockchain. DPY Etherscan.io delphy_28.png TRUE FALSE TRUE
50-Tokens 0x6c6ee5e31d828de241282b9606c8e98ea48526e2 HoloToken Holo is a decentralized hosting platform and a new breed of asset-backed, mutual-credit cryptocurrency based on Holochain. Holochain is a massively scalable, agent-centric post-blockchain development framework for distributed applications. HOT Etherscan.io holo_28.png TRUE FALSE TRUE
50-Tokens 0x6ec8a24cabdc339a06a172f8223ea557055adaa5 Genaro X The Genaro Network is the first Turing-complete public blockchain combining peer-to-peer storage with a sustainable consensus mechanism. Genaro's mixed consensus uses SPoR and PoS, ensuring stronger performance and security. GNX Etherscan.io genarox_28_3.png TRUE FALSE TRUE
50-Tokens 0x6f259637dcd74c767781e37bc6133cd6a68aa161 HuobiToken Huobi Global is a world-leading cryptocurrency financial services group. HT Etherscan.io huobi_28.png TRUE FALSE TRUE
50-Tokens 0x6fb3e0a217407efff7ca062d46c26e5d60a14d69 IoTeX Network IoTeX is the next generation of the IoT-oriented blockchain platform with vast scalability, privacy, isolatability, and developability. IoTeX connects the physical world, block by block. IOTX Etherscan.io iotex_28.png TRUE FALSE TRUE
50-Tokens 0x6fff3806bbac52a20e0d79bc538d527f6a22c96b Network Aims to be a disruptive ad network of creative minds who speak out against the powers that be. CDX Etherscan.io cmadnetwork_28.png TRUE FALSE TRUE
50-Tokens 0x701c244b988a513c945973defa05de933b23fe1d OpenANX Decentralized Exchange. OAX Etherscan.io openanx_28.png TRUE FALSE TRUE
50-Tokens 0x705ee96c1c160842c92c1aecfcffccc9c412e3d9 ClearPoll ClearPoll is a new way to have your say. Simply install the app, browse for polls, and vote on global, national or local issues. POLL Etherscan.io clearpoll28.png TRUE FALSE TRUE
50-Tokens 0x70a72833d6bf7f508c8224ce59ea1ef3d0ea3a38 UTRUST Aims to be a safe payment platform in the world for buyers and sellers. UTK Etherscan.io utrust_28_2.png TRUE FALSE TRUE
50-Tokens 0x70c621f949b6556c4545707a2d5d73a776b98359 Skychain Global Token Skychain is an open infrastructure, based on blockchain, which provides the possibility to create, train and use high-quality medical neural networks. SKCH Etherscan.io skychain_28.png TRUE FALSE TRUE
50-Tokens 0x71d01db8d6a2fbea7f8d434599c237980c234e4c Gladius DDoS protection network and DCN. GLA Etherscan.io gladius_28.png TRUE FALSE TRUE
50-Tokens 0x722f2f3eac7e9597c73a593f7cf3de33fbfc3308 CoinUs CoinUs is a integrated business platform with focus on individual's value and experience to provide Human-to-Blockchain Interface. CNUS Etherscan.io coinus_28.png TRUE FALSE TRUE
50-Tokens 0x72430a612adc007c50e3b6946dbb1bb0fd3101d1 Thingschain Platform for IoT devices based on blockchain technology. It uses a multilayered architecture which provides a solution to the issues faced by current blockchains like lack of scalability and low transaction throughput rate. TIC Etherscan.io thingschain_28_2.png TRUE FALSE TRUE
50-Tokens 0x72adadb447784dd7ab1f472467750fc485e4cb2d Worldcore Worldcore is building a transparent business and they aim to become the industry-first company with totally different approach to ICO. WRC Etherscan.io worldcore28.png TRUE FALSE TRUE
50-Tokens 0x72dd4b6bd852a3aa172be4d6c5a6dbec588cf131 NAGA Coin The NAGA CARD allows you to fund with cryptos and spend your money (online/offline) all around the globe. NGC Etherscan.io nagacoin_28_2.png TRUE FALSE TRUE
50-Tokens 0x737f98ac8ca59f2c68ad658e3c3d8c8963e40a4c Amon Amon Wallet allows you to manage all your assets in one place, with a top-level user experience. AMN Etherscan.io amon_28-1.png TRUE FALSE TRUE
50-Tokens 0x744d70fdbe2ba4cf95131626614a1763df805b9e StatusNetwork Status is an open source messaging platform and mobile browser to interact with decentralized applications that run on the Ethereum Network. SNT Etherscan.io status.png TRUE FALSE TRUE
50-Tokens 0x74ceda77281b339142a36817fa5f9e29412bab85 EROSCOIN Eroscoin aims to be a platform that empowers & enhances the payment systems. ERO Etherscan.io eroscoin_28.png TRUE FALSE TRUE
50-Tokens 0x74fd51a98a4a1ecbef8cc43be801cce630e260bd SiaCashCoin The SiaCashCoin ecosystem will change the way your precious data will be stored, secured, and protected. SCC Etherscan.io siacashcoin_28.png TRUE FALSE TRUE
50-Tokens 0x7528e3040376edd5db8263db2f5bd1bed91467fb Simmitri Creating a platform that rewards participants for saving and generating electrical energy.And SIM Etherscan.io simmitri_28.png TRUE FALSE TRUE
50-Tokens 0x7627de4b93263a6a7570b8dafa64bae812e5c394 Nexxus NexxusCoin is the internal token that powers the Nexxus Ecosystem and creates a better world by empowering individuals and communities worldwide NXX Etherscan.io nexxus_28.png TRUE FALSE TRUE
50-Tokens 0x763186eb8d4856d536ed4478302971214febc6a9 Better Betting The betting crypto-currency that will establish truly decentralized sports betting on the internet. BETR Etherscan.io betterbetting_28.png TRUE FALSE TRUE
50-Tokens 0x7654915a1b82d6d2d0afc37c52af556ea8983c7e Feed We are building the world's first NEXT-GEN CRYPTOCURRENCY SOCIAL NETWORK. IFT Etherscan.io investfeed2_28.png TRUE FALSE TRUE
50-Tokens 0x765f0c16d1ddc279295c1a7c24b0883f62d33f75 DaTa eXchange Token As a decentralized marketplace for IoT sensor data using Blockchain technology, Databroker DAO enables sensor owners to turn generated data into revenue streams. DTX Etherscan.io databroker_28.png TRUE FALSE TRUE
50-Tokens 0x76974c7b79dc8a6a109fd71fd7ceb9e40eff5382 DOW No Description DOW Etherscan.io dowcoin_28.png TRUE FALSE TRUE
50-Tokens 0x7703c35cffdc5cda8d27aa3df2f9ba6964544b6e Pylon P2P Distributed Green Energy Market. PYLNT Etherscan.io pylon_28.png TRUE FALSE TRUE
50-Tokens 0x7728dfef5abd468669eb7f9b48a7f70a501ed29d PRG No description PRG Etherscan.io prg_28_2.png TRUE FALSE TRUE
50-Tokens 0x77761e63c05aee6648fdaeaa9b94248351af9bcd PASS Token WisePass is a lifestyle platform offering daily privileges to its members. PASS Token will facilitate the access to WisePass lifestyle memberships. It will allow its users to transact real services. PASS Etherscan.io passtoken_28.png TRUE FALSE TRUE
50-Tokens 0x780116d91e5592e58a3b3c76a351571b39abcec6 Boxx An Event Ticketing Blockchain Protocol BOXX Etherscan.io boxx_28.png TRUE FALSE TRUE
50-Tokens 0x78a2a1029e3168b49d3a276c787050ff5106dcf2 EZOOW EZOOW is the easy way for travel , it is a blockchain booking solution that facilitate booking all travel. EZW Etherscan.io ezooww_28.png TRUE FALSE TRUE
50-Tokens 0x78a73b6cbc5d183ce56e786f6e905cadec63547b Fabric Token The Fabric Token (FT) ecosystem aims to empower individuals and businesses with easy access to blockchain technology and smart contracts by providing a bundle of user-friendly software. FT Etherscan.io fabric1_28.png TRUE FALSE TRUE
50-Tokens 0x78b7fada55a64dd895d8c8c35779dd8b67fa8a05 ATLANT Real Estate Blockchain Platform. ATL Etherscan.io atlant_28_2.png TRUE FALSE TRUE
50-Tokens 0x78c292d1445e6b9558bf42e8bc369271ded062ea CyberMusic Cyber Music will be the new point of reference for the music market and will be fully developed using the technologies that the blockchain has available. CYMT Etherscan.io cybermusic_28.png TRUE FALSE TRUE
50-Tokens 0x791425156956e39f2ab8ab06b79de189c18e95e5 IcoBay Digital marketing and advertising platform or ICOs IBT Etherscan.io icobay_28.png TRUE FALSE TRUE
50-Tokens 0x7a07e1a0c2514d51132183ecfea2a880ec3b7648 IXE Token Educational project for children IXE Etherscan.io ixtus_28.png TRUE FALSE TRUE
50-Tokens 0x7a41e0517a5eca4fdbc7fbeba4d4c47b9ff6dc63 ZeusShieldCoin Both blockchain and AI are adopted and integrated in the Zeusshield insurance system. Such integration leads to a green insurance ecosystem in terms of a business-to-customer based peer-to-peer (p2p) insurance market platform. The platform is open to both the insurer and insured units. ZSC Etherscan.io zeusshield_28.png TRUE FALSE TRUE
50-Tokens 0x7b0c06043468469967dba22d1af33d77d44056c8 Morpheus.Network Morpheus.Network was designed with some of the world's largest shipping, customs & banking firms to create a full-service, global, automated, supply chain platform with an integrated cryptocurrency payment system MRPH Etherscan.io morpheus_28.png TRUE FALSE TRUE
50-Tokens 0x7b22938ca841aa392c93dbb7f4c42178e3d65e88 AstroTokens Astronaut is a research-integrated asset manager that is changing the landscape of crypto investment. ASTRO Etherscan.io astronaut_28.png TRUE FALSE TRUE
50-Tokens 0x7b2df125567815ac9b57da04b620f50bc93b320c Archetypal Network Archetypal Network is an Ethereum based cloudmining smart contract miner to support real-time mining and high transaction throughput. ACTP Etherscan.io archetypal_28.png TRUE FALSE TRUE
50-Tokens 0x7ba19b7f7d106a9a1e0985397b94f38eee0b555e Wixlar Wixlar is a Global Decentralized Digital Currency based on the BlockChain Technology which is instant, secure, private and with low fee transactions. WIX Etherscan.io wixlar_28.png TRUE FALSE TRUE
50-Tokens 0x7c5a0ce9267ed19b22f8cae653f198e3e8daf098 SAN A Better Way to Trade Crypto-Markets - Market Datafeeds, Newswires, and Crowd Sentiment Insights for the Blockchain World SAN Etherscan.io santiment_28_2.png TRUE FALSE TRUE
50-Tokens 0x7d4b8cce0591c9044a22ee543533b72e976e36c3 ChangeBank Change aims to be a a new age financial proposition for individuals with high financial ambitions. CAG Etherscan.io changecoin_28.png TRUE FALSE TRUE
50-Tokens 0x7d5edcd23daa3fb94317d32ae253ee1af08ba14d Ethbet The decentralized, peer-to-peer, and provably-fair Ethereum-based dicing game without a house edge. EBET Etherscan.io ethbet_28.png TRUE FALSE TRUE
50-Tokens 0x7dc4f41294697a7903c4027f6ac528c5d14cd7eb RemiCoin No Description RMC Etherscan.io remicoin_28.png TRUE FALSE TRUE
50-Tokens 0x8069080a922834460c3a092fb2c1510224dc066b SpaceChain SpaceChain is a community-based space platform that combines space and blockchain technologies to build the world’s first open-source blockchain-based satellite network. SPC Etherscan.io spacechain_28.png TRUE FALSE TRUE
50-Tokens 0x809826cceab68c387726af962713b64cb5cb3cca NucleusVision Founded at Harvard University, Nucleus Vision is an IoT-based, contactless identification system that empowers retailers to identify and better serve their customers. NCASH Etherscan.io nucleus-vision_28.png TRUE FALSE TRUE
50-Tokens 0x80a7e048f37a50500351c204cb407766fa3bae7f Crypterium Cryptobank for Cryptopeople. CRPT Etherscan.io crypterium_28_2.png TRUE FALSE TRUE
50-Tokens 0x80fb784b7ed66730e8b1dbd9820afd29931aab03 EthLend Decentralized and secure financial marketplace for peer to peer lending agreements using Blockchain and Smart Contracts. LEND Etherscan.io ethlend_28.png TRUE FALSE TRUE
50-Tokens 0x814964b1bceaf24e26296d031eadf134a2ca4105 NewBium Usual test case for QuickBlocks NEWB TrueBlocks.io TRUE FALSE TRUE
50-Tokens 0x814e0908b12a99fecf5bc101bb5d0b8b5cdf7d26 Measurable Data Token Decentralized Data Exchange Economy. MDT Etherscan.io mdt_28.png TRUE FALSE TRUE
50-Tokens 0x818fc6c2ec5986bc6e2cbf00939d90556ab12ce5 Kin The vision for Kin is rooted in the belief that a broad group of participants can come together to create an open ecosystem of tools for digital communication and commerce that prioritizes consumer experience, bringing a fair and user-oriented model for digital services to the market. KIN Etherscan.io kin_28_3.png TRUE FALSE TRUE
50-Tokens 0x81b4d08645da11374a03749ab170836e4e539767 Paymon Blockchain platform that includes several innovative products. PMNT Etherscan.io paymon_28.png TRUE FALSE TRUE
50-Tokens 0x81c9151de0c8bafcd325a57e3db5a5df1cebf79c Datum Datum is the decentralized marketplace for social and IoT data. DAT Etherscan.io datum.png TRUE FALSE TRUE
50-Tokens 0x81e74a3ea4bab2277aa3b941e9d9f37b08ac5374 Ifoods Token Make shared eco for global foods IFOOD Etherscan.io ifoods_28.png TRUE FALSE TRUE
50-Tokens 0x82b0e50478eeafde392d45d1259ed1071b6fda81 DNA Genomic Data Encryption. DNA Etherscan.io encrypgen2_28.png TRUE FALSE TRUE
50-Tokens 0x832904863978b94802123106e6eb491bdf0df928 OptiToken An algorithmically traded hyper-deflationary cryptocurrency OPTI Etherscan.io optitoken_28.png TRUE FALSE TRUE
50-Tokens 0x83984d6142934bb535793a82adb0a46ef0f66b6d REMME Distributed Public Key Infrastructure (PKI) protocol with a set of DApps to enable passwordless authentication REM Etherscan.io remme_28.png TRUE FALSE TRUE
50-Tokens 0x83cee9e086a77e492ee0bb93c2b0437ad6fdeccc Goldmint MNT Prelaunch Token Crypto currency, backed by physical gold MNTP Etherscan.io goldmint_28.png TRUE FALSE TRUE
50-Tokens 0x83e2be8d114f9661221384b3a50d24b96a5653f5 0xcert Protocol Token Create, own, and validate unique assets on the blockchain. ZXC Etherscan.io 0xcert_28.PNG TRUE FALSE TRUE
50-Tokens 0x83eea00d838f92dec4d1475697b9f4d3537b56e3 VOISE Block-Chain Powered Music Platform. VOISE Etherscan.io vauxtoken_28.png TRUE FALSE TRUE
50-Tokens 0x8400d94a5cb0fa0d041a3788e395285d61c9ee5e UniBright The unified framework for blockchain based business integration UBT Etherscan.io unibright_28.png TRUE FALSE TRUE
50-Tokens 0x840fe75abfadc0f2d54037829571b2782e919ce4 Webcoin Webcoin pioneers the technological dawn of global marketing digitalization WEB Etherscan.io webcoin_28.png TRUE FALSE TRUE
50-Tokens 0x84119cb33e8f590d75c2d6ea4e6b0741a7494eda WTT Full-service mining solution provider. WTT Etherscan.io gigawatt_28.png TRUE FALSE TRUE
50-Tokens 0x846c66cf71c43f80403b51fe3906b3599d63336f PumaPay PumaPay's open-source Pull Payment Protocol is a comprehensive blockchain solution which offers robust payment mechanisms far more credible, efficient, flexible, cost-effective, and scalable than current implementations (credit cards). PMA Etherscan.io pumapay_28.png TRUE FALSE TRUE
50-Tokens 0x84f7c44b6fed1080f647e354d552595be2cc602f Bigbom Bigbom Eco serves as a decentralized advertising ecosystem for all parties involved in online advertising, inclusive of advertisers, service providers, content publishers, advertising channels, platforms and more. BBO Etherscan.io bigbom_28.png TRUE FALSE TRUE
50-Tokens 0x85089389c14bd9c77fc2b8f0c3d1dc3363bf06ef SPF SPF Tokens will also be used to purchase additional services that SportyCo will provide to athletes, sports clubs, investors, and other participants in the ecosystem. SPF Etherscan.io sportyco_28b.png TRUE FALSE TRUE
50-Tokens 0x8542325b72c6d9fc0ad2ca965a78435413a915a0 Oyster Shell Shells are used to pay for connectivity and Dapp operation across the Oyster meshnet. SHL Etherscan.io oystershell_28.png TRUE FALSE TRUE
50-Tokens 0x859a9c0b44cb7066d956a958b0b82e54c9e44b4b iEthereum iEthereum aims to be a public Ethereum-based token for use in mainstream digital wallets, that enables real-time, peer-to-peer value exchange and payment services. IETH Etherscan.io iethereum_28.png TRUE FALSE TRUE
50-Tokens 0x85e076361cc813a908ff672f9bad1541474402b2 Telcoin A cryptocurrency distributed by your mobile operator and accepted everywhere. TEL Etherscan.io telcoin_28.png TRUE FALSE TRUE
50-Tokens 0x8606a8f28e1e2fd50b9074d65c01548b1f040b32 Cryptrust Cryptrust is a Decentralized Trust-Based social platform for the cryptocurrency ecosystem. CTRT Etherscan.io cryptrusttoken_28.png TRUE FALSE TRUE
50-Tokens 0x865ec58b06bf6305b886793aa20a2da31d034e68 Moss Coin Location-based Augmented Reality Mobile Game based on Real Estate MOC Etherscan.io moss_28.png TRUE FALSE TRUE
50-Tokens 0x869b1f57380ae501d387b19262efd3c0eb7501b0 Oxycoin The easiest and most secure way to buy, sell, and manage cryptocurrencies. Our vision is to offer a simple and yet secure way to join the world of cryptocurrencies. OXY Etherscan.io oxycoin2_28.png TRUE FALSE TRUE
50-Tokens 0x86d5b3b108dbc56e9e5ea7d5c56a3e32ccadac35 AgaveCoin Agave token is a 100% utility token that will be used for internal use by the Agave token company, with utilities to control agave inventories. This token will not be available for sale to the public. is exclusively for internal use in smart contracts within the company AGVC Etherscan.io agave_28.png TRUE FALSE TRUE
50-Tokens 0x86e44543164d9b97b14ef7f6f3ab7ba670cab346 QUINADS Quinads is an advertisement platform with blockchain based and allows users to socially interact and rewarded by cryptocurrency. QUIN Etherscan.io quinads_28.png TRUE FALSE TRUE
50-Tokens 0x86fa049857e0209aa7d9e616f7eb3b3b78ecfdb0 EOS Infrastructure for Decentralized Applications EOS Etherscan.io TRUE FALSE TRUE
50-Tokens 0x8713d26637cf49e1b6b4a7ce57106aabc9325343 CNN Token Blockchain-based Content Ecosystem CNN Etherscan.io cnn_28.png TRUE FALSE TRUE
50-Tokens 0x8727c112c712c4a03371ac87a74dd6ab104af768 Jetcoin Jetcoin Institute manages the distribution process of the digital fuel, Jetcoin (JET), via Jetcoin Contracts and proof of social engagement (P.O.S.E.) JET Etherscan.io jetcoininstitute_28.png TRUE FALSE TRUE
50-Tokens 0x877c7deb5eb1fc5faad30c71e3a6e39dc8b1519f HeartBout HeartBout is a social network based on the blockchain technology with a decentralized system to encourage user activity. HB Etherscan.io hbc_28.png TRUE FALSE TRUE
50-Tokens 0x87f5e8c3425218837f3cb67db941af0c01323e56 BitCoin ONE No description BTCONE Etherscan.io btcone_28.png TRUE FALSE TRUE
50-Tokens 0x8810c63470d38639954c6b41aac545848c46484a Aditus Aditus is a revolutionary new platform bringing the world of luxury to crypto-affluents, through a privacy-centric decentralised network utilising smart contracts and blockchain technology. ADI Etherscan.io aditus_28.png TRUE FALSE TRUE
50-Tokens 0x881ef48211982d01e2cb7092c915e647cd40d85c Open Trading Network Open Trading Network (OTN) – a platform that offers cross-chain technology to unite all blockchain networks and market participants, and ensure their best interests. OTN Etherscan.io opentradingnetwork_28.png TRUE FALSE TRUE
50-Tokens 0x884181554dfa9e578d36379919c05c25dc4a15bb Gene Source Code Chain The distributed storage network blockchain system that provides genetic data and individual health data integrated interface. Gene Etherscan.io gene_28.png TRUE FALSE TRUE
50-Tokens 0x888666ca69e0f178ded6d75b5726cee99a87d698 ICONOMI ICONOMI Digital Assets Management platform enables simple access to a variety of digital assets and combined Digital Asset Arrays ICN Etherscan.io iconomi_28_2.png TRUE FALSE TRUE
50-Tokens 0x88a3e4f35d64aad41a6d4030ac9afe4356cb84fa Presearch Presearch is a decentralized search engine, powered by the community. PRE Etherscan.io presearchtoken_28.png TRUE FALSE TRUE
50-Tokens 0x88d50b466be55222019d71f9e8fae17f5f45fca1 Cryptaur Cryptaur is a decentralized applications store with a mission to transform and ultimately allow for the implementation of a reinvented shared economic system. CPT Etherscan.io cryptaur1_28.png TRUE FALSE TRUE
50-Tokens 0x88fcfbc22c6d3dbaa25af478c578978339bde77a Katalyse FundYourselfNow is a simple platform to allow project creators/promoters to raise funds for their projects using cryptocurrencies without the need of technical knowledge. KAT Etherscan.io katalyse_28.png TRUE FALSE TRUE
50-Tokens 0x89205a3a3b2a69de6dbf7f01ed13b2108b2c43e7 Unicorns Tokens Ethereum tip jar unicorn tokens UNI Ethereum.org TRUE FALSE TRUE
50-Tokens 0x89303500a7abfb178b274fd89f2469c264951e1f RefToken Decentralized Affiliate platform REF Etherscan.io reftoken_28.png TRUE FALSE TRUE
50-Tokens 0x8971f9fd7196e5cee2c1032b50f656855af7dd26 Lambda No description LAMB Etherscan.io lambda_28.png TRUE FALSE TRUE
50-Tokens 0x899338b84d25ac505a332adce7402d697d947494 WCOIN WAWLLET is a multi-asset wallet and personal financial passport. WIN Etherscan.io wawllet_28.png TRUE FALSE TRUE
50-Tokens 0x89c6c856a6db3e46107163d0cda7a7ff211bd655 Darico Ecosystem Coin Darico’s complete solution lets you monitor, trade, invest and spend your cryptocurrencies all from one integrated ecosystem. DEC Etherscan.io darico_28.png TRUE FALSE TRUE
50-Tokens 0x8a854288a5976036a725879164ca3e91d30c6a1b Guaranteed Entrance Token GUTS aims to use blockchain technology to create a transparent ticketing ecosystem, where disgraceful secondary market prices and ticket fraud are non-existent. GET Etherscan.io gutstickets.png TRUE FALSE TRUE
50-Tokens 0x8a88f04e0c905054d2f33b26bb3a46d7091a039a IG An unprecedented prediction market of based decentralization network. High centralization hinders social progress. Therefore, we hope to establish a completely decentralized Consensus Prediction System, and everyone's weight is equal. IG Etherscan.io ignite_28.png TRUE FALSE TRUE
50-Tokens 0x8a99ed8a1b204903ee46e733f2c1286f6d20b177 Fujinto FUJINTO is aims to make the paying process in the website, online booking application easier and reduce the risk for the users. NTO Etherscan.io fujinto_28.png TRUE FALSE TRUE
50-Tokens 0x8aa33a7899fcc8ea5fbe6a608a109c3893a1b8b2 Dao.Casino Blockchain protocol for gambling. BET Etherscan.io dao_casino.png TRUE FALSE TRUE
50-Tokens 0x8ae4bf2c33a8e667de34b54938b0ccd03eb8cc06 Patientory Patientory is an easy way to securely store and manage health information in real time. PTOY Etherscan.io ptoy.png TRUE FALSE TRUE
50-Tokens 0x8b353021189375591723e7384262f45709a3c3dc Tomocoin Building an efficient blockchain infrastructure for decentralized applications, token issuance and integration TOMO Etherscan.io tomo_28.png TRUE FALSE TRUE
50-Tokens 0x8b40761142b9aa6dc8964e61d0585995425c3d94 Tripio No description TRIO Etherscan.io tripio_28.png TRUE FALSE TRUE
50-Tokens 0x8d5682941ce456900b12d47ac06a88b47c764ce1 RightMesh Token RightMesh is on a mission to connect the next billion users without infrastructure. RMESH Etherscan.io rightmeshtoken_28.png TRUE FALSE TRUE
50-Tokens 0x8d75959f1e61ec2571aa72798237101f084de63a Substratum 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. SUB Etherscan.io substratum2_28.png TRUE FALSE TRUE
50-Tokens 0x8db54ca569d3019a2ba126d03c37c44b5ef81ef6 DataWallet Datawallet provides users with a self-sovereign wallet that puts them in charge of their data, and allows them to monetize as well as utilize an asset that is rightfully theirs. DXT Etherscan.io datawallet_28.png TRUE FALSE TRUE
50-Tokens 0x8e5610ab5e39d26828167640ea29823fe1dd5843 KanadeCoin Token to support monozukuri. KNDC Etherscan.io kanade_28.png TRUE FALSE TRUE
50-Tokens 0x8e870d67f660d95d5be530380d0ec0bd388289e1 Paxos Standard Paxos Standard is regulated crypto asset. It is fully collateralized 1:1 by the U.S. dollar, approved and regulated by the NYDFS, and enables instantaneous transactions. PAX Etherscan.io paxos_28_2.png TRUE FALSE TRUE
50-Tokens 0x8eb24319393716668d768dcec29356ae9cffe285 SingularityNET Decentralized Marketplace for AI. AGI Etherscan.io singularitynet_28.png TRUE FALSE TRUE
50-Tokens 0x8effd494eb698cc399af6231fccd39e08fd20b15 PIX Lampix - a hardware and software solution that aims to turn any surface into a smart, augmented reality [or interactive] surface. PIX Etherscan.io lampix_28.png TRUE FALSE TRUE
50-Tokens 0x8f0921f30555624143d427b340b1156914882c10 Flyp.me Aims to be an instant crypto exchange that is private and secure. FYP Etherscan.io flyp_28.png TRUE FALSE TRUE
50-Tokens 0x8f3470a7388c05ee4e7af3d01d8c722b0ff52374 Veritaseum Veritaseum builds blockchain-based, peer-to-peer capital markets as software on a global scale. VERI Etherscan.io veritaseum.png TRUE FALSE TRUE
50-Tokens 0x8f8221afbb33998d8584a2b05749ba73c37a938a Request A decentralized network built on top of Ethereum, which allows anyone, anywhere to request a payment. REQ Etherscan.io request_28.png TRUE FALSE TRUE
50-Tokens 0x9002d4485b7594e3e850f0a206713b305113f69e Hawala Hawala.Today is a P2P crypto-fiat currency exchange platform that aims to allow for near instant and secure exchanges, anywhere in the world. HAT Etherscan.io hat_28.png TRUE FALSE TRUE
50-Tokens 0x900b4449236a7bb26b286601dd14d2bde7a6ac6c EARTH Token EARTH Token provides a unique opportunity to truly transform the Natural Capital Asset market, by creating a Natural Asset Marketplace allowing all stakeholders in the climate value chain to participate. EARTH Etherscan.io earthtoken_28.png TRUE FALSE TRUE
50-Tokens 0x90528aeb3a2b736b780fd1b6c478bb7e1d643170 XPlay XPA aims to seamlessly bridges the gap between cryptocurrency and real world assets XPA Etherscan.io xpa_28.png TRUE FALSE TRUE
50-Tokens 0x905e337c6c8645263d3521205aa37bf4d034e745 Medical Token Currency MTC is an utility token that fuels a healthcare platform providing healthcare information to interested parties on a secure blockchain supported environment. MTC Etherscan.io mtc.png TRUE FALSE TRUE
50-Tokens 0x906b3f8b7845840188eab53c3f5ad348a787752f DoradoToken The next Uber On blockchain for all on-demand deliveries. DOR Etherscan.io dorado_28.png TRUE FALSE TRUE
50-Tokens 0x910dfc18d6ea3d6a7124a6f8b5458f281060fa4c X8XToken X8C is a secure store of value Ethereum token. X8X Etherscan.io x8currency_28.png TRUE FALSE TRUE
50-Tokens 0x9195e00402abe385f2d00a32af40b271f2e87925 ETHEERA Real estate for the blockchain ETA Etherscan.io etheera2_28.png TRUE FALSE TRUE
50-Tokens 0x9214ec02cb71cba0ada6896b8da260736a67ab10 Real Estate Asset Ledger Real Estate Blockchain innovations. REAL Etherscan.io realestatetoken_28.png TRUE FALSE TRUE
50-Tokens 0x922105fad8153f516bcfb829f56dc097a0e1d705 Yee - A Blockchain-powered & Cloud-based Socia Blockchain-powered & cloud-based social ecosystem. YEE Etherscan.io yee_28.png TRUE FALSE TRUE
50-Tokens 0x922ac473a3cc241fd3a0049ed14536452d58d73c VALID Authenticate online using your self-sovereign eID and start monetizing your anonymized personal data. VLD Etherscan.io vetri_28.png TRUE FALSE TRUE
50-Tokens 0x923108a439c4e8c2315c4f6521e5ce95b44e9b4c Devery.io A blockchain powered, open-source, product verification protocol. EVE Etherscan.io devery_28.png TRUE FALSE TRUE
50-Tokens 0x92a5b04d0ed5d94d7a193d1d334d3d16996f4e13 Eristica TOKEN Take a Challenge. Film your Proof. Win Cryptocurrency. ERT Etherscan.io eristica2_28.png TRUE FALSE TRUE
50-Tokens 0x92e52a1a235d9a103d970901066ce910aacefd37 UCASH Aims to build a global network of retail and individual converters providing cash to digital conversions to and from our ecosystem, helping people worldwide to unbank. UCASH Etherscan.io ucash_28.png TRUE FALSE TRUE
50-Tokens 0x92e78dae1315067a8819efd6dca432de9dcde2e9 Veros No description VRS Etherscan.io veros_28.png TRUE FALSE TRUE
50-Tokens 0x93190dbce9b9bd4aa546270a8d1d65905b5fdd28 DAPSTOKEN The DAPS project plans to create the world's first fully private blockchain that also maintains the 'Trustless' structure of traditional public blockchains. DAPS Etherscan.io daps_28.png TRUE FALSE TRUE
50-Tokens 0x93e682107d1e9defb0b5ee701c71707a4b2e46bc MCAP MCAP labs focusses on three key areas - Mining research, ICO evaluation & ICO investment. MCAP Etherscan.io mcap.png TRUE FALSE TRUE
50-Tokens 0x93ed3fbe21207ec2e8f2d3c3de6e058cb73bc04d Pinakion Kleros provides fast, secure and affordable arbitration for virtually everything. PNK Etherscan.io kelros_28.png TRUE FALSE TRUE
50-Tokens 0x943ed852dadb5c3938ecdc6883718df8142de4c8 FTI No description FTI Etherscan.io fanstime_28.png TRUE FALSE TRUE
50-Tokens 0x95382ac82e886a367bac9e1e23beabe569bcfed8 SURETY Token Smart Micro-Insurance for the Unbanked on Blockchain. SURE Etherscan.io surety_28.png TRUE FALSE TRUE
50-Tokens 0x954b5de09a55e59755acbda29e1eb74a45d30175 FluzFluz No description FLUZ Etherscan.io fluz_28.png TRUE FALSE TRUE
50-Tokens 0x954b890704693af242613edef1b603825afcd708 Cardstack The experience layer of the decentralized internet. CARD Etherscan.io cardstack_28.png TRUE FALSE TRUE
50-Tokens 0x957c30ab0426e0c93cd8241e2c60392d08c6ac8e Modum Token modum.io combines IoT sensors with blockchain technology, providing data integrity for transactions involving physical products. MOD Etherscan.io modum_28_2.png TRUE FALSE TRUE
50-Tokens 0x96a65609a7b84e8842732deb08f56c3e21ac6f8a Centra Centra PrePaid Cryptocurrency Card CTR Etherscan.io centra_28.png TRUE FALSE TRUE
50-Tokens 0x96b0bf939d9460095c15251f71fda11e41dcbddb Sharpay Sharpay is the share button with blockchain profit S Etherscan.io sharpay_28.png TRUE FALSE TRUE
50-Tokens 0x970e035e2a013cf4becd67e300d65bc32a56d826 Bodhi Ethereum Bodhi aims to build a credible, autonomous, and global decentralized prediction market platform. BOE Etherscan.io boe_28-1.png TRUE FALSE TRUE
50-Tokens 0x9720b467a710382a232a32f540bdced7d662a10b Vezt Vezt is an intellectual property rights marketplace that lets music fans buy rights in their favorite songs. VZT Etherscan.io vezt_28.png TRUE FALSE TRUE
50-Tokens 0x973e52691176d36453868d9d86572788d27041a9 DxChain Token Provide solutions to big data problems DX Etherscan.io dxchain_28_2.png TRUE FALSE TRUE
50-Tokens 0x9746953f5b1324a78132895cfd263f417b0faae3 ValueCyberToken ValueCyber is a blockchain system designed for the cooperation required by production and circulation in the digital economy era, and also a blockchain that tries to meet the technical and openness requirements for the next-generation blockchain. VCT Etherscan.io valuecyber_28.png TRUE FALSE TRUE
50-Tokens 0x97aeb5066e1a590e868b511457beb6fe99d329f5 Atonomi Atonomi provides a new security protocol and infrastructure to enable billions of IoT devices to have trusted interoperability for both data and commerce. ATMI Etherscan.io atonomi_28.png TRUE FALSE TRUE
50-Tokens 0x97fb6fc2ad532033af97043b563131c5204f8a35 PlusCoin PlusCoin has been developed to connect cryptocurrency and the real economy. PlusCoin also serves as exchange token of Korean exchange UpXide. NPLC Etherscan.io plus-coin28.png TRUE FALSE TRUE
50-Tokens 0x983f6d60db79ea8ca4eb9968c6aff8cfa04b3c63 SONM SONM's aims to be a secure and cost-effective fog supercomputer for general-purpose computing, from mobile app hosting to video rendering to DNA analysis. SNM Etherscan.io sonm_28.png TRUE FALSE TRUE
50-Tokens 0x986ee2b944c42d017f52af21c4c69b84dbea35d8 BitMartToken BitMart is a globally integrated trading platform founded by a group of cryptocurrency enthusiasts. BMC Etherscan.io bitmart_28.png TRUE FALSE TRUE
50-Tokens 0x994f0dffdbae0bbf09b652d6f11a493fd33f42b9 EagleCoin Eagle payment system vision is to make cryptocurrency usable and acceptable in any place and for any kind of payment. EAGLE Etherscan.io eaglecoin_28.png TRUE FALSE TRUE
50-Tokens 0x9972a0f24194447e73a7e8b6cd26a52e02ddfad5 ThoreCash No description TCH Etherscan.io thorecash_28.png TRUE FALSE TRUE
50-Tokens 0x998b3b82bc9dba173990be7afb772788b5acb8bd BANCA Decentralized intelligent blockchain-based community, using AI and Big Data. BANCA Etherscan.io banca_28.png TRUE FALSE TRUE
50-Tokens 0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec Polymath Polymath aims to enable securities to migrate to the blockchain. POLY Etherscan.io polymath_28.png TRUE FALSE TRUE
50-Tokens 0x999967e2ec8a74b7c8e9db19e039d920b31d39d0 TieToken A public, distributed and decentralized database with one common thread: trust. Enforced by integrated fault tolerance, incentive schemes and smart contracts. TIE Etherscan.io ties_28.png TRUE FALSE TRUE
50-Tokens 0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d Quantstamp Quantstamp – the Protocol for Securing Smart Contracts. We believe in the future of smart contracts and are building a foundational technology to protect users and investors – with scalable proofs-of-audit. QSP Etherscan.io quantstamp28.png TRUE FALSE TRUE
50-Tokens 0x9a005c9a89bd72a4bd27721e7a09a3c11d2b03c4 StarterCoin A first of its kind blockchain platform to help entrepreneurs, innovators and creators bring their ideas to life. STAC Etherscan.io stac_28.png TRUE FALSE TRUE
50-Tokens 0x9a0242b7a33dacbe40edb927834f96eb39f8fbcb BAX A decentralised banking platform that leverages blockchain and biometrics to offer anyone in the world access to a UK bank account for peer-to-peer financial services. BAX Etherscan.io bax_28_2.png TRUE FALSE TRUE
50-Tokens 0x9a0587eae7ef64b2b38a10442a44cfa43edd7d2a Welltrado token Compare peer to peer lending platforms WTL Etherscan.io welltrado_28.png TRUE FALSE TRUE
50-Tokens 0x9a642d6b3368ddc662ca244badf32cda716005bc Qtum Build Decentralized Applications that mobile devices QTUM Etherscan.io TRUE FALSE TRUE
50-Tokens 0x9a794dc1939f1d78fa48613b89b8f9d0a20da00e ABX Token A blockchain powered trading platform that integrates crypto assets from multiple exchanges. ABX Etherscan.io abx_28.png TRUE FALSE TRUE
50-Tokens 0x9ab165d795019b6d8b3e971dda91071421305e5a Aurora Aurora Chain offers intelligent application isolation and enables multi-chain parallel expansion to create an extremely high TPS with security maintain. AOA Etherscan.io aurora_AOA_28.png TRUE FALSE TRUE
50-Tokens 0x9af4f26941677c706cfecf6d3379ff01bb85d5ab DomRaiderToken DomRaider aims to be the bridge between the world of assets and the potential of open-source blockchain. DRT Etherscan.io domraider_28.png TRUE FALSE TRUE
50-Tokens 0x9b11efcaaa1890f6ee52c6bb7cf8153ac5d74139 ATMChain No description ATM Etherscan.io atmchain_28.png TRUE FALSE TRUE
50-Tokens 0x9b68bfae21df5a510931a262cecf63f41338f264 Decent.Bet An open-source blockchain peer-to-peer gaming platform where anyone with an idea can build a game, a predictive market, or a casino room and share in the revenue. DBET Etherscan.io decentbet_28.png TRUE FALSE TRUE
50-Tokens 0x9b70740e708a083c6ff38df52297020f5dfaa5ee Daneel No description DAN Etherscan.io daneel_28.png TRUE FALSE TRUE
50-Tokens 0x9c23d67aea7b95d80942e3836bcdf7e708a747c2 LOCIcoin Platform for Intellectual Property Discovery and Mining. LOCI Etherscan.io locipro_28.png TRUE FALSE TRUE
50-Tokens 0x9cda8a60dd5afa156c95bd974428d91a0812e054 TaTaTu Social Entertainment Platform with an integrated rewards programme. TTU Etherscan.io tatatutoken_28.png TRUE FALSE TRUE
50-Tokens 0x9d9223436ddd466fc247e9dbbd20207e640fef58 Olive Olive is a live streaming platform that provides a blockchain solution to the anchor and the audience and allows better utilization of internet resources and rewards OLE Etherscan.io olivecoin_28.png TRUE FALSE TRUE
50-Tokens 0x9e3319636e2126e3c0bc9e3134aec5e1508a46c7 UTN-P: Universa Token The Universa blockchain is a cooperative ledger of state changes, performed by licensed and trusted nodes. UTNP Etherscan.io universa_28.png TRUE FALSE TRUE
50-Tokens 0x9e46a38f5daabe8683e10793b06749eef7d733d1 Nectar Decentralized marketplace where security experts build anti-malware engines that compete to protect you. NCT Etherscan.io polyswarm-nectar_28.png TRUE FALSE TRUE
50-Tokens 0x9e6b2b11542f2bc52f3029077ace37e8fd838d7f Hacken Global Tokenized Business with Operating Cybersecurity Products. HKN Etherscan.io hacken_28.png TRUE FALSE TRUE
50-Tokens 0x9e77d5a1251b6f7d456722a6eac6d2d5980bd891 BRAT BROTHER token BRAT is a charity and aid token. BRAT Etherscan.io bratred28.png TRUE FALSE TRUE
50-Tokens 0x9e88613418cf03dca54d6a2cf6ad934a78c7a17a Swarm Fund Aims to be the Blockchain for Private Equity. SWM Etherscan.io swarmfund_28.png TRUE FALSE TRUE
50-Tokens 0x9e96604445ec19ffed9a5e8dd7b50a29c899a10c COSS A crypto currency exchange. COSS Etherscan.io coss_28.png TRUE FALSE TRUE
50-Tokens 0x9f195617fa8fbad9540c5d113a99a0a0172aaedc Niobium Niobium aims to build a corporate business crypto exchange called BOMESP, powering the future of distributive economy. NBC Etherscan.io niobium_28.png TRUE FALSE TRUE
50-Tokens 0xa017ac5fac5941f95010b12570b812c974469c2c Proxeus We bring blockchain compatibility to traditional companies by integrating a blockchain layer into existing enterprise systems. XES Etherscan.io proxeus_28.png TRUE FALSE TRUE
50-Tokens 0xa0b73e1ff0b80914ab6fe0444e65848c4c34450b Crypto.com Chain Pay and be paid in crypto anywhere, with any crypto, for free. CRO Etherscan.io cryptocom_28.png TRUE FALSE TRUE
50-Tokens 0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48 USD Coin USDC is a fully collateralized US Dollar stablecoin developed by CENTRE, the open source project and membership consortium, with Circle being the first of several forthcoming issuers. USDC Etherscan.io centre-usdc_28.png TRUE FALSE TRUE
50-Tokens 0xa0d440c6da37892dc06ee7930b2eede0634fd681 MasterNet Masternet is a Multi-system Interconnected Financial Platform designed to integrate with other Blockchain projects in need of real users, catering to everyday’s needs of a huge and prosperous community. MASH Etherscan.io masternet_28.png TRUE FALSE TRUE
50-Tokens 0xa13f0743951b4f6e3e3aa039f682e17279f52bc3 Sentinel Chain B2B marketplace specifically designed to provide affordable and secure financial services to the unbanked SENC Etherscan.io sentinelchain_28.png TRUE FALSE TRUE
50-Tokens 0xa15c7ebe1f07caf6bff097d8a589fb8ac49ae5b3 Pundi X Token No description NPXS Etherscan.io pundix-28.png TRUE FALSE TRUE
50-Tokens 0xa31108e5bab5494560db34c95492658af239357c DACSEE Global Decentralized Ride-Sharing Platform DACS Etherscan.io dacsee_28.png TRUE FALSE TRUE
50-Tokens 0xa3d58c4e56fedcae3a7c43a725aee9a71f0ece4e Metronome A new cryptocurrency focused on making greater decentralization possible and delivering institutional-class endurance. MET Etherscan.io metronome_28.png TRUE FALSE TRUE
50-Tokens 0xa3efef1a1e3d1ad72b9d0f4253e7c9c084c2c08b Online.io Online.io platform aims at revolutionizing the browsing experience by making it faster, ad free, more reliable, secure and non-trackable, thus marking a groundbreaking change of the Internet. OIO Etherscan.io onlineio_28.png TRUE FALSE TRUE
50-Tokens 0xa44e5137293e855b1b7bc7e2c6f8cd796ffcb037 SENTinel A modern VPN backed by blockchain anonymity and security. SENT Etherscan.io sentinelgroup_28.png TRUE FALSE TRUE
50-Tokens 0xa4e8c3ec456107ea67d3075bf9e3df3a75823db0 Loom Online game & social apps LOOM Etherscan.io loom_28.png TRUE FALSE TRUE
50-Tokens 0xa4ea687a2a7f29cf2dc66b39c68e4411c0d00c49 IvyKoin Public Network Tokens Ivy is a blockchain-based technology for FIAT & cryptocurrency business transactions. The Ivy network utilizes IVY tokens which carry KYC & KYT data points critical for Financial Institution validation. IVY Etherscan.io ivy_28.png TRUE FALSE TRUE
50-Tokens 0xa54ddc7b3cce7fc8b1e3fa0256d0db80d2c10970 NEVERDIE NEVERDIE Studios aims to use the value of the NEVERDIE Coin to make virtual reality fulfill its potential. NDC Etherscan.io 001-NDC-NEVERDIE-Coin-Logo.png TRUE FALSE TRUE
50-Tokens 0xa5f8fc0921880cb7342368bd128eb8050442b1a1 Block Array Blockchain-based Solutions for the Logistics Industry. ARY Etherscan.io blockarray_28.png TRUE FALSE TRUE
50-Tokens 0xa5fd1a791c4dfcaacc963d4f73c6ae5824149ea7 Jibrel Network Token The Jibrel Network provides currencies, equities, commodities and other financial assets and instruments as standard ERC-20 tokens on the Ethereum blockchain. JNT Etherscan.io jibrel.png TRUE FALSE TRUE
50-Tokens 0xa645264c5603e96c3b0b078cdab68733794b0a71 Mysterium Decentralized VPN powered by Blockchain. MYST Etherscan.io mysterium_28.png TRUE FALSE TRUE
50-Tokens 0xa66daa57432024023db65477ba87d4e7f5f95213 HuobiPoolToken No description HPT Etherscan.io huobi_28_2.png TRUE FALSE TRUE
50-Tokens 0xa6a840e50bcaa50da017b91a0d86b8b2d41156ee EchoLink No description EKO Etherscan.io echolink_28.png TRUE FALSE TRUE
50-Tokens 0xa74476443119a942de498590fe1f2454d7d4ac0d Golem Golem is going to create the first decentralized global market for computing power GNT Etherscan.io golem_28.png?v=2 TRUE FALSE TRUE
50-Tokens 0xa7f976c360ebbed4465c2855684d1aae5271efa9 TrueFlip Blockchain games with instant payouts and open source code, TFL Etherscan.io trueflip28.png TRUE FALSE TRUE
50-Tokens 0xa8006c4ca56f24d6836727d106349320db7fef82 Internxt A new wave of revolutionary technologies is here. Experience the future. Today. Welcome to Internxt. INXT Etherscan.io internxt_28_2.png TRUE FALSE TRUE
50-Tokens 0xa823e6722006afe99e91c30ff5295052fe6b8e32 Neumark Neufund’s Equity Token Offerings (ETOs) open the possibility to fundraise on Blockchain, with legal and technical framework done for you. NEU Etherscan.io neufund28.png TRUE FALSE TRUE
50-Tokens 0xa838be6e4b760e6061d4732d6b9f11bf578f9a76 Token for Television TV-TWO is bringing trustless transactions to 700M Smart TVs around the globe. We are decentralizing the television landscape by tokenizing reach on the Big Screen. TTV Etherscan.io tvtwo_28.png TRUE FALSE TRUE
50-Tokens 0xa849eaae994fb86afa73382e9bd88c2b6b18dc71 Mass Vehicle Ledger Token MVLChain aims to build an incentive-based blockchain mobility ecosystem. MVL Ecosystem breaks away current centralized system. Ecosystem participants get fairly rewarded for data contributions and uses in all-connected mobility services. MVL Etherscan.io mvl_28_2.png TRUE FALSE TRUE
50-Tokens 0xa95592dcffa3c080b4b40e459c5f5692f67db7f8 Elycoin A decentralized platform to build Ecommerce websites on the blockchain. ELY Etherscan.io elycoin_28.png TRUE FALSE TRUE
50-Tokens 0xa974c709cfb4566686553a20790685a47aceaa33 Mixin A TEE powered BFT-DAG network that connects all existing blockchains XIN Etherscan.io mixin_28.png TRUE FALSE TRUE
50-Tokens 0xa9d2927d3a04309e008b6af6e2e282ae2952e7fd Zipper Unified Address Digital Assets Wallet ZIP Etherscan.io zipper_28.png TRUE FALSE TRUE
50-Tokens 0xaa0bb10cec1fa372eb3abc17c933fc6ba863dd9e Hms Token HMS(Hi Mutual Society) is a blockchain project developed and operated by Qfund, the largest online crowdfunding platform in Asia. HMS intends to build up a decentralized Mutual Society using blockchain technology. HMC Etherscan.io hms_28.png TRUE FALSE TRUE
50-Tokens 0xaa19961b6b858d9f18a115f25aa1d98abc1fdba8 LocalCoinSwap Cryptoshare Directly trade any cryptocurrency, using any conceivable payment method, in any geographical location. LCS Etherscan.io localcoinswap2_28.png TRUE FALSE TRUE
50-Tokens 0xaa7a9ca87d3694b5755f213b5d04094b8d0f0a6f Trace Purpose-built Protocol for Supply Chains Based on Blockchain. TRAC Etherscan.io origintrail_28.png TRUE FALSE TRUE
50-Tokens 0xaaaf91d9b90df800df4f55c205fd6989c977e73a TokenCard The All Powerful Smart Contract Powered Debit Card TKN Etherscan.io tokencard_28_3.png TRUE FALSE TRUE
50-Tokens 0xaad54c9f27b876d2538455dda69207279ff673a5 Davinci coin Blockchain ecosystem for building and deploying decentralized application DAC Etherscan.io davinci_28.png TRUE FALSE TRUE
50-Tokens 0xaaf37055188feee4869de63464937e683d61b2a1 UChain Token The Next Generation Distributed Smart Network Blockchain for the Sharing Economy UCN Etherscan.io uchain_28.png TRUE FALSE TRUE
50-Tokens 0xab95e915c123fded5bdfb6325e35ef5515f1ea69 XENON Xenon, an alternative blockchain forked from the EOS project, XNN Etherscan.io xenon_28.png TRUE FALSE TRUE
50-Tokens 0xabbbb6447b68ffd6141da77c18c7b5876ed6c5ab DATx No description DATx Etherscan.io datx_28.png TRUE FALSE TRUE
50-Tokens 0xac3211a5025414af2866ff09c23fc18bc97e79b1 DOVU A token you earn and spend by sharing and changing the way you travel. DOV Etherscan.io dovu_28.png TRUE FALSE TRUE
50-Tokens 0xac3da587eac229c9896d919abc235ca4fd7f72c1 Target Coin Bonus Crypto Fund. TGT Etherscan.io tgtcoin_28.png TRUE FALSE TRUE
50-Tokens 0xac709fcb44a43c35f0da4e3163b117a17f3770f5 Arcade RIDESHARING - Arcade City is peer-to-peer everything — with networks built by local communities, not corporations. ARC Etherscan.io arcadecity.png TRUE FALSE TRUE
50-Tokens 0xacfa209fb73bf3dd5bbfb1101b9bc999c49062a5 Blockchain Certified Data Token Degrees certified on the blockchain BCDT Etherscan.io bcdtoken.png TRUE FALSE TRUE
50-Tokens 0xad5fe5b0b8ec8ff4565204990e4405b2da117d8e TRONCLASSIC TRXC is a token that serves as a social digital currency with all major social network to make the process of sending and receiving money rewarding for everyone. TRXC Etherscan.io tronclassic_28_2.png TRUE FALSE TRUE
50-Tokens 0xadf8b8050639b6236915f7516d69de714672f0bf Scanetchain SCANETCHAIN is the commercial dApp built on the NEM platform Developed for Blockchain Commercialization. Using augmented reality & hybrid blockchain to ensure interoperability of on-offline advertising, shopping, SNS services. SWC Etherscan.io scanetchain_28.png TRUE FALSE TRUE
50-Tokens 0xae4f56f072c34c0a65b3ae3e4db797d831439d93 Gimli Live stream crypto betting for gamers. GIM Etherscan.io gimli2_28.png TRUE FALSE TRUE
50-Tokens 0xae73b38d1c9a8b274127ec30160a4927c4d71824 STK Cryptocurrency Payments straight from your smartphone. STK Etherscan.io stktoken_28.png TRUE FALSE TRUE
50-Tokens 0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009 SingularDTV A Blockchain Entertainment Studio, Smart Contract Rights Management Platform and Video On-Demand Portal SNGLS Etherscan.io sngls2.PNG TRUE FALSE TRUE
50-Tokens 0xaec98a708810414878c3bcdf46aad31ded4a4557 300 Token 300 Token 300 Etherscan.io 300token_28.png TRUE FALSE TRUE
50-Tokens 0xaef38fbfbf932d1aef3b808bc8fbd8cd8e1f8bc5 CreditBIT The main goal of this project is to develop and maintain crypto currency ecosystem, based on token, that is built on top of Ethereum Blockchain. CRB Etherscan.io creditbit.png TRUE FALSE TRUE
50-Tokens 0xaf30d2a7e90d7dc361c8c4585e9bb7d2f6f15bc7 FirstBlood Token FirstBlood.io is a decentralized Esports gaming platform that is powered by the blockchain 1ST Etherscan.io TRUE FALSE TRUE
50-Tokens 0xaf4dce16da2877f8c9e00544c93b62ac40631f16 Monetha Trusted ecommerce. MTH Etherscan.io monetha_28.png?v=3 TRUE FALSE TRUE
50-Tokens 0xafc39788c51f0c1ff7b55317f3e70299e521fff6 eBitcoinCash Cryptocurrency Trading Platform EBCH Etherscan.io ebch2_28.png TRUE FALSE TRUE
50-Tokens 0xb0280743b44bf7db4b6be482b2ba7b75e5da096c Transcodium A Decentralized Peer-to-Peer Media Editing, Transcoding & Distribution Platform TNS Etherscan.io transcodium_28.png TRUE FALSE TRUE
50-Tokens 0xb0514a5b4aa58ac6e954f537598dd42a71916581 HUMToken Solution to Incurable Diseases by Curating Personal Health Data HUM Etherscan.io humanscape2_28.png TRUE FALSE TRUE
50-Tokens 0xb052f8a33d8bb068414eade06af6955199f9f010 EcoRealEstate Real Estate Investment through Ecoreal Ethereum Token. Capital markets are becoming Global, Real Estates are no exception. This establishes the need for a new decentralized solution to capitalize this potential. ECOREAL Etherscan.io ecoreal_28_3.png TRUE FALSE TRUE
50-Tokens 0xb056c38f6b7dc4064367403e26424cd2c60655e1 CEEK Universal Currency for VR & Entertainment Industry. Working Product Partnered with NBA Teams, Universal Music and Apple CEEK Etherscan.io ceek_28.png TRUE FALSE TRUE
50-Tokens 0xb16d3ed603d62b125c6bd45519eda40829549489 Insureum Token The Insureum Protocol uses blockchain to create a decentralized ecosystem that connects insurers, their policyholders, and third parties ISR Etherscan.io insureum_28.png TRUE FALSE TRUE
50-Tokens 0xb17df9a3b09583a9bdcf757d6367171476d4d8a3 MaverickChain Maverick System is a BAAS(Blockchain As A Service) solution platform which provides multi-chains-supported SDK. MVC Etherscan.io mvchain_28.png TRUE FALSE TRUE
50-Tokens 0xb1eef147028e9f480dbc5ccaa3277d417d1b85f0 SeeleToken Seele created Neural Consensus Algorithm. It transforms the consensus problem into an asynchronous request, processing and sorting data in a large-scale environment based on micro-real numbers. Seele Etherscan.io seele_28.png TRUE FALSE TRUE
50-Tokens 0xb2135ab9695a7678dd590b1a996cb0f37bcb0718 Signals Network Token Marketplace of data science powered signals for trading cryptocurrencies SGN Etherscan.io signal_28.png TRUE FALSE TRUE
50-Tokens 0xb24754be79281553dc1adc160ddf5cd9b74361a4 Rialto RIALTO.AI is a platform with automated algorithms for cryptocurrency arbitrage, market making, and prediction trading. XRL Etherscan.io rialto_28.png TRUE FALSE TRUE
50-Tokens 0xb2f7eb1f2c37645be61d73953035360e768d81e6 Cobinhood COBINHOOD is a ZERO Trading Fees cryptocurrency exchange with vision to maximize traders' profits. COB Etherscan.io cobinhood_28.png TRUE FALSE TRUE
50-Tokens 0xb3104b4b9da82025e8b9f8fb28b3553ce2f67069 BIX Token AI Enhanced Encrypted Digital Asset Exchange. BIX Etherscan.io bix_28.png TRUE FALSE TRUE
50-Tokens 0xb37a769b37224449d92aac57de379e1267cd3b00 Covalent Token No description COVA Etherscan.io covatoken_28.png TRUE FALSE TRUE
50-Tokens 0xb3bd49e28f8f832b8d1e246106991e546c323502 Global Messaging Token Communication Platforms Built on the Ethereum Blockchain. GMT Etherscan.io mercuryprotocol_28.png TRUE FALSE TRUE
50-Tokens 0xb3e2cb7cccfe139f8ff84013823bf22da6b6390a Iconiq Lab Token Iconiq Holding is a global crypto asset management firm headquartered in Frankfurt, Germany with offices in London and New York. ICNQ Etherscan.io iconiqlab_28.png TRUE FALSE TRUE
50-Tokens 0xb444208cb0516c150178fcf9a52604bc04a1acea GreenMed Use GreenMed to pay at your dispensary and earn tons of rewards GRMD Etherscan.io greenmed_28.png TRUE FALSE TRUE
50-Tokens 0xb45a50545beeab73f38f31e5973768c421805e5e TKRToken CryptoInsight - Insight and Analytics Platform. TKR Etherscan.io trackr2_28.png TRUE FALSE TRUE
50-Tokens 0xb53a96bcbdd9cf78dff20bab6c2be7baec8f00f8 ETHGAS Airdrop Service EGAS Etherscan.io ethgas_28.png TRUE FALSE TRUE
50-Tokens 0xb5a5f22694352c15b00323844ad545abb2b11028 ICON The ICON Network is comprised of various institutions ranging from: financial institutions, insurance companies, hospitals, universities and more. ICX Etherscan.io iconfoundation_28_2.png TRUE FALSE TRUE
50-Tokens 0xb5b8f5616fe42d5ceca3e87f3fddbdd8f496d760 ZPER ZPER is a global alliance platform of P2P(peer-to-peer) lending companies. The goal is to build a safer P2P lending market ecosystem. ZPR Etherscan.io zper_28.png TRUE FALSE TRUE
50-Tokens 0xb5dbc6d3cf380079df3b27135664b6bcf45d1869 Omix Shivom will enable DNA data donors to collaborate with revolutionary changemakers in biotechnology, healthcare industry, and government-ordained research institutes and contribute to an unprecedented era of medical marvels. OMX Etherscan.io shivom_28.png TRUE FALSE TRUE
50-Tokens 0xb62132e35a6c13ee1ee0f84dc5d40bad8d815206 Nexo Instant Crypto-backed Loans NEXO Etherscan.io nexo_28.png TRUE FALSE TRUE
50-Tokens 0xb62d18dea74045e822352ce4b3ee77319dc5ff2f EventChain Blockchain secured event ticketing. EVC Etherscan.io eventchain_28.png TRUE FALSE TRUE
50-Tokens 0xb63b606ac810a52cca15e44bb630fd42d8d1d83d Crypto.com Crypto.com, the pioneering payments and cryptocurrency platform, seeks to accelerate the world’s transition to cryptocurrency. MCO Etherscan.io cryptocom_28.png TRUE FALSE TRUE
50-Tokens 0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac Storj Blockchain-based, end-to-end encrypted, distributed object storage, where only you have access to your data STORJ Etherscan.io storj2.png TRUE FALSE TRUE
50-Tokens 0xb683d83a532e2cb7dfa5275eed3698436371cc9f BTU Protocol Decentralized Booking Protocol BTU Etherscan.io btu_28.png TRUE FALSE TRUE
50-Tokens 0xb6ed7644c69416d67b522e20bc294a9a9b405b31 0xBitcoin Token Pure mined digital currency for Ethereum 0xBTC Etherscan.io 0xbitcoin_28_1.png TRUE FALSE TRUE
50-Tokens 0xb6ee9668771a79be7967ee29a63d4184f8097143 CargoX CargoX aims to be the independent supplier of blockchain-based Smart B/L solutions that enable extremely fast, safe, reliable and cost-effective global Bill of Lading processing. CXO Etherscan.io cargox_28.png TRUE FALSE TRUE
50-Tokens 0xb70835d7822ebb9426b56543e391846c107bd32c Game.com Token Game.com is focused on creating a global gaming platform for blockchain digital currencies. GTC Etherscan.io gamecom_28_2.png TRUE FALSE TRUE
50-Tokens 0xb7cb1c96db6b22b0d3d9536e0108d062bd488f74 Walton Value Internet of Things (VIoT) constructs a perfect commercial ecosystem via the integration of the real world and the blockchain. WTC Etherscan.io walton_28_2.png TRUE FALSE TRUE
50-Tokens 0xb802b24e0637c2b87d2e8b7784c055bbe921011a EthereumMovieVenture Ethereum Movie Venture is a blockchain based movie platform. EMV Etherscan.io emv.png TRUE FALSE TRUE
50-Tokens 0xb8c77482e45f1f44de1745f52c74426c631bdd52 BNB Binance aims to build a world-class crypto exchange, powering the future of crypto finance. BNB Etherscan.io bnb_28_2.png TRUE FALSE TRUE
50-Tokens 0xb91318f35bdb262e9423bc7c7c2a3a93dd93c92c Nuls NULS is a global blockchain open-source project which is a highly customizable modular blockchain infrastructure consisting of a microkernel and functional modules. NULS Etherscan.io nuls28.png TRUE FALSE TRUE
50-Tokens 0xb94c53b0e67fabac3d97173482663ef597d4174a Giveth MiniMe Token TrueBlocks.io TRUE FALSE TRUE
50-Tokens 0xb97048628db6b661d4c2aa833e95dbe1a905b280 TenXPay TenX connects your blockchain assets for everyday use. TenX’s debit card and banking licence will allow us to be a hub for the blockchain ecosystem to connect for real-world use cases. PAY Etherscan.io tenx_28.png TRUE FALSE TRUE
50-Tokens 0xb98d4c97425d9908e66e53a6fdf673acca0be986 ArcBlock An open source protocol that provides an abstract layer for accessing underlying blockchains, enabling your application to work on different blockchains. ABT Etherscan.io arcblock_28.png TRUE FALSE TRUE
50-Tokens 0xb9bb08ab7e9fa0a1356bd4a39ec0ca267e03b0b3 PCHAIN Native multichain system in the world that supports Ethereum Virtual Machine (EVM), which consists of one main chain and multiple derived chains. PAI Etherscan.io pchain_28.png TRUE FALSE TRUE
50-Tokens 0xb9e7f8568e08d5659f5d29c4997173d84cdf2607 SwarmCity Swarm City is a decentralized peer to peer sharing economy SWT Etherscan.io SwarmCity.png TRUE FALSE TRUE
50-Tokens 0xba2184520a1cc49a6159c57e61e1844e085615b6 HelloGold HelloGold is a start-up that creates simple and accessible gold products for everyone, providing access to gold as a form of savings, loan collateral and remittance HGT Etherscan.io hellogold_28.png TRUE FALSE TRUE
50-Tokens 0xba5f11b16b155792cf3b2e6880e8706859a8aeb6 Aeron Blockchain for Aviation Safety. ARN Etherscan.io aeron_28_2.png TRUE FALSE TRUE
50-Tokens 0xba9d4199fab4f26efe3551d490e3821486f135ba SwissBorg Crypto Wealth Management. CHSB Etherscan.io swissborg_28_3.png TRUE FALSE TRUE
50-Tokens 0xbab165df9455aa0f2aed1f2565520b91ddadb4c8 EDUCare No description EKT Etherscan.io educare_28.png TRUE FALSE TRUE
50-Tokens 0xbac7a1798350cdf2dbfe0c210c2c9861223f4b31 Moneynet Coin Incentive Social Network Service MNC Etherscan.io moneynet_28.png TRUE FALSE TRUE
50-Tokens 0xbae235823d7255d9d48635ced4735227244cd583 Staker Staker is a service which provides a provably fair and transparent, web based Ethereum dice gambling Dapp. STR Etherscan.io staker2_28.png TRUE FALSE TRUE
50-Tokens 0xbb1fa4fdeb3459733bf67ebc6f893003fa976a82 Pangea Arbitration Token Influencers and social media (SNS) users from around the world can publish, discover, reserve, or sell influencer data on PATRON's trustful platform on both web and mobile. PATRON is a one stop shop for social media influencer focused brands and influencers themselves. PAT Etherscan.io bitnation_28.png TRUE FALSE TRUE
50-Tokens 0xbb49a51ee5a66ca3a8cbe529379ba44ba67e6771 Cryptosolartech New ICO, Cryptocurrency and Solar Energy. Own mining farm based on photovoltaic plant. Blockchain of Ethereum as a management tool. CST Etherscan.io cryptosolar_28_2.png TRUE FALSE TRUE
50-Tokens 0xbbc2045d335cb224228f1850b29173d9d7d7b989 HELP Decentralized Fundraising Platform & Advanced Distributed Edge Network HELP Etherscan.io help_28.png TRUE FALSE TRUE
50-Tokens 0xbbff862d906e348e9946bfb2132ecb157da3d4b4 Sharder Cross-chain distributed storage protocol SS Etherscan.io sharder_28.png TRUE FALSE TRUE
50-Tokens 0xbc46d9961a3932f7d6b64abfdec80c1816c4b835 LiteXToken LITEX is a completely decentralized payment ecosystem for cryptocurrency. LXT Etherscan.io litex_28.png TRUE FALSE TRUE
50-Tokens 0xbc647aad10114b89564c0a7aabe542bd0cf2c5af IONChain Token Through IONChain Protocol, IONChain will serve as the link between IoT devices, supporting decentralized peer-to-peer application interaction between devices. IONC Etherscan.io ionchain_28.png TRUE FALSE TRUE
50-Tokens 0xbc86727e770de68b1060c91f6bb6945c73e10388 Ink Protocol Peer-to-peer transactions on any platform. XNK Etherscan.io paywithink_28.png TRUE FALSE TRUE
50-Tokens 0xbd168cbf9d3a375b38dc51a202b5e8a4e52069ed BlueWhaleToken The Decentralized Ecosystem for the Self-Employed. BWX Etherscan.io bluewhalefoundation_28.png TRUE FALSE TRUE
50-Tokens 0xbd4b60a138b3fce3584ea01f50c0908c18f9677a FinTab Cryptocurrency Portfolio Tracker FNTB Etherscan.io fintab_28.png TRUE FALSE TRUE
50-Tokens 0xbdc5bac39dbe132b1e030e898ae3830017d7d969 Snovio Decentralized lead generation platform. SNOV Etherscan.io snovio_28.png TRUE FALSE TRUE
50-Tokens 0xbdcfbf5c4d91abc0bc9709c7286d00063c0e6f22 GUESS No Description GUESS Etherscan.io peerguess_28.png TRUE FALSE TRUE
50-Tokens 0xbdeb4b83251fb146687fa19d1c660f99411eefe3 savedroid Savedroid creates a unique ai-fueled ecosystem of crypto saving and investing for the masses. SVD Etherscan.io savedroid_28.png TRUE FALSE TRUE
50-Tokens 0xbe428c3867f05dea2a89fc76a102b544eac7f772 CyberVeinToken No description CVT Etherscan.io cyberverin_28.png TRUE FALSE TRUE
50-Tokens 0xbe6c8f2810ef39420d2dc2901b8414c8c45fee6d MICROMINES MicroExchange is a Decentralized exchange. MICRO Etherscan.io micromines_28.png TRUE FALSE TRUE
50-Tokens 0xbeb9ef514a379b997e0798fdcc901ee474b6d9a1 Melon Token The Melon protocol is a blockchain protocol for digital asset management built on the Ethereum platform MLN Etherscan.io TRUE FALSE TRUE
50-Tokens 0xbf2179859fc6d5bee9bf9158632dc51678a4100e ELF elf is a decentralized self-evolving cloud computing blockchain network that aims to provide a high performance platform for commercial adoption of blockchain. ELF Etherscan.io aelf_28.png TRUE FALSE TRUE
50-Tokens 0xbf52f2ab39e26e0951d2a02b49b7702abe30406a ODEM Token Unlocking human potential. Powering your education and certifications on the blockchain ODEM Etherscan.io odem_28.png TRUE FALSE TRUE
50-Tokens 0xc011a72400e58ecd99ee497cf89e3775d4bd732f Synthetix Network Token Synthetix is a cryptoasset-backed network that enables the creation of on-chain synthetic assets. SNX Etherscan.io synthetix_28.png TRUE FALSE TRUE
50-Tokens 0xc05d14442a510de4d3d71a3d316585aa0ce32b50 LINA An Ecosystem for Reviewers, Professionals and Businesses all around the world, powered and connected by Blockchain. LINA Etherscan.io lina1_28.png TRUE FALSE TRUE
50-Tokens 0xc0eb85285d83217cd7c891702bcbc0fc401e2d9d Hiveterminal Token A blockchain based platform providing you fast and low-cost liquidity. HVN Etherscan.io hive_28.png TRUE FALSE TRUE
50-Tokens 0xc12d099be31567add4e4e4d0d45691c3f58f5663 Auctus The world's first retirement plan platform with traditional and cryptocurrency assets, powered by smart contracts & robo advisory. AUC Etherscan.io auctus_28.jpg TRUE FALSE TRUE
50-Tokens 0xc16b542ff490e01fcc0dc58a60e1efdc3e357ca6 ICE ROCK MINING Commercial Bitcoin Mining. ROCK2 Etherscan.io icerock28.png TRUE FALSE TRUE
50-Tokens 0xc20464e0c373486d2b3335576e83a218b1618a5e Datarius Credit Datarius cryptobank is a decentralized partially closed system. DTRC Etherscan.io datarius_28.png TRUE FALSE TRUE
50-Tokens 0xc27a2f05fa577a83ba0fdb4c38443c0718356501 Lamden Tau Lamden is a suite of developer tools that speed up the process of creating new and custom blockchains and apps. TAU Etherscan.io lamdentau_28.png TRUE FALSE TRUE
50-Tokens 0xc3761eb917cd790b30dad99f6cc5b4ff93c4f9ea ERC20 ERC20 is payment method for Belance platform, future project and application and more. Real token utility. Belance is a large unique blockchain platform which combines many opportunities and connects everyone in the blockchain world. ERC20 Etherscan.io erc20_28.jpg TRUE FALSE TRUE
50-Tokens 0xc39e626a04c5971d770e319760d7926502975e47 aXpire No description AXPR Etherscan.io axpire_28.png TRUE FALSE TRUE
50-Tokens 0xc42209accc14029c1012fb5680d95fbd6036e2a0 PayPie PayPie platform brings ultimate trust and transparency to the financial markets by introducing the world’s first risk score algorithm based on business accounting. PPP Etherscan.io paypie_28.png TRUE FALSE TRUE
50-Tokens 0xc429e7b63dc30b51f5a7e4be23fd5eb4baf8a1c3 Bitibu Bitibu is the simple and secure exchange platform to trade Bitcoin, Ethereum, Litecoin and other altcoins easily. BTB Etherscan.io bitibu2_28.png TRUE FALSE TRUE
50-Tokens 0xc4bcd64cb216d49fd3c643a32762f34626b45a1a CosmoCoin Connecting customers and companies through a mutually beneficial beauty ecosystem COSM Etherscan.io cosmocoin_28.png TRUE FALSE TRUE
50-Tokens 0xc528c28fec0a90c083328bc45f587ee215760a0f Endor Protocol Token Inventing the “Google” for predictive analytics EDR Etherscan.io endor_28.png TRUE FALSE TRUE
50-Tokens 0xc56b13ebbcffa67cfb7979b900b736b3fb480d78 Social Activity Token Sphere Social Network is a next-generation decentralized social network powered by Social Activity Token SAT Etherscan.io sphere_28.png TRUE FALSE TRUE
50-Tokens 0xc5bbae50781be1669306b9e001eff57a2957b09d Gifto Decentralized Universal Gifting Protocol. GTO Etherscan.io gifto28.png TRUE FALSE TRUE
50-Tokens 0xc6abf3c09341741ac6041b0b08195701bdfd460c OSAToken Real-life blockchain and AI application for retail, the world’s biggest industry OSA Etherscan.io osa_28.png TRUE FALSE TRUE
50-Tokens 0xc72ed4445b3fe9f0863106e344e241530d338906 Mallcoin Token An international e-commerce site created for users from all over the world, who sell and buy various products and services with tokens. MLC Etherscan.io mallcoin_28.png TRUE FALSE TRUE
50-Tokens 0xc72fe8e3dd5bef0f9f31f259399f301272ef2a2d Insights Network The Insights Network’s unique combination of blockchain technology, smart contracts, and secure multiparty computation enables the individual to securely own, manage, and monetize their data. INSTAR Etherscan.io insightsnetwork28.png TRUE FALSE TRUE
50-Tokens 0xc7bba5b765581efb2cdd2679db5bea9ee79b201f Gems No description GEM Etherscan.io gems_28.png TRUE FALSE TRUE
50-Tokens 0xc7c03b8a3fc5719066e185ea616e87b88eba44a3 EligmaToken Eligma is a cognitive commerce platform aiming to create a user-friendly and safe consumer experience with AI and blockchain technology. One of its features is Elipay, a cryptocurrency transaction system. ELI Etherscan.io eligmatoken_28.png TRUE FALSE TRUE
50-Tokens 0xc86d054809623432210c107af2e3f619dcfbf652 SENTINEL PROTOCOL Sentinel Protocol is a blockchain-based threat intelligence platform that defends against hacks, scams, and fraud using crowdsourced threat data collected by security experts; called the Sentinels. UPP Etherscan.io uppsala_28.png TRUE FALSE TRUE
50-Tokens 0xc9859fccc876e6b4b3c749c5d29ea04f48acb74f Ino Coin InoCoin is a decentralized cryptocurrency built with the sole mission of helping new businesses with funding. INO Etherscan.io inocoin_28_2.png TRUE FALSE TRUE
50-Tokens 0xc98e0639c6d2ec037a615341c369666b110e80e5 EXMR EXMR aims to build a world-class crypto payment gateway, called GetCryptoPayments, that creates an open, safe and fair financial ecosystem for all. EXMR Etherscan.io exmr_28_1.png TRUE FALSE TRUE
50-Tokens 0xca0e7269600d353f70b14ad118a49575455c0f2f AMLT No description AMLT Etherscan.io amlt.png TRUE FALSE TRUE
50-Tokens 0xca2796f9f61dc7b238aab043971e49c6164df375 YGGDRASH Trust-based Multi-dimensional Blockchain YEED Etherscan.io yeedtoken2_28.png TRUE FALSE TRUE
50-Tokens 0xca29db4221c111888a7e80b12eac8a266da3ee0d Boleno Bolenum is a cryptocurrency and financial services provider targeting the African continent. BLN Etherscan.io boleno.png TRUE FALSE TRUE
50-Tokens 0xcb5a05bef3257613e984c17dbcf039952b6d883f Sugar Exchange Sugar Exchange aims to be a new type of cryptocurrency trading platform utilizing proven methods, as well as implementing advanced technology to ensure a superior user experience. SGR Etherscan.io sugarexchange_28.png TRUE FALSE TRUE
50-Tokens 0xcb94be6f13a1182e4a4b6140cb7bf2025d28e41b Trustcoin A platform for Trusted Lending Circles, powered by people and blockchain TRST Etherscan.io wetrust.png TRUE FALSE TRUE
50-Tokens 0xcb97e65f07da24d46bcdd078ebebd7c6e6e3d750 Bytom Transfer assets from atomic world to byteworld BTM Etherscan.io bytom_28.png TRUE FALSE TRUE
50-Tokens 0xcbcc0f036ed4788f63fc0fee32873d6a7487b908 Humaniq Humaniq aims to be a simple and secure 4th generation mobile bank. HMQ Etherscan.io humaniq.png TRUE FALSE TRUE
50-Tokens 0xcbeaec699431857fdb4d37addbbdc20e132d4903 YOYOW A blockchain based content rewards network YOYOW Etherscan.io yoyow28.png TRUE FALSE TRUE
50-Tokens 0xcc13fc627effd6e35d2d2706ea3c4d7396c610ea IDEX Membership No description IDXM Etherscan.io idex-membership_28.png TRUE FALSE TRUE
50-Tokens 0xcc34366e3842ca1bd36c1f324d15257960fcc801 Bonpay Accept, store and send Bitcoin with the Bonpay Wallet. Spend your funds anywhere with Bonpay Card. BON Etherscan.io bonpay28.png TRUE FALSE TRUE
50-Tokens 0xcc4ef9eeaf656ac1a2ab886743e98e97e090ed38 Digital Developers Fund Token Digital Developers Fund is an investment fund designed to let investors participate in the extraordinary growth in domain names and crypto currencies. DDF Etherscan.io ddf_28.png TRUE FALSE TRUE
50-Tokens 0xcc53c2e5e2421cb5a5307ed1c229816d71266292 Bitcoinus No description BITS Etherscan.io bitcoinus_28.png TRUE FALSE TRUE
50-Tokens 0xcc80c051057b774cd75067dc48f8987c4eb97a5e Ethfinex Nectar Token Nectar token (NEC), used to incentivise liquidity and reward loyal customers of Ethfinex. NEC Etherscan.io ethfinexnectar_28_2.png TRUE FALSE TRUE
50-Tokens 0xcced5b8288086be8c38e23567e684c3740be4d48 RouletteToken Developed and launched the prototype of «European Roulette» game based on Ethereum smart contract. RLT Etherscan.io rlt-big-min.png TRUE FALSE TRUE
50-Tokens 0xcdb7ecfd3403eef3882c65b761ef9b5054890a47 Hurify Token A Decentralized platform for IOT solution development. HUR Etherscan.io hurify_28.png TRUE FALSE TRUE
50-Tokens 0xcdcfc0f66c522fd086a1b725ea3c0eeb9f9e8814 Aurora DAO Aurora is a collection of Ethereum applications and protocols that together form a decentralized banking and finance platform. AURA Etherscan.io auroradao_28.png TRUE FALSE TRUE
50-Tokens 0xce5c603c78d047ef43032e96b5b785324f753a4f E4ROW The E4ROW project's mission is to aggressively expand the universe of Ether users by bringing Ether-based apps to the global online/mobile gaming markets. E4ROW Etherscan.io e4row_28.png TRUE FALSE TRUE
50-Tokens 0xced4e93198734ddaff8492d525bd258d49eb388e Eidoo Aims to be a Fast, easy, and not only a Multicurrency Wallet and Hybrid Exchange. EDO Etherscan.io eidoo_28.png TRUE FALSE TRUE
50-Tokens 0xcfb98637bcae43c13323eaa1731ced2b716962fd NimiqNetwork A Browser-based Blockchain & Ecosystem NET Etherscan.io nimiq_28.png TRUE FALSE TRUE
50-Tokens 0xd01db73e047855efb414e6202098c4be4cd2423b Uquid Coin The goal of this blockchain asset is to supplement the development of UQUID Ecosystem. In this virtual revolution, coin holders will have the benefit of instantly and effortlessly cash out their coins. UQC Etherscan.io uquid_28.png TRUE FALSE TRUE
50-Tokens 0xd0352a019e9ab9d757776f532377aaebd36fd541 Fusion FUSION is a public blockchain devoting itself to creating an inclusive cryptofinancial platform by providing cross-chain, cross-organization, and cross-datasource smart contracts. FSN Etherscan.io fusion_28.png TRUE FALSE TRUE
50-Tokens 0xd07d9fe2d2cc067015e2b4917d24933804f42cfa Tolar Token Tolar is an open source, community governed crypto-currency featuring scalable, fast, secure, and fair transactions. TOL Etherscan.io tolar_28.png TRUE FALSE TRUE
50-Tokens 0xd0929d411954c47438dc1d871dd6081f5c5e149c Refereum distribution and growth platform for games. RFR Etherscan.io refereum.png TRUE FALSE TRUE
50-Tokens 0xd0a4b8946cb52f0661273bfbc6fd0e0c75fc6433 Storm Storm Market aims to make it easier for members to find new ways to earn, engage, and advance with their gamified micro-task platform for STORM tokens. STORM Etherscan.io stormx_28.png TRUE FALSE TRUE
50-Tokens 0xd0d6d6c5fe4a677d343cc433536bb717bae167dd AdToken adChain is a browser agnostic Ethereum based solution for digital advertising that seamlessly integrates with pre-existing RTB and programmatic industry standards. ADT Etherscan.io adtoken.png TRUE FALSE TRUE
50-Tokens 0xd2946be786f35c3cc402c29b323647abda799071 Vikky Token VIKKY is the leading short-term employment application. VIKKY Etherscan.io vikky_28-1.png TRUE FALSE TRUE
50-Tokens 0xd2d6158683aee4cc838067727209a0aaf4359de3 Bounty0x A decentralized bounty hunting platform enabling anyone to manage bounty programs, and bounty hunters to receive payment for completing bounty tasks. BNTY Etherscan.io bounty0x.png TRUE FALSE TRUE
50-Tokens 0xd2fa8f92ea72abb35dbd6deca57173d22db2ba49 Origami Network A protocol for building decentralized marketplaces using the Ethereum blockchain ORI Etherscan.io origami_28.png TRUE FALSE TRUE
50-Tokens 0xd341d1680eeee3255b8c4c75bcce7eb57f144dae onG SoMee allows you to connect and build a community on a social network where you have the control of private data, information and monetization of your social media channels. ONG Etherscan.io ongcoin_28.png TRUE FALSE TRUE
50-Tokens 0xd3c00772b24d997a812249ca637a921e81357701 WILD Token Wild Crypto is a website where you can play games of chance. WILD Etherscan.io wildcrypto_28.png TRUE FALSE TRUE
50-Tokens 0xd42debe4edc92bd5a3fbb4243e1eccf6d63a4a5d Carboneum Carboneum is creating a democratized infrastructure of social trading platform with a proprietary application. C8 Etherscan.io carboneum_28.png TRUE FALSE TRUE
50-Tokens 0xd44bb6663936cab1310584a277f7daa6943d4904 Winco No description WCO Etherscan.io wincoico.png TRUE FALSE TRUE
50-Tokens 0xd45247c07379d94904e0a87b4481f0a1ddfa0c64 Buggyra Coin Zero BCZERO will act as the payment platform for racing series in China, India, Europe, South America and for Sponsorships and Fans. BCZERO Etherscan.io nuggyratoken_28.png TRUE FALSE TRUE
50-Tokens 0xd49ff13661451313ca1553fd6954bd1d9b6e02b9 ElectrifyAsia ELECTRIFY aims to be a retail electricity marketplace in Southeast-Asia addressing the need for transparency and security in the consumption of energy ELEC Etherscan.io electrify_28.png TRUE FALSE TRUE
50-Tokens 0xd4c435f5b09f855c3317c8524cb1f586e42795fa Cindicator Hybrid Intelligence for effective asset management. CND Etherscan.io cindicatortoken_28.png TRUE FALSE TRUE
50-Tokens 0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a Populous Aims to rebuild invoice financing block by block, for invoice buyers and sellers. PPT Etherscan.io populous_28.png TRUE FALSE TRUE
50-Tokens 0xd556caf704e39fc728058557a113b226207d2212 White Hat Donations (Giveth) Giveth website TRUE FALSE TRUE
50-Tokens 0xd559f20296ff4895da39b5bd9add54b442596a61 FintruX Network The Global P2P Lending Ecosystem Powered By Ethereum And No-Code Development. FTX Etherscan.io fintrux_28_28.png TRUE FALSE TRUE
50-Tokens 0xd65960facb8e4a2dfcb2c2212cb2e44a02e2a57e Soarcoin Soarcoin is a revolutionary digital money system. Use Soarcoin to make instant payments online or in-store using our secure Ethereum based open-source platform. Soar Etherscan.io soarcoin_28.png TRUE FALSE TRUE
50-Tokens 0xd6e1401a079922469e9b965cb090ea6ff64c6839 HOLD HOLD is a revolutionary card that provides instant cash against cryptocurrency collateral. Leverage the power of your portfolio without having to sell it. HOLD Etherscan.io holdco_28.png TRUE FALSE TRUE
50-Tokens 0xd7631787b4dcc87b1254cfd1e5ce48e96823dee8 SOCIALL secure and private decentralised social network SCL Etherscan.io socialcoin2_28.png TRUE FALSE TRUE
50-Tokens 0xd7b3669c7d3e38ab5a441383d41f25e003e02148 SealToken Seal is a blockchain powered product authentication and services platform which will provide consumers and manufacturers with product trust. SEAL Etherscan.io sealnetwork_28.png TRUE FALSE TRUE
50-Tokens 0xd82df0abd3f51425eb15ef7580fda55727875f14 DAV Token Blockchain-based transportation protocol enabling a decentralized, peer to peer, global transportation network DAV Etherscan.io dav_28.png TRUE FALSE TRUE
50-Tokens 0xd850942ef8811f2a866692a623011bde52a462c1 VeChain VeChain aims to connect blockchain technology to the real world by providing a comprehensive governance structure, a robust economic model as well as advanced IoT integration. VEN Etherscan.io vechain_28.png TRUE FALSE TRUE
50-Tokens 0xd8912c10681d8b21fd3742244f44658dba12264e Pluton With Plutus Tap & Pay, you can pay at any NFC-enabled merchant PLU Etherscan.io pluton.png TRUE FALSE TRUE
50-Tokens 0xd938137e6d96c72e4a6085412ada2dad78ff89c4 Change Your Life cryptocurrency exchange AAA Etherscan.io abulaba_28.png TRUE FALSE TRUE
50-Tokens 0xd99b8a7fa48e25cce83b81812220a3e03bf64e5f Skrumble Token Skrumble Network is a completely new, innovative blockchain and application that centers on creating the most secure connections for communication possible. SKM Etherscan.io skrumble_28.png TRUE FALSE TRUE
50-Tokens 0xd9a12cde03a86e800496469858de8581d3a5353d YUP decentralized open innovation platform empowering anyone to earn cryptocurrency, and entrepreneurs to get insights from key stakeholders, employees, and consumers. YUP Etherscan.io yupcoin_28.png TRUE FALSE TRUE
50-Tokens 0xda6cb58a0d0c01610a29c5a65c303e13e885887c cVToken Decentralized Car History Registry Built on Blockchain CV Etherscan.io carvertical_28_2.png TRUE FALSE TRUE
50-Tokens 0xda80b20038bdf968c7307bb5907a469482cf6251 BrokerNekoNetwork BrokerNeko Network provides rational, quick and easy solutions for individual and institutional transactions with its own unique system. BNN Etherscan.io brokerneko_28.png TRUE FALSE TRUE
50-Tokens 0xdac4ae188ace3c8985765edc6c9b4739d4845ddc InterValue InterValue is one of the first projects of the Blockchain 4.0 era. It supports the deployment of large-scale applications. InterValue’s double-layer DAG consensus uses sharding and gossip protocol to achieve high transaction concurrency. INVE Etherscan.io inve_28.png TRUE FALSE TRUE
50-Tokens 0xdae1baf249964bc4b6ac98c3122f0e3e785fd279 Tokia Mobile exchange & Digital currency wallet TKA Etherscan.io tokia_28.png TRUE FALSE TRUE
50-Tokens 0xdb25f211ab05b1c97d595516f45794528a807ad8 STASIS EURS Token EURS token is a virtual financial asset that is designed to digitally mirror the EURO on the condition that its value is tied to the value of its collateral. EURS Etherscan.io statiseuro_28.png TRUE FALSE TRUE
50-Tokens 0xdb455c71c1bc2de4e80ca451184041ef32054001 Jury.Online Unique platform for secure investment in responsible ICOs. JOT Etherscan.io jury_28.png TRUE FALSE TRUE
50-Tokens 0xdb8646f5b487b5dd979fac618350e85018f557d4 BitcoinToken Bitcoin Token (BTK) is a digital currency. It uses peer-to-peer technology to operate with no central authority or banks; managing transactions are carried out collectively by the network. BTK Etherscan.io btk_28.png TRUE FALSE TRUE
50-Tokens 0xdbfb423e9bbf16294388e07696a5120e4ceba0c5 Ethereum Dark Aims to allow anyone to send transactions through P2P network ETHD Etherscan.io ethereumdark_28.png TRUE FALSE TRUE
50-Tokens 0xdd16ec0f66e54d453e6756713e533355989040e4 Tokenomy No description TEN Etherscan.io tokenomy_28.png TRUE FALSE TRUE
50-Tokens 0xdd6c68bb32462e01705011a4e2ad1a60740f217f Hubiits A blockchain based decentralized marketplace. HBT Etherscan.io hubiinetwork_28.png TRUE FALSE TRUE
50-Tokens 0xdd974d5c2e2928dea5f71b9825b8b646686bd200 KyberNetwork KyberNetwork is a new system which allows the exchange and conversion of digital assets. KNC Etherscan.io kyber2_28.png TRUE FALSE TRUE
50-Tokens 0xddd460bbd9f79847ea08681563e8a9696867210c Spendcoin Spendcoin powers the Spend.com ecosystem. The Spend Wallet App & Spend Card give our users a multi-currency digital wallet that they can manage or spend from SPND Etherscan.io spendcoin_28.png TRUE FALSE TRUE
50-Tokens 0xde1e0ae6101b46520cf66fdc0b1059c5cc3d106c DeltaChain Token DeltaChain inherits and develops the Ethereum technology platform, with open source P2P accelerates all transactions quickly, minimises risk, enhances high security, and does not involve any third parties. DELTA Etherscan.io deltachain_28.png TRUE FALSE TRUE
50-Tokens 0xde2f7766c8bf14ca67193128535e5c7454f8387c Metadium Metadium is the next-generation identiy protocol layer of the internet, powered by blockchain with trustless trust. META Etherscan.io metadium_28_2.png TRUE FALSE TRUE
50-Tokens 0xdf2c7238198ad8b389666574f2d8bc411a4b7428 Mainframe Token A decentralized network for censorship-resistant message routing. MFT Etherscan.io mainframe_28.png TRUE FALSE TRUE
50-Tokens 0xdf347911910b6c9a4286ba8e2ee5ea4a39eb2134 BOB Token Using Blockchain to eliminate review fraud and provide lower pricing in the home repair industry through a decentralized platform. BOB Etherscan.io bobrepair_28.png TRUE FALSE TRUE
50-Tokens 0xe0b7927c4af23765cb51314a0e0521a9645f0e2a DGD DigixDAO is a decentralized voting / utility token that allows users to submit and manage proposals that relate to the growth of the Digix ecosystem and platform. DGD Etherscan.io digix_dgd_28.png TRUE FALSE TRUE
50-Tokens 0xe0c8087ce1a17bdd5d6c12eb52f8d7eff7791987 Linfinity As a reliable distributed business platform based on Blockchain, Internet of Things, and Big Data technology. LFT Etherscan.io linfinity_28.png TRUE FALSE TRUE
50-Tokens 0xe120c1ecbfdfea7f0a8f0ee30063491e8c26fedf Suretly Suretly is a crowdvouching platform. SUR Etherscan.io suretly_28.png TRUE FALSE TRUE
50-Tokens 0xe12128d653b62f08fbed56bdeb65db729b6691c3 BreezeCoin BreezeCoin is linked to real estate assets. Coin holders benefit from monthly interest payments. It will become a medium of exchange in real estate projects done by Breeze de Mar. BRZC Etherscan.io breezecoin_28_2.png TRUE FALSE TRUE
50-Tokens 0xe13ef257cf4d5df928ca11d230427c037666d466 WIT Digital Token Development and Value Management Service for Individual and Enterprise WIT Etherscan.io witchain_28.png TRUE FALSE TRUE
50-Tokens 0xe1aee98495365fc179699c1bb3e761fa716bee62 BezantToken A decentralized payment platform enabling the creation of robust applications BZNT Etherscan.io bezant1_28.png TRUE FALSE TRUE
50-Tokens 0xe25b0bba01dc5630312b6a21927e578061a13f55 ShipChain SHIP A fully integrated system across the entire supply chain, from the moment a shipment leaves the factory, to the final delivery on the customer's doorstep; federated in trustless, transparent blockchain contracts. SHIP Etherscan.io shipchain_28.png TRUE FALSE TRUE
50-Tokens 0xe25bcec5d3801ce3a794079bf94adf1b8ccd802d MATRIX AI Network Aims to be an open source public intelligent blockchain platform MAN Etherscan.io matrix_ai_28.png TRUE FALSE TRUE
50-Tokens 0xe2d82dc7da0e6f882e96846451f4fabcc8f90528 Jesus Coin cryptocurrency JC Etherscan.io jesuscoin2.png TRUE FALSE TRUE
50-Tokens 0xe2e6d4be086c6938b53b22144855eef674281639 Link Platform Link Platform Token is distributed to people around the world to promote a decentralized way of holding value. LNK Etherscan.io linkplatform28.png TRUE FALSE TRUE
50-Tokens 0xe2fb6529ef566a080e6d23de0bd351311087d567 Covesting Discover smarter investing by automatically copying the world's leading cryptocurrency traders. COV Etherscan.io covesting_28_2.png TRUE FALSE TRUE
50-Tokens 0xe30e02f049957e2a5907589e06ba646fb2c321ba DRP Utility No description DRPU Etherscan.io dcorp-utility_28.png TRUE FALSE TRUE
50-Tokens 0xe34e1944e776f39b9252790a0527ebda647ae668 Helbiz HBZ is a cryptocurrency and blockchain based transportation ecosystem to seamlessly offer transportation globally from scooters and cars to tolls and international flights through a partner network with ease, full transparency while users maintain full ownership of their personal data. HBZ Etherscan.io helbiz_28.png TRUE FALSE TRUE
50-Tokens 0xe3818504c1b32bf1557b16c238b2e01fd3149c17 PILLAR Building the a cryptocurrency and token wallet that aims to become the dashboard for your digital life. PLR Etherscan.io plr_28_2.png TRUE FALSE TRUE
50-Tokens 0xe3f4b4a5d91e5cb9435b947f090a319737036312 POPCHAIN CASH A brand new blockchain for K-Pop & Asian content market PCH Etherscan.io popchain_28.png TRUE FALSE TRUE
50-Tokens 0xe41d2489571d322189246dafa5ebde1f4699f498 ZRX Description: 0x is an open, permissionless protocol allowing for tokens to be traded on the Ethereum blockchain. ZRX Etherscan.io zrx_28.png?v=3 TRUE FALSE TRUE
50-Tokens 0xe469c4473af82217b30cf17b10bcdb6c8c796e75 EXRP Network Connecting the blockchains using crosschain gateway built with smart contracts. EXRN Etherscan.io exrnchain_28.png TRUE FALSE TRUE
50-Tokens 0xe477292f1b3268687a29376116b0ed27a9c76170 Herocoin Decentralized Solution for online betting. PLAY Etherscan.io herocoin_28.png TRUE FALSE TRUE
50-Tokens 0xe4c94d45f7aef7018a5d66f44af780ec6023378e CCRB Crypto currency CCRB Etherscan.io CCRB_28.png TRUE FALSE TRUE
50-Tokens 0xe50365f5d679cb98a1dd62d6f6e58e59321bcddf LAtoken LATOKEN aims to transform access to capital, and enables cryptocurrencies to be widely used in the real economy by making real assets tradable in crypto. LA Etherscan.io latoken_28_2.png TRUE FALSE TRUE
50-Tokens 0xe5dada80aa6477e85d09747f2842f7993d0df71c Dock dock.io is a decentralized data exchange protocol that lets people connect their profiles, reputations and experiences across the web with privacy and security. DOCK Etherscan.io dockio28.png TRUE FALSE TRUE
50-Tokens 0xe5f166c0d8872b68790061317bb6cca04582c912 TE-FOOD TE-FOOD is a successful food traceability solution, used by 6,000+ companies, managing more than 400,000 transactions each day, reaching 30 million people. TFD Etherscan.io te-food_28.png TRUE FALSE TRUE
50-Tokens 0xe7775a6e9bcf904eb39da2b68c5efb4f9360e08c TAAS TaaS is a tokenized closed-end fund designed to reduce the risks and technical barriers of investing in the blockchain space. TAAS Etherscan.io TAAS.png TRUE FALSE TRUE
50-Tokens 0xe7d3e4413e29ae35b0893140f4500965c74365e5 B2BCoin Unlock corporate demand for a token based business-to-business (B2B) marketing, sales, and trade platform. BBC Etherscan.io b2bcoin_28.png TRUE FALSE TRUE
50-Tokens 0xe7e4279b80d319ede2889855135a22021baf0907 ZeusNetwork Cryptocurrency that allows people to raise crypto for events to challenging circumstances like accidents and illnesses or real world emergencies. 'The GoFundMe of Crypto' ZEUS Etherscan.io zues_28.png TRUE FALSE TRUE
50-Tokens 0xe814aee960a85208c3db542c53e7d4a6c8d5f60f DAY ChronoLogic technology is used to create debt & innovative time-based smart contracts. DAY Etherscan.io chronologic_28.png TRUE FALSE TRUE
50-Tokens 0xe81d72d14b1516e68ac3190a46c93302cc8ed60f Coinlancer Coinlancer is a decentralized job market built on Ethereum platform. CL Etherscan.io coinlancer_2_28.png TRUE FALSE TRUE
50-Tokens 0xe8663a64a96169ff4d95b4299e7ae9a76b905b31 Rating Construct a token incentive ecosystem based on quantitative rating for cryptocurrency investors Rating Etherscan.io dprating1_28.png TRUE FALSE TRUE
50-Tokens 0xe8780b48bdb05f928697a5e8155f672ed91462f7 Cashaa We welcome Crypto Businesses! We know crypto-related businesses are underserved by banks. Our goal is to create a hassle-free banking experience for ICO-backed companies, exchanges, wallets, and brokers. Come and discover the world of crypto-friendly banking. CAS Etherscan.io cashaa_28_3.png TRUE FALSE TRUE
50-Tokens 0xe884cc2795b9c45beeac0607da9539fd571ccf85 Ultiledger Credit circulation, Asset circulation, Value circulation. The next generation global self-financing blockchain protocol. ULT Etherscan.io ultiledger_28.png TRUE FALSE TRUE
50-Tokens 0xe8a1df958be379045e2b46a31a98b93a2ecdfded ESZCoin EtherSportz is being developed as an online based eSports tournament platform for popular games. ESZ Etherscan.io ethersportz3_28.png TRUE FALSE TRUE
50-Tokens 0xe8ff5c9c75deb346acac493c463c8950be03dfba Vibe Coin Crypto Based Virtual / Augmented Reality Marketplace & Hub. VIBE Etherscan.io vibecoin28.png TRUE FALSE TRUE
50-Tokens 0xe94327d07fc17907b4db788e5adf2ed424addff6 Augur (Reputation) Augur combines the magic of prediction markets with the power of a decentralized network REP Etherscan.io TRUE FALSE TRUE
50-Tokens 0xe95990825aab1a7f0af4cc648f76a3bcc99f25b2 Zenswap Network Token Zenswap Network offers a new and practical cryptosphere for cryptocurrency and token swap, integrated with user-friendly value-added services to deliver the best crypto experience. ZNT Etherscan.io zenswapnetwork_28.png TRUE FALSE TRUE
50-Tokens 0xea097a2b1db00627b2fa17460ad260c016016977 Upfiring Incentivied and deentralized P2P file sharing on the Ethereum Blockchain powered by the UFR token. UFR Etherscan.io upfiring_28.png TRUE FALSE TRUE
50-Tokens 0xea11755ae41d889ceec39a63e6ff75a02bc1c00d Cortex Coin Decentralized AI autonomous system. CTXC Etherscan.io cortex_28.png TRUE FALSE TRUE
50-Tokens 0xea1f346faf023f974eb5adaf088bbcdf02d761f4 Blocktix Aims to connect event organizers with an incentivised community who actively reduce the associated costs of event hosting by up to 90%. TIX Etherscan.io blocktix_28.png TRUE FALSE TRUE
50-Tokens 0xea26c4ac16d4a5a106820bc8aee85fd0b7b2b664 QuarkChain Token A High-Capacity Peer-to-Peer Transactional System QKC Etherscan.io quarkchain_28.png TRUE FALSE TRUE
50-Tokens 0xea38eaa3c86c8f9b751533ba2e562deb9acded40 Fuel Token Etherparty™ is a contract wizard that removes the complexity of creating, managing and executing smart contracts on any compatible blockchain. FUEL Etherscan.io etherparty_28.png TRUE FALSE TRUE
50-Tokens 0xea5f88e54d982cbb0c441cde4e79bc305e5b43bc Pareto Network Token The Pareto Network is a peer to peer financial content marketplace. PARETO Etherscan.io pareto_28.png TRUE FALSE TRUE
50-Tokens 0xea610b1153477720748dc13ed378003941d84fab Alis A new social media concept revealing and providing access to reliable, articles, news, and people. ALIS Etherscan.io alis_28.png TRUE FALSE TRUE
50-Tokens 0xeaf61fc150cd5c3bea75744e830d916e60ea5a9f Typerium Decentralised Content Creation Platform TYPE Etherscan.io typerium_28_1.png TRUE FALSE TRUE
50-Tokens 0xeb547ed1d8a3ff1461abaa7f0022fed4836e00a4 Coinvest COIN V3 Token Coinvest is a trading platform (and market maker) where you make investment transactions and redeem profit from your trades through a process that is decentralized and handled by smart contracts. COIN Etherscan.io coinvest_28.png TRUE FALSE TRUE
50-Tokens 0xeb7c20027172e5d143fb030d50f91cece2d1485d eBitcoin The eBitcoin Ecosystem aims to bring together many Blockchain companies all under one umbrella-type group. EBTC Etherscan.io ebtc_28.png TRUE FALSE TRUE
50-Tokens 0xeb9951021698b42e4399f9cbb6267aa35f82d59d Lif WInding Tree is a platform for decentralized travel distribution. LIF Etherscan.io lif_28.png TRUE FALSE TRUE
50-Tokens 0xeb9a4b185816c354db92db09cc3b50be60b901b6 OriginSport Token A blockchain based sports betting platform ORS Etherscan.io originsport_28_2.png TRUE FALSE TRUE
50-Tokens 0xebbdf302c940c6bfd49c6b165f457fdb324649bc Hydro No description HYDRO Etherscan.io hydrogenplatform_28.png TRUE FALSE TRUE
50-Tokens 0xebc7cd2684dd96619841c7994343c5a8bda94b10 KWHCoin KWHCoin is a digital currency that converts renewable distributed energy resources to digital tokens on a unique blockchain. KWH Etherscan.io kwhcoin_28.png TRUE FALSE TRUE
50-Tokens 0xec46f8207d766012454c408de210bcbc2243e71c Nitro Blockchain platform for video game industry NOX Etherscan.io nitro.png TRUE FALSE TRUE
50-Tokens 0xec491c1088eae992b7a214efb0a266ad0927a72a AB-CHAIN RTB token ADS IN BLOCKCHAIN ADVERTISING NETWORK. Online advertising enhanced by blockchain and AI technologies. RTB Etherscan.io ab_chain_28.png TRUE FALSE TRUE
50-Tokens 0xec67005c4e498ec7f55e092bd1d35cbc47c91892 Melon Token The Melon protocol is a blockchain protocol for digital asset management built on the Ethereum platform MLN Etherscan.io melon_28_2.png TRUE FALSE TRUE
50-Tokens 0xece83617db208ad255ad4f45daf81e25137535bb Invacio Coin Invacio Research Analytica is an innovator in the field of artificial intelligence research, application and deployment. INV Etherscan.io invacio3_28.png TRUE FALSE TRUE
50-Tokens 0xed494c9e2f8e34e53bdd0ea9b4d80305cb15c5c2 CWV Chain An entry-level gaming scenarized entrance of Blockchain world CWV Etherscan.io cww_28.png TRUE FALSE TRUE
50-Tokens 0xeda8b016efa8b1161208cf041cd86972eee0f31e I HOUSE TOKEN Real Estate Blockchain Cloud Platform. IHT Etherscan.io ihtrealestate_28.png TRUE FALSE TRUE
50-Tokens 0xedd7c94fd7b4971b916d15067bc454b9e1bad980 Zippie The Zipper token pre-sale concluded on the 3rd of January 2018 after reached the 3M hard cap one day before the planned end date. ZIPT Etherscan.io zippie_28.png TRUE FALSE TRUE
50-Tokens 0xee5dfb5ddd54ea2fb93b796a8a1b83c3fe38e0e6 Nerves Neuronet of Things NER Etherscan.io nerves_28.png TRUE FALSE TRUE
50-Tokens 0xee609fe292128cad03b786dbb9bc2634ccdbe7fc PoSToken PoS Smart Contract Token. POS Etherscan.io postoken_28.png TRUE FALSE TRUE
50-Tokens 0xee74110fb5a1007b06282e0de5d73a61bf41d9cd BHPCash Distributed bank based on bitcoin hash power credit, offers innovative service of receiving dividend from mining and multiple derivative financial services on the basis of mining hash power. BHPC Etherscan.io bhpcash_28.png TRUE FALSE TRUE
50-Tokens 0xeee2d00eb7deb8dd6924187f5aa3496b7d06e62a Tigereum Tigereum aims to develop solutions to securely and easily send small amounts of crypto to friends and family by instant message on social media platforms. TIG Etherscan.io tigereum_28.png TRUE FALSE TRUE
50-Tokens 0xef2463099360a085f1f10b076ed72ef625497a06 Sharpe Platform Token A fintech business that aims to bridge the gap between crypto and traditional finance. SHP Etherscan.io sharpecapital_28_2.png TRUE FALSE TRUE
50-Tokens 0xef51c9377feb29856e61625caf9390bd0b67ea18 Bionic Bionic is an ethereum token created to facilitate the transaction between electronic companies BNC Etherscan.io bionic2_28.png TRUE FALSE TRUE
50-Tokens 0xef68e7c694f40c8202821edf525de3782458639f Loopring Loopring is not only a protocol but also a decentralized automated execution system that trades across the crypto-token exchanges. LRC Etherscan.io loopring2_28.png TRUE FALSE TRUE
50-Tokens 0xef8cf79c21637fc6f951bcac348915508a639a41 SRCOIN Patent: Advanced A.I. System Processing & Data Collection SRCOIN Etherscan.io srcoin_28.png TRUE FALSE TRUE
50-Tokens 0xf03045a4c8077e38f3b8e2ed33b8aee69edf869f BlockMesh The BlockMesh platform is a platform supporting mesh based devices focusing on communication and the loT. MESH Etherscan.io blockmeshio_28.png TRUE FALSE TRUE
50-Tokens 0xf03f8d65bafa598611c3495124093c56e8f638f0 VIEW Viewly Alpha is an experimental video platform with tokenized incentives. VIEW Etherscan.io viewly_28.png TRUE FALSE TRUE
50-Tokens 0xf04a8ac553fcedb5ba99a64799155826c136b0be Flixx Community based video distribution. FLIXX Etherscan.io flixxo_28.png TRUE FALSE TRUE
50-Tokens 0xf05a9382a4c3f29e2784502754293d88b835109c imbrex A globally connected ecosystem of hyperlocally-curated, validated and highly portable real estate data, where buyers, agents, firms and MLSs can realize the true value of their data. REX Etherscan.io imbrextoken_28.png TRUE FALSE TRUE
50-Tokens 0xf0ee6b27b759c9893ce4f094b49ad28fd15a23e4 Enigma Enigma is a privacy protocol that enables truly decentralized applications and unlocks the value of blockchains. ENG Etherscan.io enigma_28.png TRUE FALSE TRUE
50-Tokens 0xf14922001a2fb8541a433905437ae954419c2439 Inmediate The Smart Insurance Platform DIT Etherscan.io dit_28.png TRUE FALSE TRUE
50-Tokens 0xf278c1ca969095ffddded020290cf8b5c424ace2 RUFF Decentralized open source blockchain architecture for high efficiency Internet of Things application development RUFF Etherscan.io ruffchain_28.png TRUE FALSE TRUE
50-Tokens 0xf3d29fb98d2dc5e78c87198deef99377345fd6f1 BITPARK P2P Insurance Platform. BITPARK Etherscan.io bitparkcoin_28.png TRUE FALSE TRUE
50-Tokens 0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8 Everex Everex aims to enable you to transfer, borrow, and trade in any fiat currency, anywhere. EVX Etherscan.io everex_28.png TRUE FALSE TRUE
50-Tokens 0xf3db7560e820834658b590c96234c333cd3d5e5e Poker Chips CoinPoker is a poker room built on blockchain technology that aims to offer fantastic value for both poker players and cryptocurrency community members alike. CHP Etherscan.io coinpoker_28.png TRUE FALSE TRUE
50-Tokens 0xf4134146af2d511dd5ea8cdb1c4ac88c57d60404 SunContract The SunContract platform aims to empower individuals, with an emphasis on home owners, to freely buy, sell or trade electricity. SNC Etherscan.io suncontract.png TRUE FALSE TRUE
50-Tokens 0xf41e5fbc2f6aac200dd8619e121ce1f05d150077 CryCash CRYCASH is the first cryptocurrency that satisfies all needs of gamers and game developers with its Ecosystem of custom-tailored services. CRYCASH has already confirmed integration into the renowned bestsellers from Crytek, with more partners to come. Connect with tomorrow’s technology today! CRC Etherscan.io crycash28.png TRUE FALSE TRUE
50-Tokens 0xf433089366899d83a9f26a773d59ec7ecf30355e Metal Transfer money instantly around the globe with nothing more than a phone number. Earn rewards every time you spend or make a purchase. Ditch the bank and go digital. MTL Etherscan.io metalpay_28.png TRUE FALSE TRUE
50-Tokens 0xf44745fbd41f6a1ba151df190db0564c5fcc4410 COPYTRACK A copyright registration platform. CPY Etherscan.io copytrack_28.png TRUE FALSE TRUE
50-Tokens 0xf453b5b9d4e0b5c62ffb256bb2378cc2bc8e8a89 Mark No description MRK Etherscan.io markspace_28_2.png TRUE FALSE TRUE
50-Tokens 0xf4faea455575354d2699bc209b0a65ca99f69982 No BS Crypto No description NOBS Etherscan.io nobs_28.png TRUE FALSE TRUE
50-Tokens 0xf6276830c265a779a2225b9d2fcbab790cbeb92b XCELTOKEN XcelToken is digital general purpose utility token based on the ERC20 Ethereum protocol . It helps hotels, restaurants and marketing partners earn while participating, while travelers enjoy the benefits of a leaner eco-system. XCEL Etherscan.io xcel_28.png TRUE FALSE TRUE
50-Tokens 0xf629cbd94d3791c9250152bd8dfbdf380e2a3b9c EnjinCoin Customizable cryptocurrency and virtual goods platform for gaming. ENJ Etherscan.io enjin_28_2.png TRUE FALSE TRUE
50-Tokens 0xf6346cd9d0b90ca55ca8b128788a06d2c0e70dd3 Space Decentral Donations (Giveth) Giveth website TRUE FALSE TRUE
50-Tokens 0xf6cfe53d6febaeea051f400ff5fc14f0cbbdaca1 DigiPulse Aim to ensure that all digital assets holders and crypto wallet users have ultimate control over who inherits their digital and crypto assets. DGPT Etherscan.io digipulse2_28.png TRUE FALSE TRUE
50-Tokens 0xf70a642bd387f94380ffb90451c2c81d4eb82cbc Starbase Starbase is a blockchain token based crowdfunding/ sourcing platform STAR Etherscan.io starbase_28.png TRUE FALSE TRUE
50-Tokens 0xf7b098298f7c69fc14610bf71d5e02c60792894c Guppy Matchpool is a platform that creates human connections Guppy Etherscan.io guppy_28.png TRUE FALSE TRUE
50-Tokens 0xf85feea2fdd81d51177f6b8f35f0e6734ce45f5f CyberMiles Empowering the Decentralization of Online Marketplaces. CMT Etherscan.io cybermiles_28_2.png TRUE FALSE TRUE
50-Tokens 0xf8b358b3397a8ea5464f8cc753645d42e14b79ea Airbloc AIRBLOC is a decentralized personal data protocol where individuals would be able to monetize their data, and advertisers would be able to buy these data to conduct targeted marketing campaigns for higher ROIs. ABL Etherscan.io airbloc_28.png TRUE FALSE TRUE
50-Tokens 0xf8e06e4e4a80287fdca5b02dccecaa9d0954840f TGAME The trusted smart contracts based IGaming platform TGAME Etherscan.io truegame_28.png TRUE FALSE TRUE
50-Tokens 0xf8e386eda857484f5a12e4b5daa9984e06e73705 Indorse Decentralized Professional Network powered by blockchain technology IND Etherscan.io indorse_28.png TRUE FALSE TRUE
50-Tokens 0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6 RipioCreditNetwork Ripio Credit Network is a global credit network based on cosigned smart contracts and blockchain technology that connects lenders and borrowers located anywhere in the world and on any currency RCN Etherscan.io ripio_28_2.png TRUE FALSE TRUE
50-Tokens 0xfa05a73ffe78ef8f1a739473e462c54bae6567d9 Lunyr Lunyr is an Ethereum-based decentralized world knowledge base which rewards users with app tokens for peer-reviewing and contributing information LUN Etherscan.io lunyr_28_2.png TRUE FALSE TRUE
50-Tokens 0xfa1a856cfa3409cfa145fa4e20eb270df3eb21ab IOSToken A Secure & Scalable Blockchain for Smart Services IOST Etherscan.io iost_28.png TRUE FALSE TRUE
50-Tokens 0xfa456cf55250a839088b27ee32a424d7dacb54ff blocktrade Blocktrade.com is a trading facility for Crypto Assets, Crypto Traded Indices, and other blockchain related Financial Instruments. BTT Etherscan.io blocktrade_28.png TRUE FALSE TRUE
50-Tokens 0xfae4ee59cdd86e3be9e8b90b53aa866327d7c090 CPChain CPChain is a new distributed infrastructure for next generation Internet of Things (IoT). CPC Etherscan.io cpchain_28.png TRUE FALSE TRUE
50-Tokens 0xfb2f26f266fb2805a387230f2aa0a331b4d96fba DADI A new era of cloud computing services, powered by blockchain technology. DADI Etherscan.io dadi.png TRUE FALSE TRUE
50-Tokens 0xfc05987bd2be489accf0f509e44b0145d68240f7 ESSENTIA Essentia is a masternoded multi-chained set of protocols connecting centralized and decentralized resources to create new powerful interactions and experiences. ESS Etherscan.io essentia_28.png TRUE FALSE TRUE
50-Tokens 0xfc2c4d8f95002c14ed0a7aa65102cac9e5953b5e Rublix No description RBLX Etherscan.io rublix_28.png TRUE FALSE TRUE
50-Tokens 0xfca47962d45adfdfd1ab2d972315db4ce7ccf094 iXledger Empowering the future of insurance through blockchain technology. IXT Etherscan.io ixledger28.png TRUE FALSE TRUE
50-Tokens 0xfd107b473ab90e8fbd89872144a3dc92c40fa8c9 LALA LaLa is a new age one-stop Wallet based on ethereum and hyperledger blockchains allowing investors to capitalise on the rise of blockchain as well as the underbanked into the financial ecosystem. LALA Etherscan.io lalaworld_28.png TRUE FALSE TRUE
50-Tokens 0xfd1e80508f243e64ce234ea88a5fd2827c71d4b7 MEDX TOKEN Decentralized healthcare information system MEDX Etherscan.io medx_1_28.png TRUE FALSE TRUE
50-Tokens 0xfd8971d5e8e1740ce2d0a84095fca4de729d0c16 Zilla Aims to create an ICO purchasing platform. ZLA Etherscan.io zilla.png TRUE FALSE TRUE
50-Tokens 0xfdbc1adc26f0f8f8606a5d63b7d3a3cd21c22b23 1World 1World is first of its kind media token and new generation Adsense. 1WO is used for increasing user engagement by sharing 10% ads revenue with participants and for buying ads. 1WO Etherscan.io 1worldonline_28.png TRUE FALSE TRUE
50-Tokens 0xfe5f141bf94fe84bc28ded0ab966c16b17490657 LibraToken Decentralized lending infrastructure facilitating open access to credit networks on Ethereum. LBA Etherscan.io cred_28.png TRUE FALSE TRUE
50-Tokens 0xfec0cf7fe078a500abf15f1284958f22049c2c7e Maecenas ART Token An open blockchain platform that democratises access to Fine Art. ART Etherscan.io maecenas_28.jpg TRUE FALSE TRUE
50-Tokens 0xfedae5642668f8636a11987ff386bfd215f942ee PolicyPal Network Dual-Layered Protocol for Financial Assets PAL Etherscan.io pal_28.png TRUE FALSE TRUE
50-Tokens 0xfef3884b603c33ef8ed4183346e093a173c94da6 MetaMorph MetaMorph is an easy Coin Exchange interface that can switch digital currencies from one cryptocurrency to another. METM Etherscan.io metamorph1_28.png TRUE FALSE TRUE
50-Tokens 0xff18dbc487b4c2e3222d115952babfda8ba52f5f PureLifeCoin LIFElabs' mission is to demystify the world of cryptocurrency, giving you the opportunity to embrace the benefits of Blockchain technology. LIFE Etherscan.io purelifecoin2_28.png TRUE FALSE TRUE
50-Tokens 0xff19138b039d938db46bdda0067dc4ba132ec71c Snetwork No description SNET Etherscan.io snetwork_28.png TRUE FALSE TRUE
50-Tokens 0xff2b3353c3015e9f1fbf95b9bda23f58aa7ce007 BitScreenerToken BitScreener is a trusted real-time crypto-tracking platform, available on Android, iOS and Web. It is now integrating crowdsourcing financial data ecosystem on blockchain. BITX Etherscan.io bitscreener_28.png TRUE FALSE TRUE
50-Tokens 0xff3519eeeea3e76f1f699ccce5e23ee0bdda41ac Blockchain Capital Blockchain Capital is a pioneer and the premier venture capital firm investing in Blockchain enabled technology BCAP Etherscan.io TRUE FALSE TRUE
50-Tokens 0xff5c25d2f40b47c4a37f989de933e26562ef0ac0 Kora Network Token Kora is a digital banking solution powered by the Kora Network KNT Etherscan.io kora_28.png TRUE FALSE TRUE
50-Tokens 0xff603f43946a3a28df5e6a73172555d8c8b02386 OneRoot Network No description RNT Etherscan.io onerootnetwork_28.png TRUE FALSE TRUE
50-Tokens 0xffa93aacf49297d51e211817452839052fdfb961 Distributed Credit Chain Distributed banking public blockchain with a goal to establish a decentralized ecosystem for financial service providers around the world. DCC Etherscan.io dcc_28.png TRUE FALSE TRUE
50-Tokens 0xffe02ee4c69edf1b340fcad64fbd6b37a7b9e265 NANJCOIN No description NANJ Etherscan.io nanjcoin_28.png TRUE FALSE TRUE
50-Tokens 0xffe8196bc259e8dedc544d935786aa4709ec3e64 Hedge An investment portal for the ICO and Staking platforms. HDG Etherscan.io hedge-crypto2_28.png TRUE FALSE TRUE
60-Airdrops 0x06b2387c7f56ecb61009bb31375b84e4be7f80b3 HEALP Airdrop HEALP TrueBlocks.io TRUE FALSE TRUE
60-Airdrops 0x0775c81a273b355e6a5b76e240bf708701f00279 Bulleon Airdrop Revolutionizing the way of Financial Transactions BUL Etherscan.io bulleon_28.png TRUE FALSE TRUE
60-Airdrops 0x0f22d8d872bb7c3f377f21a64ff2fe16053ed34d XCEL Airdrop XCEL TrueBlocks.io TRUE FALSE TRUE
60-Airdrops 0x1234567461d3f8db7496581774bd869c83d51c93 BitClave Airdrop BlockCAT lets anyone create, manage, and deploy smart contracts on the Ethereum blockchain with just a few clicks. No programming required. CAT Etherscan.io bitclave2_28.png TRUE FALSE TRUE
60-Airdrops 0x182ebf4c80b28efc45ad992ecbb9f730e31e8c7f LPT Airdrop LPT TrueBlocks.io TRUE FALSE TRUE
60-Airdrops 0x207725cb572bbe6095a2b630c7d8d9ee9b24de03 Soundeon Airdrop SOUND TrueBlocks.io TRUE FALSE TRUE
60-Airdrops 0x212d95fccdf0366343350f486bda1ceafc0c2d63 KYC Token Airdrop KYX TrueBlocks.io TRUE FALSE TRUE
60-Airdrops 0x26012e2df96099182ab1bd8a365b4c39bd510ecc VOS.AI Airdrop VOS.AI TrueBlocks.io TRUE FALSE TRUE
60-Airdrops 0x2f6321db2461f68676f42f396330a4dc4a8f49df CEN Airdrop CEN TrueBlocks.io TRUE FALSE TRUE
60-Airdrops 0x2ff2b86c156583b1135c584fd940a1996fa4230b findtherabbit.me Airdrop TrueBlocks.io TRUE FALSE TRUE
60-Airdrops 0x319dd3826bcd41d6dd741fdcef3d5301b20965e9 GOOLA Airdrop GOOLA TrueBlocks.io TRUE FALSE TRUE
60-Airdrops 0x31a240648e2baf4f9f17225987f6f53fceb1699a safe.ad Airdrop SAFE TrueBlocks.io TRUE FALSE TRUE
60-Airdrops 0x34e71fda469b91e7ef57738cb06cb7c120621f25 MCUX Airdrop MCUX TrueBlocks.io TRUE FALSE TRUE
60-Airdrops 0x4459b42d034330ecc1e4d604c0a5c855b857df2c SHAG Airdrop SHAG TrueBlocks.io TRUE FALSE TRUE
60-Airdrops 0x4809f44e7f070487db1cbf992fc1b93dfc20ce6a LPT Airdrop TrueBlocks.io TRUE FALSE TRUE
60-Airdrops 0x4bd39d358ff6c505adc9f6c279db3f09a65742a5 EAST Airdrop EAST TrueBlocks.io TRUE FALSE TRUE
60-Airdrops 0x4f4a591dfa6bb5ca83f996195654cf7fddd43433 FIFA Airdrop FIFA TrueBlocks.io TRUE FALSE TRUE
60-Airdrops 0x52903256dd18d85c2dc4a6c999907c9793ea61e3 INSP Airdrop INSP TrueBlocks.io TRUE FALSE TRUE
60-Airdrops 0x5586aec6f58086524753d594cec08c4318314299 DATA Airdrop DATA TrueBlocks.io TRUE FALSE TRUE
60-Airdrops 0x61d80088c69f0874963dcd655de7e0b851ceef61 VIN Airdrop VIN TrueBlocks.io TRUE FALSE TRUE
60-Airdrops 0x6ac2388cedf41820c333e8de8f0e75cf424b4b13 Yidabi Airdrop YIDI TrueBlocks.io TRUE FALSE TRUE
60-Airdrops 0x7b2f9706cd8473b4f5b7758b0171a9933fc6c4d6 HEALP Airdrop HEALP TrueBlocks.io TRUE FALSE TRUE
60-Airdrops 0x7b9c5e2d10fdcc18b972cb6cab4e60f277a8e332 GSE Airdrop GSE TrueBlocks.io TRUE FALSE TRUE
60-Airdrops 0x862cb5b6eeaafb26ebb137e0c3c5d7728800439a OMG Airdrop OMG TrueBlocks.io TRUE FALSE TRUE
60-Airdrops 0x8e4fbe2673e154fe9399166e03e18f87a5754420 UBT Airdrop UBT TrueBlocks.io TRUE FALSE TRUE
60-Airdrops 0x922f89af2a2af5e43dec770398ac539b76e8a91b Elec Airdrop ELEC TrueBlocks.io TRUE FALSE TRUE
60-Airdrops 0x92ca643fe78ea22c89c13caed410fec7425ee6fc VIN Airdrop VIN TrueBlocks.io TRUE FALSE TRUE
60-Airdrops 0xa31020c042fc18fbad63fc2fe3c0183675a4a3a9 XCC Airdrop XCC TrueBlocks.io TRUE FALSE TRUE
60-Airdrops 0xa5025faba6e70b84f74e9b1113e5f7f4e7f4859f AGLD Airdrop AGLD TrueBlocks.io TRUE FALSE TRUE
60-Airdrops 0xaaaaa798ebb90066788951e0fc03bc71e6bc2b51 AZ Airdrop AZLPT TrueBlocks.io TRUE FALSE TRUE
60-Airdrops 0xae2b80f7f4d285caa658a285233550d19c8e7847 VIU Airdrop XNN TrueBlocks.io TRUE FALSE TRUE
60-Airdrops 0xaf47ebbd460f21c2b3262726572ca8812d7143b0 PMOD Airdrop PMOD TrueBlocks.io TRUE FALSE TRUE
60-Airdrops 0xb59fdff77a6175dfa4fe7af4281a52f61611eaa2 XNN Airdrop TrueBlocks.io TRUE FALSE TRUE
60-Airdrops 0xc596bd09d652827b0106292d3e378d5938df4b12 Teleport Airdrop Token LPT TrueBlocks.io TRUE FALSE TRUE
60-Airdrops 0xc706d899d372ad3d1b1f6b27bd973a9ff77f4139 SNCoin Airdrop SN TrueBlocks.io TRUE FALSE TRUE
60-Airdrops 0xd037a81b22e7f814bc6f87d50e5bd67d8c329fa2 EMO Airdrop EMO TrueBlocks.io TRUE FALSE TRUE
60-Airdrops 0xd26114cd6ee289accf82350c8d8487fedb8a0c07 OmiseGO Airdrop OmiseGO (OMG) is a public Ethereum-based financial technology for use in mainstream digital wallets OMG Etherscan.io omise.png TRUE FALSE TRUE
60-Airdrops 0xd4de05944572d142fbf70f3f010891a35ac15188 BULLEON Airdrop BULL TrueBlocks.io TRUE FALSE TRUE
60-Airdrops 0xe7df7f4e4fb3394bbeb45e6338fb5965e057a2a2 XLAB Airdrop XLAB TrueBlocks.io TRUE FALSE TRUE
60-Airdrops 0xe99f75a7dbc7263c1aa243b5da5529c97a3a2346 FUS Airdrop FUS TrueBlocks.io TRUE FALSE TRUE
60-Airdrops 0xf3e014fe81267870624132ef3a646b8e83853a96 VIN Airdrop VIN Etherscan.io vinchain_28.png TRUE FALSE TRUE
60-Airdrops 0xfaa183ac925268122498945ce287817b126f453b SP Airdrop SP TrueBlocks.io TRUE FALSE TRUE
60-Airdrops 0xfab3da023ea45d663991093b6b574ec766ff2eef YOO Airdrop YOO TrueBlocks.io TRUE FALSE TRUE
82-Known 0x0029218e1dab069656bfb8a75947825e7989b987 Christian Reitwie§ner DAO_Curator FALSE
82-Known 0x0037a6b811ffeb6e072da21179d11b1406371c63 Gavin Wood DAO_Curator FALSE
82-Known 0x0c2808b951ed9e872d7b32790fcc5994ae41ffdc DAO_WHALE_18 WhaleWatch.io FALSE
82-Known 0x127ac03acfad15f7a49dd037e52d5507260e1425 Vlad Zamfir https://medium.com/curator-multisig-phf-official-channel/extrabalance-withdraw-contract-to-be-funded-on-september-15th-a800b4d746f0#.a6ojjp67b FALSE
82-Known 0x1db3439a222c519ab44bb1144fc28167b4fa6ee6 Vatalik https://www.reddit.com/r/ethereum/comments/5ahsyn/a_word_of_warning_for_vitalik/ FALSE
82-Known 0x5fc8a61e097c118ce43d200b3c4dcf726cf783a9 Nick Johnson https://medium.com/curator-multisig-phf-official-channel/extrabalance-withdraw-contract-to-be-funded-on-september-15th-a800b4d746f0#.a6ojjp67b) FALSE
82-Known 0x6377216fd31061edb18b91d33c3d252abf91c2d4 Beltran Berrocal https://medium.com/curator-multisig-phf-official-channel/extrabalance-withdraw-contract-to-be-funded-on-september-15th-a800b4d746f0#.a6ojjp67b FALSE
82-Known 0x820c6da74978799d574f61b01f8b5eebc051f95e Shermin Voshmgir https://medium.com/curator-multisig-phf-official-channel/extrabalance-withdraw-contract-to-be-funded-on-september-15th-a800b4d746f0#.a6ojjp67b FALSE
82-Known 0x839395e20bbb182fa440d08f850e6c7a8f6f0780 Griff Green https://medium.com/curator-multisig-phf-official-channel/extrabalance-withdraw-contract-to-be-funded-on-september-15th-a800b4d746f0#.a6ojjp67b FALSE
82-Known 0x8e8a24cba9f2702243ad65bada9b0e8cbc62fd96 Alexey Akunhov https://medium.com/curator-multisig-phf-official-channel/extrabalance-withdraw-contract-to-be-funded-on-september-15th-a800b4d746f0#.a6ojjp67b FALSE
82-Known 0xae90d602778ed98478888fa2756339dd013e34c1 Martin Becze DAO_Curator FALSE
82-Known 0xb274363d5971b60b6aca27d6f030355e9aa2cf23 Viktor Tron DAO_Curator FALSE
82-Known 0xd1220a0cf47c7b9be7a2e6ba89f429762e7b9adb Alex Van de Sande DAO_Curator FALSE
82-Known 0xd292f43d687702bc5f793e56765e1a3b5e541ee3 Christoph Jentzsch https://medium.com/curator-multisig-phf-official-channel/extrabalance-withdraw-contract-to-be-funded-on-september-15th-a800b4d746f0#.a6ojjp67b FALSE