Licence
Apache-2.0
Version
1.0.2
Deps
2
Size
20 kB
Vulns
0
Weekly
0
Spydra Hyperledger Fabric Base Contract
The Spydra Hyperledger Fabric Base Contract has various utility methods which provide additional functionalities out of the box to any Chaincode that is deployed in a Spydra blockchain network. Simply extend your own Chaincode Smart Contract from the Spydra Base Contract to get these additional features.
- Query the world state using Graph QL. For more details, refer to Spydra Graph QL.
Quick Start
Install spydra-fabric-contract-node from npm.
With npm:
$ npm install --save spydra-fabric-contract-nodeor using yarn:
$ yarn add spydra-fabric-contract-nodeExtend your Smart Contract from the Spydra Base Contract.
class MyCustomContract extends SpydraContract { }Export the SpydraContract as one of the Smart contracts in index.js.
module.exports.contracts = [MyCustomContract, SpydraContract];Deploy the Chaincode on a Spydra Blockchain network and start querying on any attribute using Graph QL.