-
Notifications
You must be signed in to change notification settings - Fork 14
/
index.html
3976 lines (3969 loc) · 377 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-122172363-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-122172363-1');
</script>
<meta http-equiv="Content-type" content="text/html;charset=UTF-8">
<title>Curated Blockchain and Crytocurrency Resources | awesome Blockchain</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="apple-touch-icon" sizes="57x57" href="./img/favicon/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="./img/favicon/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="./img/favicon/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="./img/favicon/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="./img/favicon/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="./img/favicon/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="./img/favicon/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="./img/favicon/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="./img/favicon/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="./img/favicon/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="./img/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="./img/favicon/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="./img/favicon/favicon-16x16.png">
<link rel="manifest" href="./img/favicon/manifest.json">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="./img/favicon/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<div class="markdown-body">
<div class="logo">
<div>
<img src="./img/awesomeblockchain.png" alt="Awesome Bockchain">
</div>
<br>
<p style="font-size: 1.4em">
Curating the best <strong>Blockchain</strong> and Crytocurrency Resources
</p>
<p>
<sup>Do you want to <a href="mailto:0xtokens@gmail.com">support</a> this project?</sup>
<br>
<a href="mailto:0xtokens@gmail.com">
<img src="./img/sponsor.svg" width="260" alt="wtgtybhertgeghgtwtg">
</a>
</p>
<br>
<br>
<p align="center">
<a href="#donate">Donate</a>
<a href="#contribute">Contribution guide</a>
<a href="https://twitter.com/" target="_blank">Twitter</a>
<a href="http://t.me/blockchaintokens" target="_blank">Telegram</a>
<a href="https://github.com/0xtokens/awesome-blockchain">GitHub</a>
</p>
<br>
<a href="https://awesome.re">
<img src="https://awesome.re/badge.svg" alt="Awesome">
</a>
<br>
<sup>Inspired by awesome and following the <a href="https://github.com/sindresorhus/awesome/blob/master/awesome.md">manifesto </a>guidelines.</sup>
<br>
<p>
<sub>This work aims to raise awareness of the possibilities offered by Blockchain technology; and create community around it.</sup>
</p>
<br>
</div>
<hr>
<p>Some links in this list are <em>affiliate links,</em> but you can skip them if you want. If the ▾ symbol appears in the description in blue (like this <a href="#">▾</a>), you can access the original link from it; If the symbol is black, the main link is clean.</p>
<div align="center"><sub>[ Disclaimer: I am not a financial advisor and do not offer financial advice. Please do your own research before making any investment decisions. ]</sub></div>
<br>
<h2 id="contents">Contents</h2>
<ul>
<li><a href="#for-dummies">For Dummies</a></li>
<li><a href="#where-to-start">Where to Start?</a></li>
<li><a href="#cryptocurrencies">Cryptocurrencies</a></li>
<li><a href="#blockchain-application-platforms">Blockchain Application Platforms</a></li>
<li><a href="#enterprise-and-private-blockchains">Enterprise and Private Blockchains</a></li>
<li><a href="#blockchain-projects">Blockchain Projects</a></li>
<li><a href="#exchange-and-trading">Exchange and Trading</a>
<ul>
<li><a href="#fiatcrypto-exchanges">FIAT↔Crypto Exchanges</a></li>
<li><a href="#p2p-marketplaces">P2P Marketplaces</a></li>
<li><a href="#trading-platforms">Trading Platforms</a></li>
<li><a href="#decentralized-exchanges-dex">Decentralized Exchanges (DEX)</a></li>
<li><a href="#comparative-overview-between-advanced-trading-features">Comparative overview between Advanced Trading Features</a></li>
<li><a href="#cryptocurrency-investment-brokers">Cryptocurrency Investment Brokers</a></li>
<li><a href="#cryptocrypto-conversion-platforms">Crypto↔Crypto conversion platforms</a></li>
<li><a href="#gold-investments">Gold Investments</a></li>
<li><a href="#atms-automated-teller-machines">ATMs Automated Teller Machines</a></li>
<li><a href="#market-research">Market Research</a></li>
</ul>
</li>
<li><a href="#wallets">Wallets</a></li>
<li><a href="#portfolio">Portfolio</a></li>
<li><a href="#whats-cooking">What´s cooking?</a></li>
<li><a href="#contribute">Contribute</a></li>
<li><a href="#donate">Donate</a></li>
<li><a href="#license">License</a></li>
</ul>
<br>
<h2 id="for-dummies">For Dummies</h2>
<ul>
<li><a href="https://bitcoin.org/en/you-need-to-know">Some things you need to know</a> - If you're getting started with Bitcoin, there are a few things you should know.</li>
<li><a href="https://bitcoin.org/en/getting-started">Getting started with Bitcoin</a> - How to use Bitcoin.</li>
<li><a href="https://en.bitcoin.it/wiki/Block_chain">What is the Blockchain?</a> - Basic information about blockchain concept.</li>
<li><a href="https://www.coindesk.com/information/">A Beginner's Guide to Blockchain Technology</a> - by coindesk.com</li>
<li><a href="https://hackernoon.com/a-beginners-guide-to-blockchain-d04266844e7">A Beginner’s Guide to Blockchain</a> - by
Febin John James</li>
<li><a href="https://hackernoon.com/a-beginners-guide-to-getting-started-with-cryptocurrencies-76027bebb1b1">A beginner’s guide to getting started with cryptocurrencies</a> - Hacker Noon</li>
<li><a href="https://hackernoon.com/wtf-is-the-blockchain-1da89ba19348">WTF is The Blockchain?</a> The ultimate 3500-word guide in plain English to understand Blockchain - by Mohit Mamoria</li>
<li><a href="https://medium.com/@linda.xie/beginners-guide-series-on-cryptoassets-d897535d887">Beginner’s guide series on cryptoassets:</a> Target audience is people who know about Bitcoin and are looking to learn more about other cryptoassets. - by Linda Xie</li>
</ul>
<p>Learn about Bitcoin in a visual way:</p>
<ul>
<li><a href="https://99bitcoins.com/price-chart-history/">Bitcoin Historical Price & Events</a> - Accurate Bitcoin timeline.</li>
<li><a href="https://nativemerchantservices.com/content/uploads/2015/01/biggest-moments-in-bitcoin1.png">The Biggest Moments in Bitcoin History (2008-2014)</a> - Infographic <sub>(Information mostly correct and relevant, with few errors pointed out <a href="https://www.reddit.com/r/Bitcoin/comments/2vnv1d/the_biggest_moments_in_bitcoin_history_infographic/">here.</a> It is also included because it provides a quick overview for newbies)</sub></li>
<li><a href="https://spectrum.ieee.org/image/MjA3NDM1OA.jpeg">How a Bitcoin Transaction Works</a> - <sub>(Inaccurate/out of date but good to explaining simple concepts. Some inaccuracies indicated <a href="https://www.reddit.com/r/Bitcoin/comments/1t4i5n/how_a_bitcoin_transaction_works_a_good/">here</a>)</sub></li>
<li><a href="https://bitcoinplay.net/58-insane-facts-about-bitcoin/">67 Insane Facts About Bitcoin</a> -</li>
</ul>
<p>Some video:</p>
<ul>
<li><a href="https://www.youtube.com/watch?v=bBC-nXj3Ng4">Have you ever wonder how bitcoin (and other cryptocurrencies) actually work?</a> - by 3blue1brown channel</li>
<li><a href="https://www.youtube.com/watch?v=66SaEDzlmP4">Ethereum in 25 Minutes</a> - by Vitalik Buterin</li>
</ul>
<p>Useful resources:</p>
<ul>
<li><a href="https://bitcoin.org/">bitcoin.org</a> - Bitcoin.org is dedicated to help Bitcoin to develop in a sustainable way.</li>
<li><a href="https://en.bitcoin.it/wiki/Help:FAQ">bitcoinwiki</a> - Here you will find answers to the most commonly asked questions.</li>
<li><a href="https://bitcointalk.org">bitcointalk.org</a> - Bitcoin forum</li>
<li><a href="https://www.reddit.com/r/Bitcoin/">r/bitcoin</a> - Bitcoin subreddit.</li>
<li><a href="https://www.reddit.com/r/ethereum/">r/ethereum</a> - Ethereum subreddit.</li>
<li><a href="https://www.reddit.com/r/BlockChain/">r/BlockChain</a> - BlockChain subreddit.</li>
<li><a href="https://www.reddit.com/r/CryptoCurrency/">r/CryptoCurrency</a> - CryptoCurrency subreddit.</li>
<li><a href="https://bitcoin.stackexchange.com/">Bitcoin Stack Exchange</a> - Question and answer site for Bitcoin crypto-currency enthusiasts</li>
</ul>
<p>Main whitepapers:</p>
<ul>
<li><a href="https://bitcoin.org/bitcoin.pdf">Bitcoin: A Peer-to-Peer Electronic Cash System</a> - by Satoshi Nakamoto</li>
<li><a href="https://github.com/ethereum/wiki/wiki/White-Paper">Ethereum whitepaper:</a> A Next-Generation Smart Contract and Decentralized Application Platform - by Vitalik Buterin</li>
</ul>
<p><a href="#contents"><div align="right"><img src="./img/up.png" alt="Up"></div></a></p>
<h2 id="where-to-start">Where to Start?</h2>
<h3 id="where-can-i-safely-buy-bitcoin">Where can I safely buy bitcoin?</h3>
<p> <a href="https://www.coinbase.com/join/5a5f62e4501844015bb4bfb5"><img src="http://www.google.com/s2/favicons?domain=https://www.coinbase.com/" alt=""> <strong>Coinbase</strong></a> <a href="https://www.coinbase.com/">▾</a> Buy digital currency (BTC, BCH, ETH and LTC) with Bank transfer and Credit/Debit Cards. <a href="https://www.coinbase.com/join/5a5f62e4501844015bb4bfb5"><img src="./img/promo.png" alt="Promo" title="Register: Get 10$ free credit"></a></p>
<p> <a href="https://changelly.com/?ref_id=f6ec7f14fb0d"><img src="http://www.google.com/s2/favicons?domain=https://www.changelly.com" alt=""> <strong>Changelly</strong></a> <a href="https://www.changelly.com/">▾</a> Easy way to Buy Bitcoin with credit card.</p>
<p> <a href="https://paxful.com/es/roots/buy-bitcoin/index?affiliate=zGMky6AyQWb"><img src="http://www.google.com/s2/favicons?domain=https://www.paxful.com" alt=""> <strong>PAXFUL</strong></a> <a href="https://www.paxful.com/">▾</a> Buy Bitcoins instantly. More than 300 ways to pay for bitcoins, including: Gift cards, Cash Deposits, Online Transfers, Debit/Credit Cards.</p>
<p> <a href="https://cex.io/r/0/up120089788/0/"><img src="http://www.google.com/s2/favicons?domain=https://www.cex.io" alt=""> <strong>CEX</strong></a> <a href="https://www.cex.io/">▾</a> Buy Bitcoin with VISA or Mastercard. Providing services in 99% countries around the globe.<br>
<br></p>
<h3 id="buy-bitcoins-locally">Buy Bitcoins locally</h3>
<p> <a href="https://localbitcoins.com/?ch=rpkf"><img src="http://www.google.com/s2/favicons?domain=https://www.localbitcoins.com/" alt=""> <strong>LocalBitcoins</strong></a> <a href="https://www.localbitcoins.com/">▾</a> Buy and sell bitcoins near you. Instant. Secure. Private. Multiple payment methods.</p>
<p> <a href="https://remitano.com/es?ref=xtokens"><img src="http://www.google.com/s2/favicons?domain=https://www.remitano.com/" alt=""> <strong>Remitano</strong></a> <a href="https://www.remitano.com/">▾</a> Remitano is a peer to peer Bitcoin exchange. Buy and Sell Bitcoin fast and securely.<br>
<br></p>
<h3 id="do-you-prefer-to-buy-bitcoins-in-traditional-brokers">Do you prefer to buy Bitcoins in traditional brokers?</h3>
<p> <a href="https://etoro.tw/2I6mD0M"><img src="http://www.google.com/s2/favicons?domain=https://www.etoro.com/" alt=""> <strong>eToro</strong></a> <a href="https://www.etoro.com/">▾</a> We are the world's leading social trading network.</p>
<p> <a href="https://simplefx.com/n/_6012"><img src="http://www.google.com/s2/favicons?domain=https://simplefx.com/" alt=""> <strong>SimpleFX</strong></a> <a href="https://simplefx.com/">▾</a> Ergonomic trading platform, providing traders across the globe with cutting edge technology, ultra light spreads and transparent conditions.<br>
<br></p>
<h3 id="exchange-your-digital-assets">Exchange your digital assets</h3>
<p> <a href="https://www.binance.com/?ref=23138567"><img src="http://www.google.com/s2/favicons?domain=https://www.binance.com/" alt=""> <strong>Binance</strong></a> <a href="https://www.binance.com/">▾</a> Exchange the World. (Lowest fees!)</p>
<p> <a href="https://www.kucoin.com/#/?r=HMu2Rv"><img src="http://www.google.com/s2/favicons?domain=https://www.kucoin.com/" alt=""> <strong>Kucoin</strong></a> <a href="https://www.kucoin.com/">▾</a> International blockchain assets exchange.</p>
<p> <a href="https://www.huobi.br.com/es-es/topic/invited/?invite_code=kch93"><img src="http://www.google.com/s2/favicons?domain=https://www.huobi.pro/" alt=""> <strong>Huobi</strong></a> <a href="https://www.huobi.pro/">▾</a> The leading global digital asset exchange.<br>
<br></p>
<h3 id="where-to-conduct-market-research-and-check-cryptocurrency-signals">Where to conduct market research and check cryptocurrency signals?</h3>
<p> <a href="https://coinmarketcap.com/"><img src="http://www.google.com/s2/favicons?domain=https://coinmarketcap.com/" alt=""> <strong>CoinMarketCap</strong></a> ▾ Cryptocurrency market cap rankings, charts, and more!</p>
<p> <a href="https://tradingview.go2cloud.org/SH2Co"><img src="http://www.google.com/s2/favicons?domain=https://www.tradingview.com/" alt=""> <strong>TradingView</strong></a> <a href="https://www.tradingview.com/">▾</a> Research and blogging platform for financial markets. Free charts & data.<br>
<br></p>
<h3 id="start-shopping-with-cryptocurrencies">Start shopping with cryptocurrencies</h3>
<p> <a href="https://app.purse.io/?_r=gPBUzH"><img src="http://www.google.com/s2/favicons?domain=https://purse.io" alt=""> <strong>Purse</strong></a> <a href="https://purse.io/">▾</a> Save +15% on Your Amazon Order with Bitcoin and Bitcoin Cash!</p>
<p> <a href="https://www.openbazaar.org/"><img src="http://www.google.com/s2/favicons?domain=https://www.openbazaar.org/" alt=""> <strong>OpenBazaar</strong></a> ▾ Open source, decentralized marketplace for peer-to-peer commerce using cryptocurrency.</p>
<p> <a href="https://coinmap.org/"><img src="http://www.google.com/s2/favicons?domain=https://coinmap.org/" alt=""> <strong>CoinMap</strong></a> ▾ Find a Bitcoin Merchant Near You.<br>
<br></p>
<h3 id="keep-your-cryptocurrencies-safely">Keep Your Cryptocurrencies Safely</h3>
<p>The safest way to keep your digital assets is a <strong>hardware wallet</strong> like Ledger Nano, TREZOR, or Keepkey. There are also more economical and versatile options such as <strong>software wallets</strong> (apps) that you can install on your PC or smartphone such as Exodus, Jaxx or BRD.
If you want to HOLD your cryptocurrencies for a long time, you can choose a <strong>cold wallet</strong> like Billfodl, CRYPTO keystack or made of metal in which you can keep your private keys stored in a safe place.</p>
<h4 id="hardware-wallet">Hardware wallet:</h4>
<p> <a href="https://www.ledgerwallet.com/r/7f88"><img src="http://www.google.com/s2/favicons?domain=https://www.ledgerwallet.com" alt=""> Ledger<strong>Nano S</strong></a> <a href="https://www.ledgerwallet.com/">▾</a> Ledger is a global leader in securing crypto assets.</p>
<p> <a href="https://shop.trezor.io?a=7j8vBZmmYL"><img src="http://www.google.com/s2/favicons?domain=https://shop.trezor.io" alt=""> <strong>TREZOR</strong></a> <a href="https://shop.trezor.io/">▾</a> Securing your digital assets has never been more straightforward. "The Original Bitcoin Hardware Wallet".</p>
<p> <a href="http://keepkey.go2cloud.org/SHCw"><img src="http://www.google.com/s2/favicons?domain=https://www.keepkey.com/" alt=""> <strong>KeepKey</strong></a> <a href="https://www.keepkey.com/">▾</a> The safe, simple and secure cryptocurrency hardware wallet.</p>
<h4 id="software-wallet">Software wallet:</h4>
<p> <a href="https://www.exodus.io/"><img src="http://www.google.com/s2/favicons?domain=https://www.exodus.io/" alt=""> <strong>Exodus</strong></a> ▾ All-in-one app to secure, manage and exchange blockchain assets. ( Windows | Mac | Linux )</p>
<p> <a href="https://jaxx.io/"><img src="http://www.google.com/s2/favicons?domain=https://jaxx.io/" alt=""> <strong>Jaxx</strong></a> ▾ Your multi-asset #Blockchain Interface on 8 platforms. ( Mac & PC | iOS | Android )</p>
<p> <a href="https://brd.com/"><img src="http://www.google.com/s2/favicons?domain=https://brd.com/" alt=""> <strong>BRD</strong></a> ▾ BRD is the simple and secure onramp to bitcoin, ethereum, and other digital currencies. ( iOS | Android )</p>
<h4 id="cold-wallet">Cold wallet:</h4>
<p> <a href="http://billfodl.com?afmc=28&utm_campaign=28&utm_source=leaddyno&utm_medium=affiliate"><img src="http://www.google.com/s2/favicons?domain=https://billfodl.com/" alt=""> <strong>Billfodl</strong></a> <a href="https://billfodl.com/">▾</a> The Safest Way to #HODL! We create offline products to keep your private keys safe.</p>
<p> <a href="http://cryptokeystack.com/?rfsn=1546866.7eb41"><img src="http://www.google.com/s2/favicons?domain=https://cryptokeystack.com/" alt=""> <strong>CRYPTO</strong>keystack</a> ▾ Stainless steel, DIY cryptocurrency wallet backup device for storing mnemonic phrases and private wallet keys.</p>
<p> <a href="https://amzn.to/2MSSfc0"><img src="http://www.google.com/s2/favicons?domain=https://coldti.com/" alt=""> Cold<strong>Ti</strong></a> <a href="https://coldti.com/">▾</a> The Simple way of cryptographic seed storage.<br>
<br></p>
<h3 id="a-bit-of-advice-encrypted-email">A bit of advice: Encrypted email</h3>
<p>Communications with exchanges will be more secure if you use an encrypted email.</p>
<p> <a href="hhttps://protonmail.com/"><img src="http://www.google.com/s2/favicons?domain=https://protonmail.com/" alt=""> <strong>Protonmail</strong></a> ▾ Secure email that respects your privacy, brought to you by CERN scientists.<br>
<br></p>
<h3 id="keep-learning">Keep learning</h3>
<ul>
<li><a href="https://amzn.to/2u20uvf">Blockchain Revolution:</a> How the Technology Behind Bitcoin and Other Cryptocurrencies Is Changing the World.</li>
<li><a href="https://amzn.to/2uc8Z6q">Mastering Bitcoin for Starters:</a> Bitcoin and Cryptocurrency Technologies, Mining, Investing and Trading.</li>
<li><a href="https://amzn.to/2IZqzjx">Digital Gold:</a> Bitcoin and the Inside Story of the Misfits and Millionaires Trying to Reinvent Money.</li>
<li><a href="https://amzn.to/2u1ukQB">The Inevitable:</a> Understanding the 12 Technological Forces That Will Shape Our Future.</li>
<li><a href="https://amzn.to/2u0GCc6">Cryptoassets:</a> The Innovative Investor's Guide to Bitcoin and Beyond.</li>
<li><a href="https://amzn.to/2NvtCDn">The Age of Cryptocurrency:</a> How Bitcoin and the Blockchain Are Challenging the Global Economic Order.</li>
<li><a href="https://amzn.to/2KUn9A8">Blockchain Decrypted for 2018:</a> How To Profit With Crypto Currencies, Bitcoin, Coins And Altcoins This Year.</li>
<li><a href="https://amzn.to/2KS7rJ3">Cryptocurrency 2018:</a> Mining, Investing and Trading in Blockchain, including Bitcoin, Ethereum, Litecoin, Ripple, Dash, others.</li>
<li><a href="https://amzn.to/2u8pdgQ">The Internet of Money:</a> A Collection of Talks by Andreas M. Antonopoulos.</li>
<li><a href="https://amzn.to/2tYuRTC">The Starfish and the Spider:</a> The Unstoppable Power of Leaderless Organizations.</li>
<li><a href="https://amzn.to/2KWexcc">Mastering Bitcoin:</a> Programming the Open Blockchain. See on <a href="https://github.com/bitcoinbook/bitcoinbook">github.</a></li>
<li><a href="https://amzn.to/2KUsojq">The Book Of Satoshi:</a> The Collected Writings of Bitcoin Creator Satoshi Nakamoto.</li>
<li><a href="https://amzn.to/2zh8deh">American Kingpin:</a> Catching the Billion-Dollar Baron of the Dark Web.</li>
</ul>
<p><a href="#contents"><div align="right"><img src="./img/up.png" alt="Up"></div></a></p>
<h2 id="cryptocurrencies">Cryptocurrencies</h2>
<ul>
<li><a href="https://amzn.to/2u0GCc6">Cryptoassets:</a> The Innovative Investor's Guide to Bitcoin and Beyond. - by Chris Burniske & Jack Tatar</li>
<li><a href="https://amzn.to/2u0GCc6">Still looking for a solid framework to understand cryptoassets?</a> - by Benas Bizevičius</li>
</ul>
<br>
<p> <a href="https://bitcoin.org"><img src="http://www.google.com/s2/favicons?domain=https://bitcoin.org" alt=""> <strong>Bitcoin</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/bitcoin/">BTC</a>)</sup></sub> - Most popular cryptocurrency on Blockchain. Payment network and a new kind of currency to be used as digital money.<br>
<a href="https://www.bitcoincash.org/"><img src="http://www.google.com/s2/favicons?domain=https://www.bitcoincash.org/" alt=""> <strong>Bitcoin Cash</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/bitcoin-cash/">BCH</a>)</sup></sub> - Bitcoin fork with capacity to process blocks of data of 32 MB.<br>
<a href="https://litecoin.org/"><img src="http://www.google.com/s2/favicons?domain=https://litecoin.org/" alt=""> <strong>Litecoin</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/litecoin/">LTC</a>)</sup></sub> - Litecoin is an alternative cryptocurrency based on the model of Bitcoin that enables instant, near-zero transaction costs.<br>
<a href="https://www.stellar.org/"><img src="http://www.google.com/s2/favicons?domain=https://www.stellar.org/" alt=""> <strong>Stellar</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/stellar/">XLM</a>)</sup></sub> - Free, open-source network that connects banks, payments systems, and people. Lets build financial products to move money quickly, and at almost no cost.<br>
<a href="https://nano.org/en"><img src="http://www.google.com/s2/favicons?domain=https://nano.org/" alt=""> <strong>Nano</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/nano/">NANO</a>)</sup></sub> - Digital currency with fast transactions and zero fees, over a decentralized network.<br>
<a href="https://www.decred.org/"><img src="http://www.google.com/s2/favicons?domain=https://www.decred.org/" alt=""> <strong>Decred</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/decred/">DCR</a>)</sup></sub> - Autonomous Digital Currency. Built to be decentralized, sustainable, & self-ruling where stakeholders make the rules.<br>
<a href="https://dogecoin.com/"><img src="http://www.google.com/s2/favicons?domain=https://dogecoin.com/" alt=""> <strong>Dogecoin</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/dogecoin/">DOGE</a>)</sup></sub> - Has gained traction as an Internet tipping system, in which social media users grant Dogecoin tips to other users for providing interesting or noteworthy content.<br>
<a href="https://bitcoingold.org/"><img src="http://www.google.com/s2/favicons?domain=https://bitcoingold.org/" alt=""> <strong>Bitcoin Gold</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/bitcoin-gold/">BTG</a>)</sup></sub> - Bitcoin hard fork. The stated purpose is to restore the mining functionality with GPUs, instead of ASIC.<br>
<a href="http://btcd.io"><img src="http://www.google.com/s2/favicons?domain=http://btcd.io" alt=""> <strong>Bitcoin Diamond</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/bitcoin-diamond/">BCD</a>)</sup></sub> - Bitcoin fork that occurs at the predetermined height of block 495866. The main difference with Bitcoin is that they multiplied the supply by 10.<br>
<a href="https://monacoin.org/"><img src="http://www.google.com/s2/favicons?domain=https://monacoin.org/" alt=""> <strong>Monacoin</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/monacoin/">MONA</a>)</sup></sub> - Fully distributed payment system preserved by everyone who uses it via client applications running on their computers.<br>
<a href="https://digix.global/"><img src="http://www.google.com/s2/favicons?domain=https://digix.global/" alt=""> <strong>DigixDao</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/digixdao/">DGD</a>)</sup></sub> - Represent physical gold with DGX tokens, where 1 DGX represents 1 gram of gold on Ethereum.</p>
<p><a href="#contents"><div align="right"><img src="./img/up.png" alt="Up"></div></a></p>
<h3 id="privacy-cryptocurrencies">Privacy Cryptocurrencies</h3>
<ul>
<li><a href="https://goo.gl/GkNP7e">Privacy Coin Matrix:</a> Detailed study of the technology behind the privacy cryptos - by <a href="https://www.reddit.com/r/PrivacyCoinMatrix/">r/PrivacyCoinMatrix</a></li>
</ul>
<br>
<p> <a href="https://getmonero.org"><img src="http://www.google.com/s2/favicons?domain=https://getmonero.org" alt=""> <strong>Monero</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/monero/">MXR</a>)</sup></sub> - Most popoular privacy-focused cryptocurrency. Anonymous, Fungible & Untraceable. It is open-source and freely available to all.<br>
<a href="https://www.dash.org/"><img src="http://www.google.com/s2/favicons?domain=https://www.dash.org/" alt=""> <strong>DASH</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/dash/">DASH</a>)</sup></sub> - (Digital Cash) Open source peer-to-peer cryptocurrency that offers instant transactions, private transactions and token fungibility.<br>
<a href="https://z.cash/"><img src="http://www.google.com/s2/favicons?domain=https://z.cash/" alt=""> <strong>Zcash</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/zcash/">ZEC</a>)</sup></sub> - Open, permissionless cryptocurrency that can fully protect the privacy of transactions using zero-knowledge cryptography (the first Zerocash implementation).<br>
<a href="https://vergecurrency.com/"><img src="http://www.google.com/s2/favicons?domain=https://vergecurrency.com/" alt=""> <strong>Verge</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/verge/">XVG</a>)</sup></sub> - Anonymous cryptocurrency. Built with a focus on privacy, with integrated tor and stealth addresses.<br>
<a href="https://pivx.org/"><img src="http://www.google.com/s2/favicons?domain=https://pivx.org/" alt=""> <strong>PIVX</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/pivx/">PIVX</a>)</sup></sub> - Fast and low cost privacy-focused digital currency, using a Proof of Stake (PoS) consensus system algorithm.<br>
<a href="https://btcprivate.org/"><img src="http://www.google.com/s2/favicons?domain=https://btcprivate.org/" alt=""> <strong>Bitcoin Private</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/bitcoin-private/">BTCP</a>)</sup></sub> - Code fork of ZClassic and chain fork of BTC.<br>
<a href="https://komodoplatform.com/#"><img src="http://www.google.com/s2/favicons?domain=https://komodoplatform.com/" alt=""> <strong>Komodo</strong></a> <em>Exchange and Platform</em> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/komodo/">KMD</a>)</sup></sub> - Privacy coin, dICO platform, security service, & decentralized exchange.<br>
<a href="https://zcoin.io/"><img src="https://awebanalysis.com/img/coins/16/zcoin.png" alt=""> <strong>ZCoin</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/zcoin/">XZC</a>)</sup></sub> - First full implementation of the Zerocoin Protocol, which allows users to have complete privacy via Zero-Knowledge cryptographic proofs.<br>
<a href="http://zclassic.org/"><img src="http://www.google.com/s2/favicons?domain=http://zclassic.org/" alt=""> <strong>ZClassic</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/zclassic/">ZCL</a>)</sup></sub> - ZCash fork without the founder award;removing the 20% fee.<br>
<a href="https://zensystem.io/"><img src="http://www.google.com/s2/favicons?domain=https://zensystem.io/" alt=""> <strong>Zencash</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/zencash/">ZEN</a>)</sup></sub> - ZClassic fork with additional features.<br>
<a href="http://particl.io/"><img src="http://www.google.com/s2/favicons?domain=http://particl.io/" alt=""> <strong>Particl</strong></a> <em>Marketplace</em> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/particl/">PART</a>)</sup></sub> - Private currency, decentralized marketplace Private, crypto agnostic.<br>
<a href="https://www.groestlcoin.org/"><img src="http://www.google.com/s2/favicons?domain=https://www.groestlcoin.org/" alt=""> <strong>Groestlcoin</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/groestlcoin/">GRS</a>)</sup></sub> - Asic resistant litecoin fork.<br>
<a href="https://navcoin.org/"><img src="http://www.google.com/s2/favicons?domain=https://navcoin.org/" alt=""> <strong>Nav-Coin</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/nav-coin/">NAV</a>)</sup></sub> - Private dApp platform.<br>
<a href="https://deeponion.org/"><img src="http://www.google.com/s2/favicons?domain=https://deeponion.org/" alt=""> <strong>DeepOnion</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/deeponion/">ONION</a>)</sup></sub> - Coin with integrated tor and stealth addresses.<br>
<a href="https://phore.io/"><img src="http://www.google.com/s2/favicons?domain=https://phore.io/" alt=""> <strong>Phore</strong></a> <em>Marketplace</em> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/phore/">PHR</a>)</sup></sub> - PIVX fork aspiring to be a decentralized marketplace.<br>
<a href="http://zoinofficial.com/"><img src="http://www.google.com/s2/favicons?domain=http://zoinofficial.com/" alt=""> <strong>Zoin</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/zoin/">ZOI</a>)</sup></sub> - Coin of Zerocoin protocol. Decentralized digital currency with anonymous features and community governance.<br>
<a href="http://colossuscoinxt.org/"><img src="http://www.google.com/s2/favicons?domain=http://colossuscoinxt.org/" alt=""> <strong>ColossusCoinXT</strong></a> <em>Storage network</em> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/colossusxt/">COLX</a>)</sup></sub> - Clone of pre-zerocoin PIVX.<br>
<a href="https://spectreproject.io/"><img src="https://awebanalysis.com/img/coins/16/spectrecoin.png" alt=""> <strong>Spectrecoin</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/spectrecoin/">XSPEC</a>)</sup></sub> - Proof of Stake Monero.<br>
<a href="https://www.sumokoin.org/"><img src="http://www.google.com/s2/favicons?domain=https://www.sumokoin.org/" alt=""> <strong>Sumokoin</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/sumokoin/">SUMO</a>)</sup></sub> - Monero clone with additional mixins.<br>
<a href="https://bytecoin.org/"><img src="http://www.google.com/s2/favicons?domain=https://bytecoin.org/" alt=""> <strong>Bytecoin</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/bytecoin-bcn/">BCN</a>)</sup></sub> - Bytecoin is an open-sourced decentralized cryptocurrency with untraceable payments that was started in 2012.</p>
<p><a href="#contents"><div align="right"><img src="./img/up.png" alt="Up"></div></a></p>
<h3 id="stablecoins">StableCoins</h3>
<p> <a href="https://tether.to/"><img src="http://www.google.com/s2/favicons?domain=https://tether.to/" alt=""> <strong>Tether</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/tether/">USDT</a>)</sup></sub> - First and most popular stablecoin. Cconverts cash into digital currency, to anchor the value to the price of national currencies like the US dollar, the Euro, and the Yen.<br>
<a href="https://www.trusttoken.com/trueusd/"><img src="https://awebanalysis.com/img/coins/16/true-usd.png" alt=""> <strong>TrueUSD</strong></a> <sub><sup>(TUSD)</sup></sub> - Asset backed stablecoin that you can redeem 1-for-1 for US dollars.<br>
<a href="http://www.makerdao.com/"><img src="http://www.google.com/s2/favicons?domain=http://www.makerdao.com/" alt=""> <strong>Dai</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/dai/">DAI</a>)</sup></sub> - Cryptocurrency that is price stabilized against the value of the USD. Created by the Dai Stablecoin System, a decentralized platform that runs on the Ethereum blockchain.<br>
<a href="https://basis.io/"><img src="http://www.google.com/s2/favicons?domain=https://basis.io/" alt=""> <strong>Basis</strong></a> <sub><sup>(?)</sup></sub> - A stable cryptocurrency with an algorithmic central bank.</p>
<p><a href="#contents"><div align="right"><img src="./img/up.png" alt="Up"></div></a></p>
<h2 id="blockchain-application-platforms">Blockchain Application Platforms</h2>
<p> <a href="https://www.ethereum.org/"><img src="http://www.google.com/s2/favicons?domain=https://www.ethereum.org/" alt=""> <strong>Ethereum</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/ethereum/">ETH</a>)</sup></sub> - Decentralized platform that runs smart contracts & DApps without any possibility of downtime, censorship, fraud or third party interference.<br>
<a href="https://ethereumclassic.org/"><img src="http://www.google.com/s2/favicons?domain=https://ethereumclassic.org/" alt=""> <strong>Ethereum Classic</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/ethereum-classic/">ETC</a>)</sup></sub> - Hard-fork that´s is continuation of the original Ethereum blockchain.<br>
<a href="https://www.nem.io"><img src="http://www.google.com/s2/favicons?domain=https://www.nem.io" alt=""> <strong>NEM</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/nem/">XEM</a>)</sup></sub> - Platform that has introduced new features to blockchain technology such as its proof-of-importance (POI) algorithm, multisignature accounts, encrypted messaging, and an Eigentrust++ reputation system.<br>
<a href="https://nxt.org"><img src="http://www.google.com/s2/favicons?domain=https://nxt.org" alt=""> <strong>NXT</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/nxt/">NXT</a>)</sup></sub> - Exchange and blockchain platform which builds on and improves the basic functionality of cryptocurrencies such as Bitcoin.<br>
<a href="https://www.ardorplatform.org/"><img src="http://www.google.com/s2/favicons?domain=https://www.ardorplatform.org/" alt=""> <strong>Ardor</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/ardor/">ARDR</a>)</sup></sub> - Blockchain-as-a-service platform that will allow people to utilize the blockchain technology of Nxt through the use of child chains.<br>
<a href="https://cosmos.network/"><img src="http://www.google.com/s2/favicons?domain=https://cosmos.network/" alt=""> <strong>Cosmos Network</strong></a> - Decentralized network of independent parallel blockchains, each powered by classical BFT consensus algorithms.<br>
<a href="http://www.expanse.tech/"><img src="http://www.google.com/s2/favicons?domain=http://www.expanse.tech/" alt=""> <strong>Expanse</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/expanse/">EXP</a>)</sup></sub> - Fault tolerant cloud computer built on blockchain technology that facilitates censorship resistant applications.<br>
<a href="https://pchain.org/"><img src="http://www.google.com/s2/favicons?domain=https://pchain.org/" alt=""> <strong>PChain</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/pchain/">PAI</a>)</sup></sub> - First native multi-chain system that supports EVM, and it makes large scale blockchain applications possible.<br>
<a href="https://zilliqa.com/"><img src="http://www.google.com/s2/favicons?domain=https://zilliqa.com/" alt=""> <strong>Zilliga</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/zilliqa/">ZIL</a>)</sup></sub> - High throughput blockchain platform designed to scale.<br>
<a href="https://neo.org/en-us/"><img src="https://awebanalysis.com/img/coins/16/neo.png" alt=""> <strong>Neo</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/neo/">NEO</a>)</sup></sub> - China's first ever original and open source public chain project, it serves as a smart assets platform. Allows for a smarter way for assets registration, issuance, and circulation.<br>
<a href="https://eos.io/"><img src="http://www.google.com/s2/favicons?domain=https://eos.io/" alt=""> <strong>Eos</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/eos/">EOS</a>)</sup></sub> - Infrastructure that introduces a blockchain architecture designed to enable vertical and horizontal scaling of decentralized applications. The software provides accounts, authentication, databases, asynchronous communication and the scheduling of applications across multiple CPU cores and/or clusters.<br>
<a href="https://www.cardano.org/en/home/"><img src="http://www.google.com/s2/favicons?domain=https://www.cardano.org/en/home/" alt=""> <strong>Cardano</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/cardano/">ADA</a>)</sup></sub> - Cardano is developing a smart contract platform which seeks to deliver more advanced features than any protocol previously developed.<br>
<a href="https://lisk.io/"><img src="http://www.google.com/s2/favicons?domain=https://lisk.io//" alt=""> <strong>Lisk</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/lisk/">LSK</a>)</sup></sub> - Blockchain application platform that inspires, enables and supports developers to build decentralized applications written in JavaScript.<br>
<a href="https://www.achain.com/"><img src="http://www.google.com/s2/favicons?domain=https://www.achain.com/" alt=""> <strong>Achain</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/achain/">ACT</a>)</sup></sub> - Public blockchain platform that enables developers of all levels to issue tokens and create smart contracts, decentralized applications and blockchain systems.<br>
<a href="https://komodoplatform.com/"><img src="http://www.google.com/s2/favicons?domain=https://komodoplatform.com/" alt=""> <strong>Komodo</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/komodo/">KMD</a>)</sup></sub> - End-to-end Blockchain Solutions Provider empowering developers to build freely and participate in creating the largest open blockchain network.<br>
<a href="https://enigma.co/"><img src="http://www.google.com/s2/favicons?domain=https://enigma.co/" alt=""> <strong>Enigma Project</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/enigma-project/">ENG</a>)</sup></sub> - Enigma is using groundbreaking privacy technology to build the first platform for scalable, end-to-end decentralized apps.<br>
<a href="https://qtum.org/"><img src="http://www.google.com/s2/favicons?domain=https://qtum.org/" alt=""> <strong>Qtum</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/qtum/">QTUM</a>)</sup></sub> - Decentralized Blockchain application platform capable of running Smart Contracts on multiple virtual machines, with Proof-of-Stake consensus. Combining a modified Bitcoin Core infrastructure with an intercompatible version of the Ethereum Virtual Machine (EVM).<br>
<a href="https://ubiqsmart.com/"><img src="http://www.google.com/s2/favicons?domain=https://ubiqsmart.com/" alt=""> <strong>Ubiq</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/ubiq/">UBQ</a>)</sup></sub> - Built upon an improved Ethereum codebase, the Ubiq blockchain acts as a large globally distributed ledger and supercomputer, allowing developers to create decentralized and automated solutions.<br>
<a href="https://www.hederahashgraph.com/"><img src="http://www.google.com/s2/favicons?domain=https://www.hederahashgraph.com/" alt=""> <strong>Hedera Hashgraph</strong></a> <sub><sup>(-)</sup></sub> - Offer a public, distributed ledger that enables globally distributed applications.<br>
<a href="https://aeternity.com/"><img src="http://www.google.com/s2/favicons?domain=https://aeternity.com/" alt=""> <strong>Aeternity</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/aeternity/">AE</a>)</sup></sub> - Scalable blockchain platform that enables high-speed transacting, purely-functional smart contracts, and decentralized oracles. Coded in Erlang.<br>
<a href="https://ont.io/"><img src="http://www.google.com/s2/favicons?domain=https://ont.io/" alt=""> <strong>Ontology</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/ontology/">ONT</a>)</sup></sub> - Provides new high-performance public blockchains that include a series of complete distributed ledgers and smart contract systems.<br>
<a href="https://rise.vision/"><img src="http://www.google.com/s2/favicons?domain=https://rise.vision/" alt=""> <strong>RISE</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/rise/">RISE</a>)</sup></sub> - Offers a platform for Decentralized Distributed Applications (DAPPs), powered by a community driven Delegated Proof of Stake (DPoS) blockchain. JS, TS, Python, C#.<br>
<a href="https://www.asch.io/"><img src="http://www.google.com/s2/favicons?domain=https://www.asch.io/" alt=""> <strong>Asch</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/asch/">XAS</a>)</sup></sub> - Blockchain application development platform based on side chain architecture.<br>
<a href="http://moac.io"><img src="https://awebanalysis.com/img/coins/16/moac.png" alt=""> <strong>Moac</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/moac/">MOAC</a>)</sup></sub> - Multi-Layer blockchain architecture: blockchain platform with necessary plumbing parts available to sub blockchains, providing solution for idea test, private chain deployment, complex task processing, decentralized applications etc.<br>
<a href="https://h.cash/"><img src="http://www.google.com/s2/favicons?domain=https://h.cash/" alt=""> <strong>Hcash</strong></a> - Designed to be a side chain for both block-based and blockless-based blockchains.<br>
<a href="https://tron.network/"><img src="http://www.google.com/s2/favicons?domain=https://tron.network/" alt=""> <strong>Tron</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/tron/">TRX</a>)</sup></sub> - One of the largest blockchain-based operating systems. Has as purpose to building the infrastructure for a truly decentralized Internet.<br>
<a href="https://nebulas.io/"><img src="http://www.google.com/s2/favicons?domain=https://nebulas.io/" alt=""> <strong>Nebulas</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/nebulas-token/">NAS</a>)</sup></sub> - Based on its blockchain valuation mechanism, Nebulas proposes future-oriented incentive and consensus systems, and the ability to self-evolve without forking. (The google of the blockchain).<br>
<a href="https://ark.io/"><img src="http://www.google.com/s2/favicons?domain=https://ark.io/" alt=""> <strong>Ark</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/ark/">ARK</a>)</sup></sub> - Aims to create an entire ecosystem of linked chains and a virtual spiderweb of endless use-cases.<br>
<a href="https://aion.network/"><img src="http://www.google.com/s2/favicons?domain=https://aion.network/" alt=""> <strong>Aion Netwok</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/aion/">AION</a>)</sup></sub> - Multi-tier blockchain system designed to address scalability, privacy, and interoperability.<br>
<a href="https://www.elastos.org/"><img src="http://www.google.com/s2/favicons?domain=https://www.elastos.org/" alt=""> <strong>Elastos</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/elastos/">ELA</a>)</sup></sub> - Focused on re-decentralizing Internet with blockchain to secure identity, where decentralized applications are detached from the internet while also permitting full scalability to millions of users.<br>
<a href="https://substratum.net/"><img src="http://www.google.com/s2/favicons?domain=https://substratum.net/" alt=""> <strong>Substratum</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/substratum/">SUB</a>)</sup></sub> - open-source network that allows anyone to allocate spare computing resources to make the internet a free and fair place for the entire world.</p>
<p><a href="#contents"><div align="right"><img src="./img/up.png" alt="Up"></div></a></p>
<h2 id="enterprise-and-private-blockchains">Enterprise and Private Blockchains</h2>
<p> <a href="https://ripple.com/"><img src="http://www.google.com/s2/favicons?domain=https://ripple.com/" alt=""> <strong>Ripple</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/ripple/">XRP</a>)</sup></sub> - (Bank’s Cryptocurrency) Built for enterprise use, XRP offers banks and payment providers a reliable way to source liquidity for payments.<br>
<a href="http://nuls.io/"><img src="https://awebanalysis.com/img/coins/16/nuls.png" alt=""> <strong>Nuls</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/nuls/">NULS</a>)</sup></sub> - Adaptable blockchain for enterprise solutions.<br>
<a href="https://nebl.io/"><img src="http://www.google.com/s2/favicons?domain=https://nebl.io/" alt=""> <strong>Neblio</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/neblio/">NEBL</a>)</sup></sub> - A secure, distributed, platform built for enterprise applications and services. Running on the Neblio blockchain network.<br>
<a href="https://icon.foundation/en/"><img src="http://www.google.com/s2/favicons?domain=https://icon.foundation/" alt=""> <strong>ICON</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/icon/">ICX</a>)</sup></sub> - One of the largest blockchain networks in the world. ICON boasts independent blockchains comprised of reputable institutions in major industries ranging from: financial institutions, insurance companies, hospitals, universities and more.<br>
<a href="https://stratisplatform.com/"><img src="http://www.google.com/s2/favicons?domain=https://stratisplatform.com/" alt=""> <strong>Stratis</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/stratis/">STRAT</a>)</sup></sub> - End-to-end solutions for development, testing and deployment of native C# blockchain applications on the .Net framework. Private blockchains for all!<br>
<a href="https://www.factom.com"><img src="http://www.google.com/s2/favicons?domain=https://www.factom.com" alt=""> <strong>Factom</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/factom/">FCT</a>)</sup></sub> - (Decentralized Notary) Provides active solutions for compliance, identity, transparent assets, and securities for Enterprise, Government and Non-Profit systems.<br>
<a href="https://dragonchain.com/"><img src="http://www.google.com/s2/favicons?domain=https://dragonchain.com/" alt=""> <strong>Dragonchain</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/dragonchain/">DRGN</a>)</sup></sub> - Flexible Public/Private Hybrid Blockchain Platform. Built-in protection of business data using established programming languages (Java, Python, Node, C#).<br>
<a href="https://www.xdac.co/"><img src="http://www.google.com/s2/favicons?domain=https://www.xdac.co/" alt=""> <strong>xDAC</strong></a> - Build Your Decentralized Company. Self-governed platform for creating and managing Decentralized Autonomous Companies.<br>
<a href="http://emercoin.com/"><img src="http://www.google.com/s2/favicons?domain=http://emercoin.com/" alt=""> <strong>Emercoin</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/emercoin/">EMC</a>)</sup></sub> - Distributed blockchain services for business and personal use with its own decentralized DNS system.</p>
<br>
<h3 id="private-blockchains">Private Blockchains</h3>
<p> <a href="https://www.hyperledger.org/"><img src="http://www.google.com/s2/favicons?domain=https://www.hyperledger.org/" alt=""> <strong>Hyperledger</strong></a> - Open source collaborative effort created to advance cross-industry blockchain technologies. It is a global collaboration, hosted by The Linux Foundation.<br>
<a href="https://azure.microsoft.com/en-us/solutions/blockchain/"><img src="http://www.google.com/s2/favicons?domain=https://azure.microsoft.com/" alt=""> <strong>Azure blockchain</strong></a> - Azure Blockchain as a Service.<br>
<a href="http://www.ibm.com/blockchain/"><img src="http://www.google.com/s2/favicons?domain=http://www.ibm.com/blockchain/" alt=""> <strong>IBM blockchain</strong></a> - IBM Blockchain Platform.<br>
<a href="http://www.multichain.com/"><img src="http://www.google.com/s2/favicons?domain=http://www.multichain.com/" alt=""> <strong>Multichain</strong></a> - Open platform for building blockchains.<br>
<a href="https://www.corda.net/"><img src="http://www.google.com/s2/favicons?domain=https://www.corda.net/" alt=""> <strong>Corda</strong></a> - Open source blockchain for business. Allows to build interoperable blockchain networks that transact in privacy.<br>
<a href="http://openchain.org/"><img src="http://www.google.com/s2/favicons?domain=http://openchain.org/" alt=""> <strong>Openchain</strong></a> - Blockchain technology for the enterprise. Is an open source distributed ledger technology.</p>
<p><a href="#contents"><div align="right"><img src="./img/up.png" alt="Up"></div></a></p>
<h2 id="blockchain-projects">Blockchain Projects</h2>
<h3 id="governance">Governance</h3>
<p> <a href="https://aragon.one/"><img src="http://www.google.com/s2/favicons?domain=https://aragon.one/" alt=""> <strong>Aragon</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/aragon/">ANT</a>)</sup></sub> - Aims to disintermediate the creation and maintenance of organizational structures by using blockchain technology.<br>
<a href="https://bitnation.co/"><img src="http://www.google.com/s2/favicons?domain=https://bitnation.co/" alt=""> <strong>Bitnation</strong></a> <sub><sup>(<a href="https://etherscan.io/address/0xbb1fa4fdeb3459733bf67ebc6f893003fa976a82">XPAT</a>)</sup></sub> - Become a world citizen. Governance 2.0: Borderless Decentralized Voluntary.<br>
<a href="https://www.democracy.earth/"><img src="http://www.google.com/s2/favicons?domain=https://www.democracy.earth/" alt=""> <strong>Democracy Earth</strong></a> - Governance in a post nation-state world.</p>
<p><a href="#contents"><div align="right"><img src="./img/up.png" alt="Up"></div></a></p>
<h3 id="funding-and-business-evaluation">Funding and Business Evaluation</h3>
<p> <a href="https://wingsfoundation.ch/"><img src="http://www.google.com/s2/favicons?domain=https://wingsfoundation.ch/" alt=""> <strong>Wings</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/wings/">WINGS</a>)</sup></sub> - Decentralized applications for Blockchain-based evaluation, funding and early adopter engagement.<br>
<a href="https://starbase.co/"><img src="http://www.google.com/s2/favicons?domain=https://starbase.co/" alt=""> <strong>StarBase</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/starbase/">STAR</a>)</sup></sub> - Token based global crowdfunding and crowdsourcing platform.</p>
<p><a href="#contents"><div align="right"><img src="./img/up.png" alt="Up"></div></a></p>
<h3 id="financial-services-and-invoicing">Financial Services and Invoicing</h3>
<p> <a href="https://bitshares.org/"><img src="http://www.google.com/s2/favicons?domain=https://bitshares.org/" alt=""> <strong>BitShares</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/bitshares/">BTS</a>)</sup></sub> - Stack of financial services including exchange and banking on a blockchain.<br>
<a href="https://chain.com/"><img src="http://www.google.com/s2/favicons?domain=https://chain.com/" alt=""> <strong>Chain</strong></a> - Enterprise-grade blockchain infrastructure that enables organizations to build financial services from the ground up.<br>
<a href="https://www.tallysticks.io/"><img src="http://www.google.com/s2/favicons?domain=https://www.tallysticks.io/" alt=""> <strong>Tallysticks</strong></a> - Automate the invoicing and the invoice financing processes. International Trade, Simplified.<br>
<a href="https://cindicator.com/"><img src="http://www.google.com/s2/favicons?domain=https://cindicator.com/" alt=""> <strong>Cindicator</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/cindicator/">CND</a>)</sup></sub> - Works with predictive analytics, data, and market indicators powered by Hybrid Intelligence to support traditional and crypto financial market analysis.<br>
<a href="https://omisego.network/"><img src="http://www.google.com/s2/favicons?domain=https://omisego.network/" alt=""> <strong>OmiseGO</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/omisego/">OMG</a>)</sup></sub> - Scaling solution for finance on Ethereum, enabling transparent, peer-to-peer transactions in real-time. The decentralized network facilitates self-sovereign financial services across geographies, asset classes and applications.<br>
<a href="https://wanchain.org/"><img src="http://www.google.com/s2/favicons?domain=https://wanchain.org/" alt=""> <strong>Wanchain</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/wanchain/">WAN</a>)</sup></sub> - Distributed financial infrastructure. Cross-Chain Smart Contracts with Privacy Protection.<br>
<a href="https://veritas.veritaseum.com/"><img src="http://www.google.com/s2/favicons?domain=https://veritas.veritaseum.com/" alt=""> <strong>Veritaseum</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/veritaseum/">VERI</a>)</sup></sub> - Blockchain-based, peer-to-peer capital markets as software on a global scale, without the need for a third or authoritarian interest.<br>
<a href="https://populous.world/"><img src="http://www.google.com/s2/favicons?domain=https://populous.world/" alt=""> <strong>Populous</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/populous/">PPT</a>)</sup></sub> - Global invoice trading platform built on Blockchain's distributed ledger technology.<br>
<a href="https://bytom.io/"><img src="https://awebanalysis.com/img/coins/16/bytom.png" alt=""> <strong>Bytom</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/bytom/">BTM</a>)</sup></sub> - Peer-to-peer financial applications and asset applications from institutions and individuals could be built on Bytom chain.<br>
<a href="https://liquid.plus/"><img src="http://www.google.com/s2/favicons?domain=https://liquid.plus/" alt=""> <strong>Liquid</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/qash/">QASH</a>)</sup></sub> - Financial Services on the Blockchain.</p>
<p><a href="#contents"><div align="right"><img src="./img/up.png" alt="Up"></div></a></p>
<h3 id="paymentliquidity-networks-lending-and-custom-digital-assets">Payment&Liquidity Networks, Lending, and Custom Digital Assets</h3>
<p> <a href="https://request.network/"><img src="http://www.google.com/s2/favicons?domain=https://request.network/" alt=""> <strong>Request Network</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/request-network/">REQ</a>)</sup></sub> - Decentralized network for payment requests.<br>
<a href="https://home.kyber.network/"><img src="http://www.google.com/s2/favicons?domain=https://home.kyber.network/" alt=""> <strong>Kyber Network</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/kyber-network/">KNC</a>)</sup></sub> - Decentralized Liquidity Network powering seamless transactions between individuals, ecosystems and dapps.<br>
<a href="https://about.bancor.network"><img src="https://awebanalysis.com/img/coins/16/bancor.png" alt=""> <strong>Bancor</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/bancor/">BNT</a>)</sup></sub> - Decentralized liquidity network that allows to hold (and create) any token and convert it to any other token in the network, with no counter party, at an automatically calculated price, using a web wallet.<br>
<a href="http://counterparty.io/"><img src="http://www.google.com/s2/favicons?domain=http://counterparty.io" alt=""> <strong>Counterparty</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/counterparty/">XCP</a>)</sup></sub> - Peer-to-peer finance platform built on top of the Bitcoin protocol. Custom Tokens creation.<br>
<a href="http://www.omnilayer.org/"><img src="http://www.google.com/s2/favicons?domain=http://www.omnilayer.org/" alt=""> <strong>Omni</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/omni/">OMNI</a>)</sup></sub> - Platform for creating and trading custom digital assets and currencies. Software layer built on top of the Bitcoin blockchain.<br>
<a href="https://wavesplatform.com/"><img src="http://www.google.com/s2/favicons?domain=https://wavesplatform.com/" alt=""> <strong>Waves</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/waves/">WAVES</a>)</sup></sub> - Decentralized platform that allows any user to issue, transfer, swap and trade custom tokens directly on the blockchain.<br>
<a href="https://www.syscoin.org/"><img src="http://www.google.com/s2/favicons?domain=https://www.syscoin.org/" alt=""> <strong>Syscoin</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/syscoin/">SYS</a>)</sup></sub> - Asset token creation platform and decentralized marketplace and so much more!<br>
<a href="https://ethlend.io"><img src="http://www.google.com/s2/favicons?domain=https://ethlend.io" alt=""> <strong>ETHLend</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/ethlend/">LEND</a>)</sup></sub> - Decentralized financial marketplace for peer to peer lending agreements using blockchain and smart contracts.<br>
<a href="https://www.digibyte.io/"><img src="http://www.google.com/s2/favicons?domain=https://www.digibyte.io" alt=""> <strong>DigiByte</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/digibyte/">DGB</a>)</sup></sub> - Decentralized payment network & digital currency, inspired by Bitcoin.<br>
<a href="https://www.saltlending.com/"><img src="https://awebanalysis.com/img/coins/16/salt.png" alt=""> <strong>SALT</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/salt/">SALT</a>)</sup></sub> - Lets leverage blockchain assets to secure cash loans.<br>
<a href="https://cryptonex.org/"><img src="http://www.google.com/s2/favicons?domain=https://cryptonex.org/" alt=""> <strong>Cryptonex</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/cryptonex/">CNX</a>)</sup></sub> - Global blockchain acquisition network.<br>
<a href="https://havven.io/"><img src="https://awebanalysis.com/img/coins/16/havven.png" alt=""> <strong>Havven</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/havven/">HAV</a>)</sup></sub> - Decentralised payment network and stablecoin. It allows anyone to transact using a stable cryptocurrency.</p>
<p><a href="#contents"><div align="right"><img src="./img/up.png" alt="Up"></div></a></p>
<h3 id="recruitment">Recruitment</h3>
<p> <a href="https://chronobank.io/"><img src="http://www.google.com/s2/favicons?domain=https://chronobank.io/" alt=""> <strong>ChronoBank</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/chronobank/">TIME</a>)</sup></sub> - Wide-ranging blockchain project, aimed at disrupting the HR/recruitment/finance industries in Uber-like way.</p>
<p><a href="#contents"><div align="right"><img src="./img/up.png" alt="Up"></div></a></p>
<h3 id="identity-copyright-and-legal-agreements">Identity, Copyright and Legal Agreements</h3>
<p> <a href="https://monax.io/"><img src="http://www.google.com/s2/favicons?domain=https://monax.io/" alt=""> <strong>Monax</strong></a> - Create self-executable legal agreements based on smart-contract.<br>
<a href="https://agreements.network/"><img src="http://www.google.com/s2/favicons?domain=https://agreements.network/" alt=""> <strong>Agreements Network</strong></a> - Introducing a decentralized contract management platform that uses smart contract technology to create, prove and operate legal agreements. It’s the legal layer for a networked world.<br>
<a href="https://veres.one/"><img src="http://www.google.com/s2/favicons?domain=https://veres.one/" alt=""> <strong>Veres One</strong></a> - Identity management on blockchain.<br>
<a href="https://radiumcore.org/"><img src="http://www.google.com/s2/favicons?domain=https://radiumcore.org/" alt=""> <strong>Radium Core</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/radium/">RADS</a>)</sup></sub> - Decentralized cryptocurrency offering a system for record verification and blockchain-based identities.<br>
<a href="https://bnktothefuture.com/"><img src="http://www.google.com/s2/favicons?domain=https://bnktothefuture.com/" alt=""> <strong>BnkToTheFuture</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/bnktothefuture/">BFT</a>)</sup></sub> - Investment platform that brings financial innovation & technology investment opportunities to investors.<br>
<a href="https://www.agrello.io"><img src="http://www.google.com/s2/favicons?domain=https://www.agrello.io" alt=""> <strong>Agrello</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/agrello-delta/">DLT</a>)</sup></sub> - Legally Binding Smart Contracts.<br>
<a href="https://www.ascribe.io/"><img src="http://www.google.com/s2/favicons?domain=https://www.ascribe.io" alt=""> <strong>Ascribe</strong></a> - Decentralized content registry for for artists and creators. Lock in attribution, securely share and trace where your digital work spreads.<br>
<a href="https://binded.com/"><img src="http://www.google.com/s2/favicons?domain=https://binded.com/" alt=""> <strong>Binded</strong></a> - Copyright made simple. The easy way to protect your images.<br>
<a href="https://www.civic.com/"><img src="http://www.google.com/s2/favicons?domain=https://www.civic.com/" alt=""> <strong>Civic</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/civic/">CVC</a>)</sup></sub> - (Universal Digital Identity) A Secured Identity For Everyone. Civic enables people to take control and protect their identity.<br>
<a href="https://www.uport.me/"><img src="http://www.google.com/s2/favicons?domain=https://www.uport.me/" alt=""> <strong>Uport</strong></a> - Open identity system allows users to register their own identity on Ethereum, send and request credentials, sign transactions, and manage keys & data.<br>
<a href="https://www.po.et/"><img src="http://www.google.com/s2/favicons?domain=https://www.po.et/" alt=""> <strong>Po</strong>.et</a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/poet/">POE</a>)</sup></sub> - Decentralized Protocol for content ownership, discovery, and monetization in media.<br>
<a href="https://dock.io/"><img src="http://www.google.com/s2/favicons?domain=https://dock.io/" alt=""> <strong>Dock</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/dock/">DOCK</a>)</sup></sub> - Connect profiles, reputations and networks into one sharable source using blockchain technology.<br>
<a href="https://reddcoin.com/"><img src="http://www.google.com/s2/favicons?domain=https://reddcoin.com/" alt=""> <strong>Reddcoin</strong></a> <sub><sup>(RDD)</sup></sub> - Creating blockchain platform to use personalized IDs for social media tipping, with all data stored safely in the blockchain.<br>
<a href="https://blockstack.org/"><img src="http://www.google.com/s2/favicons?domain=https://blockstack.org/" alt=""> <strong>Blockstack</strong></a> - Platform for decentralized apps where users own their data. A browser is all that’s needed to get started.<br>
<a href="https://www.evernym.com"><img src="http://www.google.com/s2/favicons?domain=https://www.evernym.com" alt=""> <strong>Evernym</strong></a> - Self-Sovereign identity built on top of open source permissioned blockchain.<br>
<a href="https://jolocom.com/"><img src="http://www.google.com/s2/favicons?domain=https://jolocom.com/" alt=""> <strong>Jolocom</strong></a> - Self-sovereing identity app.</p>
<p><a href="#contents"><div align="right"><img src="./img/up.png" alt="Up"></div></a></p>
<h3 id="security-and-authentication">Security and Authentication</h3>
<p> <a href="https://edge.app/"><img src="http://www.google.com/s2/favicons?domain=https://edge.app/" alt=""> <strong>Edge</strong></a> - Multi-Asset Blockchain Wallet and single-signon security platform for blockchain apps.<br>
<a href="https://quantstamp.com/"><img src="http://www.google.com/s2/favicons?domain=https://quantstamp.com/" alt=""> <strong>Quantstamp</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/quantstamp/">QSP</a>)</sup></sub> - Protocol to enable smart contract security for Ethereum's future. Easy web-based, automated smart contract auditing proof-of-concept.<br>
<a href="https://shocard.com/"><img src="http://www.google.com/s2/favicons?domain=https://shocard.com/" alt=""> <strong>ShoCard</strong></a> - Secure Enterprise Identity Authentication</p>
<p><a href="#contents"><div align="right"><img src="./img/up.png" alt="Up"></div></a></p>
<h3 id="asset-tokenization">Asset Tokenization</h3>
<p> <a href="https://www.trusttoken.com/"><img src="http://www.google.com/s2/favicons?domain=https://www.trusttoken.com/" alt=""> <strong>TrustToken</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/trueusd/">TUSD</a>)</sup></sub> - Platform to create asset-backed tokens that you can easily buy and sell around the world.<br>
<a href="https://atlant.io"><img src="http://www.google.com/s2/favicons?domain=https://atlant.io" alt=""> <strong>Atlant.io</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/atlant/">ATL</a>)</sup></sub> - Addressing two of the most pertinent problems in real estate with its decentralized blockchain platform: Tokenized Ownership and global P2P Rentals.</p>
<p><a href="#contents"><div align="right"><img src="./img/up.png" alt="Up"></div></a></p>
<h3 id="database-and-content-distribution">Database and Content Distribution</h3>
<p> <a href="https://ipfs.io/"><img src="http://www.google.com/s2/favicons?domain=https://ipfs.io/" alt=""> <strong>IPFS</strong></a> - (InterPlanetary File System) Hypermedia distribution protocol, addressed by content and identities. Enables the creation of completely distributed applications. It aims to make the web faster, safer, and more open.<br>
<a href="http://swarm-gateways.net/"><img src="http://www.google.com/s2/favicons?domain=http://swarm-gateways.net/" alt=""> <strong>Swarm</strong></a> - The primary objective is to provide a redundant store of Ethereum's public record, store and distribute DAPP code and data.<br>
<a href="https://decent.ch/"><img src="http://www.google.com/s2/favicons?domain=https://decent.ch/" alt=""> <strong>Decent</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/decent/">DCT</a>)</sup></sub> - Blockchain content distribution platform.<br>
<a href="http://maidsafe.net/"><img src="http://www.google.com/s2/favicons?domain=http://maidsafe.net/" alt=""> <strong>Maidsafe</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/maidsafecoin/">MAID</a>)</sup></sub> - SAFE (Secure Access For Everyone) Network, a way to access a world of existing apps where the security of your data is put above all else.<br>
<a href="http://www.synereo.com/"><img src="http://www.google.com/s2/favicons?domain=http://www.synereo.com/" alt=""> <strong>Synereo</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/synereo/">AMP</a>)</sup></sub> - Blockchain content distribution platform with reward system and goal to change the decentralized future of social networking.<br>
<a href="https://gxs.gxb.io/en/"><img src="http://www.google.com/s2/favicons?domain=https://gxs.gxb.io/en/" alt=""> <strong>GXChain</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/gxchain/">GXS</a>)</sup></sub> - Commercialized data marketplace based on blockchain.<br>
<a href="https://www.bigchaindb.com/"><img src="http://www.google.com/s2/favicons?domain=https://www.bigchaindb.com/" alt=""> <strong>BigchainDB</strong></a> - Data storage and built-in asset support, is like a database with blockchain characteristics.</p>
<p><a href="#contents"><div align="right"><img src="./img/up.png" alt="Up"></div></a></p>
<h3 id="cloud-computing">Cloud Computing</h3>
<p> <a href="https://iex.ec/"><img src="http://www.google.com/s2/favicons?domain=https://iex.ec/" alt=""> <strong>iExec</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/rlc/">RLC</a>)</sup></sub> - Blockchain-Based Decentralized Cloud Computing.<br>
<a href="https://golem.network/"><img src="http://www.google.com/s2/favicons?domain=https://golem.network/" alt=""> <strong>Golem</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/golem-network-tokens/">GNT</a>)</sup></sub> - It's made up of the combined power of user's machines, from personal laptops to entire datacenters. Creates a global market for idle computer power.<br>
<a href="https://aelf.io/"><img src="http://www.google.com/s2/favicons?domain=https://aelf.io/" alt=""> <strong>aelf</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/aelf/">ELF</a>)</sup></sub> - Decentralized Cloud Computing Blockchain Network.<br>
<a href="https://dfinity.org/"><img src="http://www.google.com/s2/favicons?domain=https://dfinity.org/" alt=""> <strong>Dfinity</strong></a> - High performance decentralized cloud compute network that hosts EVM smart contracts.</p>
<br>
<h3 id="storage">Storage</h3>
<p> <a href="https://storj.io/"><img src="http://www.google.com/s2/favicons?domain=https://storj.io/" alt=""> <strong>Storj</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/storj/">STORJ</a>)</sup></sub> - Decentralized blockchain, peer-to-peer protocols and encrypted cloud storage.<br>
<a href="http://sia.tech/"><img src="http://www.google.com/s2/favicons?domain=http://sia.tech/" alt=""> <strong>Sia</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/siacoin/">SC</a>)</sup></sub> - Enterprise-Grade collaborative cloud for data storage.<br>
<a href="https://filecoin.io/"><img src="http://www.google.com/s2/favicons?domain=https://filecoin.io/" alt=""> <strong>Filecoin</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/filecoin/">FIL</a>)</sup></sub> - Decentralized storage network.</p>
<p><a href="#contents"><div align="right"><img src="./img/up.png" alt="Up"></div></a></p>
<h3 id="iot">IoT</h3>
<p> <a href="https://www.iota.org/"><img src="https://awebanalysis.com/img/coins/16/iota.png" alt=""> <strong>Iota</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/iota/">MIOTA</a>)</sup></sub> - Distributed ledger for the Internet of Things. The fuel for microtransactions machine-to-machine (M2M), without fees as well as secure data transfer. Tangle.<br>
<a href="http://taraxa.io/"><img src="http://www.google.com/s2/favicons?domain=http://taraxa.io/" alt=""> <strong>Taraxa</strong></a> - Aims to “democratize Internet-of-Things (IoT)” data.<br>
<a href="http://www.toschain.org/"><img src="http://www.google.com/s2/favicons?domain=http://www.toschain.org/" alt=""> <strong>Tos</strong></a> - Decentralization layered block network technology based on SDAG for the IOT.<br>
<a href="https://nucleus.vision/"><img src="http://www.google.com/s2/favicons?domain=https://nucleus.vision/" alt=""> <strong>Nucleus Vision</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/nucleus-vision/">NCASH</a>)</sup></sub> - IoT & blockchain based, contactless identification system, using NCASH cryptocurrency to enable transactions across retail ecosystem.<br>
<a href="https://slock.it/"><img src="http://www.google.com/s2/favicons?domain=https://slock.it/" alt=""> <strong>Slock.it</strong></a> - Ethereum-based platform for building shared things.</p>
<br>
<h3 id="supply-chain-and-logistics">Supply Chain and logistics</h3>
<p> <a href="https://www.vechain.com/"><img src="http://www.google.com/s2/favicons?domain=https://www.vechain.com/" alt=""> <strong>Vechain</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/vechain/">VEN</a>)</sup></sub> - Blockchain-as-a-service. Platform for products and information.<br>
<a href="https://origintrail.io/"><img src="http://www.google.com/s2/favicons?domain=https://origintrail.io/" alt=""> <strong>OriginTrail</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/origintrail/">TRAC</a>)</sup></sub> - Blockchain-Powered data exchange protocol for interconnected supply chains.<br>
<a href="http://www.chronicled.com/"><img src="http://www.google.com/s2/favicons?domain=http://www.chronicled.com/" alt=""> <strong>Chronicled</strong></a> - Link any physical product to its digital identity on a blockchain.<br>
<a href="https://www.wacoin.io/"><img src="http://www.google.com/s2/favicons?domain=https://www.wacoin.io/" alt=""> <strong>Wabi</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/wabi/">WABI</a>)</sup></sub> - Digital token backed by safe products. By scanning the secure anti-counterfeit labels, consumers are guaranteed product authenticity and rewarded through a loyalty system.<br>
<a href="https://modum.io/"><img src="http://www.google.com/s2/favicons?domain=https://modum.io/" alt=""> <strong>Modum</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/modum/">MOD</a>)</sup></sub> - Data integrity for supply chain operations, powered by blockchain technology.<br>
<a href="https://www.waltonchain.org/"><img src="http://www.google.com/s2/favicons?domain=https://www.waltonchain.org/" alt=""> <strong>WaltonChain</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/waltonchain/">WTC</a>)</sup></sub> - Combines blockchain with IoT (specifically RFID) to create a management system for supply chains.<br>
<a href="https://ambrosus.com/"><img src="http://www.google.com/s2/favicons?domain=https://ambrosus.com/" alt=""> <strong>Ambrosus</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/amber/">AMB</a>)</sup></sub> - Blockchain-powered IoT network for food and pharmaceutical enterprises, enabling secure and frictionless dialogue between sensors, distributed ledgers and databases to optimise supply chain visibility and quality assurance.</p>
<p><a href="#contents"><div align="right"><img src="./img/up.png" alt="Up"></div></a></p>
<h3 id="data-analysis-ai">Data Analysis, AI</h3>
<p> <a href="https://gnosis.pm/"><img src="https://awebanalysis.com/img/coins/16/gnosis-gno.png" alt=""> <strong>Gnosis</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/gnosis-gno/">GNO</a>)</sup></sub> - Market-driven forecasting technology to let you shape the future.<br>
<a href="http://www.idni.org/"><img src="http://www.google.com/s2/favicons?domain=http://www.idni.org/" alt=""> <strong>TauChain</strong></a> - Decentralized blockchain network intended to solve the bottlenecks inherent in large scale human communication and accelerate productivity in human collaboration using logic based Artificial Intelligence.<br>
<a href="https://fysical.org/"><img src="http://www.google.com/s2/favicons?domain=https://fysical.org/" alt=""> <strong>FYSICAL</strong></a> <sub><sup>(FYS)</sup></sub> - Infrastructure for the location data market protocol; foot traffic sensor readings, store visit information, commute routes.<br>
<a href="http://www.cortexlabs.ai/"><img src="http://www.google.com/s2/favicons?domain=http://www.cortexlabs.ai/" alt=""> <strong>Cortex</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/cortex/">CTXC</a>)</sup></sub> - Decentralized AI Autonomous System. Allows users to write machine-learning programs on the blockchain and submit interactions that are dependent upon other contracts.</p>
<p><a href="#contents"><div align="right"><img src="./img/up.png" alt="Up"></div></a></p>
<h3 id="marketing-advertisements-and-brand-loyalty">Marketing, Advertisements and Brand Loyalty</h3>
<p> <a href="http://data.eco/"><img src="http://www.google.com/s2/favicons?domain=http://data.eco/" alt=""> <strong>Data</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/data/">DTA</a>)</sup></sub> - Aims to create a decentralized, AI-powered trust alliance for the digital advertising industry.<br>
<a href="http://loyyal.com/"><img src="http://www.google.com/s2/favicons?domain=http://loyyal.com/" alt=""> <strong>Loyyal</strong></a> - Universal loyalty and rewards platform.<br>
<a href="https://basicattentiontoken.org/"><img src="http://www.google.com/s2/favicons?domain=https://basicattentiontoken.org/" alt=""> <strong>Brave</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/basic-attention-token/">BAT</a>)</sup></sub> - Blockchain-based digital advertising. It has its own browser, Brave.<br>
<a href="https://woonkly.com"><img src="http://www.google.com/s2/favicons?domain=https://woonkly.com" alt=""> <strong>Woonkly</strong></a> - Connects advertisers and their audience without intermediaries. Earn money by watching, sharing and interacting with digital content.<br>
<a href="https://kindads.io/"><img src="http://www.google.com/s2/favicons?domain=https://kindads.io/" alt=""> <strong>Kindads</strong></a> - Kind Ads is an advertising platform that serves user-friendly ads without taking any middleman fees.<br>
<a href="https://www.stormx.io/"><img src="http://www.google.com/s2/favicons?domain=https://www.stormx.io/" alt=""> <strong>Storm</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/storm/">STORM</a>)</sup></sub> - Storm’s gamified microtask platform creates opportunities for people around the world to earn cryptocurrency rewards.</p>
<p><a href="#contents"><div align="right"><img src="./img/up.png" alt="Up"></div></a></p>
<h3 id="social-media">Social Media</h3>
<p> <a href="https://steem.io/"><img src="http://www.google.com/s2/favicons?domain=https://steem.io/" alt=""> <strong>Steem</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/steem/">STEEM</a>)</sup></sub> - Blockchain-based social media platform with reward system.<br>
<a href="https://viuly.com/"><img src="http://www.google.com/s2/favicons?domain=https://viuly.com/" alt=""> <strong>viuly</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/viuly/">VIU</a>)</sup></sub> - Decentralized video sharing platform where authors and users rewarded for doing things they love.<br>
<a href="https://d.tube/"><img src="http://www.google.com/s2/favicons?domain=https://d.tube/" alt=""> <strong>Dtube</strong></a> - Decentralized streaming video platform linked to Steemit which allows users to upload videos easily get rewards via the upvotes or likes on their post.<br>
<a href="https://www.thetatoken.org/"><img src="http://www.google.com/s2/favicons?domain=https://www.thetatoken.org/" alt=""> <strong>Theta</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/theta-token/">THETA</a>)</sup></sub> - Decentralized video delivery network, powered by users and an innovative new blockchain.<br>
<a href="https://lino.network/"><img src="http://www.google.com/s2/favicons?domain=https://lino.network/" alt=""> <strong>Lino Network</strong></a> <sub><sup>(?)</sup></sub> - Decentralized Autonomous Video Content Economy.<br>
<a href="https://www.minds.com/"><img src="http://www.google.com/s2/favicons?domain=https://www.minds.com/" alt=""> <strong>Minds</strong></a> - Open source and decentralized platform for Internet freedom. Get paid in crypto for your contributions to the community.<br>
<a href="https://www.suchapp.io/"><img src="http://www.google.com/s2/favicons?domain=https://www.suchapp.io/" alt=""> <strong>Suchapp</strong></a> <sub><sup>(SPS)</sup></sub> - Combines best-of-class messaging with the power of a social network. Group administrators can manage their own custom loyalty program based on our SPS Token.<br>
<a href="https://www.yoyow.org/"><img src="http://www.google.com/s2/favicons?domain=https://www.yoyow.org/" alt=""> <strong>YOYOW</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/yoyow/">YOYOW</a>)</sup></sub> - Blockchain based content value network.<br>
<a href="https://mith.io/"><img src="http://www.google.com/s2/favicons?domain=https://mith.io/" alt=""> <strong>Mithril</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/mithril/">MITH</a>)</sup></sub> - Decentralized social media platform that rewards all content creators.<br>
<a href="https://colony.io/"><img src="http://www.google.com/s2/favicons?domain=https://colony.io/" alt=""> <strong>Colony</strong></a> - Platform for open organizations.</p>
<p><a href="#contents"><div align="right"><img src="./img/up.png" alt="Up"></div></a></p>
<h3 id="web-browsers">Web Browsers</h3>
<p> <a href="https://brave.com/"><img src="http://www.google.com/s2/favicons?domain=https://brave.com/" alt=""> <strong>Brave</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/basic-attention-token/">BAT</a>)</sup></sub> - Features blockchain-based tokens which can be used to reward content creators.<br>
<a href="https://www.bitclave.com/"><img src="http://www.google.com/s2/favicons?domain=https://www.bitclave.com/" alt=""> <strong>BitClave</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/bitclave/">CAT</a>)</sup></sub> - Helps to get value from your search data.<br>
<a href="https://www.presearch.org/signup?rid=190778"><img src="http://www.google.com/s2/favicons?domain=https://www.presearch.io/" alt=""> <strong>PreSearch</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/presearch/">PRE</a>)</sup></sub> - Decentralized search engine powered by the community.<br>
<a href="https://status.im/"><img src="http://www.google.com/s2/favicons?domain=https://status.im/" alt=""> <strong>Status</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/status/">SNT</a>)</sup></sub> - Mobile Ethereum OS. Browse, chat and make payments on the decentralized web. The Ethereum discovery tool.</p>
<p><a href="#contents"><div align="right"><img src="./img/up.png" alt="Up"></div></a></p>
<h3 id="gaming-and-virtual-reality">Gaming and Virtual Reality</h3>
<p> <a href="https://www.enjin.com/"><img src="http://www.google.com/s2/favicons?domain=https://www.enjin.com/" alt=""> <strong>Enjin</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/enjin-coin/">ENJ</a>)</sup></sub> - Smart cryptocurrency for gaming (ENJ), fueling a blockchain game development platform.<br>
<a href="https://decentraland.org/"><img src="http://www.google.com/s2/favicons?domain=https://decentraland.org/" alt=""> <strong>Decentraland</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/decentraland/">MANA</a>)</sup></sub> - Virtual reality platform powered by the Ethereum blockchain. Users can create, experience, and monetize content and applications.<br>
<a href="https://loomx.io/"><img src="http://www.google.com/s2/favicons?domain=https://loomx.io/" alt=""> <strong>Loom</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/loom-network/">LOOM</a>)</sup></sub> - DApp scaling solution for Ethereum, focused on large-scale online games and social apps.<br>
<a href="https://game.com/"><img src="http://www.google.com/s2/favicons?domain=https://game.com/" alt=""> <strong>Game.com</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/game/">GTC</a>)</sup></sub> - Creating a global gaming and entertainment platform for blockchain digital currencies.<br>
<a href="https://funfair.io/"><img src="http://www.google.com/s2/favicons?domain=https://funfair.io/" alt=""> <strong>Funfair</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/funfair/">FUN</a>)</sup></sub> - Provides blockchain powered solutions to the online gaming industry.<br>
<a href="https://firstblood.io/"><img src="http://www.google.com/s2/favicons?domain=https://firstblood.io/" alt=""> <strong>FirstBlood</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/firstblood/">1ST</a>)</sup></sub> - Blockchain powered e-sports platform that allows players to challenge each other and win rewards.</p>
<p><a href="#contents"><div align="right"><img src="./img/up.png" alt="Up"></div></a></p>
<h3 id="merchant-and-e-commerce-solutions">Merchant and E-commerce Solutions</h3>
<p> <a href="https://pundix.com/"><img src="http://www.google.com/s2/favicons?domain=https://pundix.com/" alt=""> <strong>PundiX</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/pundi-x/">NPXS</a>)</sup></sub> - Payment & merchant Solutions. POS.<br>
<a href="https://www.cybermiles.io/"><img src="http://www.google.com/s2/favicons?domain=https://www.cybermiles.io/" alt=""> <strong>CyberMiles</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/cybermiles/">CMT</a>)</sup></sub> - Customized smart contracts for e-commerce companies to deploy their business on the Blockchain with ease.<br>
<a href="https://www.shping.com/"><img src="http://www.google.com/s2/favicons?domain=https://www.shping.com/" alt=""> <strong>Shping</strong></a> - Competing with Amazon by tokenizing shopping, and rewards you just for using it.<br>
<a href="https://www.iconomi.net/"><img src="http://www.google.com/s2/favicons?domain=https://www.iconomi.net/" alt=""> <strong>Iconomi</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/iconomi/">ICN</a>)</sup></sub> - Global digital asset management platform based on Ethereum technology; where DAA managers and investors meet.</p>
<p><a href="#contents"><div align="right"><img src="./img/up.png" alt="Up"></div></a></p>
<h3 id="blockchain-based-marketplaces">Blockchain based Marketplaces</h3>
<p> <a href="http://lbry.io/"><img src="http://www.google.com/s2/favicons?domain=http://lbry.io/" alt=""> <strong>Lbry</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/library-credit/">LBC</a>)</sup></sub> - Watch, read, and play in a decentralized digital library controlled by the community.<br>
<a href="https://openbazaar.org/"><img src="http://www.google.com/s2/favicons?domain=https://openbazaar.org/" alt=""> <strong>Open Bazaar</strong></a> - Open source, decentralized marketplace for peer-to-peer commerce using cryptocurrency. No platform fees.<br>
<a href="https://district0x.io/"><img src="http://www.google.com/s2/favicons?domain=https://district0x.io/" alt=""> <strong>distric0x</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/district0x/">DNT</a>)</sup></sub> - Network of decentralized markets <strong>and communities.</strong> Create, operate, and govern. Powered by Ethereum, Aragon, and IPFS.<br>
<a href="https://app.purse.io/?_r=gPBUzH"><img src="http://www.google.com/s2/favicons?domain=https://app.purse.io/" alt=""> <strong>Purse</strong></a> - Purse allows users to name their own discount when shopping any product on Amazon by matching shoppers with earners- individuals who wish to exchange their Amazon gift cards for Bitcoin!</p>
<p><a href="#contents"><div align="right"><img src="./img/up.png" alt="Up"></div></a></p>
<h3 id="electronics">Electronics</h3>
<p> <a href="https://sirinlabs.com/"><img src="http://www.google.com/s2/favicons?domain=https://sirinlabs.com/" alt=""> <strong>Sirin Labs</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/sirin-labs-token/">SRN</a>)</sup></sub> - Devices form an independent blockchain network.</p>
<h3 id="energy">Energy</h3>
<p> <a href="https://powerledger.io/"><img src="http://www.google.com/s2/favicons?domain=https://powerledger.io/" alt=""> <strong>Power Ledger</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/power-ledger/">POWR</a>)</sup></sub> - Peer-to-peer marketplace for renewable energy.<br>
<a href="https://solarcoin.org/"><img src="http://www.google.com/s2/favicons?domain=https://solarcoin.org/" alt=""> <strong>Solarcoin</strong></a> <sub><sup>(<a href="https://coinmarketcap.com/es/currencies/solarcoin/">SLR</a>)</sup></sub> - Global rewards program for solar electricity generation.<br>
<a href="http://gridsingularity.com/"><img src="http://www.google.com/s2/favicons?domain=http://gridsingularity.com/" alt=""> <strong>GridSingularity</strong></a> - Open, decentralised energy data exchange platform.</p>
<p><a href="#contents"><div align="right"><img src="./img/up.png" alt="Up"></div></a>
<br></p>
<h2 id="exchange-and-trading">Exchange and Trading</h2>
<h3 id="fiatcrypto-exchanges">FIAT↔Crypto Exchanges</h3>
<!-- ![P2P](./img/exchange256.png) -->
<p>In the following exchanges we can Buy <img src="./img/buy.png" alt="Buy" title="Buy with FIAT"> / Sell <img src="./img/sell.png" alt="Sell" title="Exchange crypto into FIAT"> Digital Currencies.</p>
<p>Some also allow exchange crypto↔crypto <img src="./img/exchange.png" alt="Exchange" title="Exchange available"> and trading <img src="./img/trading.png" alt="Trading" title="Trading available"> features.</p>
<pre><code><div># HomePage - CountryFlag - Langs|Currencies|Markets|PaymentMethods - Exchange Features - Some links
"Slogan "
</div></code></pre>
<br>
<!-- Coinbase -->
<p><a href="https://www.coinbase.com/join/5a5f62e4501844015bb4bfb5"><img src="http://www.google.com/s2/favicons?domain=https://www.coinbase.com/" alt=""> <strong>Coinbase</strong></a>
<img src="http://www.countryflags.io/US/shiny/16.png" alt="" title="San Francisco, CA, United States; since 2012"> <a href="https://www.coinbase.com/">▾</a>
<img src="./img/language.png" alt="Languages" title="Languages: English">
<img src="./img/currency.png" alt="Currencies" title="Currencies: EUR, GBP, USD, CAD, SGD, AUD">
<a href="https://coinmarketcap.com/exchanges/gdax/"><img src="./img/cmcap.png" alt="CoinMarketCap" title="CoinMarketCap: gdax.com (Exchange)"></a>
<img src="./img/payment.png" alt="Payment Methods" title="Credit/Debit Card, Bank Account, Wire Transfer, S€PA">
-
<img src="./img/buy.png" alt="Buy" title="Buy with FIAT available">
<img src="./img/sell.png" alt="Sell" title="Exchange crypto into FIAT available">
<a href="https://www.gdax.com/"><img src="./img/exchange.png" alt="Exchange" title="Exchange crypto-crypto: www.gdax.com"></a>
<a href="https://www.gdax.com/"><img src="./img/trading.png" alt="Trading" title="Trading: www.gdax.com"></a>
<a href="https://support.coinbase.com/customer/en/portal/articles/2228646-the-shift-card"><img src="./img/cards.png" alt="Card" title="Coinbase Shift Card, VISA debit card (Only U.S.)"></a>
<a href="https://commerce.coinbase.com/"><img src="./img/merchant.png" alt="Merchant" title="Coinbase commerce: Accept digital currency payments"></a>
<a href="https://custody.coinbase.com/"><img src="./img/vault.png" alt="Vault" title="Custody Services"></a>
-
<a href="https://support.coinbase.com/customer/en/portal/articles/2109597-coinbase-pricing-fees-disclosures"><img src="./img/fees.png" alt="Fees" title="fees"></a>
<a href="https://itunes.apple.com/us/app/coinbase-bitcoin-wallet/id886427730?mt=8"><img src="./img/app-store.png" alt="iOS app" title="iOS app"></a>
<a href="https://play.google.com/store/apps/details?id=com.coinbase.android&hl=en"><img src="./img/google-play.png" alt="Android app" title="Android app"></a>
<a href="https://twitter.com/coinbase"><img src="./img/twitter.png" alt="Twitter" title="Twitter"></a>
<a href="https://www.reddit.com/r/CoinBase/"><img src="./img/reddit.png" alt="reddit" title="reddit"></a>
<a href="https://github.com/coinbase"><img src="./img/github.png" alt="GitHub" title="GitHub"></a>
<a href="https://developers.coinbase.com/"><img src="./img/api.png" alt="API" title="API"></a>
<a href="https://www.coinbase.com/careers"><img src="./img/careers.png" alt="Careers" title="Careers"></a>
<a href="https://www.coinbase.com/whitehat"><img src="./img/bounty.png" alt="Bug Bounty" title="Bug Bounty: The minimum payout is $100 USD"></a>
<a href="https://www.coinbase.com/join/5a5f62e4501844015bb4bfb5"><img src="./img/promo.png" alt="Promo" title="Register: Get 10$ free credit"></a><br>
"Buy and sell digital currency"</p>
<!-- Changelly -->
<p><a href="https://changelly.com/?ref_id=f6ec7f14fb0d"><img src="http://www.google.com/s2/favicons?domain=https://www.changelly.com" alt=""> <strong>Changelly</strong></a>
<img src="./img/incognito.png" alt="Anonymous" title="No need for KYC (email only)">
<img src="http://www.countryflags.io/CZ/shiny/16.png" alt="" title="Prague, Czech Republic"> <a href="https://changelly.com">▾</a>
<img src="./img/language.png" alt="Languages" title="A lot of languages">
<img src="./img/currency.png" alt="Currencies" title="Currencies: EUR, USD">
<img src="./img/payment.png" alt="Payment Methods" title="Credit/Debit Card (Visa/MasterCard)">
-
<img src="./img/buy.png" alt="Buy" title="Buy with FIAT available">
<a href="https://changelly.com/?ref_id=f6ec7f14fb0d"><img src="./img/exchange.png" alt="Exchange" title="Exchange crypto-crypto: changelly.com"></a>
-
<a href="https://payments.changelly.com/"><img src="./img/fees.png" alt="Fees" title="fees"></a>
<a href="https://twitter.com/changelly_team"><img src="./img/twitter.png" alt="Twitter" title="Twitter"></a>
<a href="https://www.reddit.com/r/Changelly/"><img src="./img/reddit.png" alt="reddit" title="reddit"></a>
<a href="https://github.com/changelly"><img src="./img/github.png" alt="GitHub" title="GitHub"></a>
<a href="https://www.linkedin.com/company/changelly"><img src="./img/linkedin.png" alt="Linkedin" title="Linkedin"></a>
<a href="https://changelly.com/developers"><img src="./img/api.png" alt="API" title="API"></a><br>
"Transfer from one wallet to another within seconds. It's that simple"</p>
<!-- CEX -->
<p><a href="https://cex.io/r/0/up120089788/0/"><img src="http://www.google.com/s2/favicons?domain=https://www.cex.io" alt=""> <strong>CEX</strong></a>
<img src="http://www.countryflags.io/GB/shiny/16.png" alt="" title="United Kingdom"> <a href="https://cex.io">▾</a>
<img src="./img/language.png" alt="Languages" title="Russian, Chinese, Italiano, Portugues, Español">
<img src="./img/currency.png" alt="Currencies" title="Currencies: USD, EUR, GBP, RUB">
<a href="https://coinmarketcap.com/exchanges/cex-io/"><img src="./img/cmcap.png" alt="CoinMarketCap" title="CoinMarketCap: cex.io"></a>
<img src="./img/payment.png" alt="Payment Methods" title="Visa, MasterCard, Bank Transfer (SWIFT, S€PA)">
-
<img src="./img/buy.png" alt="Buy" title="Buy with FIAT available">
<img src="./img/sell.png" alt="Sell" title="Exchange crypto into FIAT available">
<a href="https://cex.io/r/0/up120089788/0/"><img src="./img/exchange.png" alt="Exchange" title="Exchange crypto-crypto: cex.io"></a>
<a href="https://cex.io/r/0/up120089788/0/"><img src="./img/trading.png" alt="Trading" title="Trading available: more info in Trading Platforms section"></a>
-
<a href="https://cex.io/fee-schedule"><img src="./img/fees.png" alt="Fees" title="fees"></a>
<a href="https://play.google.com/store/apps/details?id=io.cex.app.prod"><img src="./img/app-store.png" alt="iOS app" title="iOS app"></a>
<a href="https://cex.io/mobile"><img src="./img/google-play.png" alt="Android app" title="Android app"></a>
<a href="https://twitter.com/cex_io"><img src="./img/twitter.png" alt="Twitter" title="Twitter"></a>
<a href="https://www.reddit.com/r/cexio/"><img src="./img/reddit.png" alt="reddit" title="reddit"></a>
<a href="https://www.linkedin.com/company/cex-io/"><img src="./img/linkedin.png" alt="Linkedin" title="Linkedin"></a>
<a href="https://cex.io/cex-api"><img src="./img/api.png" alt="API" title="API"></a><br>
"Bitcoin Exchange and Bitcoin trading. WORLD COVERAGE: Providing services in 99% countries around the globe, including 24 states of USA"</p>
<!-- Coinmama -->
<p><a href="http://go.coinmama.com/visit/?bta=51851&nci=5343"><img src="http://www.google.com/s2/favicons?domain=https://www.coinmama.com" alt=""> <strong>Coinmama</strong></a>
<img src="http://www.countryflags.io/SK/shiny/16.png" alt="" title="Bratislava, Slovakia; since 2013"> <a href="https://www.coinmama.com">▾</a>
<img src="./img/language.png" alt="Languages" title="English">
<img src="./img/currency.png" alt="Currencies" title="Currencies: USD, EUR">
<img src="./img/payment.png" alt="Payment Methods" title="Credit or Debit card VISA, MasterCard">
-
<img src="./img/buy.png" alt="Buy" title="Buy with FIAT available">
<img src="./img/sell.png" alt="Sell" title="Exchange crypto into FIAT available">
-
<a href="https://support.coinmama.com/hc/en-us/articles/213577065-Fees-and-charges"><img src="./img/fees.png" alt="Fees" title="fees"></a>
<a href="https://twitter.com/Coinmamacom"><img src="./img/twitter.png" alt="Twitter" title="Twitter"></a>
<a href="https://www.reddit.com/user/coinmama"><img src="./img/reddit.png" alt="reddit" title="reddit"></a>
<a href="https://www.newbitventures.com/careers"><img src="./img/careers.png" alt="Careers" title="Careers"></a><br>
"The easiest, fastest, safest way to buy crypto with credit card"</p>
<!-- Bit2Me -->
<p><a href="https://bit2me.com/?r=By5f3OxWX"><img src="http://www.google.com/s2/favicons?domain=https://www.bit2me.com" alt=""> <strong>Bit2Me</strong></a>
<img src="http://www.countryflags.io/ES/shiny/16.png" alt="" title="Alicante, Spain; since 2014"> <a href="https://bit2me.com">▾</a>
<img src="./img/language.png" alt="Languages" title="English, Français, Italiano, Português">
<img src="./img/currency.png" alt="Currencies" title="Currencies: EUR. More than 100 currencies, from all over the world, Tikebit">
<img src="./img/payment.png" alt="Payment Methods" title="Bank Transfer, Credit/Debit Card VISA, Mastercard. Tikebit">
-
<img src="./img/buy.png" alt="Buy" title="Buy with FIAT available">
<img src="./img/sell.png" alt="Sell" title="Exchange crypto into FIAT available">
-
<a href="https://bit2me.com/comisiones"><img src="./img/fees.png" alt="Fees" title="fees"></a>
<a href="https://itunes.apple.com/US/app/id985499897?mt=8"><img src="./img/app-store.png" alt="iOS app" title="iOS app"></a>
<a href="https://play.google.com/store/apps/details?id=com.phonegap.bit2me"><img src="./img/google-play.png" alt="Android app" title="Android app"></a>
<a href="https://twitter.com/bit2me"><img src="./img/twitter.png" alt="Twitter" title="Twitter"></a>
<a href="https://www.linkedin.com/company/9243641"><img src="./img/linkedin.png" alt="Linkedin" title="Linkedin"></a><br>
"Buying and Selling #bitcoin was never that easier. Do it now with bit2me"</p>
<!-- bisq -->
<p><a href="https://bisq.network/"><img src="http://www.google.com/s2/favicons?domain=https://bisq.network/" alt=""> <strong>bisq</strong></a>
<img src="./img/incognito.png" alt="Anonymous" title="Private: no one except trading partners exchange personally identifying data. All personal data is stored locally">
<img src="./img/dex.png" alt="Dex" title="DEX (Decentralized Exchange)"> ▾
<img src="./img/language.png" alt="Languages" title="English">
<a href="https://bisq.network/faq/"><img src="./img/currency.png" alt="Currencies" title="Currencies: multicurrency and multiple payment methods **including FIAT**"></a>
<a href="https://coinmarketcap.com/es/exchanges/bisq/"><img src="./img/cmcap.png" alt="CoinMarketCap" title="CoinMarketCap"></a>
<img src="./img/payment.png" alt="Payment Methods" title="National bank transfer
Cash Deposit
SEPA
SEPA Instant
MoneyBeam (N26)
Zelle (formerly known as clearXchange)
Chase QuickPay
Uphold
Cash App
Venmo
Popmoney
Revolut
Faster Payments
US Postal Money Order
Interac e-Transfer
Swish
Western Union
OKPay
Perfect Money
Alipay
Transfer with same bank
Transfer with specific banks">
-
<img src="./img/p2p-logo.png" alt="P2P" title="P2P platform">
<img src="./img/buy.png" alt="Buy" title="Buy with FIAT available">
<img src="./img/sell.png" alt="Sell" title="Sell for FIAT available">
<img src="./img/secure.png" alt="Security" title="Secure – end-to-end encrypted communication routed over Tor">
-
<a href="https://bisq.network/faq/"><img src="./img/fees.png" alt="Fees" title="fees"></a>
<a href="https://twitter.com/bitsquare_"><img src="./img/twitter.png" alt="Twitter" title="Twitter"></a>
<a href="https://www.reddit.com/r/bisq"><img src="./img/reddit.png" alt="reddit" title="reddit"></a>
<a href="https://github.com/bisq-network"><img src="./img/github.png" alt="GitHub" title="GitHub"></a>
<a href="https://forum.bitsquare.io/t/bitsquare-bounties-rule-set-and-overview/220"><img src="./img/bounty.png" alt="Bug Bounty" title="Bounty program"></a><br>
"The P2P decentralized exchange network. Open-source desktop application to buy and sell bitcoins"</p>
<!-- uphold -->
<p><a href="https://uphold.com/"><img src="http://www.google.com/s2/favicons?domain=https://www.uphold.com/" alt=""> <strong>uphold</strong></a>
<img src="http://www.countryflags.io/US/shiny/16.png" alt="" title="San Francisco, California, United States; since 2015"> ▾
<img src="./img/language.png" alt="Languages" title="English, Español, Português">
<img src="./img/currency.png" alt="Currencies" title="Currencies: USD, EUR, ARS, AUD, BRL, GBP, CAD, CNY, CKK, XAU, HKD, INR, ILS, JPY, KES, MXN, and more...">
<img src="./img/payment.png" alt="Payment Methods" title="Bank transfer, S€PA, Credit/Debit Card, Union Pay">
-
<img src="./img/buy.png" alt="Buy" title="Buy with FIAT available">
<img src="./img/sell.png" alt="Sell" title="Exchange crypto into FIAT available">
<img src="./img/exchange.png" alt="Exchange" title="Exchange crypto-crypto">
<img src="./img/wallet.png" alt="Wallet" title="Virtual wallet with MasterCard, Regulated">
-
<a href="https://uphold.com/en/pricing"><img src="./img/fees.png" alt="Fees" title="fees"></a>
<a href="https://itunes.apple.com/us/app/uphold-the-internet-of-money/id1101145849?mt=8"><img src="./img/app-store.png" alt="iOS app" title="iOS app"></a>
<a href="https://play.google.com/store/apps/details?id=com.uphold.wallet"><img src="./img/google-play.png" alt="Android app" title="Android app"></a>
<a href="https://twitter.com/UpholdInc"><img src="./img/twitter.png" alt="Twitter" title="Twitter"></a>
<a href="https://github.com/uphold"><img src="./img/github.png" alt="GitHub" title="GitHub"></a>
<a href="https://www.linkedin.com/company/upholdinc"><img src="./img/linkedin.png" alt="Linkedin" title="Linkedin"></a>
<a href="https://uphold.com/en/developer/api"><img src="./img/api.png" alt="API" title="API"></a>
<a href="https://uphold.com/en/what-we-do/developers"><img src="./img/api.png" alt="API" title="API"></a>
<a href="https://uphold.com/en/about-us/careers"><img src="./img/careers.png" alt="Careers" title="Careers"></a><br>
"From Dollar to Bitcoin in seconds. Digitizing money, providing instant & secure #financial services. Serving 184 countries, 30+ currencies"</p>
<!-- bitpanda -->
<p><a href="https://web.bitpanda.com/user/register/397131997122834300"><img src="http://www.google.com/s2/favicons?domain=https://www.bitpanda.com/" alt=""> <strong>bitpanda</strong></a>
<img src="http://www.countryflags.io/AT/shiny/16.png" alt="" title="Vienna, Austria"> <a href="https://www.bitpanda.com/">▾</a>
<img src="./img/language.png" alt="Languages" title="English, Deutsch">
<img src="./img/currency.png" alt="Currencies" title="Currencies: EUR, CHF, USD, GPB">
<img src="./img/payment.png" alt="Payment Methods" title="Credit Card Visa/Mastercard, SOFORT-Transfer, NETELLER, Skrill, GIROPAY / EPS, Amazon.de Voucher, Euro Wallet and Bank Transfer swift/S€PA">
-
<img src="./img/buy.png" alt="Buy" title="Buy with FIAT available">
<img src="./img/sell.png" alt="Sell" title="Exchange crypto into FIAT available">
<img src="./img/exchange.png" alt="Exchange" title="Exchange crypto-crypto">
-
<a href="https://www.bitpanda.com/en/limits"><img src="./img/fees.png" alt="Fees" title="fees"></a>
<a href="https://www.twitter.com/bitpanda"><img src="./img/twitter.png" alt="Twitter" title="Twitter"></a>
<a href="https://www.reddit.com/r/bitpanda/"><img src="./img/reddit.png" alt="reddit" title="reddit"></a>
<a href="https://github.com/bitpanda-labs"><img src="./img/github.png" alt="GitHub" title="GitHub"></a>
<a href="https://jobs.lever.co/bitpanda"><img src="./img/careers.png" alt="Careers" title="Careers"></a><br>
"Europe’s leading retail exchange for buying and selling cryptocurrencies like Bitcoin, Ethereum, Ripple and more. Fast, secure and 24/7"</p>
<!-- XCOINS -->
<p><a href="https://xcoins.io/?r=v8r4ja"><img src="http://www.google.com/s2/favicons?domain=https://www.xcoins.io" alt=""> <strong>XCOINS</strong></a>
<img src="http://www.countryflags.io/US/shiny/16.png" alt="" title="Santa Monica, California, United States; since August 2016"> <a href="https://xcoins.io/">▾</a>
<img src="./img/language.png" alt="Languages" title="English">
<img src="./img/currency.png" alt="Currencies" title="Currencies: USD">
<img src="./img/payment.png" alt="Payment Methods" title="Major credit cards: Visa, MasterCard, American Express, and Discover; Debit cards; **PayPal**, Bank Transfer, Bank account (ACH), eCheck">
<img src="./img/paypal.png" alt="PayPal" title="PayPal Accepted">
-
<img src="./img/p2p-logo.png" alt="P2P" title="P2P Lending system">
<img src="./img/buy.png" alt="Buy" title="Buy with FIAT available">
<img src="./img/sell.png" alt="Sell" title="Exchange crypto into FIAT available">
-
<a href="https://xcoins.io/faq"><img src="./img/fees.png" alt="Fees" title="fees"></a>
<a href="https://twitter.com/xcoins_io"><img src="./img/twitter.png" alt="Twitter" title="Twitter"></a><br>
"Get bitcoin with credit card quickly at xCoins! Fast approval for new users, instant for repeat clients. Visa, MasterCard, and <strong>PayPal</strong> are accepted"</p>
<!-- Bitstamp -->
<p><a href="https://www.bitstamp.net/"><img src="./img/bitstamp.png" alt=""> <strong>Bitstamp</strong></a>
<img src="http://www.countryflags.io/GB/shiny/16.png" alt="" title="London, United Kingdom; since 2011"> ▾
<img src="./img/language.png" alt="Languages" title="English">
<img src="./img/currency.png" alt="Currencies" title="Currencies: USD, EUR">
<a href="https://coinmarketcap.com/exchanges/bitstamp/"><img src="./img/cmcap.png" alt="CoinMarketCap" title="CoinMarketCap"></a>
<img src="./img/payment.png" alt="Payment Methods" title="SEPA, Astropay, Credit Card (Visa, MasterCard), eCheck, International Wire Transfer">
-
<img src="./img/buy.png" alt="Buy" title="Buy with FIAT available">
<img src="./img/sell.png" alt="Sell" title="Exchange crypto into FIAT available">
<img src="./img/exchange.png" alt="Exchange" title="Exchange crypto-crypto">
<img src="./img/trading.png" alt="Trading" title="Trading available: more info in Trading Platforms section">
-
<a href="https://www.bitstamp.net/fee_schedule/"><img src="./img/fees.png" alt="Fees" title="fees"></a>
<a href="https://itunes.apple.com/us/app/bitstamp/id996483140"><img src="./img/app-store.png" alt="iOS app" title="iOS app"></a>
<a href="https://play.google.com/store/apps/details?id=net.bitstamp.bitstamp"><img src="./img/google-play.png" alt="Android app" title="Android app"></a>
<a href="https://twitter.com/Bitstamp"><img src="./img/twitter.png" alt="Twitter" title="Twitter"></a>
<a href="https://www.linkedin.com/company/bitstamp"><img src="./img/linkedin.png" alt="Linkedin" title="Linkedin"></a>
<a href="https://www.bitstamp.net/api/"><img src="./img/api.png" alt="API" title="API"></a><br>
"Go for the digital currency stars"</p>
<!-- Blockchain.com -->
<p><a href="https://www.blockchain.com/"><img src="http://www.google.com/s2/favicons?domain=https://www.blockchain.com/" alt=""> Blockchain.com</a> -
<img src="http://www.countryflags.io/LU/shiny/16.png" alt="" title="Luxembourg; since 2011"> ▾
<img src="./img/language.png" alt="Languages" title="English">
<img src="./img/currency.png" alt="Currencies" title="Currencies: USD, EUR, INR through partners Coinify (S€PA region), SFOX (USA), and Bank Transfer in India">
<img src="./img/payment.png" alt="Payment Methods" title="Depends of region: Visa/MasterCard, Bank transfers">
-
<a href="https://www.blockchain.com/learning-portal/how-to-get-bitcoins"><img src="./img/buy.png" alt="Buy" title="Buy with FIAT available"></a>
<img src="./img/sell.png" alt="Sell" title="Exchange crypto into FIAT available">
<img src="./img/exchange.png" alt="Exchange" title="Exchange">
<a href="https://www.blockchain.com/wallet"><img src="./img/wallet.png" alt="Wallet" title="Wallet"></a>
<a href="https://www.blockchain.com/en/api/api_receive"><img src="./img/merchant.png" alt="Merchant" title="Payment Processing"></a>
-
<a href="https://support.blockchain.com/hc/en-us/categories/202016786-Exchange-Services"><img src="./img/fees.png" alt="Fees" title="Fees: Depends of region and partner"></a>
<a href="https://itunes.apple.com/us/app/blockchain-bitcoin-wallet/id493253309?mt=8"><img src="./img/app-store.png" alt="iOS app" title="iOS app"></a>
<a href="https://play.google.com/store/apps/details?id=piuk.blockchain.android&hl=en"><img src="./img/google-play.png" alt="Android app" title="Android app"></a>
<a href="https://twitter.com/blockchain"><img src="./img/twitter.png" alt="Twitter" title="Twitter"></a>
<a href="https://github.com/blockchain/"><img src="./img/github.png" alt="GitHub" title="GitHub"></a>
<a href="https://www.linkedin.com/company/blockchain/"><img src="./img/linkedin.png" alt="Linkedin" title="Linkedin"></a>
<a href="https://www.blockchain.com/api"><img src="./img/api.png" alt="API" title="API"></a>
<a href="https://www.blockchain.com/careers"><img src="./img/careers.png" alt="Careers" title="Careers"></a><br>
"The easy way to send, receive, store, and trade digital currencies. Join 25+ million individual & institutional investors on the most trusted cryptocurrency platform"</p>
<!-- BitBay -->
<p><a href="https://auth.bitbay.net/ref/0xtokens"><img src="http://www.google.com/s2/favicons?domain=https://www.bitbay.net/" alt=""> <strong>BitBay</strong></a>
<img src="http://www.countryflags.io/PL/shiny/16.png" alt="" title="Poland, Netherlands, Malta and India; since 2014">
<img src="http://www.countryflags.io/NL/shiny/16.png" alt="" title="Poland, Netherlands, Malta and India; since 2014">
<img src="http://www.countryflags.io/MT/shiny/16.png" alt="" title="Poland, Netherlands, Malta and India; since 2014">
<img src="http://www.countryflags.io/IN/shiny/16.png" alt="" title="Poland, Netherlands, Malta and India; since 2014"> <a href="https://bitbay.net/en">▾</a>
<img src="./img/language.png" alt="Languages" title="English, Polski, Russian">
<img src="./img/currency.png" alt="Currencies" title="Currencies: USD, EUR, PLN">
<a href="https://coinmarketcap.com/exchanges/bitbay/"><img src="./img/cmcap.png" alt="CoinMarketCap" title="CoinMarketCap"></a>
<img src="./img/payment.png" alt="Payment Methods" title="Classic bank transfers (S€PA & Swift), Credit and debit card deposits with Visa and Mastercard">
-
<img src="./img/buy.png" alt="Buy" title="Buy with FIAT available">
<img src="./img/sell.png" alt="Sell" title="Exchange crypto into FIAT available">
<img src="./img/exchange.png" alt="Exchange" title="Exchange crypto-crypto">
<img src="./img/trading.png" alt="Trading" title="Trading available: more info in Trading Platforms section">
<img src="./img/cards.png" alt="Card" title="BitBay Card (currently not available)">
<img src="./img/atm.png" alt="ATM" title="Bitomats: Digital currencies like in a regular ATM">
-
<a href="https://bitbay.net/en/fees"><img src="./img/fees.png" alt="Fees" title="fees"></a>
<a href="https://twitter.com/BitBayBitcoin"><img src="./img/twitter.png" alt="Twitter" title="Twitter"></a>
<a href="https://pl.linkedin.com/company/bitbay"><img src="./img/linkedin.png" alt="Linkedin" title="Linkedin"></a>
<a href="https://bitbay.net/en/api-public"><img src="./img/api.png" alt="API" title="Public API"></a>
<a href="https://bitbay.net/en/api-private"><img src="./img/api.png" alt="API" title="Private API"></a><br>
"Bitcoin, Litecoin, Ether & Lisk exchange"</p>
<!-- SatoshiTango -->
<p><a href="https://satoshitango.com/ref-es-WC14OKLN"><img src="http://www.google.com/s2/favicons?domain=https://www.satoshitango.com/" alt="" title="Targets Argentinian market"> <strong>SatoshiTango</strong></a>
<img src="http://www.countryflags.io/AR/shiny/16.png" alt="" title="Buenos Aires, Argentina"> <sub>(Special features for Argentine Market)</sub> <a href="https://www.satoshitango.com/">▾</a>
<img src="./img/language.png" alt="Languages" title="English, Español, Português">
<img src="./img/currency.png" alt="Currencies" title="Currencies: ARS, USD, EUR">
<img src="./img/payment.png" alt="Payment Methods" title="Bank Transfer (swift y S€PA), usando dinero en tu cuenta de MercadoPago o a través de un cupón en PagoFácil, RapiPago, BaproPagos, CobroExpress y ProvinciaPagos.">
-
<img src="./img/buy.png" alt="Buy" title="Buy with FIAT available">
<img src="./img/sell.png" alt="Sell" title="Exchange crypto into FIAT available">
<img src="./img/exchange.png" alt="Exchange" title="Exchange crypto-crypto">
<img src="./img/trading.png" alt="Trading" title="Trading CFDs (Beta)">
<img src="./img/wallet.png" alt="Wallet" title="Web wallet. Pagá tus facturas argentinas con Bitcoins. Recarga tu celular, Comprá CFDs. Envío directo a tu wallet fuera del exchange">
-
<a href="https://www.satoshitango.com/faq"><img src="./img/fees.png" alt="Fees" title="fees"></a>
<a href="https://itunes.apple.com/ar/app/satoshitango/id1002555958?mt=8&ign-mpt=uo%3D4"><img src="./img/app-store.png" alt="iOS app" title="iOS app"></a>
<a href="https://play.google.com/store/apps/details?id=com.SatoshiTango.SatoshiTango&hl=es"><img src="./img/google-play.png" alt="Android app" title="Android app"></a>
<a href="https://twitter.com/satoshitango"><img src="./img/twitter.png" alt="Twitter" title="Twitter"></a>
<a href="https://www.reddit.com/user/SatoshiTango/"><img src="./img/reddit.png" alt="reddit" title="reddit"></a>
<a href="https://github.com/satoshitango"><img src="./img/github.png" alt="GitHub" title="GitHub"></a>
<a href="http://satoshitango.github.io/"><img src="./img/api.png" alt="API" title="API"></a><br>
"Comprá y vendé tus bitcoins con pesos argentinos, de forma rápida y segura"</p>
<!-- BitQuick -->
<p><a href="https://www.bitquick.co/?a=61994618"><img src="http://www.google.com/s2/favicons?domain=https://www.bitquick.co/" alt=""> <strong>BitQuick</strong></a>
<img src="http://www.countryflags.io/US/shiny/16.png" alt="" title="Chicago, Saint Louis, Dallas, United States; since 2013"> <a href="https://www.bitquick.co/">▾</a>
<img src="./img/language.png" alt="Languages" title="English">
<img src="./img/currency.png" alt="Currencies" title="Currencies: USD">
<img src="./img/payment.png" alt="Payment Methods" title="A lot of payment options...">
-
<img src="./img/p2p-logo.png" alt="P2P" title="P2P">
<img src="./img/buy.png" alt="Buy" title="Buy with FIAT available">
<img src="./img/sell.png" alt="Sell" title="Exchange crypto into FIAT available">
-
<a href="https://www.bitquick.co/how-to"><img src="./img/fees.png" alt="Fees" title="fees"></a>
<a href="https://itunes.apple.com/us/app/athena-bitcoin/id1087704508?ls=1&mt=8"><img src="./img/app-store.png" alt="iOS app" title="iOS app"></a>
<a href="https://play.google.com/store/apps/details?id=com.athenabitcoin.wallet"><img src="./img/google-play.png" alt="Android app" title="Android app"></a>
<a href="https://twitter.com/bitquickco"><img src="./img/twitter.png" alt="Twitter" title="Twitter"></a>
<a href="https://www.linkedin.com/company/5161413"><img src="./img/linkedin.png" alt="Linkedin" title="Linkedin"></a><br>
"Bitcoin trading made quick and easy!"</p>
<!-- LakeBTC -->
<p><a href="https://www.lakebtc.com/?ref=1jqxif"><img src="http://www.google.com/s2/favicons?domain=https://www.lakebtc.com/" alt=""> <strong>LakeBTC</strong></a>
<img src="http://www.countryflags.io/GB/shiny/16.png" alt="" title="United Kingdom, since 2013"> <a href="https://www.lakebtc.com/">▾</a>
<img src="./img/language.png" alt="Languages" title="English, Japanese, Svenska, Français, Español, Portuês">
<img src="./img/currency.png" alt="Currencies" title="Currencies: USD, SEK, EUR, HKD, JPY, GBP, AUD, CAD, SGD, KRW and more...">
<a href="https://coinmarketcap.com/exchanges/lakebtc/"><img src="./img/cmcap.png" alt="CoinMarketCap" title="CoinMarketCap"></a>
<img src="./img/payment.png" alt="Payment Methods" title="Bank Transfer Internacional, S€PA, Western Union, MoneyGram, Cash, OKPAY, Perfect Money, **PayPal,** Payza, Skrill, Neteller, Leupay, CHATS">
<img src="./img/paypal.png" alt="PayPal" title="PayPal Accepted">
-
<img src="./img/buy.png" alt="Buy" title="Buy with FIAT available">
<img src="./img/sell.png" alt="Sell" title="Exchange crypto into FIAT available">
<a href="https://www.lakebtc.com/trader/?ref=1jqxif"><img src="./img/trading.png" alt="Trading" title="Trading available: more info in Trading Platforms section"></a>
<img src="./img/wallet.png" alt="Wallet" title="LakeBTC also provides bitcoin wallet service to all accounts">
<img src="./img/secure.png" alt="Security" title="Security: Cold Wallet Storage">
-
<a href="https://www.lakebtc.com/s/fees"><img src="./img/fees.png" alt="Fees" title="fees"></a>
<a href="https://twitter.com/LakeBTC"><img src="./img/twitter.png" alt="Twitter" title="Twitter"></a>
<a href="http://www.reddit.com/r/LakeBTC/"><img src="./img/reddit.png" alt="reddit" title="reddit"></a>
<a href="https://www.lakebtc.com/s/api_v2"><img src="./img/api.png" alt="API" title="API"></a><br>
"Wallet, Trade, and Investment -- top Risk Management and Internal Control"</p>
<!-- Bitnovo -->
<p><a href="https://www.bitnovo.com/"><img src="http://www.google.com/s2/favicons?domain=https://www.bitnovo.com/" alt=""> <strong>Bitnovo</strong></a>
<img src="http://www.countryflags.io/ES/shiny/16.png" alt="" title="Valencia, Spain"> ▾
<img src="./img/language.png" alt="Languages" title="Spanish, English, Italiano, Português">
<img src="./img/currency.png" alt="Currencies" title="Currencies: EUR">
<a href="https://www.bitnovo.com/bitcoins-metodos-pago"><img src="./img/payment.png" alt="Payment Methods" title="Credit card (Visa, Maestro, MasterCard), Bank Transfer, flexepin, Dash"></a>
-
<img src="./img/buy.png" alt="Buy" title="Buy with FIAT available">
<a href="https://www.bitnovo.com/tarjeta-monedero-bitcoins"><img src="./img/cards.png" alt="Card" title="Bitcoins wallet Card"></a>
<a href="https://www.bitnovo.com/cajeros-bitcoin"><img src="./img/atm.png" alt="ATM" title="Cajeros Bitcoin"></a>
-
<a href="https://www.bitnovo.com/precio-tarifas-tarjeta"><img src="./img/fees.png" alt="Fees" title="fees"></a>
<a href="https://itunes.apple.com/es/app/bitnovo/id1220883632?mt=8"><img src="./img/app-store.png" alt="iOS app" title="iOS app"></a>
<a href="https://play.google.com/store/apps/details?id=com.bitnovo.app"><img src="./img/google-play.png" alt="Android app" title="Android app"></a>
<a href="https://twitter.com/bitnovo"><img src="./img/twitter.png" alt="Twitter" title="Twitter"></a><br>
"Purchase Dash, bitcoin and other cryptocurrencies at 20.000 stores in Europe. Check also our ATMs and our BitCard to convert from crypto to euros instantly!"</p>
<!-- Buysomebitcoins -->
<p><a href=""><img src="http://www.google.com/s2/favicons?domain=https://www.buysomebitcoins.com" alt="" title="NO ID verification!, Fast exchange, **Available in all countries and currencies**"> <strong>Buysomebitcoins</strong></a>
<img src="http://www.countryflags.io/GB/shiny/16.png" alt="" title="London, United Kingdom"> ▾
<img src="./img/language.png" alt="Languages" title="English">
<img src="./img/currency.png" alt="Currencies" title="Currencies: ">
<img src="./img/payment.png" alt="Payment Methods" title="Visa, MasterCard, **Paypal**">
<img src="./img/paypal.png" alt="PayPal" title="PayPal">
-
<img src="./img/buy.png" alt="Buy" title="Buy with FIAT available">
-
<a href="https://www.buysomebitcoins.com/int/pricing"><img src="./img/fees.png" alt="Fees" title="fees"></a>
<a href="https://twitter.com/buysomebitcoins"><img src="./img/twitter.png" alt="Twitter" title="Twitter"></a><br>
"Buy/Sell bitcoin instantly with Visa/Mastercard & <strong>Paypal</strong>"</p>
<!-- Bitit -->
<p><a href="https://bitit.io/?referral=MEUKLPKS"><img src="http://www.google.com/s2/favicons?domain=https://www.bitit.io/" alt=""> <strong>Bitit</strong></a>
<img src="http://www.countryflags.io/FR/shiny/16.png" alt="" title="Paris, France"> <a href="https://bitit.io/">▾</a>
<img src="./img/language.png" alt="Languages" title="English, Français">
<img src="./img/currency.png" alt="Currencies" title="Currencies: EUR, USD, JPY, DKK, GBP, SEK, NOK, TRY, AUD, CAD, CNY, KRW, SGD, ZAR">
<img src="./img/payment.png" alt="Payment Methods" title="Credit/Debit Card, Cashlib Voucher, Neosurf Voucher, Wire Transfer, Bitit Gift Card">
-
<img src="./img/buy.png" alt="Buy" title="Buy with FIAT available">
-
<a href="https://bitit.io/pricing"><img src="./img/fees.png" alt="Fees" title="fees"></a>
<a href="https://twitter.com/bitit_gift?lang=es"><img src="./img/twitter.png" alt="Twitter" title="Twitter"></a>
<a href="https://github.com/bititio"><img src="./img/github.png" alt="GitHub" title="GitHub"></a>
<a href="https://www.linkedin.com/company/bitit"><img src="./img/linkedin.png" alt="Linkedin" title="Linkedin"></a><br>
"Your one-stop-shop for cryptocurrency purchases. Buy the leading blockchain assets with 14+ Fiat currencies including USD, EUR, KRW, JPY... across 50+ countries"</p>
<!-- ALFA CASHIER -->
<p><a href="https://www.alfacashier.com/r/2f7a5451"><img src="http://www.google.com/s2/favicons?domain=https://www.alfacashier.com/" alt=""> <strong>ALFA CASHIER</strong></a>
<img src="http://www.countryflags.io/BZ/shiny/16.png" alt="" title="Belize"> <a href="https://www.alfacashier.com/">▾</a>
<img src="./img/language.png" alt="Languages" title="English, Deutsch, Español, Russian">
<img src="./img/currency.png" alt="Currencies" title="Currencies: USD, EUR, CNY, CAD, RUB">
<img src="./img/payment.png" alt="Payment Methods" title="VISA, MasterCard, SWIFT/S€PA, ChinaUnionPay, Perfect Money, MoneyPolo, AstroPay, Yandex Money">
-
<img src="./img/buy.png" alt="Buy" title="Buy with FIAT available">
<img src="./img/sell.png" alt="Sell" title="Exchange crypto into FIAT available">
<img src="./img/exchange.png" alt="Exchange" title="Exchange crypto-crypto">
-
<a href="https://www.alfacashier.com/fees-and-limits"><img src="./img/fees.png" alt="Fees" title="fees"></a>
<a href="https://twitter.com/alfacashier"><img src="./img/twitter.png" alt="Twitter" title="Twitter"></a>
<a href="https://www.reddit.com/user/ALFAcashier/"><img src="./img/reddit.png" alt="reddit" title="reddit"></a>
<a href="https://github.com/ALFAcashier"><img src="./img/github.png" alt="GitHub" title="GitHub"></a>
<a href="https://www.alfacashier.com/developers"><img src="./img/api.png" alt="API" title="API"></a>
<a href="https://www.alfacashier.com/vacancies"><img src="./img/careers.png" alt="Careers" title="Careers"></a><br>
"Buy, Sell & Exchange Bitcoin, Ethereum & Other Cryptocurrencies Instantly"</p>
<!-- UNOCOIN -->
<p><a href="https://www.unocoin.com/"><img src="http://www.google.com/s2/favicons?domain=https://www.unocoin.com/" alt=""> <strong>UNOCOIN</strong></a>
<img src="http://www.countryflags.io/IN/shiny/16.png" alt="" title="India"> ▾
<img src="./img/language.png" alt="Languages" title="English">
<img src="./img/currency.png" alt="Currencies" title="Currencies: ZAR, NGN, IDR, MYR, SGD, EUR">
<img src="./img/payment.png" alt="Payment Methods" title="Wire Transfer (NEFT/RTGS/IMPS), Prepaid Mobile, Postpaid Mobile, DTH">
-
<img src="./img/buy.png" alt="Buy" title="Buy with FIAT available">
<img src="./img/sell.png" alt="Sell" title="Exchange crypto into FIAT available">
<img src="./img/exchange.png" alt="Exchange" title="Exchange crypto-crypto: unodax.com">
<a href="https://www.unodax.com/"><img src="./img/trading.png" alt="Trading" title="Trading: unodax.com"></a>
<img src="./img/wallet.png" alt="Wallet" title="INR and BTC Mobile Wallet">
<img src="./img/merchant.png" alt="Merchant" title="Merchant Services">
-
<a href="https://www.unocoin.com/how-it-works?info=fees"><img src="./img/fees.png" alt="Fees" title="fees"></a>
<a href="https://itunes.apple.com/us/app/unocoin/id1030422972?ls=1&mt=8"><img src="./img/app-store.png" alt="iOS app" title="iOS app"></a>
<a href="https://play.google.com/store/apps/details?id=com.unocoin.unocoinwallet"><img src="./img/google-play.png" alt="Android app" title="Android app"></a>
<a href="https://twitter.com/Unocoin"><img src="./img/twitter.png" alt="Twitter" title="Twitter"></a>
<a href="https://www.linkedin.com/company/unocoin/"><img src="./img/linkedin.png" alt="Linkedin" title="Linkedin"></a>
<a href="https://www.unocoin.com/how-it-works?info=tickerapi"><img src="./img/api.png" alt="API" title="API"></a><br>
"India's home for digital currency & Blockchain Company. Buy, sell, store, use & accept bitcoin!"</p>
<!-- Luno -->
<p><a href="https://www.luno.com/invite/PTDH6"><img src="http://www.google.com/s2/favicons?domain=https://www.luno.com/" alt=""> <strong>Luno</strong></a>
<img src="http://www.countryflags.io/ZA/shiny/16.png" alt="" title="London, Singapore; Cape Town, South Africa // BitX was founded in year 2013 and rebranded into Luno in year 2017"> <a href="https://www.luno.com/">▾</a>
<img src="./img/language.png" alt="Languages" title="English, Indonesian">
<img src="./img/currency.png" alt="Currencies" title="Currencies: ">
<a href="https://coinmarketcap.com/exchanges/luno/"><img src="./img/cmcap.png" alt="CoinMarketCap" title="CoinMarketCap"></a>
<img src="./img/payment.png" alt="Payment Methods" title="#">
-
<img src="./img/buy.png" alt="Buy" title="Buy with FIAT available">
<img src="./img/exchange.png" alt="Exchange" title="Exchange crypto-crypto">
<img src="./img/wallet.png" alt="Wallet" title="Web, and mobile wallet">
-
<a href="https://www.luno.com/en/countries"><img src="./img/fees.png" alt="Fees" title="fees"></a>
<a href="https://itunes.apple.com/app/bitx-wallet/id927362479?mt=8"><img src="./img/app-store.png" alt="iOS app" title="iOS app"></a>
<a href="https://play.google.com/store/apps/details?hl=en&id=co.bitx.android.wallet"><img src="./img/google-play.png" alt="Android app" title="Android app"></a>
<a href="https://twitter.com/lunomoney"><img src="./img/twitter.png" alt="Twitter" title="Twitter"></a>
<a href="https://www.luno.com/en/api"><img src="./img/api.png" alt="API" title="API"></a>
<a href="https://www.luno.com/en/careers"><img src="./img/careers.png" alt="Careers" title="Careers"></a><br>
"We make it safe and easy to store, buy, use and learn about digital currencies like Bitcoin and Ethereum"</p>
<!-- btcmarkets -->
<p><a href="https://btcmarkets.net/"><img src="http://www.google.com/s2/favicons?domain=https://www.btcmarkets.net/" alt=""> <strong>btcmarkets</strong></a>
<img src="http://www.countryflags.io/AU/shiny/16.png" alt="" title="Melbourne, Australia"> <sub>(Targets Australian Market)</sub> ▾
<img src="./img/language.png" alt="Languages" title="English">
<img src="./img/currency.png" alt="Currencies" title="Currencies: AUD">
<a href="https://coinmarketcap.com/exchanges/btc-markets/"><img src="./img/cmcap.png" alt="CoinMarketCap" title="CoinMarketCap"></a>
<img src="./img/payment.png" alt="Payment Methods" title="Bank transfers, Australian BPay and POLi payments">
-
<img src="./img/buy.png" alt="Buy" title="Buy with FIAT available">
<img src="./img/sell.png" alt="Sell" title="Exchange crypto into FIAT available">
<img src="./img/exchange.png" alt="Exchange" title="Bitcoin Exchange">
<img src="./img/trading.png" alt="Trading" title="Bitcoin Trading">
-
<a href="https://www.btcmarkets.net/fees"><img src="./img/fees.png" alt="Fees" title="fees"></a>
<a href="https://twitter.com/BTCMarkets"><img src="./img/twitter.png" alt="Twitter" title="Twitter"></a>
<a href="https://www.reddit.com/user/BTCMarkets"><img src="./img/reddit.png" alt="reddit" title="reddit"></a>
<a href="https://github.com/BTCMarkets"><img src="./img/github.png" alt="GitHub" title="GitHub"></a>
<a href="https://github.com/BTCMarkets/API"><img src="./img/api.png" alt="API" title="API"></a><br>
"A secure, reliable, transparent Australian marketplace for trading blockchain assets with ease"</p>
<!-- CoinsBank -->
<p><a href="https://coinsbank.com/"><img src="http://www.google.com/s2/favicons?domain=https://www.coinsbank.com/" alt="" title="Wallet, Debit and virtual Cards, Exchange, Merchant, Mobile app. No documents needed to begin trading"> <strong>CoinsBank</strong></a>
<img src="http://www.countryflags.io/GB/shiny/16.png" alt="" title="Scotland, United Kingdom"> ▾
<img src="./img/language.png" alt="Languages" title="English">
<img src="./img/currency.png" alt="Currencies" title="USD, EUR, GBP fiat currencies deposit and withdrawal. User-to-user transfers USD, EUR, GBP, RUB, CHF, JPY, AUD">
<a href="https://coinmarketcap.com/exchanges/coinsbank/"><img src="./img/cmcap.png" alt="CoinMarketCap" title="CoinMarketCap"></a>
<img src="./img/payment.png" alt="Payment Methods" title="Bank transfers S€PA/Wire transfer (USD, EUR, GBP), Credit/Debit card (USD, EUR, GBP), , OKPay, Perfect Money and QIWI (USD, EUR), S€PA (European only)">
-
<img src="./img/buy.png" alt="Buy" title="Buy with FIAT available">
<img src="./img/sell.png" alt="Sell" title="Exchange crypto into FIAT available">
<a href="https://coinsbank.com/exchange"><img src="./img/exchange.png" alt="Exchange" title="Exchange crypto-crypto"></a>
<a href="https://coinsbank.com/exchange"><img src="./img/trading.png" alt="Trading" title="Trading available: more info in Trading Platforms section"></a>
<a href="https://coinsbank.com/wallet"><img src="./img/wallet.png" alt="Wallet" title="Multicurrency Mobile Wallet"></a>
<a href="https://coinsbank.com/cards"><img src="./img/cards.png" alt="Card" title="Real Debit Card linked to your CoinsBank Wallet"></a>
<a href="https://coinsbank.com/merchant"><img src="./img/merchant.png" alt="Merchant" title="Merchant Services"></a>
-
<a href="https://coinsbank.com/fees"><img src="./img/fees.png" alt="Fees" title="fees"></a>
<a href="https://itunes.apple.com/us/app/coinsbank-mobile-wallet/id1099715029"><img src="./img/app-store.png" alt="iOS app" title="iOS app"></a>
<a href="https://play.google.com/store/apps/details?id=com.CoinsBank.CoinsBank"><img src="./img/google-play.png" alt="Android app" title="Android app"></a>
<a href="https://twitter.com/coins_bank"><img src="./img/twitter.png" alt="Twitter" title="Twitter"></a>
<a href="https://github.com/coinsbank/"><img src="./img/github.png" alt="GitHub" title="GitHub"></a>
<a href="https://www.linkedin.com/company/10576495"><img src="./img/linkedin.png" alt="Linkedin" title="Linkedin"></a>
<a href="https://coinsbank.com/app/user/api"><img src="./img/api.png" alt="API" title="API"></a><br>
"CoinsBank is your «all-in-one» gateway to blockchain services"</p>
<!-- Paribu -->
<p><a href="https://www.paribu.com/"><img src="http://www.google.com/s2/favicons?domain=https://www.paribu.com/" alt=""> <strong>Paribu</strong></a>
<img src="http://www.countryflags.io/TR/shiny/16.png" alt="" title="Istanbul, Turkey"> ▾
<img src="./img/language.png" alt="Languages" title="Turkish (**english not available**)">
<img src="./img/currency.png" alt="Currencies" title="Currencies: Trade TRY with BTC">
<a href="https://coinmarketcap.com/exchanges/paribu/"><img src="./img/cmcap.png" alt="CoinMarketCap" title="CoinMarketCap"></a>
-
<img src="./img/buy.png" alt="Buy" title="Buy with FIAT available">
-
<a href=""><img src="./img/fees.png" alt="Fees" title="fees"></a>
<a href=""><img src="./img/twitter.png" alt="Twitter" title="Twitter"></a><br>
"The easiest and safest way to trade Turkish Lira and Bitcoin"</p>
<!-- BitINKA -->
<p><a href="https://www.bitinka.com/"><img src="http://www.google.com/s2/favicons?domain=https://www.bitinka.com/" alt=""> <strong>BitINKA</strong></a>
<img src="http://www.countryflags.io/PE/shiny/16.png" alt="" title="Peru"> ▾
<img src="./img/language.png" alt="Languages" title="English, Spanish, Português">
<img src="./img/currency.png" alt="Currencies" title="Currencies: USD, EUR, ARS, BOB, BRL, CLP, CNY, COP, PEN. Próximamente con Credit Card">
<a href="https://coinmarketcap.com/exchanges/bitinka/"><img src="./img/cmcap.png" alt="CoinMarketCap" title="CoinMarketCap"></a>
<img src="./img/payment.png" alt="Payment Methods" title="Bank Transfer">
-
<img src="./img/buy.png" alt="Buy" title="Buy with FIAT available">
<img src="./img/sell.png" alt="Sell" title="Exchange crypto into FIAT available">
<img src="./img/exchange.png" alt="Exchange" title="Exchange crypto-crypto">
<img src="./img/trading.png" alt="Trading" title="Trading available: more info in Trading Platforms section">
<a href="https://www.inkapay.com/"><img src="./img/merchant.png" alt="Merchant" title="Merchant Services: inkapay"></a>