|
Now: Private Chaincode Lab - 07/05/2022
#cal-notice
Private Chaincode Lab When: 07/05/2022 8:00am to 9:00am (UTC-07:00) America/Los Angeles Where: https://zoom.us/my/hyperledger.community.3?pwd=UE90WHhEaHRqOGEyMkV3cldKa2d2dz09 Organizer: Marcus Branden
Private Chaincode Lab When: 07/05/2022 8:00am to 9:00am (UTC-07:00) America/Los Angeles Where: https://zoom.us/my/hyperledger.community.3?pwd=UE90WHhEaHRqOGEyMkV3cldKa2d2dz09 Organizer: Marcus Branden
|
By
Group Notification
·
|
|
v1.1 Fabric Gateway client API released
v1.1.0 of the Fabric Gateway client API has been released. Significant enhancements in this release include support for block eventing, and event checkpointing. See here for details: https://github.co
v1.1.0 of the Fabric Gateway client API has been released. Significant enhancements in this release include support for block eventing, and event checkpointing. See here for details: https://github.co
|
By
Mark Lewis
·
|
|
Access to Channel CRL from Chaincode
Hey, Can we have access to the channel CRL from inside the chaincode? Is there an API for this? The idea is that when a cert is expired, the checks are easily performed by the time inside the cert, bu
Hey, Can we have access to the channel CRL from inside the chaincode? Is there an API for this? The idea is that when a cert is expired, the checks are easily performed by the time inside the cert, bu
|
By
spectre-@...
·
|
|
Now: Fabric Contributor Meeting - 06/29/2022
#cal-notice
Fabric Contributor Meeting When: 06/29/2022 9:00am to 10:00am (UTC-04:00) America/New York Where: https://zoom.us/my/hyperledger.community.3?pwd=UE90WHhEaHRqOGEyMkV3cldKa2d2dz09 Organizer: Dave Enyear
Fabric Contributor Meeting When: 06/29/2022 9:00am to 10:00am (UTC-04:00) America/New York Where: https://zoom.us/my/hyperledger.community.3?pwd=UE90WHhEaHRqOGEyMkV3cldKa2d2dz09 Organizer: Dave Enyear
|
By
Group Notification
·
|
|
Optimum number of connections in FABRIC-SDK-JAVA
#fabric-sdk-java
Hi All, A hyperledger adapter is built with fabric-sdk-java. What is the ideal number of connections which can be connected to that adapter without crashing the system? Is there any documentation avai
Hi All, A hyperledger adapter is built with fabric-sdk-java. What is the ideal number of connections which can be connected to that adapter without crashing the system? Is there any documentation avai
|
By
jeff.jo95z@...
·
|
|
Fabric Contributor Meeting - June 29, 2022
Hyperledger Fabric Contributor Meeting When: Every 4th Wednesday 9am US Eastern, 13:00 UTC Where: https://zoom.us/j/5184947650?pwd=UE90WHhEaHRqOGEyMkV3cldKa2d2dz09 Agendas and Recordings: https://wiki
Hyperledger Fabric Contributor Meeting When: Every 4th Wednesday 9am US Eastern, 13:00 UTC Where: https://zoom.us/j/5184947650?pwd=UE90WHhEaHRqOGEyMkV3cldKa2d2dz09 Agendas and Recordings: https://wiki
|
By
David Enyeart
·
|
|
Minifab Peer Nodes Questions 2 messages
Using minifabric how do I do the following? How do I view the ledger of each peer node to prove that each has received/processed transactions? When I run command "minifab up -s couch.db -e 7400", then
Using minifabric how do I do the following? How do I view the ledger of each peer node to prove that each has received/processed transactions? When I run command "minifab up -s couch.db -e 7400", then
|
By
Brett Tiller
·
|
|
Now: Private Chaincode Lab - 06/28/2022
#cal-notice
Private Chaincode Lab When: 06/28/2022 8:00am to 9:00am (UTC-07:00) America/Los Angeles Where: https://zoom.us/my/hyperledger.community.3?pwd=UE90WHhEaHRqOGEyMkV3cldKa2d2dz09 Organizer: Marcus Branden
Private Chaincode Lab When: 06/28/2022 8:00am to 9:00am (UTC-07:00) America/Los Angeles Where: https://zoom.us/my/hyperledger.community.3?pwd=UE90WHhEaHRqOGEyMkV3cldKa2d2dz09 Organizer: Marcus Branden
|
By
Group Notification
·
|
|
networkObj error ------ Error: Error creating wallet database to store membership data: Error: No DB shards could be opened.
#couchdb
#fabric-kubernetes
#hyperledger-fabric
#kubernetes
#fabric-sdk-node
Hello, I have a HLF running on azure AKS cluster. I have a couchdb acting as a wallet to store the identities of the blockchain admin and users. It is hosted along with all the other pods. when i crea
Hello, I have a HLF running on azure AKS cluster. I have a couchdb acting as a wallet to store the identities of the blockchain admin and users. It is hosted along with all the other pods. when i crea
|
By
Vijaya Bhaskar
·
|
|
unable to fetch config block of system channel from the orderer pod 8 messages
#orderer
#fabric-orderer
#fabric-kubernetes
#fabric-questions
#grpc
Hey guys, overview of the problem i need to add a new consortium to a an existing HLF setup.For that i need to fetch config block of the system channel and edit it to add the new consortium info. I am
Hey guys, overview of the problem i need to add a new consortium to a an existing HLF setup.For that i need to fetch config block of the system channel and edit it to add the new consortium info. I am
|
By
Vijaya Bhaskar
·
|
|
rpc error when installing chaincode 4 messages
When installing chaincode in a fabric network, I get below error: # peer lifecycle chaincode install contract.tar.gz Error: failed to endorse chaincode install: rpc error: code = ResourceExhausted des
When installing chaincode in a fabric network, I get below error: # peer lifecycle chaincode install contract.tar.gz Error: failed to endorse chaincode install: rpc error: code = ResourceExhausted des
|
By
satheesh
·
|
|
Switching spec.yaml file causes error 4 messages
I decided to try the example spec.yaml file instead of my customized yaml version. Before doing so I ran command ‘minifabric cleanup’, and assured that there was no docker containers/volumes found. I
I decided to try the example spec.yaml file instead of my customized yaml version. Before doing so I ran command ‘minifabric cleanup’, and assured that there was no docker containers/volumes found. I
|
By
Brett Tiller
·
|
|
Block listener
#fabric-sdk-java
hi All, This is my block listener implemented in fabric sdk: Consumer<BlockEvent> blockListener = blockEvent -> { //some lines } networkObj.addBlockListener(startBlockNumber, blockListener); once adde
hi All, This is my block listener implemented in fabric sdk: Consumer<BlockEvent> blockListener = blockEvent -> { //some lines } networkObj.addBlockListener(startBlockNumber, blockListener); once adde
|
By
jeff.jo95z@...
·
|
|
Why Leader is rotating after every block creation in Hyperledger fabric SBFT 2.3.0
#fabric-orderer
#consensus
We are using Hyperledger Fabric 2.3.0 and using SBFT Consensus, and leader is rotating after every block creation. and we set MaxMessageCount to 10 in configtx.yaml but it is not restricting no of tra
We are using Hyperledger Fabric 2.3.0 and using SBFT Consensus, and leader is rotating after every block creation. and we set MaxMessageCount to 10 in configtx.yaml but it is not restricting no of tra
|
By
banerjeeprojat.pb@...
·
|
|
Getting error while calling contract event
Hi team, I am calling contract event in following way. ==================== await contract.addContractListener(listener, { checkpointer: await DefaultCheckpointers.file('checkpoint.json'), }); =======
Hi team, I am calling contract event in following way. ==================== await contract.addContractListener(listener, { checkpointer: await DefaultCheckpointers.file('checkpoint.json'), }); =======
|
By
Kumari Shweta
·
|
|
How to create network in two diffrent machine(terminal) 3 messages
Dear Sir, In hyperledger fabric, test-network creates two organizations in the same machine. I want to create two organizations on two different machines. Please guide us. -- Thanks & Regards Ahmad Ha
Dear Sir, In hyperledger fabric, test-network creates two organizations in the same machine. I want to create two organizations on two different machines. Please guide us. -- Thanks & Regards Ahmad Ha
|
By
ahmad hassan
·
|
|
Testing fabric sdk code
#fabric-sdk-java
Hi All, Actually I was testing fabric sdk code. I have this blocklistener: Consumer<BlockEvent> blockListener = blockEvent -> { //some code } //outside //some code while testing it with JUNit testcase
Hi All, Actually I was testing fabric sdk code. I have this blocklistener: Consumer<BlockEvent> blockListener = blockEvent -> { //some code } //outside //some code while testing it with JUNit testcase
|
By
jeff.jo95z@...
·
|
|
Endorsement Policy Failure while committing chaincode 13 messages
#fabric-kubernetes
#hyperledger-fabric
#chaincode
I'm very much new to blockchain and hyperledger. I'm trying to setup my first network with 8 orgs containing 3 peers each and 7 orderers. Everything is working fine using docker-compose. I'm trying to
I'm very much new to blockchain and hyperledger. I'm trying to setup my first network with 8 orgs containing 3 peers each and 7 orderers. Everything is working fine using docker-compose. I'm trying to
|
By
Arsh
·
|
|
Data Stored in Block Chain Lost After Restart the Network
Dear Team, I lost all transaction data in the block chain after restarting the system or network down. I am using hyperledger 2.2 and 2.4 also. -- Thanks & Regards Ahmad Hassan
Dear Team, I lost all transaction data in the block chain after restarting the system or network down. I am using hyperledger 2.2 and 2.4 also. -- Thanks & Regards Ahmad Hassan
|
By
ahmad hassan
·
|
|
Transaction event is not emitted after successful invoke 3 messages
#fabric-sdk-node
Hi Team, I am using fabric node sdk api for events. Transaction (commitEvent) is not working.New block is generated successfully but transaction event is not emitted. Passing eventhandler option in ga
Hi Team, I am using fabric node sdk api for events. Transaction (commitEvent) is not working.New block is generated successfully but transaction event is not emitted. Passing eventhandler option in ga
|
By
Kumari Shweta
·
|