Note: This is a read-only mirror of the formal Gerrit repository, where active development is ongoing. Issue tracking is handled in Jira
This project is an Active Hyperledger project. For more information on the history of this project see the Fabric wiki page. Information on what Active entails can be found in the Hyperledger Project Lifecycle document.
Hyperledger Fabric is a platform for distributed ledger solutions, underpinned by a modular architecture delivering high degrees of confidentiality, resiliency, flexibility and scalability. It is designed to support pluggable implementations of different components, and accommodate the complexity and intricacies that exist across the economic ecosystem.
Hyperledger Fabric delivers a uniquely elastic and extensible architecture, distinguishing it from alternative blockchain solutions. Planning for the future of enterprise blockchain requires building on top of a fully-vetted, open source architecture; Hyperledger Fabric is your starting point.
- docker
curl -sSL https://get.daocloud.io/docker | sh
docker -v
- docker-compose
sudo yum -y install epel-release
sudo yum -y install python-pip
sudo yum clean all
curl -L https://get.daocloud.io/docker/compose/releases/download/1.9.0/docker-compose-`uname -s`-`uname -m` > /usr/local/bin/docker-compose
chmod +x /usr/local/bin/docker-compose
docker-compose -v
- git
sudo yum install curl-devel expat-devel gettext-devel openssl-devel zlib-devel gcc perl-ExtUtils-MakeMaker
wget https://github.com/git/git/archive/v2.3.0.zip
unzip v2.3.0.zip
cd git-2.3.0
make prefix=/usr/local/git all
sudo make prefix=/usr/local/git install
sudo vim /etc/profile
export PATH=/usr/local/git/bin:$PATH
source /etc/profile
git version
- golang
wget https://storage.googleapis.com/golang/go1.8.3.linux-amd64.tar.gz
sudo tar -C /usr/local -xzf go1.8.3.linux-amd64.tar.gz
sudo vim /etc/profile
export PATH=$PATH:/usr/local/go/bin
export GOPATH=/opt/gopath
source /etc/profile
go version
- fabric sourse code
git clone https://github.com/hyperledger/fabric.git
cd fabric
- fabric binary & images
cd fabric/scripts
bootstrap.sh 1.1.0 -s
(very slow as Great Firewall,try another way to download)
- run e2e_cli
cd fabric/examples/e2e_cli
network_setup.sh up
(release binary to the right dir)
- v1.1.0-alpha - January 25, 2018
- v1.0.5 - December 6, 2017
- v1.1.0-preview - November 1, 2017
- v1.0.4 - October 31, 2017
- v1.0.3 - October 3, 2017
- v1.0.2 - September 10, 2017
- v1.0.1 - August 10, 2017
- v1.0.0 - July 11, 2017
- v1.0.0-rc1 - June 23, 2017
- v1.0.0-beta - June 8, 2017
- v1.0.0-alpha2 - May 14, 2017
- v1.0.0-alpha - March 16, 2017
- v0.6.1-preview - October 15, 2016
- v0.6.0-preview - September 16, 2016
Please visit the Hyperledger Fabric wiki for our release roadmap. We plan on a quarterly release cadence following the v1.1.0 release, delivering on a scoped set of themes and select features. Unless specified otherwise, all releases will be upgradable from the prior minor release.
Please visit our online documentation for information on getting started using and developing with the fabric, SDK and chaincode:
It's recommended for first-time users to begin by going through the Getting Started section of the documentation in order to gain familiarity with the Hyperledger Fabric components and the basic transaction flow.
We welcome contributions to the Hyperledger Fabric project in many forms. There’s always plenty to do! Check the documentation on how to contribute to this project for the full details.
Hyperledger mailing lists and archives
Hyperledger Fabric Issue Tracking (JIRA)
Hyperledger Project source code files are made available under the Apache License, Version 2.0 (Apache-2.0), located in the LICENSE file. Hyperledger Project documentation files are made available under the Creative Commons Attribution 4.0 International License (CC-BY-4.0), available at http://creativecommons.org/licenses/by/4.0/.