hyperledger

Hyperledger Fabric on Raspberry pi 3

倾然丶 夕夏残阳落幕 提交于 2019-12-04 14:12:20
I'm trying to deploy hyperledger fabric on a raspberry pi, but it doesn't work. I'm searching for some tutorial but i didn't found it, there are someone that just did it? Artem Barger Last time I've tried to run Hyperledger Fabric on RPi I've prepared following instructions: Install latest RASPBIAN on SD card, you can download image from:
 https://www.raspberrypi.org/downloads/raspbian/ Update and upgrade latest by running:
 sudo apt-get update && sudo apt-get upgrade -y Install required dependencies:
 sudo apt-get install git curl gcc libc6-dev libltdl3-dev python-setuptools -y Upgrade python

Error when trying to extract hyperledger artifacts

北城余情 提交于 2019-12-04 13:09:20
i am using Windows 10 (64-bit) and i seem to have all the prerequisites installed. However, while running the command curl -sSL https://raw.githubusercontent.com/hyperledger/fabric/master/examples/e2e_cli/bootstrap.sh | bash on Git-Bash, i will get the following error: $ curl -sSL https://raw.githubusercontent.com/hyperledger/fabric/master/examples/e2e_cli/bootstrap.sh | bash % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 1205 0 1205 0 0 976 0 --:--:-- 0:00:01 --:--:-- 988 gzip: stdin: not in gzip format tar: Child returned status 1 tar:

Difference between Fabric CA server and CA Client

耗尽温柔 提交于 2019-12-04 13:04:23
What are the functions of the Fabric CA Server and Fabric CA Client? What are the Roles of the Fabric CA Server and Fabric CA Client? Thanks arnabkaycee Fabric CA provides features such as: Registration of identities with roles like peer, user or application, or connects to an existing LDAP as the user registry to fetch identities of the mentioned roles. Issuance of Enrollment Certificates (ECerts) for signing and identifying Issuance of Transaction Certificates (TCerts), providing both anonymity and unlinkability when transacting on a Hyperledger Fabric blockchain (not yet available in v1.0)

What is the size of the default block on hyperldger fabric?

与世无争的帅哥 提交于 2019-12-04 11:08:04
问题 I'm trying to create a estimation of the size of a chain if i create a new blockchain using hyperldger. In order to have an idea of disk space usage i would like to know that is the average size of a default block in the hyperldger fabric. Thank you before hand, Best Regards 回答1: Bellow you can find default configuration provided for ordering service. You can actually control block size with BatchTimeout and BatchSize parameters, also note that this is pretty use case dependent as it relies

Where does hyperledger fabric store the database for the blockchain?

谁都会走 提交于 2019-12-04 11:07:57
问题 I have hyperledger fabric network setup on my local machine with a single validating node. I am developing a chaincode and would like to clear my blockchain. I have read that the hyperledger fabric stores the database under /var/hyperledger. However, I do not see this hyperledger directory under /var. Is there another location for this directory? My development platform is MAC and I am using docker-compose to start my hyperledger fabric network. 回答1: The Hyperledger Fabric stores the database

how to generate certificates for new peers in Organization in Hyperledger Fabric 1.0

你说的曾经没有我的故事 提交于 2019-12-04 09:47:10
问题 I am using Hyperledger Fabric 1.0 fabric-node-sdk tutorial (https ://github.com/hyperledger/fabric-sdk-node/test ). And I have setup the two organization each 1 with peer(peer0 in org1 and peer2 in org2). My requirement is to add one more peer in each organization(peer1 in Org1 and peer3 in Org2). I believe need to create peer1 and peer3 folder inside \tls folder and place some ".pem" files example: "src\github.com\hyperledger\fabric-sdk-node\test\fixtures\tls\peers\peer1" "src\github.com

Privacy on Hyperledger Fabric v1.0

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-04 09:47:03
Can you explain some mechanisms of privacy in Hyperledger Fabric v1.0 - those already implemented and those planned to be implemented in the future? I understand channels are like seperate blockchains. I also went through the document on https://jira.hyperledger.org/browse/FAB-1151 , where I have found two more mechanisms: one is private data, and other is encryption. Can you explain what would be the beast approach to use in the following scenario. Each car needs car insurance. Let's say the owner of the car wants to change his insurance company. He signs the contract with new insurance

PBFT algorithm in hyperledger

北城以北 提交于 2019-12-04 07:35:12
问题 Can anyone explain PBFT Algorithm in detail without giving any link for the same? And how it works in hyperledger . So, once the transaction is sent to the blockchain : Who validates the transaction? How the consensus is achieved on the transaction? How the transaction is committed to the blockchain? 回答1: "Hyperledger" is a blockchain consortium under The Linux Foundation. Currently there are at least 4 different implementations of blockchain frameworks under Hyperledger: Fabric (IBM) Corda

Read (query) transaction flow in Hyperledger Fabric

亡梦爱人 提交于 2019-12-04 07:34:33
I am trying to understand the "Query" transaction flow in Hyperledger Fabric. I understand the "write" flow in Fabric as it is well documented. However, things are not so clear when a read/query transaction is involved. This is what I have understood so far: A client using an SDK prepares a transaction proposal for querying a chaincode. The proposal is transmitted via a committing peer to the Endorsing peers which validate as well as simulate the transaction in their end. Assuming everything is successful, the endorsing peers return their endorsements for the proposal. Each endorsement

In a business network, how does each peer “get a copy of the ledger”?

冷暖自知 提交于 2019-12-04 07:19:13
问题 Let's say we have companies A, B, C in a business network. How do these companies each "get a copy of the ledger"? Do they all have to download Hyperledger Fabric, set up a Kube cluster, and connect to it with a card that the original sponsor provides? 回答1: So, yes, sort-of. There are different ways of kicking things off. You might start with A ,B and C all forming a consortium, installing/deploying the Hyperledger Fabric software and creating and joining a channel that includes A, B and C at