-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlandscape.yml
2206 lines (2206 loc) · 108 KB
/
landscape.yml
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
landscape:
- category:
name: Computing Infrastructure
subcategories:
- subcategory:
name: Cloud, On-premises, Orchestration
items:
- item:
name: Amazon Web Services
homepage_url: https://aws.amazon.com
project: non-hyperledger-member-services
logo: amazon-web-services.svg
crunchbase: https://www.crunchbase.com/organization/amazon-web-services
- item:
name: Equinix
homepage_url: https://www.equinix.com/
project: non-hyperledger-member-services
logo: equinix-logo-vertical.svg
crunchbase: https://www.crunchbase.com/organization/equinix
- item:
name: Google
homepage_url: https://www.google.com
project: non-hyperledger-member-services
logo: google.svg
crunchbase: https://www.crunchbase.com/organization/google
- item:
name: IBM
homepage_url: https://www.ibm.com
project: hyperledger-member-services
logo: ibm.svg
crunchbase: https://www.crunchbase.com/organization/ibm
- item:
name: Kubernetes
homepage_url: https://kubernetes.io
project: non-hyperledger-member-products
repo_url: https://github.com/kubernetes/kubernetes
logo: kubernetes.svg
crunchbase: https://www.crunchbase.com/organization/kubernetes
- item:
name: Microsoft
homepage_url: https://www.microsoft.com
project: non-hyperledger-member-services
logo: microsoft.svg
crunchbase: https://www.crunchbase.com/organization/microsoft
- item:
name: Oracle
homepage_url: https://www.oracle.com
project: hyperledger-member-services
logo: oracle.svg
crunchbase: https://www.crunchbase.com/organization/oracle
- item:
name: RackN
homepage_url: https://www.rackn.com
project: non-hyperledger-member-services
logo: rackn-v3.svg
crunchbase: https://www.crunchbase.com/organization/rackn-inc
- item:
name: Ridge
homepage_url: https://www.ridge.co/
project: non-hyperledger-member-services
logo: ridge-logo.svg
crunchbase: https://www.crunchbase.com/organization/tectonic-c189
- item:
name: SUSE Rancher
homepage_url: https://www.suse.com/
project: non-hyperledger-member-services
repo_url: https://github.com/rancher/rancher
logo: rancher-logo.svg
crunchbase: https://www.crunchbase.com/organization/suse
- item:
name: VMware
homepage_url: https://www.vmware.com
project: non-hyperledger-member-products
logo: vmware.svg
crunchbase: https://www.crunchbase.com/organization/vmware
- category:
name: Distributed Ledgers
subcategories:
- subcategory:
name: Permissioned
items:
- item:
name: ConsenSys Quorum
homepage_url: https://consensys.net/quorum/
project: non-hyperledger-member-products
repo_url: https://github.com/ConsenSys/quorum
logo: consensys-quorum.svg
crunchbase: https://www.crunchbase.com/organization/quorum-abb7
- item:
name: MultiChain
homepage_url: https://www.multichain.com
project: non-hyperledger-member-products
repo_url: https://github.com/MultiChain/multichain
logo: multichain-logo-vector-2.svg
crunchbase: https://www.crunchbase.com/organization/multichain
- item:
name: R3 Corda
homepage_url: https://www.r3.com
project: hyperledger-member-products
repo_url: https://github.com/corda/corda
logo: corda.svg
crunchbase: https://www.crunchbase.com/organization/r3-cev
- subcategory:
name: Hybrid
items:
- item:
name: Dragonchain protocol
homepage_url: https://dragonchain.com
project: non-hyperledger-member-products
repo_url: https://github.com/dragonchain/dragonchain
logo: dragonchain.svg
crunchbase: https://www.crunchbase.com/organization/dragonchain-87e5
- item:
name: Kadena
homepage_url: https://www.kadena.io
project: non-hyperledger-member-products
logo: kadena.svg
crunchbase: https://www.crunchbase.com/organization/kadena-llc
- subcategory:
name: Permissionless
items:
- item:
name: Algorand
homepage_url: https://www.algorand.com/
project: non-hyperledger-member-products
repo_url: https://github.com/algorand/go-algorand
logo: algorand.svg
crunchbase: https://www.crunchbase.com/organization/algorand
- item:
name: Bitcoin
homepage_url: https://bitcoin.org/en/
project: non-hyperledger-member-products
repo_url: https://github.com/bitcoin/bitcoin
logo: bitcoin.svg
crunchbase: https://www.crunchbase.com/organization/bitcoin
- item:
name: Cardano
homepage_url: https://cardano.org/
project: non-hyperledger-member-products
repo_url: https://github.com/cardano-foundation/developer-portal
logo: cardano-logo.svg
crunchbase: https://www.crunchbase.com/organization/cardano-foundation
- item:
name: dfinity
homepage_url: https://dfinity.org/
project: non-hyperledger-member-products
repo_url: https://github.com/dfinity/ic
logo: dfinity-logo.svg
crunchbase: https://www.crunchbase.com/organization/dfinity
- item:
name: EOSIO
homepage_url: https://eos.io
project: non-hyperledger-member-products
repo_url: https://github.com/EOSIO/eos
logo: eosio.svg
crunchbase: https://www.crunchbase.com/organization/block-one
- item:
name: Ethereum
homepage_url: https://ethereum.org/en
project: hyperledger-member-products
repo_url: https://github.com/ethereum/go-ethereum
logo: ethereum.svg
crunchbase: https://www.crunchbase.com/organization/ethereum
- item:
name: Hedera Hashgraph
homepage_url: https://hedera.com
project: hyperledger-member-products
logo: hedera-hashgraph.svg
crunchbase: https://www.crunchbase.com/organization/hashgraph
- item:
name: IOTA
homepage_url: https://www.iota.org
project: non-hyperledger-member-products
repo_url: https://github.com/iotaledger/tips
logo: Iota.svg
crunchbase: https://www.crunchbase.com/organization/iota-foundation
- item:
name: Solana
homepage_url: https://solana.com/
project: non-hyperledger-member-products
repo_url: https://github.com/solana-labs/solana
logo: solana-logo.svg
crunchbase: https://www.crunchbase.com/organization/solana-io
- item:
name: Stellar
homepage_url: https://www.stellar.org/
project: hyperledger-member-products
repo_url: https://github.com/stellar/stellar-protocol
logo: stellar.svg
crunchbase: https://www.crunchbase.com/organization/stellar
- item:
name: Zilliqa
homepage_url: https://www.zilliqa.com/
project: non-hyperledger-member-products
repo_url: https://github.com/Zilliqa/Zilliqa
logo: zilliqa.svg
crunchbase: https://www.crunchbase.com/organization/zilliqa
- category:
name: Technology Intersections
subcategories:
- subcategory:
name: Blockchain databases
items:
- item:
name: Amazon QLDB
homepage_url: https://aws.amazon.com/qldb/
project: non-hyperledger-member-products
logo: amazon-web-services.svg
crunchbase: https://www.crunchbase.com/organization/amazon-web-services
- item:
name: BigchainDB
homepage_url: https://www.bigchaindb.com
project: non-hyperledger-member-products
repo_url: https://github.com/bigchaindb/bigchaindb
logo: bigchaindb.svg
crunchbase: https://www.crunchbase.com/organization/bigchaindb
- item:
name: Fluree
homepage_url: https://flur.ee
project: non-hyperledger-member-products
repo_url: https://github.com/fluree/db
logo: fluree.svg
crunchbase: https://www.crunchbase.com/organization/fluree-pbc
- item:
name: Modex
homepage_url: https://modex.tech
project: non-hyperledger-member-products
logo: modex-purple.svg
crunchbase: https://www.crunchbase.com/organization/modex-2
- item:
name: ProvenDB
homepage_url: https://www.provendb.com
project: non-hyperledger-member-products
logo: provendb.svg
crunchbase: https://www.crunchbase.com/organization/provendb
- subcategory:
name: Distributed storage/file systems
items:
- item:
name: Filebase
homepage_url: https://filebase.com/
project: non-hyperledger-member-products
logo: filebase-logo.svg
crunchbase: https://www.crunchbase.com/organization/filebase-484f
- item:
name: Iagon
homepage_url: https://www.iagon.com/index.html
project: non-hyperledger-member-products
repo_url: https://github.com/Iagonorg/IagonCloudApp
logo: iagon-logo.svg
crunchbase: https://www.crunchbase.com/organization/iagon
- item:
name: IPFS
homepage_url: https://ipfs.tech/
project: non-hyperledger-member-products
repo_url: https://github.com/ipfs/ipfs
logo: ipfs.svg
crunchbase: https://www.crunchbase.com/organization/ipfs
- item:
name: Storj
homepage_url: https://www.storj.io/
project: non-hyperledger-member-products
repo_url: https://github.com/storj/storj
logo: storj-logo.svg
crunchbase: https://www.crunchbase.com/organization/storj
- item:
name: Taekion
homepage_url: https://taekion.com
project: non-hyperledger-member-products
logo: taekion-silver-outline.svg
crunchbase: https://www.crunchbase.com/organization/taekion
- subcategory:
name: Artificial Intelligence
items:
- item:
name: Attestiv
homepage_url: https://attestiv.com/
project: non-hyperledger-member-products
logo: attestiv.svg
crunchbase: https://www.crunchbase.com/organization/attestiv
- item:
name: Fetch.AI
homepage_url: https://fetch.ai
project: non-hyperledger-member-products
logo: fetchai.svg
crunchbase: https://www.crunchbase.com/organization/fetch-ai
- subcategory:
name: Internet of Things
items:
- item:
name: Helium
homepage_url: https://www.helium.com/
project: non-hyperledger-member-products
logo: helium.svg
crunchbase: https://www.crunchbase.com/organization/helium-systems-inc
- item:
name: IoTex
homepage_url: https://iotex.io/
project: non-hyperledger-member-products
logo: iotex-logo.svg
crunchbase: https://www.crunchbase.com/organization/iotex
- subcategory:
name: Cybersecurity
items:
- item:
name: ALTR
homepage_url: https://www.altr.com/
project: non-hyperledger-member-products
logo: altr.svg
crunchbase: https://www.crunchbase.com/organization/altr-6b82
- item:
name: Chainkit
homepage_url: https://chainkit.com
project: non-hyperledger-member-products
logo: chainkit.svg
crunchbase: https://www.crunchbase.com/organization/pencildata-inc
- item:
name: Cryptowerk
homepage_url: https://cryptowerk.com
project: non-hyperledger-member-products
logo: dlt-logo.svg
crunchbase: https://www.crunchbase.com/organization/cryptowerk
- category:
name: Interoperability
subcategories:
- subcategory:
name: Network of ledgers projects
items:
- item:
name: Aion
homepage_url: https://aion.theoan.com/
project: non-hyperledger-member-products
repo_url: https://github.com/aionnetwork/aion
logo: aion.svg
crunchbase: https://www.crunchbase.com/organization/the-aion-network
- item:
name: Cosmos
homepage_url: https://cosmos.network
project: non-hyperledger-member-products
repo_url: https://github.com/cosmos/cosmos
logo: cosmos.svg
crunchbase: https://www.crunchbase.com/organization/cosmos-network
- item:
name: Polkadot
homepage_url: https://polkadot.network
project: non-hyperledger-member-products
repo_url: https://github.com/paritytech/polkadot
logo: polkadot.svg
crunchbase: https://www.crunchbase.com/organization/polkadot
- item:
name: Polygon
homepage_url: https://polygon.technology/
project: non-hyperledger-member-products
repo_url: https://github.com/0xPolygon/polygon-edge
logo: polygon.svg
crunchbase: https://www.crunchbase.com/organization/polygontechnology
- subcategory:
name: Point-to-point and overlayer approaches
items:
- item:
name: Canton
homepage_url: https://www.canton.network/
project: hyperledger-member-products
logo: digital-asset.svg
crunchbase: https://www.crunchbase.com/organization/digital-asset-2
- item:
name: Chainlink
homepage_url: https://chain.link/
project: non-hyperledger-member-products
repo_url: https://github.com/smartcontractkit/chainlink
logo: chainlink.svg
crunchbase: https://www.crunchbase.com/organization/chainlink
- item:
name: Interledger
homepage_url: https://interledger.org/
project: non-hyperledger-member-products
repo_url: https://github.com/interledger/rfcs
logo: interledger-logo.svg
crunchbase: https://www.crunchbase.com/organization/interledger
- item:
name: Quant Network/Overledger
homepage_url: https://www.quant.network
project: non-hyperledger-member-products
logo: quant-network.svg
crunchbase: https://www.crunchbase.com/organization/quant-network
- category:
name: Smart Contracts/Tokenization
subcategories:
- subcategory:
name: Smart contract languages/execution environments
items:
- item:
name: Chaincode
homepage_url: https://www.hyperledger.org/use/fabric
repo_url: https://github.com/hyperledger/fabric-chaincode-go
logo: hyperledger-fabric.svg
crunchbase: https://www.crunchbase.com/organization/hyperledger-2
- item:
name: Daml
homepage_url: https://www.digitalasset.com/developers
project: hyperledger-member-products
repo_url: https://github.com/digital-asset/daml
logo: daml.svg
crunchbase: https://www.crunchbase.com/organization/digital-asset-2
- item:
name: Pact
homepage_url: https://www.kadena.io
project: non-hyperledger-member-products
repo_url: https://github.com/kadena-io/pact
logo: kadena.svg
crunchbase: https://www.crunchbase.com/organization/kadena-llc
- item:
name: Scilla
homepage_url: https://scilla-lang.org/
project: non-hyperledger-member-products
repo_url: https://github.com/Zilliqa/scilla
logo: zilliqa.svg
crunchbase: https://www.crunchbase.com/organization/zilliqa
- item:
name: Script
homepage_url: https://bitcoin.org/en
project: non-hyperledger-member-products
repo_url: https://github.com/bitcoin-core/btcdeb
logo: bitcoin.svg
crunchbase: https://www.crunchbase.com/organization/bitcoin
- item:
name: Smart Filter
homepage_url: https://www.multichain.com
project: non-hyperledger-member-products
repo_url: https://github.com/MultiChain/smart-filter-examples
logo: multichain-logo-vector-2.svg
crunchbase: https://www.crunchbase.com/organization/multichain
- item:
name: Solidity
homepage_url: https://ethereum.org/en/developers/docs/smart-contracts/languages/
project: non-hyperledger-member-products
repo_url: https://github.com/ethereum/solidity
logo: solidity.svg
crunchbase: https://www.crunchbase.com/organization/ethereum
- item:
name: Vyper
homepage_url: https://ethereum.org/en/developers/docs/smart-contracts/languages/
project: non-hyperledger-member-products
repo_url: https://github.com/vyperlang/vyper
logo: vyper-logo.svg
crunchbase: https://www.crunchbase.com/organization/ethereum
- item:
name: WebAssembly
homepage_url: https://webassembly.org/
project: non-hyperledger-member-products
repo_url: https://github.com/WebAssembly/binaryen
logo: wasm-logo.svg
crunchbase: https://www.crunchbase.com/organization/webassembly
- subcategory:
name: Legal contracts
items:
- item:
name: Accord Project
homepage_url: https://accordproject.org/
project: non-hyperledger-member-products
repo_url: https://github.com/accordproject/cicero
logo: accord.svg
crunchbase: https://www.crunchbase.com/organization/accord-project
- item:
name: Chronicled
homepage_url: https://www.chronicled.com
project: non-hyperledger-member-products
logo: chronicled.svg
crunchbase: https://www.crunchbase.com/organization/chronicled
- item:
name: Clause
homepage_url: https://clause.io
project: non-hyperledger-member-products
repo_url: https://github.com/clauseHQ/clause-model-library
logo: clauseio.svg
crunchbase: https://www.crunchbase.com/organization/clause
- item:
name: Monax
homepage_url: https://monax.io
project: non-hyperledger-member-products
logo: monax.svg
crunchbase: https://www.crunchbase.com/organization/eris-industries
- item:
name: OpenLaw
homepage_url: https://www.openlaw.io
project: non-hyperledger-member-products
repo_url: https://github.com/openlawteam/openlaw-core
logo: openlaw.svg
crunchbase: https://www.crunchbase.com/organization/openlaw
- subcategory:
name: Digital token frameworks
items:
- item:
name: ERC
homepage_url: https://ethereum.org/en
project: hyperledger-member-products
repo_url: https://github.com/ethereum/EIPs
logo: ethereum.svg
crunchbase: https://www.crunchbase.com/organization/ethereum
- subcategory:
name: Digital wallets
items:
- item:
name: Block.io
homepage_url: https://block.io/
project: non-hyperledger-member-products
repo_url: https://github.com/BlockIo/block_io-php
logo: blockio.svg
crunchbase: https://www.crunchbase.com/organization/block-io-inc-
- item:
name: Chainweaver
homepage_url: https://www.kadena.io
project: non-hyperledger-member-products
repo_url: https://github.com/kadena-io/chainweaver
logo: kadena.svg
crunchbase: https://www.crunchbase.com/organization/kadena-llc
- item:
name: DFNS
homepage_url: https://www.dfns.co/
project: non-hyperledger-member-products
logo: dfns.svg
crunchbase: https://www.crunchbase.com/organization/xkey
- item:
name: MetaMask
homepage_url: https://metamask.io
project: non-hyperledger-member-products
repo_url: https://github.com/MetaMask/metamask-docs
logo: metamask.svg
crunchbase: https://www.crunchbase.com/organization/metamask
- category:
name: Application Tooling/Integrations
subcategories:
- subcategory:
name: Development tools/platforms
items:
- item:
name: Application Service for Blockchain (Blockchain System Development Service)
homepage_url: https://www.hitachi.com/products/it/appsvdiv/service/app-service-blockchain/
project: hyperledger-member-products
logo: hitachi-stacked-color.svg
twitter: https://twitter.com/Hitachi
crunchbase: https://www.crunchbase.com/organization/hitachi
- item:
name: Azure Blockchain Workbench
homepage_url: https://azure.microsoft.com/en-us/features/blockchain-workbench/
project: non-hyperledger-member-products
logo: microsoft.svg
crunchbase: https://www.crunchbase.com/organization/microsoft
- item:
name: Truffle Suite
homepage_url: https://www.trufflesuite.com
project: non-hyperledger-member-products
repo_url: https://github.com/trufflesuite/truffle
logo: truffle-suite.svg
crunchbase: https://www.crunchbase.com/organization/truffle-suite
- item:
name: Web3 Labs/Chainlens
description: >-
Chainlens by Web3 Labs, is the go-to appchain and blockchain explorer for EVM-compatible networks, designed to demystify blockchain assets and
smart contracts. With a focus on ease of use, Chainlens offers full NFT and token support (ERC-20, ERC-721, ERC-1155), advanced search, filter,
and sort features, customisation tailored to your brand, robust API for streamlined reporting. Used by hundreds of companies and protocols
globally, Chainlens has accelerated blockchain adoption and made it easier to manage digital assets.
homepage_url: https://chainlens.com/
project: hyperledger-member-products
logo: chainlens.svg
crunchbase: https://www.crunchbase.com/organization/web3-labs
- subcategory:
name: Analytics/Monitoring tools
items:
- item:
name: Elliptic
homepage_url: https://www.elliptic.co/
project: non-hyperledger-member-products
logo: elliptic-logo.svg
crunchbase: https://www.crunchbase.com/organization/elliptic
- item:
name: Metrika
homepage_url: https://www.metrika.co/
project: non-hyperledger-member-products
logo: metrika-logo.svg
crunchbase: https://www.crunchbase.com/organization/metrika-3908
- item:
name: Quant Network/seeQ
homepage_url: https://www.quant.network
project: non-hyperledger-member-products
logo: quant-network.svg
crunchbase: https://www.crunchbase.com/organization/quant-network
- subcategory:
name: Application integrations
items:
- item:
name: Chronicle
homepage_url: https://btp.works/chronicle
project: non-hyperledger-member-products
repo_url: https://github.com/btpworks/chronicle
logo: chronicle-dark.svg
crunchbase: https://www.crunchbase.com/organization/btpworks
- item:
name: Finboot Track&Trace/Blockstamp
homepage_url: https://www.finboot.com/
project: non-hyperledger-member-products
logo: finboot.svg
crunchbase: https://www.crunchbase.com/organization/finboot
- item:
name: Ping Identity/Shocard
homepage_url: https://www.pingidentity.com/en/platform/capabilities/personal-identity.html
project: non-hyperledger-member-products
logo: ping-identity.svg
crunchbase: https://www.crunchbase.com/organization/shocard-inc
- item:
name: Salesforce Blockchain
homepage_url: https://www.salesforce.com
project: non-hyperledger-member-products
logo: salesforce.svg
crunchbase: https://www.crunchbase.com/organization/salesforce
- item:
name: SAP ICH for Life Sciences
homepage_url: https://www.sap.com/index.html
project: non-hyperledger-member-products
logo: sap.svg
crunchbase: https://www.crunchbase.com/organization/sap
- item:
name: Vottun Credentials
homepage_url: https://vottun.com
project: non-hyperledger-member-products
logo: votton.svg
crunchbase: https://www.crunchbase.com/organization/vottun
- category:
name: Multiparty Applications
subcategories:
- subcategory:
name: Industry-specific applications and decentralized marketplaces
items:
- item:
name: AgriLedger
homepage_url: https://www.agriledger.io/
project: non-hyperledger-member-products
logo: dlt-logo.svg
crunchbase: https://www.crunchbase.com/organization/agriledger
- item:
name: BondbloX
homepage_url: https://www.bondblox.com/
project: hyperledger-member-products
logo: bondblox.svg
crunchbase: https://www.crunchbase.com/organization/bondevalue
- item:
name: Databroker
homepage_url: https://www.databroker.global
project: non-hyperledger-member-products
logo: databroker.svg
crunchbase: https://www.crunchbase.com/organization/databroker-dao
- item:
name: Epidaurus Health
homepage_url: https://www.epidaurus.health/
project: non-hyperledger-member-products
logo: epidaurus-RGB.svg
crunchbase: https://www.crunchbase.com/organization/epidaurus-health
- item:
name: GrainChain
homepage_url: https://www.grainchain.io
project: non-hyperledger-member-products
logo: dlt-logo.svg
crunchbase: https://www.crunchbase.com/organization/grainchain
- item:
name: IBM Food Trust
homepage_url: https://www.ibm.com/products/supply-chain-intelligence-suite/food-trust
project: hyperledger-member-products
logo: ibm.svg
crunchbase: https://www.crunchbase.com/organization/ibm
- item:
name: MediLedger
homepage_url: https://www.mediledger.com
project: network
logo: mediledger.svg
crunchbase: https://www.crunchbase.com/organization/mediledger
- item:
name: PharmaLedger
homepage_url: https://pharmaledger.eu/
project: network
logo: pharmaledger.svg
crunchbase: https://www.crunchbase.com/organization/pharmaledger
- item:
name: Public Mint
homepage_url: https://publicmint.com/
project: non-hyperledger-member-products
logo: publicmint.svg
crunchbase: https://www.crunchbase.com/organization/public-mint
- item:
name: WAX Marketplace
homepage_url: https://marketplace.wax.io
project: non-hyperledger-member-products
logo: wax.svg
crunchbase: https://www.crunchbase.com/organization/wax-f984
- category:
name: Platforms
subcategories:
- subcategory:
name: Management/Operations
items:
- item:
name: Amazon Managed Blockchain
homepage_url: https://aws.amazon.com/managed-blockchain/
project: non-hyperledger-member-products
logo: amazon-web-services.svg
crunchbase: https://www.crunchbase.com/organization/amazon-web-services
- item:
name: BlockApps STRATO
homepage_url: https://blockapps.net
project: non-hyperledger-member-products
logo: dlt-logo.svg
crunchbase: https://www.crunchbase.com/organization/blockapps
- item:
name: Blockdaemon
homepage_url: https://blockdaemon.com/
project: non-hyperledger-member-products
logo: blockdaemon.svg
crunchbase: https://www.crunchbase.com/organization/blockdaemon
- item:
name: BTP
homepage_url: https://btp.works
project: non-hyperledger-member-products
logo: btp-works.svg
crunchbase: https://www.crunchbase.com/organization/btpworks
- item:
name: Chainstack
homepage_url: https://chainstack.com
project: non-hyperledger-member-products
logo: chainstack.svg
crunchbase: https://www.crunchbase.com/organization/chainstack
- item:
name: Dragonchain
homepage_url: https://dragonchain.com
project: non-hyperledger-member-products
logo: dragonchain.svg
crunchbase: https://www.crunchbase.com/organization/dragonchain-87e5
- item:
name: Finboot MARCO
homepage_url: https://www.finboot.com
project: non-hyperledger-member-products
logo: finboot.svg
crunchbase: https://www.crunchbase.com/organization/finboot
- item:
name: First Genesis Xenese
homepage_url: https://firstgenesis.com
project: non-hyperledger-member-products
logo: dlt-logo.svg
crunchbase: https://www.crunchbase.com/organization/first-genesis
- item:
name: Hitachi Blockchain Service for Hyperledger Fabric
homepage_url: https://www.hitachi.co.jp/blockchain/service/hyperledger
project: hyperledger-member-products
logo: hitachi-stacked-color.svg
twitter: https://twitter.com/Hitachi
crunchbase: https://www.crunchbase.com/organization/hitachi
- item:
name: IBM Blockchain Platform
homepage_url: https://www.ibm.com/products/blockchain-platform-hyperledger-fabric
project: hyperledger-member-products
logo: ibm.svg
crunchbase: https://www.crunchbase.com/organization/ibm
- item:
name: IntellectEU Catalyst Blockchain Platform
homepage_url: https://catalyst.intellecteu.com
project: hyperledger-member-products
logo: intellecteu.svg
crunchbase: https://www.crunchbase.com/organization/intellecteu
- item:
name: Kaleido
homepage_url: https://kaleido.io/
project: hyperledger-member-products
logo: kaleido.svg
crunchbase: https://www.crunchbase.com/organization/kaleido
- item:
name: Oracle Blockchain Platform
homepage_url: https://www.oracle.com/blockchain
project: hyperledger-member-products
logo: oracle.svg
crunchbase: https://www.crunchbase.com/organization/oracle
- item:
name: SettleMint
homepage_url: https://www.settlemint.com
project: non-hyperledger-member-products
logo: settlemint.svg
crunchbase: https://www.crunchbase.com/organization/settlemint-nv
- item:
name: SIMBA Chain
homepage_url: https://simbachain.com/
project: non-hyperledger-member-products
logo: simba_chain.svg
crunchbase: https://www.crunchbase.com/organization/simba-chain
- item:
name: VMware Blockchain
homepage_url: https://www.vmware.com/products/blockchain.html
project: non-hyperledger-member-products
logo: vmware.svg
crunchbase: https://www.crunchbase.com/organization/vmware
- category:
name: Standards
subcategories:
- subcategory:
name: Standards
items:
- item:
name: BSI PAS 19668
homepage_url: https://www.bsigroup.com/
project: organization
logo: bsi-logo.svg
crunchbase: https://www.crunchbase.com/organization/bsi
- item:
name: EEA
homepage_url: https://entethalliance.org/
project: organization
logo: eea-logo.svg
crunchbase: https://www.crunchbase.com/organization/enterprise-ethereum-alliance
- item:
name: GS1
homepage_url: https://www.gs1.org/
project: organization
logo: GS1-logo.svg
crunchbase: https://www.crunchbase.com/organization/gs1
- item:
name: INATBA
homepage_url: https://inatba.org/
project: organization
logo: inatba.svg
crunchbase: https://www.crunchbase.com/organization/inatba
- item:
name: TTF
homepage_url: https://interwork.org
project: organization
logo: iwa.svg
crunchbase: https://www.crunchbase.com/organization/interwork-alliance-e317
- item:
name: W3C
homepage_url: https://www.w3.org/
project: organization
logo: W3C-logo.svg
crunchbase: https://www.crunchbase.com/organization/w3c-e64a
- category:
name: Services
subcategories:
- subcategory:
name: Consulting/Professional Services
items:
- item:
name: Accenture
homepage_url: https://www.accenture.com/
project: hyperledger-member-services
logo: accenture.svg
crunchbase: https://www.crunchbase.com/organization/accenture
- item:
name: Application Service for Blockchain (Consulting Service)
homepage_url: https://www.hitachi.com/products/it/appsvdiv/service/app-service-blockchain/
project: hyperledger-member-products
logo: hitachi-stacked-color.svg
twitter: https://twitter.com/Hitachi
crunchbase: https://www.crunchbase.com/organization/hitachi
- item:
name: Atos
homepage_url: https://atos.net/en
project: non-hyperledger-member-services
logo: atos.svg
crunchbase: https://www.crunchbase.com/organization/atos
- item:
name: Capgemini
homepage_url: https://www.capgemini.com
project: non-hyperledger-member-services
logo: capgemini.svg
crunchbase: https://www.crunchbase.com/organization/cap-gemini
- item:
name: Chainyard
homepage_url: https://chainyard.com/
project: hyperledger-member-services
logo: chainyard.svg
crunchbase: https://www.crunchbase.com/organization/chainyard-an-it-people-company
- item:
name: Deloitte
homepage_url: https://www2.deloitte.com
project: hyperledger-member-services
logo: deloitte.svg
crunchbase: https://www.crunchbase.com/organization/deloitte
- item:
name: Ernst & Young
homepage_url: https://www.ey.com/en_gl
project: non-hyperledger-member-services
logo: ey.svg
crunchbase: https://www.crunchbase.com/organization/ernst-young
- item:
name: Fujitsu
homepage_url: https://www.fujitsu.com/global
project: hyperledger-member-services
logo: fujitsu.svg
crunchbase: https://www.crunchbase.com/organization/fujitsu
- item:
name: GFT
homepage_url: https://www.gft.com
project: non-hyperledger-member-services
logo: gft.svg
crunchbase: https://www.crunchbase.com/organization/gft-com
- item:
name: Infosys
homepage_url: https://www.infosys.com
project: hyperledger-member-services
logo: infosys-limited.svg
crunchbase: https://www.crunchbase.com/organization/infosys
- item:
name: Innominds
homepage_url: https://www.innominds.com
project: non-hyperledger-member-services
logo: Innomindsnew.svg
crunchbase: https://www.crunchbase.com/organization/innominds-software-pvt-ltd
- item:
name: IntellectEU
homepage_url: https://intellecteu.com/
project: hyperledger-member-services
logo: intellecteu.svg
crunchbase: https://www.crunchbase.com/organization/intellecteu
- item:
name: ioBuilders
description: >-
ioBuilders is a blockchain consultancy firm specializing in enterprise solutions. They focus on the tokenization of real-world assets, custom
payment workflows, and providing guidance on enterprise blockchain services.
homepage_url: https://io.builders/
project: hyperledger-member-services
logo: io_builders_blockchain_technologies__ventures.svg
crunchbase: https://www.crunchbase.com/organization/iobuilders
- item:
name: NTT DATA
homepage_url: https://nttdata.com/
project: hyperledger-member-services
logo: ntt_data.svg
crunchbase: https://www.crunchbase.com/organization/ntt-data
- item:
name: Rethink Ledgers
homepage_url: https://www.rtledgers.com
project: non-hyperledger-member-services
logo: rethinkledgers.svg
crunchbase: https://www.crunchbase.com/organization/rethink-ledgers
- item:
name: UST
homepage_url: https://www.ust.com
project: non-hyperledger-member-services
logo: ust.svg
crunchbase: https://www.crunchbase.com/organization/ust
- item:
name: Web3 Labs
description: >-
Web3 Labs offers enterprise support for Hyperledger Besu, a crucial aspect when organisations or consortia set up permissioned blockchain
networks. As ConsenSys' recommended supplier for Hyperledger Besu, Web3 Labs ensures high-quality, SLA-backed production support for organisations
currently operating or intending to establish permissioned blockchain networks, ensuring stability and reliability in their infrastructure.
homepage_url: https://www.web3labs.com
project: hyperledger-member-services
logo: web3-labs-primary.svg
crunchbase: https://www.crunchbase.com/organization/web3-labs
- category:
name: Hyperledger Projects
subcategories:
- subcategory:
name: Distributed Ledgers
items:
- item:
name: Hyperledger Besu
second_path:
- Distributed Ledgers / Hybrid
description: >-
Hyperledger Besu is an Ethereum client designed to be enterprise-friendly for both public and private permissioned network use cases, with an
extractable EVM implementation. It can also be run on test networks such as Sepolia and Görli. Hyperledger Besu includes several consensus
algorithms including Proof of Stake, Proof of Work, and Proof of Authority (IBFT 2.0, QBFT, and Clique). Its comprehensive permissioning schemes
are designed specifically for use in a consortium environment.
homepage_url: https://www.hyperledger.org/use/besu
project: graduated
repo_url: https://github.com/hyperledger/besu
additional_repos:
- repo_url: https://github.com/hyperledger/besu-docs
- repo_url: https://github.com/hyperledger/besu-errorprone-checks
- repo_url: https://github.com/hyperledger/besu-native
- repo_url: https://github.com/hyperledger/homebrew-besu
logo: hyperledger-besu.svg
twitter: https://twitter.com/hyperledgerbesu
crunchbase: https://www.crunchbase.com/organization/hyperledger-2
extra:
wiki: https://wiki.hyperledger.org/display/besu
chat: https://discord.com/channels/905194001349627914/938504958909747250
documentation: https://besu.hyperledger.org/en/stable/
- item:
name: Hyperledger Fabric
second_path:
- Distributed Ledgers / Permissioned
description: >-
Hyperledger Fabric is intended as a foundation for developing applications or solutions with a modular architecture. Hyperledger Fabric allows
components, such as consensus and membership services, to be plug-and-play. Its modular and versatile design satisfies a broad range of industry
use cases. It offers a unique approach to consensus that enables performance at scale while preserving privacy.
homepage_url: https://www.hyperledger.org/use/fabric
project: graduated
repo_url: https://github.com/hyperledger/fabric
additional_repos:
- repo_url: https://github.com/hyperledger/fabric-amcl
- repo_url: https://github.com/hyperledger/fabric-ca
- repo_url: https://github.com/hyperledger/fabric-chaincode-go
- repo_url: https://github.com/hyperledger/fabric-chaincode-java