You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As a blockchain administrator I want to have CLI commands to deploy smart contracts (chaincode) So that I can script or drive ad-hoc deployment of chaincode from the command-line
The existing Fabric peer lifecycle chaincode CLI commands are implemented within the Fabric core codebase, and include all of the Fabric peer runtime. These administrative capabilities should be separated from the Fabric core and instead implemented as light-weight CLI commands based on the fabric-admin-sdk.
A previous attempt to decouple the CLI commands from the Fabric core can be found at github.com/hyperledger/fabric-cli. This is based on the legacy Go SDK, which is no longer supported and also carries more baggage than necessary to implement only the required admin capability.
New CLI commands should expose the capability provided by the Go chaincode package:
Install
QueryInstalled
GetInstalled
Approve
QueryApproved
CheckCommitReadiness
Commit
QueryCommitted
QueryCommittedWithName
The text was updated successfully, but these errors were encountered:
As a blockchain administrator
I want to have CLI commands to deploy smart contracts (chaincode)
So that I can script or drive ad-hoc deployment of chaincode from the command-line
The existing Fabric
peer lifecycle chaincode
CLI commands are implemented within the Fabric core codebase, and include all of the Fabric peer runtime. These administrative capabilities should be separated from the Fabric core and instead implemented as light-weight CLI commands based on the fabric-admin-sdk.A previous attempt to decouple the CLI commands from the Fabric core can be found at github.com/hyperledger/fabric-cli. This is based on the legacy Go SDK, which is no longer supported and also carries more baggage than necessary to implement only the required admin capability.
New CLI commands should expose the capability provided by the Go chaincode package:
The text was updated successfully, but these errors were encountered: