forked from lovincyrus/cosmonauts-world
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathposts-manifest.js
1519 lines (1517 loc) · 60.5 KB
/
posts-manifest.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
const categories = ['all', 'cosmos sdk', 'tendermint core', 'tendermint bft', 'ethermint', 'weave', '?'];
const mapping = [
{
name: 'Cosmos Hub',
description: 'The Cosmos Hub is the first of thousands of interconnected blockchains that will eventually comprise the Cosmos Network . The primary token of the Cosmos Hub is the ATOM , but the Hub will support many tokens in the future.',
image: '/static/logos/gaia.png',
network: 'mainnet',
verified: 'false',
links: {
github: 'https://github.com/cosmos/gaia',
},
tags: ['cosmos sdk', 'tendermint core'],
},
{
name: 'Binance Chain',
description: 'Binance Chain is a blockchain software system developed by Binance and its community. Binance DEX refers to the decentralized exchange features developed on top of Binance Chain. The purpose of the new blockchain and DEX is to create an alternative marketplace for issuing and exchanging digital assets in a decentralized manner.',
image: '/static/logos/binance-chain.png',
network: 'mainnet',
verified: 'false',
links: {
proof: 'https://binance-chain.github.io/acknowledgement.html#tendermint-and-cosmos',
github: 'https://github.com/binance-chain/',
chat: 'https://t.me/binanceexchange',
website: 'https://binance-chain.github.io/',
},
tags: ['cosmos sdk', 'tendermint core'],
},
{
name: 'Kava',
description: 'Kava is the first cross-blockchain DeFi platform that enables traders to leverage their assets and hedge using a multi-collateral CDP system and collateral-backed stablecoin (USDX).',
image: '/static/logos/kava.png',
network: 'mainnet',
verified: 'false',
links: {
proof: 'https://github.com/Kava-Labs/kava',
github: 'https://github.com/Kava-Labs/',
chat: 'https://t.me/joinchat/FkPmgRKdMAyLdWMItxYt0w',
website: 'https://kava.io/',
},
tags: ['cosmos sdk', 'tendermint core'],
},
{
name: 'Terra',
description: 'A price-stable cryptocurrency designed for mass adoption. We are building financial infrastructure for the next generation of decentralized applications.',
image: '/static/logos/terra.jpg',
network: 'mainnet',
verified: 'false',
links: {
proof: 'https://github.com/terra-project/core',
github: 'https://github.com/terra-project',
twitter: 'https://twitter.com/terra_money',
chat: 'https://discord.gg/bYfyhUT',
website: 'https://terra.money',
},
tags: ['cosmos sdk', 'tendermint core'],
},
{
name: 'Agoric',
description: 'Agoric is developing a secure distributed ocap platform for smart contracts and market-oriented programming. Our platform supports the development of smart contracts and market institutions across many different scales, from large public blockchains to small two-party contracts.',
image: '/static/logos/agoric.png',
network: 'testnet',
verified: 'false',
links: {
proof: 'https://agoric.com/agoric-launches-testnet',
github: 'https://github.com/agoric',
website: 'https://agoric.com/about/',
},
tags: ['cosmos sdk'],
},
{
name: 'Microtick',
description: 'Microtick is a market-based system for crowdsourcing and incentivizing untrusted oracles to provide accurate streaming data to the Cosmos / Tendermint ecosystem.',
image: '/static/logos/microtick.png',
network: 'testnet',
verified: 'false',
links: {
proof: 'https://gitlab.com/microtick/mtkit/blob/master/docs/Microtick%20Guide%201.0.pdf',
gitlab: 'https://gitlab.com/microtick',
website: 'https://gitlab.com/microtick/mtkit',
},
tags: ['cosmos sdk', 'tendermint core'],
},
{
name: 'Aragon',
description: 'Aragon empowers you to freely organize and collaborate without borders or intermediaries. Create global, bureaucracy-free organizations, companies, and communities.',
image: '/static/logos/aragon-chain.png',
network: 'development',
verified: 'false',
links: {
proof: 'https://blog.aragon.one/aragon-chain',
github: 'https://github.com/aragon',
twitter: 'https://twitter.com/aragonproject',
chat: 'https://aragon.chat',
website: 'https://aragon.org/',
},
tags: ['ethermint', 'cosmos sdk', 'tendermint core'],
},
{
name: 'e-Money',
description: 'Today’s global transaction market is filled with high and non-transparent fees as well as lengthy processes. Engaging in a global money transfer is both expensive and unnecessarily slow. What if you could transfer money from one account to another anywhere in the world, with low cost transparent fees and in real-time, making the transaction instant and painless? e-Money empowers People and Businesses to make instant global transactions using the technology of tomorrow.',
image: '/static/logos/e-money.png',
network: 'testnet',
verified: 'false',
links: {
proof: 'https://e-money.com/documents/e-Money%20Whitepaper.pdf',
github: 'https://github.com/e-money',
twitter: 'https://twitter.com/emoney_com',
chat: 'https://t.me/emoney_com',
website: 'https://e-money.com/',
},
tags: ['cosmos sdk', 'tendermint core'],
},
{
name: 'Regen Network',
description: 'Regen Network is built to support a wide variety of ecological improvement agreements. These include agreements about improving practices, agreements about ecological changes and a combination of both. Changing practices isn’t 100% sure to be effective, but can be tracked in the short term. To track actual ecological impact, we look at long term indicators. Regen Network allows users to track change that is meaningful to them, not restricting metrics, and allowing us to gain a more holistic understanding of ecosystem health.',
image: '/static/logos/regen-network.jpg',
network: 'testnet',
verified: 'false',
links: {
proof: 'https://medium.com/regen-network/how-to-choose-a-blockchain-55a343fd7ec4',
gitlab: 'https://gitlab.com/regen-network',
twitter: 'https://twitter.com/regen_network',
chat: 'https://t.me/regennetwork_public',
website: 'https://www.regen.network/',
},
tags: ['cosmos sdk', 'tendermint bft'],
},
{
name: 'IRIS Network',
description: 'IRISnet is designed to be the foundation for next generation distributed business applications. It is a BPoS blockchain, built with Cosmos-SDK, that enables cross-chain interoperability through a unified service model.',
image: '/static/logos/irisnet.png',
network: 'mainnet',
verified: 'false',
links: {
proof: 'https://github.com/irisnet/irisnet/blob/master/WHITEPAPER.md',
github: 'https://github.com/irisnet/',
chat: 'https://t.me/irisnetwork',
website: 'https://www.irisnet.org/',
},
tags: ['cosmos sdk', 'tendermint core'],
},
{
name: 'IRITA',
description: 'IRITA (Inter-Realm Industry Trust Alliance), powered by Tendermint, Cosmos SDK and IRIS Service (a.k.a. iService), is the first enterprise consortium blockchain product in the Cosmos ecosystem.',
image: '/static/logos/irita.png',
network: '?',
verified: 'false',
links: {
proof: 'https://blog.cosmos.network/team-behind-irisnet-open-sourced-its-enterprise-blockchain-product-irita-9cd44b24f23e',
github: 'https://github.com/bianjieai/irita',
twitter: 'https://twitter.com/IRITAchain',
website: 'https://www.bianjie.ai/products/irita',
},
tags: ['cosmos sdk', 'tendermint core'],
},
{
name: 'IOV',
description: 'The IOV Name Service provides a human readable address instead of blockchain addresses to receive any kind of crypto-currencies. Built on Tendermint, IOV builds a fast, secure and decentralized name service. Any kind of crypto-addresses can be registered on the IOV Name Service.',
image: '/static/logos/iov.png',
network: 'mainnet',
verified: 'false',
links: {
proof: 'https://docs.iov.one/docs/weave/welcome',
github: 'https://github.com/iov-one',
chat: 'https://t.me/internetofvalues',
website: 'https://www.iov.one/',
},
tags: ['weave', 'tendermint core'],
},
{
name: 'Akash Network',
description: 'Akash is the world’s first super cloud for serverless computing, empowering the architects and builders of the internet with greater access, freedom, and efficiency.',
image: '/static/logos/akash-network.png',
network: 'testnet',
verified: 'false',
links: {
proof: 'https://github.com/ovrclk/akash/search?q=tendermint&unscoped_q=tendermint',
github: 'https://github.com/ovrclk',
chat: 'https://akash.network/chat',
website: 'https://akash.network/',
},
tags: ['cosmos sdk', 'tendermint core'],
},
{
name: 'Sentinel',
description: 'Sentinel is a network layer for p2p or decentralized applications enabling users and organizations to create Public and Private networks that provide access to both free and incentivised, payment-type (currency/token/fiat) agnostic Services & distributed Resources. With paradigms of Web3 in mind we allow users to become both producers and consumers in the network while earning and spending whitelisted tokens such as Bitcoin, Ethereum, Photons, Atoms or any other, which enables everyone to participate in the system without being forced to use any particular coin.',
image: '/static/logos/sentinel.png',
network: 'testnet',
verified: 'false',
links: {
proof: 'https://github.com/sentinel-official/sentinel/blob/master/README.md',
github: 'https://github.com/sentinel-official/sentinel',
twitter: 'http://twitter.com/sentinel_co',
chat: 'https://t.me/sentinel_co',
website: 'https://sentinel.co/',
},
tags: ['cosmos sdk', 'tendermint core'],
},
{
name: 'Althea',
description: 'Althea is a system that lets routers pay each other for bandwidth. This allows people to set up decentralized ISPs in their communities. In an Althea network, instead of one ISP at the top collecting monthly payments, many different people can earn money by expanding and strengthening the network.',
image: '/static/logos/althea.png',
network: 'testnet',
verified: 'false',
links: {
proof: 'https://blog.althea.net/launching-the-althea-blockchain/',
github: 'https://github.com/althea-net',
twitter: 'https://twitter.com/AltheaNetwork',
chat: 'https://riot.im/app/#/room/#althea:matrix.org',
website: 'https://althea.net/',
},
tags: ['cosmos sdk'],
},
{
name: 'Kira Interchain Exchange',
description: 'Kira is a next generation hyperscale decentralized exchange (DEX) engineered for cross-chain transfers and frictionless trading. On the one hand, Kira aims to deliver all the liquidity, performance and trading sophistication of a centralised exchange but without the custody, downtime and fraud risk that plague our industry. On the other hand, Kira offers stronger security guarantees than state-of-the-art DEXs, but with a powerful governance model that builds trust and engagement whilst actively resisting corruption.',
image: '/static/logos/kiraex.png',
network: 'development',
verified: 'false',
links: {
proof: 'https://medium.com/kira-core/introducing-kira-the-future-of-interchain-exchange-c5d8f4223607',
github: 'https://github.com/kira-ex',
twitter: 'https://twitter.com/kiraex',
chat: 'https://t.me/kirainterex',
website: 'https://kiraex.com/',
},
tags: ['cosmos sdk', 'tendermint core'],
},
{
name: 'Desmos',
description: 'Desmos is an attempt to bootstrap a new social network tokenomics through the simplest form of social networking: microblogging.',
image: '/static/logos/desmos.jpeg',
network: 'development',
verified: 'false',
links: {
proof: 'https://medium.com/forbole/forbole-and-desmos-in-japan-bfdd66317d62',
github: 'https://github.com/desmos-labs',
chat: 'https://t.me/desmoslabs',
website: 'https://www.desmos.network',
},
tags: ['cosmos sdk', 'tendermint core'],
},
{
name: 'Cyber',
description: 'A decentralized Google for provable and relevant answers. A relevance machine & a state of the art consensus computer, built with the help of go-IPFS and cosmos-SDK',
image: '/static/logos/cybercongress.png',
network: 'testnet',
verified: 'false',
links: {
proof: 'https://github.com/cybercongress/cyberd',
github: 'https://github.com/cybercongress',
twitter: 'https://twitter.com/cyber_devs',
chat: 'https://t.me/fuckgoogle',
website: 'https://cybercongress.ai/',
},
tags: ['cosmos sdk', 'tendermint bft'],
},
{
name: 'comercio.network',
description: 'An open source project to provide companies the ability to exchange documents and guarantee paternity, integrity, and non-repudiation.',
image: '/static/logos/commercio-network.png',
network: '?',
verified: 'false',
links: {
proof: 'https://github.com/commercionetwork/commercionetwork',
github: 'https://github.com/commercionetwork',
chat: '?',
website: 'https://commercio.network/',
},
tags: ['cosmos sdk', 'tendermint core'],
},
{
name: 'Oasis Labs',
description: 'Privacy-first cloud computing on blockchain.',
image: '/static/logos/oasis-labs.png',
network: 'testnet',
verified: 'false',
links: {
proof: 'https://github.com/oasislabs/oasis-core/search?utf8=%E2%9C%93&q=tendermint&type=',
github: 'https://github.com/oasislabs',
twitter: 'https://www.twitter.com/OasisLabs',
chat: 'https://join.slack.com/t/oasiscommunity/shared_invite/enQtNjQ5MTA3NTgyOTkzLWIxNTg1ZWZmOTIwNmQ2MTg1YmU0MzgyMzk3OWM2ZWQ4NTQ0ZDJkNTBmMTdlM2JhODllYjg5YmJkODc2NzgwNTg',
website: 'https://www.oasislabs.com',
},
tags: ['tendermint core'],
},
{
name: 'FOAM',
description: 'FOAM’s dynamic proof of location protocol will enable a permissionless and privacy-preserving network of radio beacons that is independent from external centralized sources such as GPS and capable of providing secure location verification services.',
image: '/static/logos/foam.png',
network: 'mainnet',
verified: 'false',
links: {
proof: 'https://blog.foam.space/tendermint-foam-achieving-global-scalability-through-local-consensus-4c63c8bb51a8',
github: 'https://github.com/f-o-a-m/',
chat: 'https://t.me/foamspace',
website: 'https://www.foam.space/',
},
tags: ['tendermint core'],
},
{
name: 'Loom Network',
description: 'Loom is a Layer 2 scaling solution for Ethereum that includes a network of DPoS sidechains for highly-scalable games and user-facing DApps.',
image: '/static/logos/loom-network.png',
network: 'mainnet',
verified: 'false',
links: {
proof: 'https://github.com/loomnetwork/loomchain',
github: 'https://github.com/loomnetwork',
chat: 'https://t.me/loomnetwork',
website: 'https://loomx.io/',
},
tags: ['tendermint core'],
},
{
name: 'COMDEX',
description: 'Comdex is revolutionising the archaic and laggard commodity trade industry to make it more efficient and usher it into the next era of transformation. Comdex revolutionizes the $17 trillion a year commodity trading industry by using existing banking structures and advanced technology. With a plethora of solutions including a single platform to connect trade financiers, aid in trade settlement and propel trade discoveries, Comdex is already in the pilot phase with trades of millions of dollars.',
image: '/static/logos/comdex.jpg',
network: 'testnet',
verified: 'false',
links: {
proof: 'https://comdex.sg/',
website: 'https://comdex.sg/',
},
tags: ['cosmos sdk'],
},
{
name: 'Minter',
description: 'Minter offers you the ability to issue, transfer, or exchange your own coin in seconds with instant liquidity. All our products are open-source—iOS, Android, Web, and Telegram wallets; an API and an SDK.',
image: '/static/logos/minter.png',
network: 'mainnet',
verified: 'false',
links: {
proof: 'https://github.com/MinterTeam/minter-go-node',
github: 'https://github.com/MinterTeam',
twitter: 'https://twitter.com/MinterTeam',
chat: 'https://t.me/MinterNetworkGroup',
website: 'https://minter.network',
},
tags: ['tendermint bft'],
},
{
name: 'datopia',
description: 'On-chain governance, voting analytics, supply chain management — processes many suspect will yield to blockchains — consume and translate vast quantities of information in all but the simplest cases. Platforms encumbered by astronomical storage costs — or inexpressive data modelling primitives — are unlikely to provide us with sustainable, cost-effective or transparent solutions to data-hungry problems. Our inaugural post, Blockchains as Information Systems, covers these ideas in more detail.',
image: '/static/logos/datopia.png',
network: '?',
verified: 'false',
links: {
proof: 'https://blog.datopia.io/2019/04/04/building-your-first-clojure-blockchain/',
github: 'https://github.com/datopia',
twitter: 'https://twitter.com/datopians',
website: 'https://datopia.io/',
},
tags: ['tendermint bft'],
},
{
name: 'ProximaX',
description: 'The ProximaX Sirius core infrastructure platform leverages on an amended and augmented blockchain and is integrated with peer-to-peer, distributed off-chain storage, streaming, and database layers. These are overlaid with APIs/SDKs in a wide range of languages for developers to rapidly develop and deploy their applications. By parallelising all of these protocols into manageable but distinct layers, ProximaX leverages the advantages of blockchain whilst solving its challenges via service layers found in traditional architectures, packaged into an all-in-one extensive framework.',
image: '/static/logos/proximax.jpg',
network: '?',
verified: 'false',
links: {
proof: 'https://medium.com/@proximaxio/proximax-sirius-an-integrated-and-distributed-ledger-technology-platform-5ced5f38097b',
github: 'https://github.com/proximax-storage',
twitter: 'https://twitter.com/ProximaXio',
chat: 'http://t.me/ProximaXio',
website: 'https://www.proximax.io/',
},
tags: ['tendermint bft'],
},
{
name: 'HyperLedger Burrow (Monax)',
description: 'Hyperledger Burrow is one of the Hyperledger projects hosted by The Linux Foundation. Hyperledger Burrow provides a modular blockchain client with a permissioned smart contract interpreter partially developed to the specification of the EVM.',
image: '/static/logos/hyperledger-burrow.png',
network: '?',
verified: 'false',
links: {
proof: 'https://github.com/hyperledger/burrow',
github: 'https://github.com/hyperledger/burrow',
chat: 'https://chat.hyperledger.org/',
website: 'https://hyperledger.org/projects/hyperledger-burrow',
},
tags: ['tendermint core'],
},
{
name: 'MESG',
description: 'An open event channel and CLI for building and running modular applications. Control the flow of data and level of security between your whole stack of connected systems.',
image: '/static/logos/mesg.png',
network: '?',
verified: 'false',
links: {
proof: 'https://medium.com/mesg/bi-weekly-news-29-08-19-3e7ce9d3533a',
github: 'https://github.com/mesg-foundation',
twitter: 'https://twitter.com/mesgfoundation',
website: 'https://mesg.com/',
},
tags: ['cosmos sdk'],
},
{
name: 'DecentRandom',
description: 'Higher security and quality randomization than any traditional service can be handled at a fraction of the cost of a network fee.',
image: '/static/logos/decentrandom.png',
network: 'testnet',
verified: 'false',
links: {
proof: 'https://decentrandom.com/asset/whitepaper/whitepaper_beta_kr_v.0.2.1.pdf',
github: 'https://github.com/decentrandom',
chat: 'https://t.me/joinchat/EF5N2RHTiUOFs4db7vCviA',
website: 'https://decentrandom.com/',
},
tags: ['cosmos sdk', 'tendermint core'],
},
{
name: 'BigchainDB',
description: 'Traditional blockchains lack what most enterprises require. BigchainDB takes a different approach, one that starts with a big data distributed database and then adds blockchain characteristics. The result is high throughput and low latency, making data-centric and high volume use cases a breeze. BigchainDB combines the all-important advantages of queryability and performance of traditional databases with the distributed, secure and immutable nature of blockchain technology into one package.',
image: '/static/logos/bigchaindb.jpg',
network: '?',
verified: 'false',
links: {
proof: 'https://blog.bigchaindb.com/bigchaindb-2-0-is-byzantine-fault-tolerant-5ffdac96bc44',
github: 'https://github.com/bigchaindb',
twitter: 'https://twitter.com/BigchainDB',
chat: 'https://gitter.im/bigchaindb/bigchaindb',
website: 'https://www.bigchaindb.com/',
},
tags: ['tendermint core'],
},
{
name: 'LikeCoin',
description: 'LikeCoin aims to reinvent the Like by realigning creativity and reward. We enable attribution and cross-application collaboration on creative contents. With a reinvented Like button and our unique LikeRank algorithm, we trace content footprint and reward content creators by Proof of Creativity mechanism.',
image: '/static/logos/likecoin.png',
network: 'mainnet',
verified: 'false',
links: {
proof: 'https://github.com/likecoin/likechain',
github: 'https://github.com/likecoin',
chat: 'https://t.me/likecoin',
website: 'https://like.co/',
},
tags: ['cosmos sdk', 'tendermint core'],
},
{
name: 'Lino Network',
description: 'A value-sharing content economy where content creators, viewers, and other contributors are fairly incentivized to maximize sustainable economic growth.',
image: '/static/logos/lino-network.png',
network: 'testnet',
verified: 'false',
links: {
proof: 'https://github.com/lino-network/cosmos-sdk',
github: 'https://github.com/lino-network',
chat: 'https://t.me/joinchat/HE1lF0cPRPDt61Gnh8KH3A',
website: 'https://lino.network/',
},
tags: ['cosmos sdk', 'tendermint core'],
},
{
name: 'KONSTELLATION',
description: 'Our mission is to remove opacity and inefficiencies from the global alternative investment industry via blockchain solutions. The Konstellation Network will continue to attract leading global financial firms and industry leaders as node operators, service providers, and users.',
image: '/static/logos/konstellation.png',
network: 'development',
verified: 'false',
links: {
proof: 'https://medium.com/@KONSTELLATION/konstellation-network-will-be-developed-on-cosmos-4d8c01ff0871',
github: 'https://github.com/Konstellation',
chat: 'https://t.me/Konstellation',
website: 'https://konstellation.tech/',
},
tags: ['?'],
},
{
name: 'MEDIBLOCK',
description: 'MediBloc has been building a patient-centric medical data ecosystem, utilizing blockchain technology and its ability to add security and reliability to data.',
image: '/static/logos/mediblock.png',
network: 'mainnet',
verified: 'false',
links: {
proof: 'https://bert.substack.com/p/an-ehr-project-launches-their-own',
github: 'https://github.com/medibloc/panacea-core',
chat: 'https://t.me/medibloc',
website: 'https://medibloc.org/',
},
tags: ['cosmos sdk', 'tendermint core'],
},
{
name: 'Peerity',
description: '?',
image: '/static/logos/peerity.png',
network: '?',
verified: 'false',
links: {
proof: 'http://peerity.io/whitepaper/',
github: 'https://github.com/Peerity',
website: 'http://peerity.io/',
},
tags: ['?'],
},
{
name: 'ThetaToken',
description: 'Decentralized video streaming, powered by users and an innovative new blockchain.',
image: '/static/logos/thetatoken.png',
network: '?',
verified: 'false',
links: {
proof: 'https://medium.com/@ThetaLabs/theta-network-roadmap-for-2018-90c4fbf2cf4a',
github: 'https://github.com/thetatoken',
chat: 'https://t.me/thetatoken',
website: 'https://www.thetatoken.org/',
},
tags: ['?'],
},
{
name: 'FXCH',
description: 'FXCH is a new approach to Spot-FX clearing. Our settlement technology is remarkable in its simplicity. Our goal is simple: cut out superfluous steps in the trade clearing process, thereby leaving out unnecessary associated costs.',
image: '/static/logos/fxch.png',
network: '?',
verified: 'false',
links: {
proof: 'https://fxclr.com/',
github: 'https://github.com/fxch-ltd',
chat: 'https://slack.fxclr.com:3000/',
website: 'https://fxclr.com',
},
tags: ['tendermint core'],
},
{
name: 'peaq',
description: 'The peaq DAGchain will function as an enterprise-grade framework for private or permissioned networks for corporates as well as a fully decentralized public peaq network. peaq is designed for use in the IoT, Automotive, Machine and Telecommunications industries.',
image: '/static/logos/peaq.png',
network: '?',
verified: 'false',
links: {
proof: '?',
github: '?',
twitter: 'https://twitter.com/peaq_io',
chat: 'https://t.me/peaqio',
website: 'https://peaq.io/',
},
tags: ['tendermint bft'],
},
{
name: 'OneLedger',
description: 'OneLedger is a Blockchain as a Service (BaaS) Solutions company, that uses their own Blockchain technology to support their customer’s blockchain needs.',
image: '/static/logos/oneledger.png',
network: '?',
verified: 'false',
links: {
proof: 'https://imgur.com/bUH1mpm',
github: 'https://github.com/Oneledger/',
chat: 'https://t.me/oneledger',
website: 'https://oneledger.io/',
},
tags: ['?'],
},
{
name: 'Stratumn - IndigoCore',
description: 'Stratumn\'s Proof of Process Technology enables people and organizations to trust the millions of processes that connect our world',
image: '/static/logos/stratumn.jpeg',
network: '?',
verified: 'false',
links: {
proof: 'https://github.com/stratumn/go-indigocore',
github: 'https://github.com/stratumn',
chat: 'https://gitter.im/stratumn/Lobby',
website: 'https://stratumn.com/',
},
tags: ['?'],
},
{
name: 'EnLedger',
description: '',
image: '/static/logos/enledger.png',
network: '?',
verified: 'false',
links: {
proof: 'https://github.com/enledger/standAlonePassGenerate',
github: 'https://github.com/enledger',
website: 'https://www.enledger.io/',
},
tags: ['?'],
},
{
name: 'Altcoin Exchange',
description: '?',
image: '/static/logos/altcoin.png',
network: '?',
verified: 'false',
links: {
proof: 'https://blog.altcoin.io/why-weve-chosen-a-plasma-like-sidechain-solution-for-our-dex-97737ca46b86',
github: 'https://github.com/AltCoinExchange',
chat: 'https://t.me/altcoin_io',
website: 'https://altcoin.io/',
},
tags: ['?'],
},
{
name: 'Uphack',
description: 'Build blockchain powered social apps.',
image: '/static/logos/hashnode-mint.png',
network: '?',
verified: 'false',
links: {
proof: 'https://github.com/Hashnode/mint',
github: 'https://github.com/Hashnode',
},
tags: ['?'],
},
{
name: 'FourthState',
description: 'Cosmos SDK (Tendermint consensus) side-chain implementation for plasma.',
image: '/static/logos/fourthstate.png',
network: 'development',
verified: 'false',
links: {
proof: 'https://medium.com/blockchain-at-berkeley/fourthstate-is-implementing-plasma-6fe99019edb2',
github: 'https://github.com/fourthstate',
},
tags: ['cosmos sdk', 'tendermint core'],
},
{
name: 'Moracle Network',
description: '?',
image: '/static/logos/moraclenetwork.png',
network: '?',
verified: 'false',
links: {
proof: 'https://moracle.network/',
github: 'https://github.com/MoracleNetwork',
chat: 'https://t.me/MoracleNetwork',
website: 'https://moracle.network/',
},
tags: ['?'],
},
{
name: 'Ercoin',
description: '?',
image: '/static/logos/ercoin.png',
network: '?',
verified: 'false',
links: {
proof: 'https://goo.gl/hQyRy5',
gitlab: 'https://gitlab.com/Ercoin',
chat: 'irc://irc.freenode.net/ercoin',
website: 'http://ercoin.tech/',
},
tags: ['?'],
},
{
name: 'SmartPesa',
description: '?',
image: '/static/logos/smartpesa.png',
network: '?',
verified: 'false',
links: {
proof: 'https://tozzi21.wordpress.com/author/tozzi21/',
github: 'http://github.com/smartpesa',
chat: 'https://t.me/smartpesa',
website: 'https://www.smartpesa.com/',
},
tags: ['?'],
},
{
name: 'ShareRing',
description: '?',
image: '/static/logos/sharering.jpeg',
network: '?',
verified: 'false',
links: {
proof: 'https://venturebeat.com/2019/01/14/sharering-launches-blockchain-powered-car-sharing-on-top-of-existing-rental-services/',
github: 'https://github.com/ShareRing/',
chat: 'https://t.me/ShareRing',
website: 'https://sharering.network/',
},
tags: ['?'],
},
{
name: 'CyberMiles',
description: '?',
image: '/static/logos/cybermiles.png',
network: 'mainnet',
verified: 'false',
links: {
proof: 'https://www.cybermiles.io/en-us/cmt/whitepaper/',
github: 'https://github.com/cybermiles',
chat: 'https://t.me/cybermilestoken',
website: 'https://www.cybermiles.io/',
},
tags: ['tendermint core'],
},
{
name: 'Fluence',
description: '?',
image: '/static/logos/fluence.png',
network: '?',
verified: 'false',
links: {
proof: 'https://github.com/fluencelabs/tendermint-demo',
github: 'https://github.com/fluencelabs',
chat: 'https://t.me/joinchat/AAEssEJVYu-7YvRc0XNZaQ',
website: 'https://fluence.one/',
},
tags: ['tendermint core'],
},
{
name: 'BOID',
description: '?',
image: '/static/logos/boid.png',
network: '?',
verified: 'false',
links: {
proof: 'https://forum.cosmos.network/t/about-the-ecosystem-category/15/2',
chat: 'https://t.me/Boidcom_official',
website: 'https://www.boid.com/',
},
tags: ['?'],
},
{
name: 'Vega Protocol',
description: 'Vega is a protocol for creating and trading derivatives on a fully decentralised network.',
image: '/static/logos/vega.png',
network: '?',
verified: 'false',
links: {
proof: 'https://www.mbarlow.com/ethereum-london-meetup-vega/',
github: 'https://github.com/vegaprotocol',
website: 'https://vegaprotocol.io/',
},
tags: ['?'],
},
{
name: 'Expload',
description: 'A trusted tool for the development of open-economy games, player payouts, a ready-made legal solution for digital assets and a new game distribution channel.',
image: '/static/logos/expload.png',
network: '?',
verified: 'false',
links: {
proof: 'https://expload.com/blue-paper',
chat: 'https://t.me/expload_en',
website: 'https://expload.com/',
},
tags: ['?'],
},
{
name: 'ixo',
description: 'ixo is a blockchain built to ledger impact projects and work done in pursuit of the sustainable development goals. Its makes this project data visible, so that the progress of these projects can be easily tracked by investors. It is built on tendermint and uses the cosmos SDK.',
image: '/static/logos/ixo.png',
network: '?',
verified: 'false',
links: {
proof: 'https://medium.com/ixo-blog/weekly-update-may-14th-2018-ce306efdc66',
github: 'https://github.com/ixofoundation',
chat: 'https://t.me/ixonetwork',
website: 'http://ixo.foundation/',
},
tags: ['cosmos sdk', 'tendermint core'],
},
{
name: 'CodeChain',
description: 'Programmable open source blockchain technology optimal for developing and customizing multi-asset management systems.',
image: '/static/logos/codechain.png',
network: 'mainnet',
verified: 'false',
links: {
proof: 'https://codechain.readthedocs.io/en/latest/basic-usage.html?highlight=tendermint',
github: 'https://github.com/CodeChain-io',
website: 'https://codechain.io/',
},
tags: ['tendermint bft'],
},
{
name: 'Tatau',
description: 'Tatau is a distributed supercomputing platform used by AI companies to perform complex deep-learning operations more cost-effectively, and efficiently than other alternatives.',
image: '/static/logos/tatau.png',
network: '?',
verified: 'false',
links: {
proof: 'https://tatau.io/img/en/final_tatau_wp.pdf',
github: 'https://github.com/TatauCloud',
chat: 'https://t.me/tatau_io',
website: 'https://tatau.io/',
},
tags: ['?'],
},
{
name: 'National Digital ID',
description: '',
image: '/static/logos/ndidplatform.png',
network: '?',
verified: 'false',
links: {
proof: 'https://github.com/ndidplatform/smart-contract/blob/master/go.mod#L22',
github: 'https://github.com/ndidplatform',
twitter: 'https://twitter.com/DawnProtocol',
facebook: 'https://www.facebook.com/NationalDigitalID',
website: 'http://www.ndid.co.th',
},
tags: ['tendermint core'],
},
{
name: 'Papyrus',
description: 'Papyrus is an open source public blockchain network compatible with Ethereum ecosystem, which eliminates key issues of Ethereum, providing highly scalable, reliable and cost-efficient decentralized platform for application developers.',
image: '/static/logos/papyrus.png',
network: '?',
verified: 'false',
links: {
proof: 'https://i.imgur.com/ok5CORM.png',
github: 'https://github.com/papyrusglobal',
chat: 'https://t.me/papyrusglobal',
website: 'https://papyrus.global/',
},
tags: ['?'],
},
{
name: 'Pallium',
description: '?',
image: '/static/logos/neocortex.png',
network: '?',
verified: 'false',
links: {
proof: 'https://github.com/neocortexlab?utf8=%E2%9C%93&q=tendermint&type=&language=',
github: 'https://github.com/neocortexlab',
chat: 'https://t.me/joinchat/BnO6ig_CZTTF5zc8Iwx7aA',
website: 'https://neocortexlab.io',
},
tags: ['?'],
},
{
name: 'Oracle International Corporation',
description: '?',
image: '/static/logos/oracle.png',
network: '?',
verified: 'false',
links: {
proof: 'http://www.freepatentsonline.com/y2017/0236120.html',
},
tags: ['?'],
},
{
name: 'Hashgard',
description: 'Hashgard is a world leading high functionality digital finance public chain.',
image: '/static/logos/hashgard.png',
network: 'mainnet',
verified: 'false',
links: {
proof: 'https://medium.com/@hashgard/hashgard-establishes-strategic-partnership-with-irisnet-in-depth-analysis-d00cc8fa5db5',
github: 'https://github.com/hashgard',
chat: 'https://t.me/hashgardeng',
website: 'https://www.hashgard.io/',
},
tags: ['cosmos sdk'],
},
{
name: 'Cosmic Bridge',
description: '?',
image: '/static/logos/cosmic-bridge.jpeg',
network: '?',
verified: 'false',
links: {
proof: 'https://github.com/CosmicBridge/server/blob/master/README.md',
github: 'https://github.com/CosmicBridge',
},
tags: ['?'],
},
{
name: 'UniCoins',
description: 'UniCoins is a Dapp used as a red pocket in China based on Cosmos and IRISnet. It enables users to send cryptocurrency directly to others using a function of red pocket, create and share a lucky draw event, and make an intelligent bulk transfer',
image: '/static/logos/unicoins.png',
network: '?',
verified: 'false',
links: {
proof: 'https://t.me/cosmosproject/176383',
chat: 'https://t.me/UniCoinsUs',
website: 'http://unicoins.us/beta/',
},
tags: ['cosmos sdk'],
},
{
name: 'Kuende',
description: 'Kuende is the first blockchain fueled social network that uses gamified challenges to reward real life social interaction.',
image: '/static/logos/kuende.png',
network: '?',
verified: 'false',
links: {
proof: 'https://medium.com/kuende/cosmos-network-kuendes-home-for-its-own-decentralized-solution-e60d9a74cb4',
github: 'https://github.com/kuende',
chat: 'http://t.me/kuende',
website: 'https://kuende.com/',
},
tags: ['cosmos sdk', 'tendermint core'],
},
{
name: 'Wisdom of Crowd',
description: '?',
image: '/static/logos/woc.jpeg',
network: '?',
verified: 'false',
links: {
proof: 'https://medium.com/wisdom-of-crowd/wisdom-of-crowd-decentralized-prediction-market-on-lotionjs-with-tendermint-blockchain-77082e7c37d4',
github: 'https://github.com/swswsw/predictionmkt',
chat: 'https://t.me/wisdomofcrowd5',
website: 'http://www.wisdomofcrowd.org/',
},
tags: ['?'],
},
{
name: 'Agreements Network',
description: 'The Agreements Network is a prime opportunity to build a new legal layer in networked commerce, backed by the certainty of blockchain and smart contract-based evidence and processes. Lawyers with zero coding experience can combine their savvy, their clients’ needs and the Agreements Network to turn today’s legal problem into tomorrow’s market opportunity.',
image: '/static/logos/the-agreements-network.png',
network: '?',
verified: 'false',
links: {
proof: 'https://docs.agreements.network/#introduction-to-the-agreements-network',
github: 'https://github.com/agreements-network',
chat: 'https://t.me/Agreements_Network',
website: 'https://agreements.network/',
},
tags: ['?'],
},
{
name: 'Datapace',
description: '?',
image: '/static/logos/peerity.png',
network: '?',
verified: 'false',
links: {
proof: 'https://datapace.io/datapace_whitepaper.pdf',
website: 'https://datapace.io/',
},
tags: ['?'],
},
{
name: 'playlist',
description: 'Playlist provides a fully licensed, ad-supported music streaming service that generates 10 times the user engagement of Pandora and Spotify. For the first time, token economics can enable millions of music fans to participate in the music economy. However, bringing Playlist users into the token economy right now would overwhelm conventional smart contract platforms. To overcome that challenge, Playlist is leveraging the unique capabilities of the Cosmos platform to bring incentivized cooperation at consumer scale.',
image: '/static/logos/playlist.png',
network: '?',
verified: 'false',
links: {
proof: 'https://medium.com/tendermint/tokenizing-the-music-industry-with-play-protocol-ea929de52210',
website: 'https://www.playlist.com/',
},
tags: ['cosmos sdk', 'tendermint core'],
},
{
name: 'Clearing',
description: 'Clearing.cc is the new approach for Crypto Currency Exchanges. Our goal is to provide a solid Crypto Currency clearing process using our new technology designed for the Crypto Currency market. This is the solution for the new Crypto Currency era.',
image: '/static/logos/peerity.png',
network: '?',
verified: 'false',
links: {
proof: 'https://i.imgur.com/kWCkPIY.png',
website: 'https://www.clearing.cc/',
},
tags: ['?'],
},
{
name: 'memecom',
description: 'Collect and trade dank memes on the blockchain.',
image: '/static/logos/memecom.png',
network: '?',
verified: 'false',
links: {
proof: 'https://goo.gl/pnJD67',
website: 'https://memecom.co/',
},
tags: ['?'],
},
{
name: 'Paradigm',
description: 'Paradigm provides simple interfaces and libraries for developers to implement smart contract based financial primitives. These settlement systems can be anything from spot exchange to derivatives, loans, and more. Any hybrid decentralized settlement logic (with off-chain order relay with on-chain settlement) can be implemented. Paradigm enables diverse and open marketplaces for custom exchange logic and tokenized financial instrumentation.',
image: '/static/logos/paradigm.png',
network: '?',
verified: 'false',
links: {
proof: 'https://paradigm.market/whitepaper',
github: 'https://github.com/ParadigmFoundation',
chat: 'https://chat.paradigm.market',
website: 'https://paradigm.market/',
},
tags: ['?'],
},
{
name: 'Crowd Control',
description: 'Trading Card Game where you can create your own cards and balance all cards by voting on the blockchain.',
image: '/static/logos/crowd-control.png',
network: 'development',
verified: 'false',
links: {
proof: 'https://github.com/DecentralCardGame/whitepaper/blob/master/whitepaper.pdf',
github: 'https://github.com/DecentralCardGame',
chat: 'https://discord.gg/yPA3aKe',
website: 'https://crowdcontrol.network/',
twitter: 'https://twitter.com/CrowdControlNet',
},
tags: ['cosmos sdk', 'nft', 'gaming'],
},
{
name: 'THORChain',
description: '?',
image: '/static/logos/thorchain.png',
network: 'mainnet',