본문 바로가기

Peer4

[Hyperledger Fabric v2.x] 2장 Network 구축하기 Hyperledger Fabric 은 허가형 블록체인이기 때문에 가장 먼저 시작 할 것은 어떤 네트워크를 구성 할 것인지에 대한 고민입니다. 이전 포스트: [Hyperledger Fabric v2.x] #1. 소개 + 실습 환경 구성 네트워크 구성에는 Peer 와 Orderer 뿐만 아니라 Channel 도 고민해야한다 Hyperledger Fabric 네트워크 구성원에는 대표적으로 두 종류의 노드가 있습니다. (자세한 내용은 링크를 확인해주세요) Peer: Peers are a fundamental element of the network because they host ledgers and smart contracts. Orderer: In addition to their ordering role, .. 2021. 1. 12.
[Hyperledger Fabric v2.0] Transaction Workflow Transaction Workflow Phase 1: Proposal Phase 1 에서는 application 과 peer 들 간에 이루어지는 내용으로 orderer 와는 관계 없이 진행됨 Phase 1 에서는 오직 각기 다른 endorsing peer 들에게 chaincode 호출 결과 제안에 대한 동의를 요청 만을 고려 함 Phase 1 시작을 위해, 어플리케이션들은 transaction proposal 을 생성하여 승인을 위해 peer 들에게 전달함 전달 받은 endorsing peer 들은 독립적으로 transaction proposal 을 활용하여 chaincode 를 실행하고 이를 통해 transaction proposal response 를 생성함 해당 과정에서 ledger 로 기록은 없음.. 2020. 7. 27.
[Hyperledger Fabric v2.0] sample network 구축 Hyperledger fabric sample network Using the Fabric test network Bring up the test network cd /home/namho46/hyperledger/fabric-samples/test-network remove any containers or artifacts from any previous runs: ./network.sh down bring up the network ./network.sh up Creating a channel You can use the network.sh script to create a channel between Org1 and Org2 and join their peers to the channel. creat.. 2020. 7. 23.
[Hyperledger Fabric v2.0] Network, Identity, MSP * 본 문서는 hyperledger-fabricdocs Documentation Release master 을 공부한 내용을 바탕으로 개인적인 방식으로 작성되었습니다. 키워드 역할 특징 Network (N) Hyperledger Blockchain Network 가 구성될 Private Network Network Configuration (NC) 특정 Organization 들을 위한 Network 구성 Network Configuration 에 대한 권한은 초기 구성한 Organization 뿐만 아니라 정책(policy) 변경을 통해 추가 부여 받은 Organization 또한 해당 Network Configuration에 대한 모든 권한을 가짐 MSP(Memebership Services Prov.. 2020. 7. 20.