Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Dave Enyeart <enyeart@us.ibm.com>
Signed-off-by: Arne <arner@users.noreply.github.com>
  • Loading branch information
arner and denyeart committed Oct 7, 2023
1 parent 7ac1e8c commit 769a4a1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions token-sdk/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This is a service with a REST API that wraps the [Token SDK](https://github.com/

Several instances of this service form a Layer 2 network that can transact amongst each other, with an (optional but currently configured to be required) auditor role who has to approve every transaction. The ledger data does not reveal balances, transaction amounts and identities of transaction parties. UTXO Tokens are owned by pseudonymous keys and other details are obscured with Zero Knowledge Proofs.

This sample is intended to get familiar with the features of the Token SDK and as a starting point for a proof of concept. The repo contains a basic development setup with:
This sample is intended to get familiar with the features of the Token SDK and as a starting point for a proof of concept. The sample contains a basic development setup with:

- An issuer node
- An auditor node
Expand Down Expand Up @@ -121,7 +121,7 @@ The services are running on the following ports:
- 8080 API documentation
- 9000 auditor
- 9100 issuer
- 9200 owner (alice and bob)
- 9200 owner 1 (alice and bob)
- 9300 owner 2 (carlos and dan)

Now let's issue and transfer some tokens! View the API documentation and try some actions at [http://localhost:8080](http://localhost:8080). Or, directly from the commandline:
Expand Down Expand Up @@ -184,7 +184,7 @@ Start a Fabric sample network and deploy the Token Chaincode as a service:
```bash
bash "$TEST_NETWORK_HOME/network.sh" up createChannel
INIT_REQUIRED="--init-required" "$TEST_NETWORK_HOME/network.sh deployCCAAS" -ccn tokenchaincode -ccp $(pwd)/tokenchaincode -cci "init" -verbose -ccs 1
INIT_REQUIRED="--init-required" "$TEST_NETWORK_HOME/network.sh" deployCCAAS -ccn tokenchaincode -ccp $(pwd)/tokenchaincode -cci "init" -verbose -ccs 1
mkdir -p keys/fabric
cp -r "$TEST_NETWORK_HOME/organizations" keys/fabric/
Expand Down

0 comments on commit 769a4a1

Please sign in to comment.