github.com/s7techlab/cckit@v0.10.5/examples/erc20/bin/main.go (about)

     1  package main
     2  
     3  import (
     4  	"fmt"
     5  
     6  	"github.com/hyperledger/fabric-chaincode-go/shim"
     7  	"github.com/s7techlab/cckit/examples/erc20"
     8  )
     9  
    10  func main() {
    11  	err := shim.Start(erc20.NewErc20FixedSupply())
    12  	if err != nil {
    13  		fmt.Printf("Error starting ERC-20 chaincode: %s", err)
    14  	}
    15  }