Skip to content

Commit c2aa603

Browse files
committed
Merge branch 'SchemaChanges_0.7' of github.com:ankur325/distributed-compliance-ledger into SchemaChanges_0.7
2 parents 3a53819 + 623b0ad commit c2aa603

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

README-DEV.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ The easiest way to run a local pool is to start it in Docker:
5454
make localnet_init
5555
make localnet_start
5656
57-
This will start a local pool of 4 validator nodes in Docker. The nodes will expose their RPC enpoints on ports `26657`, `26659`, `26661`, `26662` correspondingly.
57+
This will start a local pool of 4 validator nodes in Docker. The nodes will expose their RPC enpoints on ports `26657`, `26659`, `26661`, `26663` correspondingly.
5858
5959
Stopping the network:
6060
@@ -111,4 +111,4 @@ Please take into account the following when sending a PR:
111111
112112
## Other
113113
For more details, please have a look at [Cosmos SDK tutorial](https://github.com/cosmos/sdk-tutorials/blob/master/nameservice/tutorial).
114-
Use __dcld__, __dclcli__ instead of __nameserviced__, __nameservicecli__.
114+
Use __dcld__, __dclcli__ instead of __nameserviced__, __nameservicecli__.

docs/transactions.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ This is useful to avoid correlation by the sender's IP address.
2828
- it will automatically build a request, sign it by the account's key, and broadcast to the ledger.
2929
- See `CLI` section for every write request (transaction).
3030
- Example
31-
```json
32-
dclcli tx model add-model 1 1 "Device #1" "Device Description" "SKU12FS" "1.0" "2.0" true --from cosmos1ar04n6hxwk8ny54s2kzkpyqjcsnqm7jzv5y62y
31+
```bash
32+
dclcli tx modelinfo add-model --vid 1 --pid 1 --name "Device #1" --description "Device Description" --sku "SKU12FS" --hardware-version "1.0" --firmware-version "2.0" --tis-or-trp-testing-completed true --from cosmos1ar04n6hxwk8ny54s2kzkpyqjcsnqm7jzv5y62y
3333
```
3434
- CLI (keys at the edge)
3535
- There are two CLIs are started in a CLI mode.
@@ -42,9 +42,9 @@ This is useful to avoid correlation by the sender's IP address.
4242
- CLI 1: Sign the transaction manually. `dclcli tx sign [path-to-txn-file] --from [address] --account-number [value] --sequence [value] --gas "auto" --offline`
4343
- CLI 2: Broadcast signed transaction using CLI (`broadcast command)
4444
- Example
45-
```json
46-
CLI 2: dclcli tx model add-model 1 1 "Device #1" "Device Description" "SKU12FS" "1.0" "2.0" true --from cosmos1ar04n6hxwk8ny54s2kzkpyqjcsnqm7jzv5y62y --generate-only
47-
CLI 2: dclcli query auth accounts
45+
```bash
46+
CLI 2: dclcli tx modelinfo add-model --vid 1 --pid 1 --name "Device #1" --description "Device Description" --sku "SKU12FS" --hardware-version "1.0" --firmware-version "2.0" --tis-or-trp-testing-completed true --from cosmos1ar04n6hxwk8ny54s2kzkpyqjcsnqm7jzv5y62y --generate-only
47+
CLI 2: dclcli query auth all-accounts
4848
CLI 1: dclcli tx sign /home/artem/dc-ledger/txn.json --from cosmos1ar04n6hxwk8ny54s2kzkpyqjcsnqm7jzv5y62y --account-number 0 --sequence 24 --gas "auto" --offline --output-document txn.json
4949
CLI 2: dclcli tx broadcast /home/artem/dc-ledger/txn.json
5050
```
@@ -58,8 +58,8 @@ This is useful to avoid correlation by the sender's IP address.
5858
- Sign the transaction manually using CLI or `tx/sign` endpoint.
5959
- The user does a `POST` of the signed request to the CLI-based server for broadcasting using `tx/broadcast`.
6060
- Example
61-
```json
62-
POST /model/models
61+
```
62+
POST /modelinfo/models
6363
POST tx/sign
6464
POST tx/broadcast
6565
```
@@ -71,8 +71,8 @@ This is useful to avoid correlation by the sender's IP address.
7171
in a way similar to the local CLI case.
7272
- See `REST API` section for every write request (transaction).
7373
- Example
74-
```json
75-
POST /model/models with setting Authorization header
74+
```
75+
POST /modelinfo/models with setting Authorization header
7676
```
7777
7878
## How to read from the Ledger

0 commit comments

Comments
 (0)