https://github.com/dineshrivankar/fabric-private-data
Hyperledger fabric private data exploration.
https://github.com/dineshrivankar/fabric-private-data
fabric hyperledger private-data
Last synced: 3 months ago
JSON representation
Hyperledger fabric private data exploration.
- Host: GitHub
- URL: https://github.com/dineshrivankar/fabric-private-data
- Owner: dineshrivankar
- Created: 2019-10-03T11:08:16.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-10-18T05:02:33.000Z (over 6 years ago)
- Last Synced: 2023-03-03T11:30:18.181Z (over 3 years ago)
- Topics: fabric, hyperledger, private-data
- Language: Go
- Homepage:
- Size: 46.8 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Fabric Private Data
This tutorial will help to understand the private data storage and retrieval by authorised and unauthorised organisation.
### Installation Guide
Kindly install all the [Prerequisites](https://hyperledger-fabric.readthedocs.io/en/release-1.4/prereqs.html) mentioned on the official documentation. Make sure we have all the Docker Images downloaded locally.
For exploration, take a VM with 16GB and 4 vCPU.
**# Step 1**
Clone the git repository on VM as below.
```bash
git clone https://github.com/dineshrivankar/fabric-private-data.git
```
**# Step 2**
Create a Swarm Network by running the below script from home directory of the cloned repository.
```bash
./network-setup.sh
```
**# Step 3**
Generate Crypto material for all the participants and Deploy the peers by running the below script. For exploration we will use Solo mode for the Ordering service
```bash
./deploy.sh
```
**# Step 4**
Org1 runs a cli container, below script will create a channel, join all the peers to the channel, install & instantiate chaincode, invoke & query chaincode.
```bash
./run.sh
```
**# Step 5**
Reset the network by running below script.
```bash
./reset.sh
```
That’s it!
Feel free to submit a PR.