Skip to content

Spydra Golang Base Contract for Hyperledger Fabric that provides advanced functionalities for any Chaincode

License

Notifications You must be signed in to change notification settings

spydra-tech/fabric-contract-go

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Maintained by Spydra.app Go Reference

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

  1. Run go get.

    $ go get -u github.com/spydra-tech/fabric-contract-go/spydracontract
  2. Extend your Smart Contract from the Spydra Base Contract.

    type MyCustomContract struct {
        spydracontract.SpydraContract
    }
  3. Instatiate the Chaincode with the SpydraContract as one of the Smart contracts.

    myChaincode, err := contractapi.NewChaincode(&myPackage.MySmartContract{}, &spydracontract.SpydraContract{})
  4. Deploy the Chaincode on a Spydra Blockchain network and start querying on any attribute using Graph QL.