|
Upcoming Event: Hyperledger Fabric Documentation Workgroup call - Eastern hemisphere - Fri, 02/14/2020 6:00am-7:00am
#cal-reminder
Reminder: Hyperledger Fabric Documentation Workgroup call - Eastern hemisphere
When: Friday, 14 February 2020, 6:00am to 7:00am, (GMT+00:00)
Reminder: Hyperledger Fabric Documentation Workgroup call - Eastern hemisphere
When: Friday, 14 February 2020, 6:00am to 7:00am, (GMT+00:00)
|
By
fabric@lists.hyperledger.org Calendar <fabric@...>
·
#7731
·
|
|
Re: How to unpackage (or unpack, unzip, extract) a chaincode?
Here is a very, very basic program to ingest the chaincode package and output a tarball of it: https://github.com/yeasy/blockchain_guide/blob/master/_code/unpack_chaincode.go
Credit to Baohua Yang
Here is a very, very basic program to ingest the chaincode package and output a tarball of it: https://github.com/yeasy/blockchain_guide/blob/master/_code/unpack_chaincode.go
Credit to Baohua Yang
|
By
Brett T Logan <brett.t.logan@...>
·
#7730
·
|
|
Re: How to unpackage (or unpack, unzip, extract) a chaincode?
-xvzf
On 2/12/2020 5:39 PM, Siddharth Jain wrote:
-xvzf
On 2/12/2020 5:39 PM, Siddharth Jain wrote:
|
By
Nye Liu <nye@...>
·
#7729
·
|
|
Re: How to unpackage (or unpack, unzip, extract) a chaincode?
How do i do that?
Get Outlook for Android
From: Matthew Sykes <matthew.sykes@...>
Sent: Wednesday, February 12, 2020 5:27:38 PM
To: Siddharth Jain <siddjain@...>
Cc: fabric@... <fabric@...>
Subject:
How do i do that?
Get Outlook for Android
From: Matthew Sykes <matthew.sykes@...>
Sent: Wednesday, February 12, 2020 5:27:38 PM
To: Siddharth Jain <siddjain@...>
Cc: fabric@... <fabric@...>
Subject:
|
By
Siddharth Jain
·
#7728
·
|
|
Re: How to unpackage (or unpack, unzip, extract) a chaincode?
If you're using the new lifecycle commands, the chaincode package is a gzip compressed tar; if you're using the legacy (lscc) commands, the package is a protobuf encoded chaincode deployment spec.
If you're using the new lifecycle commands, the chaincode package is a gzip compressed tar; if you're using the legacy (lscc) commands, the package is a protobuf encoded chaincode deployment spec.
|
By
Matthew Sykes
·
#7727
·
|
|
Re: Modify Chain code container
The peer does not "fire the docker run cmd" but uses the docker API to create and start the container.
release 1.4:
The peer does not "fire the docker run cmd" but uses the docker API to create and start the container.
release 1.4:
|
By
Matthew Sykes
·
#7726
·
|
|
How to unpackage (or unpack, unzip, extract) a chaincode?
Anyone knows how do we unpackage a chaincode? tar -xvf does not work.
$ tar -xvf mycc.1.0
tar: Unrecognized archive format
tar: Error exit delayed from previous errors.
in above mycc.1.0 is what got
Anyone knows how do we unpackage a chaincode? tar -xvf does not work.
$ tar -xvf mycc.1.0
tar: Unrecognized archive format
tar: Error exit delayed from previous errors.
in above mycc.1.0 is what got
|
By
Siddharth Jain
·
#7725
·
|
|
Re: Local Collections in Fabric 2.0
#fabric
Martin
A transaction that uses collections leaks information about the involved parties in 3 ways: 1) the creator; 2) the collection name and 3) endorsements. Point 1 can be addressed by using
Martin
A transaction that uses collections leaks information about the involved parties in 3 ways: 1) the creator; 2) the collection name and 3) endorsements. Point 1 can be addressed by using
|
By
Alessandro Sorniotti
·
#7724
·
|
|
Re: Local Collections in Fabric 2.0
#fabric
The pattern mentioned in 'Keeping transactors private' would meet the requirement of keeping the collaborators of a business transaction private in Fabric v2.0. In this pattern, each party writes
The pattern mentioned in 'Keeping transactors private' would meet the requirement of keeping the collaborators of a business transaction private in Fabric v2.0. In this pattern, each party writes
|
By
David Enyeart
·
#7723
·
|
|
Local Collections in Fabric 2.0
#fabric
Hi everyone,
Some time ago there has been a discussion concerning local collections with the goal to obscure members of a collection to other participants of a channel in FAB-7593.
I was wondering
Hi everyone,
Some time ago there has been a discussion concerning local collections with the goal to obscure members of a collection to other participants of a channel in FAB-7593.
I was wondering
|
By
@informartin
·
#7722
·
|
|
Installing HyperLedger Fabric on Raspberry Pi
#hyperledger-fabric
Hello, would you happen to have a tutorial on how to install HyperLedger Fabric 2.0 on a Raspberry Pi 3? As well as getting it to the point where one can run the fabric-samples such as byfn and fabcar
Hello, would you happen to have a tutorial on how to install HyperLedger Fabric 2.0 on a Raspberry Pi 3? As well as getting it to the point where one can run the fabric-samples such as byfn and fabcar
|
By
Jonah Cancio
·
#7721
·
|
|
Re: Unable to launch/instantiate chaincode container
think we found what is causing the problem. the peer is on one network but if we manually create a container from the chaincode image, it is not on the same network. how can we fix
think we found what is causing the problem. the peer is on one network but if we manually create a container from the chaincode image, it is not on the same network. how can we fix
|
By
Siddharth Jain
·
#7720
·
|
|
Unable to launch/instantiate chaincode container
we are running into a problem where chaincode container is not getting launched. full stacktrace can be foundhere but basically the execution reaches this point:
if err := r.Runtime.Start(ccci,
we are running into a problem where chaincode container is not getting launched. full stacktrace can be foundhere but basically the execution reaches this point:
if err := r.Runtime.Start(ccci,
|
By
Siddharth Jain
·
#7719
·
|
|
Have you registered for Hyperledger Global Forum, March 3-6?
Hello Hyperledger Community,
Less than four weeks to go until Hyperledger Global Forum 2020! I am so excited to see not only long time friends but all the new
Hello Hyperledger Community,
Less than four weeks to go until Hyperledger Global Forum 2020! I am so excited to see not only long time friends but all the new
|
By
Brian Behlendorf <bbehlendorf@...>
·
#7718
·
|
|
Modify Chain code container
I want to expose port from chain code container to host machine. From where peer node fire the docker run cmd .
I want to expose port from chain code container to host machine. From where peer node fire the docker run cmd .
|
By
sanjaykumar3989@...
·
#7717
·
|
|
Re: Customize chaincode docker image
How peer run the chain code container ? I want to expose port from chaincode container and map with host machine.
I want to customized the docker run cmd fired from peer node.
How peer run the chain code container ? I want to expose port from chaincode container and map with host machine.
I want to customized the docker run cmd fired from peer node.
|
By
sanjaykumar3989@...
·
#7716
·
|
|
Re: Who needs to sign on a config update to change addresses of an orderer?
so the sign off will require orderer org's admins but channel update will be done by a peer since peer channel update can only be executed by a peer. correct? that doesn't sound right btw.
From:
so the sign off will require orderer org's admins but channel update will be done by a peer since peer channel update can only be executed by a peer. correct? that doesn't sound right btw.
From:
|
By
Siddharth Jain
·
#7715
·
|
|
Re: Who needs to sign on a config update to change addresses of an orderer?
You only needs to change the orderer section in the channel configuration.
That will require the majority of the orderer orgs's admins to sign by default.
You may refer to the tutorial at
You only needs to change the orderer section in the channel configuration.
That will require the majority of the orderer orgs's admins to sign by default.
You may refer to the tutorial at
|
By
Baohua Yang
·
#7714
·
|
|
Who needs to sign on a config update to change addresses of an orderer?
Hello,
We are trying to update orderer addresses.
does the change need to be made to the application channel config or the system channel config?
who needs to sign on the config update?
is there any
Hello,
We are trying to update orderer addresses.
does the change need to be made to the application channel config or the system channel config?
who needs to sign on the config update?
is there any
|
By
Siddharth Jain
·
#7713
·
|
|
Re: #hyperledger-fabric
#hyperledger-fabric
Hi Subhra,
The balance transfer sample was removed in Fabric v2.0 as it was not a good sample, and it did not demonstrate good practices for application development. You can use the FabCar sample or
Hi Subhra,
The balance transfer sample was removed in Fabric v2.0 as it was not a good sample, and it did not demonstrate good practices for application development. You can use the FabCar sample or
|
By
sstone1@...
·
#7712
·
|