-
Notifications
You must be signed in to change notification settings - Fork 1
/
eidoo.io
3819 lines (3816 loc) · 116 KB
/
eidoo.io
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
<table id="tokensTable">
<tbody><tr id="topRow">
<th id="col" class="rank"><h3>Rank</h3></th>
<th id="col" class="coin">
<h3>Token</h3>
<div id="embed-search">
<input type="text" class="search_token" placeholder="Search for tokens...">
<button class="do_search"><img src="https://eidoo.io/wp-content/themes/eidoo/images/search.png" "=""></button>
</div>
</th>
<th id="col" class="price"><h3>Price</h3></th>
<th id="col" class="market"><h3>Market Cap</h3></th>
<th id="col" class="change"><h3>Change (24h)</h3></th>
</tr>
<tr id="coinRow">
<td id="col" class="rank"><h4 class="title_linear">#1</h4></td>
<td id="col" class="coin">
<img src="/wp-content/uploads/tokens/eos.png">
<h4>EOS (EOS) </h4>
<p>Infrastructure for Decentralized Applications </p>
</td>
<td id="col" class="price">
<span>Current price</span>
<h4>$2.81525</h4>
<span>
<br>0.00029074 BTC
</span>
</td>
<td id="col" class="market">
<span>Market cap</span>
<h4>$1,415,120,000</h4>
</td>
<td id="col" class="change">
<span>Daily change</span>
<h4 class="pump">17.35%</h4>
</td>
</tr>
<tr id="coinRow">
<td id="col" class="rank"><h4 class="title_linear">#2</h4></td>
<td id="col" class="coin">
<img src="/wp-content/uploads/tokens/omisego.png">
<h4>OmiseGO (OMG) </h4>
<p>OmiseGO (OMG) is a public Ethereum-based financial technology for use in mainstream digital wallets </p>
</td>
<td id="col" class="price">
<span>Current price</span>
<h4>$9.08735</h4>
<span>
<br>0.00093847 BTC
</span>
</td>
<td id="col" class="market">
<span>Market cap</span>
<h4>$927,296,000</h4>
</td>
<td id="col" class="change">
<span>Daily change</span>
<h4 class="pump">6.78%</h4>
</td>
</tr>
<tr id="coinRow">
<td id="col" class="rank"><h4 class="title_linear">#3</h4></td>
<td id="col" class="coin">
<img src="/wp-content/uploads/tokens/populous.png">
<h4>Populous (PPT) </h4>
<p>The first and only invoice & trade finance platform on the Ethereum blockchain</p>
</td>
<td id="col" class="price">
<span>Current price</span>
<h4>$11.4607</h4>
<span>
<br>0.00118357 BTC
</span>
</td>
<td id="col" class="market">
<span>Market cap</span>
<h4>$472,780,000</h4>
</td>
<td id="col" class="change">
<span>Daily change</span>
<h4 class="pump">3.92%</h4>
</td>
</tr>
<tr id="coinRow">
<td id="col" class="rank"><h4 class="title_linear">#4</h4></td>
<td id="col" class="coin">
<img src="/wp-content/uploads/tokens/augur.png">
<h4>Augur (REP) </h4>
<p>Augur combines the magic of prediction markets with the power of a decentralized network to create a stunningly accurate forecasting tool </p>
</td>
<td id="col" class="price">
<span>Current price</span>
<h4>$27.8676</h4>
<span>
<br>0.00287794 BTC
</span>
</td>
<td id="col" class="market">
<span>Market cap</span>
<h4>$306,544,000</h4>
</td>
<td id="col" class="change">
<span>Daily change</span>
<h4 class="pump">0.94%</h4>
</td>
</tr>
<tr id="coinRow">
<td id="col" class="rank"><h4 class="title_linear">#5</h4></td>
<td id="col" class="coin">
<img src="/wp-content/uploads/tokens/golem-network-tokens.png">
<h4>Golem (GNT) </h4>
<p>Golem is going to create the first decentralized global market for computing power </p>
</td>
<td id="col" class="price">
<span>Current price</span>
<h4>$0.316743</h4>
<span>
<br>0.00003271 BTC
</span>
</td>
<td id="col" class="market">
<span>Market cap</span>
<h4>$263,857,000</h4>
</td>
<td id="col" class="change">
<span>Daily change</span>
<h4 class="pump">21.04%</h4>
</td>
</tr>
<tr id="coinRow">
<td id="col" class="rank"><h4 class="title_linear">#6</h4></td>
<td id="col" class="coin">
<img src="/wp-content/uploads/tokens/tenx.png">
<h4>TenX (PAY) </h4>
<p>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. </p>
</td>
<td id="col" class="price">
<span>Current price</span>
<h4>$2.27643</h4>
<span>
<br>0.00023509 BTC
</span>
</td>
<td id="col" class="market">
<span>Market cap</span>
<h4>$238,254,000</h4>
</td>
<td id="col" class="change">
<span>Daily change</span>
<h4 class="pump">1.92%</h4>
</td>
</tr>
<tr id="coinRow">
<td id="col" class="rank"><h4 class="title_linear">#7</h4></td>
<td id="col" class="coin">
<img src="/wp-content/uploads/tokens/digixdao.png">
<h4>DigixDAO (DGD) </h4>
<p>Digix tokenizes gold on Ethereum. We leverage the Distributed Ledger for its immutability, transparency and auditability by applying it to precious physical assets</p>
</td>
<td id="col" class="price">
<span>Current price</span>
<h4>$112.447</h4>
<span>
<br>0.0116126 BTC
</span>
</td>
<td id="col" class="market">
<span>Market cap</span>
<h4>$224,894,000</h4>
</td>
<td id="col" class="change">
<span>Daily change</span>
<h4 class="pump">28%</h4>
</td>
</tr>
<tr id="coinRow">
<td id="col" class="rank"><h4 class="title_linear">#8</h4></td>
<td id="col" class="coin">
<img src="/wp-content/uploads/tokens/salt.png">
<h4>SALT (SALT) </h4>
<p>The SALT platform is meant to facilitate getting a loan, where the company holds your cryptocoins as collateral while you don't pay back the loan</p>
</td>
<td id="col" class="price">
<span>Current price</span>
<h4>$4.34603</h4>
<span>
<br>0.00044882 BTC
</span>
</td>
<td id="col" class="market">
<span>Market cap</span>
<h4>$214,004,000</h4>
</td>
<td id="col" class="change">
<span>Daily change</span>
<h4 class="pump">7.6%</h4>
</td>
</tr>
<tr id="coinRow">
<td id="col" class="rank"><h4 class="title_linear">#9</h4></td>
<td id="col" class="coin">
<img src="/wp-content/uploads/tokens/veritaseum.png">
<h4>Veritaseum (VERI) </h4>
<p>Veritaseum is a peer-to-peer software suite. It is not a security, and it is not an exchange. What it is is something, new... disruptive... and transformative</p>
</td>
<td id="col" class="price">
<span>Current price</span>
<h4>$99.4134</h4>
<span>
<br>0.0102666 BTC
</span>
</td>
<td id="col" class="market">
<span>Market cap</span>
<h4>$201,416,000</h4>
</td>
<td id="col" class="change">
<span>Daily change</span>
<h4 class="pump">10.98%</h4>
</td>
</tr>
<tr id="coinRow">
<td id="col" class="rank"><h4 class="title_linear">#10</h4></td>
<td id="col" class="coin">
<img src="/wp-content/uploads/tokens/iconomi.png">
<h4>Iconomi (ICN) </h4>
<p>ICONOMI Digital Assets Management platform enables simple access to a variety of digital assets and combined Digital Asset Arrays</p>
</td>
<td id="col" class="price">
<span>Current price</span>
<h4>$1.66509</h4>
<span>
<br>0.00017196 BTC
</span>
</td>
<td id="col" class="market">
<span>Market cap</span>
<h4>$166,157,000</h4>
</td>
<td id="col" class="change">
<span>Daily change</span>
<h4 class="pump">2.46%</h4>
</td>
</tr>
<tr id="coinRow">
<td id="col" class="rank"><h4 class="title_linear">#11</h4></td>
<td id="col" class="coin">
<img src="/wp-content/uploads/tokens/bitquence.png">
<h4>Bitquence (BQX) </h4>
<p>People-powered cryptocurrency services for the blockchain</p>
</td>
<td id="col" class="price">
<span>Current price</span>
<h4>$1.92666</h4>
<span>
<br>0.00023376 BTC
</span>
</td>
<td id="col" class="market">
<span>Market cap</span>
<h4>$143,586,000</h4>
</td>
<td id="col" class="change">
<span>Daily change</span>
<h4 class="pump">35.05%</h4>
</td>
</tr>
<tr id="coinRow">
<td id="col" class="rank"><h4 class="title_linear">#12</h4></td>
<td id="col" class="coin">
<img src="/wp-content/uploads/tokens/status.png">
<h4>Status (SNT) </h4>
<p>Status is an open source messaging platform and mobile browser to interact with decentralized applications that run on the Ethereum Network.</p>
</td>
<td id="col" class="price">
<span>Current price</span>
<h4>$0.0397348</h4>
<span>
<br>0.00000410 BTC
</span>
</td>
<td id="col" class="market">
<span>Market cap</span>
<h4>$137,899,000</h4>
</td>
<td id="col" class="change">
<span>Daily change</span>
<h4 class="pump">12.86%</h4>
</td>
</tr>
<tr id="coinRow">
<td id="col" class="rank"><h4 class="title_linear">#13</h4></td>
<td id="col" class="coin">
<img src="/wp-content/uploads/tokens/tron.png">
<h4>TRON (TRX) </h4>
<p>TRON is committed to building a worldwide free content entertainment system using blockchain and distributed storage technologies</p>
</td>
<td id="col" class="price">
<span>Current price</span>
<h4>$0.00206542</h4>
<span>
<br>0.00000021 BTC
</span>
</td>
<td id="col" class="market">
<span>Market cap</span>
<h4>$135,694,000</h4>
</td>
<td id="col" class="change">
<span>Daily change</span>
<h4 class="pump">0.56%</h4>
</td>
</tr>
<tr id="coinRow">
<td id="col" class="rank"><h4 class="title_linear">#14</h4></td>
<td id="col" class="coin">
<img src="/wp-content/uploads/tokens/bytom.png">
<h4>Bytom (BTM) </h4>
<p>Bytom is an interactive protocol of multiple byte assets. </p>
</td>
<td id="col" class="price">
<span>Current price</span>
<h4>$0.137446</h4>
<span>
<br>0.00001419 BTC
</span>
</td>
<td id="col" class="market">
<span>Market cap</span>
<h4>$135,659,000</h4>
</td>
<td id="col" class="change">
<span>Daily change</span>
<h4 class="pump">31.18%</h4>
</td>
</tr>
<tr id="coinRow">
<td id="col" class="rank"><h4 class="title_linear">#15</h4></td>
<td id="col" class="coin">
<img src="/wp-content/uploads/tokens/aeternity.png">
<h4>Aeternity (AE) </h4>
<p>Aternity is a new blockchain - designed for fast and secure smart contracts interfacing with real-world data via a decentralized
oracle</p>
</td>
<td id="col" class="price">
<span>Current price</span>
<h4>$0.580955</h4>
<span>
<br>0.00006000 BTC
</span>
</td>
<td id="col" class="market">
<span>Market cap</span>
<h4>$135,374,000</h4>
</td>
<td id="col" class="change">
<span>Daily change</span>
<h4 class="pump">0.19%</h4>
</td>
</tr>
<tr id="coinRow">
<td id="col" class="rank"><h4 class="title_linear">#16</h4></td>
<td id="col" class="coin">
<img src="/wp-content/uploads/tokens/gnosis-gno.png">
<h4>Gnosis (GNO) </h4>
<p>Crowd Sourced Wisdom - The next generation blockchain network. Speculate on anything with an easy-to-use prediction market</p>
</td>
<td id="col" class="price">
<span>Current price</span>
<h4>$118.384</h4>
<span>
<br>0.0122258 BTC
</span>
</td>
<td id="col" class="market">
<span>Market cap</span>
<h4>$130,766,000</h4>
</td>
<td id="col" class="change">
<span>Daily change</span>
<h4 class="pump">7.12%</h4>
</td>
</tr>
<tr id="coinRow">
<td id="col" class="rank"><h4 class="title_linear">#17</h4></td>
<td id="col" class="coin">
<img src="/wp-content/uploads/tokens/ethos.png">
<h4>Ethos (ETHOS) </h4>
<p></p>
</td>
<td id="col" class="price">
<span>Current price</span>
<h4>$1.6594</h4>
<span>
<br>0.00017137 BTC
</span>
</td>
<td id="col" class="market">
<span>Market cap</span>
<h4>$123,669,000</h4>
</td>
<td id="col" class="change">
<span>Daily change</span>
<h4 class="dump">-4.47%</h4>
</td>
</tr>
<tr id="coinRow">
<td id="col" class="rank"><h4 class="title_linear">#18</h4></td>
<td id="col" class="coin">
<img src="/wp-content/uploads/tokens/walton.png">
<h4>Walton (WTC) </h4>
<p>Wisdom alters label, trade, organization and network</p>
</td>
<td id="col" class="price">
<span>Current price</span>
<h4>$4.91778</h4>
<span>
<br>0.00050787 BTC
</span>
</td>
<td id="col" class="market">
<span>Market cap</span>
<h4>$122,444,000</h4>
</td>
<td id="col" class="change">
<span>Daily change</span>
<h4 class="dump">-4.97%</h4>
</td>
</tr>
<tr id="coinRow">
<td id="col" class="rank"><h4 class="title_linear">#19</h4></td>
<td id="col" class="coin">
<img src="/wp-content/uploads/tokens/civic.png">
<h4>Civic (CVC) </h4>
<p>Giving businesses and individuals the tools to control and protect identities</p>
</td>
<td id="col" class="price">
<span>Current price</span>
<h4>$0.351678</h4>
<span>
<br>0.00003632 BTC
</span>
</td>
<td id="col" class="market">
<span>Market cap</span>
<h4>$120,520,000</h4>
</td>
<td id="col" class="change">
<span>Daily change</span>
<h4 class="pump">3.01%</h4>
</td>
</tr>
<tr id="coinRow">
<td id="col" class="rank"><h4 class="title_linear">#20</h4></td>
<td id="col" class="coin">
<img src="/wp-content/uploads/tokens/metal.png">
<h4>Metal (MTL) </h4>
<p>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</p>
</td>
<td id="col" class="price">
<span>Current price</span>
<h4>$5.75896</h4>
<span>
<br>0.00059474 BTC
</span>
</td>
<td id="col" class="market">
<span>Market cap</span>
<h4>$111,154,000</h4>
</td>
<td id="col" class="change">
<span>Daily change</span>
<h4 class="pump">13.97%</h4>
</td>
</tr>
<tr id="coinRow">
<td id="col" class="rank"><h4 class="title_linear">#21</h4></td>
<td id="col" class="coin">
<img src="/wp-content/uploads/tokens/bancor.png">
<h4>Bancor (BNT) </h4>
<p>Bancor Protocol is a standard for a new generation of cryptocurrencies called Smart Tokens</p>
</td>
<td id="col" class="price">
<span>Current price</span>
<h4>$2.71309</h4>
<span>
<br>0.00028019 BTC
</span>
</td>
<td id="col" class="market">
<span>Market cap</span>
<h4>$110,620,000</h4>
</td>
<td id="col" class="change">
<span>Daily change</span>
<h4 class="pump">4.33%</h4>
</td>
</tr>
<tr id="coinRow">
<td id="col" class="rank"><h4 class="title_linear">#22</h4></td>
<td id="col" class="coin">
<img src="/wp-content/uploads/tokens/0x.png">
<h4>0x (ZRX) </h4>
<p>The Protocol for Trading Tokens</p>
</td>
<td id="col" class="price">
<span>Current price</span>
<h4>$0.21888</h4>
<span>
<br>0.00002260 BTC
</span>
</td>
<td id="col" class="market">
<span>Market cap</span>
<h4>$109,440,000</h4>
</td>
<td id="col" class="change">
<span>Daily change</span>
<h4 class="dump">-2.49%</h4>
</td>
</tr>
<tr id="coinRow">
<td id="col" class="rank"><h4 class="title_linear">#23</h4></td>
<td id="col" class="coin">
<img src="/wp-content/uploads/tokens/funfair.png">
<h4>FunFair (FUN) </h4>
<p>FunFair is a decentralised gaming platform powered by Ethereum smart contracts</p>
</td>
<td id="col" class="price">
<span>Current price</span>
<h4>$0.0233146</h4>
<span>
<br>0.00000241 BTC
</span>
</td>
<td id="col" class="market">
<span>Market cap</span>
<h4>$99,084,100</h4>
</td>
<td id="col" class="change">
<span>Daily change</span>
<h4 class="pump">6.43%</h4>
</td>
</tr>
<tr id="coinRow">
<td id="col" class="rank"><h4 class="title_linear">#24</h4></td>
<td id="col" class="coin">
<img src="/wp-content/uploads/tokens/quantstamp.png">
<h4>Quantstamp (QSP) </h4>
<p></p>
</td>
<td id="col" class="price">
<span>Current price</span>
<h4>$0.154992</h4>
<span>
<br>0.00001603 BTC
</span>
</td>
<td id="col" class="market">
<span>Market cap</span>
<h4>$95,678,800</h4>
</td>
<td id="col" class="change">
<span>Daily change</span>
<h4 class="dump">-6.17%</h4>
</td>
</tr>
<tr id="coinRow">
<td id="col" class="rank"><h4 class="title_linear">#25</h4></td>
<td id="col" class="coin">
<img src="/wp-content/uploads/tokens/singulardtv.png">
<h4>SingularDTV (SNGLS) </h4>
<p>A Blockchain Entertainment Studio, Smart Contract Rights Management Platform and Video On-Demand Portal</p>
</td>
<td id="col" class="price">
<span>Current price</span>
<h4>$0.15682</h4>
<span>
<br>0.00001620 BTC
</span>
</td>
<td id="col" class="market">
<span>Market cap</span>
<h4>$94,092,000</h4>
</td>
<td id="col" class="change">
<span>Daily change</span>
<h4 class="pump">1.13%</h4>
</td>
</tr>
<tr id="coinRow">
<td id="col" class="rank"><h4 class="title_linear">#26</h4></td>
<td id="col" class="coin">
<img src="/wp-content/uploads/tokens/storj.png">
<h4>Storj (STORJ) </h4>
<p>Blockchain-based, end-to-end encrypted, distributed object storage, where only you have access to your data</p>
</td>
<td id="col" class="price">
<span>Current price</span>
<h4>$0.784063</h4>
<span>
<br>0.00008097 BTC
</span>
</td>
<td id="col" class="market">
<span>Market cap</span>
<h4>$82,501,200</h4>
</td>
<td id="col" class="change">
<span>Daily change</span>
<h4 class="pump">6.71%</h4>
</td>
</tr>
<tr id="coinRow">
<td id="col" class="rank"><h4 class="title_linear">#27</h4></td>
<td id="col" class="coin">
<img src="/wp-content/uploads/tokens/aragon.png">
<h4>Aragon (ANT) </h4>
<p>Create and manage unstoppable organizations. Aragon lets you manage entire organizations using the blockchain. This makes Aragon organizations more efficient than their traditional counterparties.</p>
</td>
<td id="col" class="price">
<span>Current price</span>
<h4>$2.27732</h4>
<span>
<br>0.00023518 BTC
</span>
</td>
<td id="col" class="market">
<span>Market cap</span>
<h4>$74,044,500</h4>
</td>
<td id="col" class="change">
<span>Daily change</span>
<h4 class="pump">11.98%</h4>
</td>
</tr>
<tr id="coinRow">
<td id="col" class="rank"><h4 class="title_linear">#28</h4></td>
<td id="col" class="coin">
<img src="/wp-content/uploads/tokens/edgeless.png">
<h4>Edgeless (EDG) </h4>
<p>The Ethereum smart contract-based that offers a 0% house edge and solves the transparency question once and for all.</p>
</td>
<td id="col" class="price">
<span>Current price</span>
<h4>$0.902123</h4>
<span>
<br>0.00009316 BTC
</span>
</td>
<td id="col" class="market">
<span>Market cap</span>
<h4>$74,015,800</h4>
</td>
<td id="col" class="change">
<span>Daily change</span>
<h4 class="pump">9.4%</h4>
</td>
</tr>
<tr id="coinRow">
<td id="col" class="rank"><h4 class="title_linear">#29</h4></td>
<td id="col" class="coin">
<img src="/wp-content/uploads/tokens/substratum.png">
<h4>Substratum (SUB) </h4>
<p>An open-source network that allows anyone to allocate their spare computing resources to make the internet a free and fair place for the entire world</p>
</td>
<td id="col" class="price">
<span>Current price</span>
<h4>$0.326705</h4>
<span>
<br>0.00003374 BTC
</span>
</td>
<td id="col" class="market">
<span>Market cap</span>
<h4>$73,865,200</h4>
</td>
<td id="col" class="change">
<span>Daily change</span>
<h4 class="dump">-11.99%</h4>
</td>
</tr>
<tr id="coinRow">
<td id="col" class="rank"><h4 class="title_linear">#30</h4></td>
<td id="col" class="coin">
<img src="/wp-content/uploads/tokens/adx-net.png">
<h4>AdEx (ADX) </h4>
<p>AdEx is a blockchain-based ad exchange aiming at disrupting the existing online advertising landscape and address its significant problems</p>
</td>
<td id="col" class="price">
<span>Current price</span>
<h4>$1.2652</h4>
<span>
<br>0.00013066 BTC
</span>
</td>
<td id="col" class="market">
<span>Market cap</span>
<h4>$72,761,100</h4>
</td>
<td id="col" class="change">
<span>Daily change</span>
<h4 class="pump">7.96%</h4>
</td>
</tr>
<tr id="coinRow">
<td id="col" class="rank"><h4 class="title_linear">#31</h4></td>
<td id="col" class="coin">
<img src="/wp-content/uploads/tokens/attention-token-of-media.png">
<h4>ATMChain (ATM) </h4>
<p>ATMChain is an intelligent, credible and open digital media ecosystem. It is an innovative application of blockchain technology in digital media</p>
</td>
<td id="col" class="price">
<span>Current price</span>
<h4>$0.0218331</h4>
<span>
<br>0.00000225 BTC
</span>
</td>
<td id="col" class="market">
<span>Market cap</span>
<h4>$72,382,200</h4>
</td>
<td id="col" class="change">
<span>Daily change</span>
<h4 class="pump">7.91%</h4>
</td>
</tr>
<tr id="coinRow">
<td id="col" class="rank"><h4 class="title_linear">#32</h4></td>
<td id="col" class="coin">
<img src="/wp-content/uploads/tokens/monaco.png">
<h4>Monaco (MCO) </h4>
<p>Monaco is a cryptocurrency card. Spend and send money globally at interbank exchange rates.</p>
</td>
<td id="col" class="price">
<span>Current price</span>
<h4>$6.80902</h4>
<span>
<br>0.00070318 BTC
</span>
</td>
<td id="col" class="market">
<span>Market cap</span>
<h4>$67,034,000</h4>
</td>
<td id="col" class="change">
<span>Daily change</span>
<h4 class="pump">8.93%</h4>
</td>
</tr>
<tr id="coinRow">
<td id="col" class="rank"><h4 class="title_linear">#33</h4></td>
<td id="col" class="coin">
<img src="/wp-content/uploads/tokens/mobilego.png">
<h4>MobileGo (MGO) </h4>
<p>The First Crypto-Centric Mobile Gaming Platform and Store For In-Game Purchases</p>
</td>
<td id="col" class="price">
<span>Current price</span>
<h4>$0.682878</h4>
<span>
<br>0.00007052 BTC
</span>
</td>
<td id="col" class="market">
<span>Market cap</span>
<h4>$66,941,800</h4>
</td>
<td id="col" class="change">
<span>Daily change</span>
<h4 class="dump">-10.76%</h4>
</td>
</tr>
<tr id="coinRow">
<td id="col" class="rank"><h4 class="title_linear">#34</h4></td>
<td id="col" class="coin">
<img src="/wp-content/uploads/tokens/paypie.png">
<h4>PayPie (PPP) </h4>
<p>PayPie platform brings ultimate trust and transparency to the financial markets by introducing the world’s first risk score algorithm based on decentralized accounting</p>
</td>
<td id="col" class="price">
<span>Current price</span>
<h4>$0.791897</h4>
<span>
<br>0.00008216 BTC
</span>
</td>
<td id="col" class="market">
<span>Market cap</span>
<h4>$65,331,500</h4>
</td>
<td id="col" class="change">
<span>Daily change</span>
<h4 class="pump">5.12%</h4>
</td>
</tr>
<tr id="coinRow">
<td id="col" class="rank"><h4 class="title_linear">#35</h4></td>
<td id="col" class="coin">
<img src="/wp-content/uploads/tokens/cofound-it.png">
<h4>Cofound.it (CFI) </h4>
<p>Cofound.it is a platform that connects you to teams that have trained to become serious blockchain businesses</p>
</td>
<td id="col" class="price">
<span>Current price</span>
<h4>$0.197478</h4>
<span>
<br>0.00002040 BTC
</span>
</td>
<td id="col" class="market">
<span>Market cap</span>
<h4>$64,180,400</h4>
</td>
<td id="col" class="change">
<span>Daily change</span>
<h4 class="pump">92.5%</h4>
</td>
</tr>
<tr id="coinRow">
<td id="col" class="rank"><h4 class="title_linear">#36</h4></td>
<td id="col" class="coin">
<img src="/wp-content/uploads/tokens/chainlink.png">
<h4>ChainLink (LINK) </h4>
<p>Connect Smart Contracts to your Apps & Data. Easily connect smart contracts to your web application, any API, and widely accepted USD payments</p>
</td>
<td id="col" class="price">
<span>Current price</span>
<h4>$0.181254</h4>
<span>
<br>0.00001872 BTC
</span>
</td>
<td id="col" class="market">
<span>Market cap</span>
<h4>$63,438,900</h4>
</td>
<td id="col" class="change">
<span>Daily change</span>
<h4 class="pump">1.3%</h4>
</td>
</tr>
<tr id="coinRow">
<td id="col" class="rank"><h4 class="title_linear">#37</h4></td>
<td id="col" class="coin">
<img src="/wp-content/uploads/tokens/loopring.png">
<h4>Loopring (LRC) </h4>
<p>Loopring is not only a protocol but also a decentralized automated execution system that trades across the crypto-token </p>
</td>
<td id="col" class="price">
<span>Current price</span>
<h4>$0.212514</h4>
<span>
<br>0.00002406 BTC
</span>
</td>
<td id="col" class="market">
<span>Market cap</span>
<h4>$60,815,300</h4>
</td>
<td id="col" class="change">
<span>Daily change</span>
<h4 class="pump">9.91%</h4>
</td>
</tr>
<tr id="coinRow">
<td id="col" class="rank"><h4 class="title_linear">#38</h4></td>
<td id="col" class="coin">
<img src="/wp-content/uploads/tokens/kin.png">
<h4>Kin (KIN) </h4>
<p>A decentralized ecosystem of digital services for daily life</p>
</td>
<td id="col" class="price">
<span>Current price</span>
<h4>$0.0000713365</h4>
<span>
<br>0.000000008 BTC
</span>
</td>
<td id="col" class="market">
<span>Market cap</span>
<h4>$53,937,400</h4>
</td>
<td id="col" class="change">
<span>Daily change</span>
<h4 class="pump">1.27%</h4>
</td>
</tr>
<tr id="coinRow">
<td id="col" class="rank"><h4 class="title_linear">#39</h4></td>
<td id="col" class="coin">
<img src="/wp-content/uploads/tokens/tierion.png">
<h4>Tierion (TNT) </h4>
<p>Tierion is using the blockchain to transform how the world secures and shares data</p>
</td>
<td id="col" class="price">
<span>Current price</span>
<h4>$0.120406</h4>
<span>
<br>0.00001470 BTC
</span>
</td>
<td id="col" class="market">
<span>Market cap</span>
<h4>$50,873,200</h4>
</td>
<td id="col" class="change">
<span>Daily change</span>
<h4 class="pump">140.73%</h4>
</td>
</tr>
<tr id="coinRow">
<td id="col" class="rank"><h4 class="title_linear">#40</h4></td>
<td id="col" class="coin">
<img src="/wp-content/uploads/tokens/zeusshield.png">
<h4>Zeusshield (ZSC) </h4>
<p>We use blockchain to apply the trust management into the insurance servcies, and thus building up a a new insurance ecosystem with the provision of precision marketing and intelligent insurance claims</p>
</td>
<td id="col" class="price">
<span>Current price</span>
<h4>$0.0435269</h4>
<span>
<br>0.00000535 BTC
</span>
</td>
<td id="col" class="market">
<span>Market cap</span>
<h4>$50,150,400</h4>
</td>
<td id="col" class="change">
<span>Daily change</span>
<h4 class="pump">2.59%</h4>
</td>
</tr>
<tr id="coinRow">
<td id="col" class="rank"><h4 class="title_linear">#41</h4></td>
<td id="col" class="coin">
<img src="/wp-content/uploads/tokens/melon.png">
<h4>Melon (MLN) </h4>
<p>The Melon protocol is a blockchain protocol for digital asset management built on the Ethereum platform</p>
</td>
<td id="col" class="price">
<span>Current price</span>
<h4>$83.4338</h4>
<span>
<br>0.0127458 BTC
</span>
</td>
<td id="col" class="market">
<span>Market cap</span>
<h4>$50,010,200</h4>
</td>
<td id="col" class="change">
<span>Daily change</span>
<h4 class="pump">23%</h4>
</td>
</tr>
<tr id="coinRow">
<td id="col" class="rank"><h4 class="title_linear">#42</h4></td>
<td id="col" class="coin">
<img src="/wp-content/uploads/tokens/mcap.png">
<h4>MCAP (MCAP) </h4>
<p>MCAP token an initiative of MCAP Labs and uses the ERC 20 protocol for peer-to-peer transactions</p>
</td>
<td id="col" class="price">
<span>Current price</span>
<h4>$1.28255</h4>
<span>
<br>0.00017934 BTC
</span>
</td>
<td id="col" class="market">
<span>Market cap</span>
<h4>$49,116,100</h4>
</td>
<td id="col" class="change">
<span>Daily change</span>
<h4 class="dump">-24.8%</h4>
</td>
</tr>
<tr id="coinRow">
<td id="col" class="rank"><h4 class="title_linear">#43</h4></td>
<td id="col" class="coin">
<img src="/wp-content/uploads/tokens/dentacoin.png">
<h4>Dentacoin (DCN) </h4>
<p>Dentacoin is the first Blockchain concept designed for the Global Dental Industry</p>
</td>
<td id="col" class="price">
<span>Current price</span>
<h4>$0.00013987</h4>
<span>
<br>0.00000002 BTC
</span>
</td>
<td id="col" class="market">
<span>Market cap</span>
<h4>$45,248,900</h4>
</td>