Reputation: 259
This is a statement from Hyperledger Fabric NodeJS SDK v2.2 documentation in the section "Migrating client applications from v1.4 to v2.0":
Note that the SDK no longer aims to provide administrative and management capability. The command-line interface should be used for these operations.
Does this mean that the new SDK does not support actions like chaincode installation and instantiation. I understand that in v2.2 the chaincode lifecycle is different and the steps are package and install chaincode, approve and commit chaincode definition. Can any of these actions be performed using the SDK?
Upvotes: 1
Views: 217
Reputation: 336
You can use Hyperledger Fabric SDK GO. It currently supports Fabric v2.2.
You can check our repo Akachain Admin Tool as an example. It provides RESTful API for an administrator to interact with a Hyperledger Fabric network using Fabric Go SDK
Upvotes: 2