Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hyperledgendary/smart-asset-tx
https://github.com/hyperledgendary/smart-asset-tx
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/hyperledgendary/smart-asset-tx
- Owner: hyperledgendary
- License: apache-2.0
- Created: 2022-10-13T12:53:50.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-10-26T10:00:09.000Z (over 2 years ago)
- Last Synced: 2024-11-09T06:40:27.088Z (3 months ago)
- Language: Go
- Size: 259 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```