Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/hyperledgendary/smart-asset-tx


https://github.com/hyperledgendary/smart-asset-tx

Last synced: about 1 month ago
JSON representation

Awesome Lists containing this project

README

        

# Secure Smart Asset Transfer

## Development

just reciepes available for all these steps

```
Available recipes:
build # Build the code and pull down the idemix tool
gen # Generate the configuration based on the topology.go
go # Start the topology as defined in topology.go
```

Note the justfile is configured to use the `FAB_BINS` environment variable to specify exact which Fabric binaries
should be used. All the binaries must be present.

Pull dependencies and build the 'dev' launcher and the client application (`just build`)
```
go mod tidy
go build -o bin/dev dev.go
go build -o bin/client clientmain/clientmain.go
```

Create the configuration material in `_cfg` (`just gen`)

```
go get github.com/IBM/idemix/tools/[email protected]
./bin/dev network generate -p _cfg
```

Start the network
```
# if needed
export FAB_BINS=......
./bin/dev network start -p _cfg
```