From d516d7152a5b70129d3b22c1612d06ca75e62b49 Mon Sep 17 00:00:00 2001 From: Alexander Shcherbakov Date: Thu, 25 Aug 2022 17:16:56 +0100 Subject: [PATCH] Fixed ON docs (#403) Fix ON and DELETE_MODEL docs --- README.md | 2 +- docs/deployment-design-aws.md | 2 +- docs/running-node-manual/on.md | 8 ++++---- docs/running-node.md | 2 +- docs/transactions.md | 16 ++++++++++++++++ 5 files changed, 23 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 248c65a2c..d74bf2855 100644 --- a/README.md +++ b/README.md @@ -66,7 +66,7 @@ See - [Deployment-detailed](docs/deployment-detailed.png). - [Deployment Recommendations](https://github.com/zigbee-alliance/distributed-compliance-ledger/wiki/DCL-MainNet-Deployment) - [Deployment Recommendations for AWS](./docs/deployment-design-aws.md) -- +- - [Run Light Client Proxy](docs/running-light-client-proxy.md) ### Clients diff --git a/docs/deployment-design-aws.md b/docs/deployment-design-aws.md index 39b6a9171..e08094933 100644 --- a/docs/deployment-design-aws.md +++ b/docs/deployment-design-aws.md @@ -12,7 +12,7 @@ - `Private Sentry` - Full Node to connect other(external) Validator Nodes ([Sentry Node Architecture](https://forum.cosmos.network/t/sentry-node-architecture-overview/454)) - `Public Sentry` - Full Node to connect other(external) Full Nodes - `Observer` - Full Node for serving gRPC / REST / RPC clients - - `Seed` - Full Node for sharing IP addresses of `Public Sentry` Nodes ([Seed Node](https://docs.tendermint.com/master/nodes/#seed-nodes)) + - `Seed` - Full Node for sharing IP addresses of `Public Sentry` Nodes ([Seed Node](https://docs.tendermint.com/)) > **_Note:_** Most of the nodes should enable `state sync` to avoid catching up with a network from scratch. Refer to [running-node-in-existing-network.md](./advanced/running-node-in-existing-network.md) for details. diff --git a/docs/running-node-manual/on.md b/docs/running-node-manual/on.md index 42d820968..885ae6628 100644 --- a/docs/running-node-manual/on.md +++ b/docs/running-node-manual/on.md @@ -13,7 +13,7 @@ except: - Set `` to `"observer"` when using [run_dcl_node](./full-node.md#step-8-can-be-automated-using-rundclnode-script) - Configure node specific parameters before running the node depending on the ON deployment option. -#### Option 1: an Observer node is connected to another organization's Public Sentries via Seed nodes** +#### Option 1: an Observer node is connected to another organization's Public Sentries via Seed nodes This is the main option if you want to connect an ON to CSA public nodes. @@ -46,12 +46,12 @@ seeds = "8190bf7a220892165727896ddac6e71e735babe5@100.25.175.140:26656" CSA `seeds` Example for MainNet (clickable) ```bash -seeds = "TBD@54.183.6.67:26656" +seeds = "ba1f547b83040904568f181a39ebe6d7e29dd438@54.183.6.67:26656" ``` -#### Option 2: an Observer node is connected to another organization's public nodes** +#### Option 2: an Observer node is connected to another organization's public nodes This option can be used if you have a trusted relationship with some organization and that organization provided you with access to its nodes. @@ -76,7 +76,7 @@ provided you with access to its nodes. - another organization nodes with public IPs that this organization shared with you. -#### Option 3: an Observer node is connected to my organization nodes** +#### Option 3: an Observer node is connected to my organization nodes This is the option when you have a VN and want to create an ON connected to it. diff --git a/docs/running-node.md b/docs/running-node.md index 0f8da400c..5623d9a31 100644 --- a/docs/running-node.md +++ b/docs/running-node.md @@ -7,7 +7,7 @@ - `Private Sentry` - Full Node to connect other (external) Validator Nodes ([Sentry Node Architecture](https://forum.cosmos.network/t/sentry-node-architecture-overview/454)) - `Public Sentry` - Full Node to connect other (external) Full Nodes - `Observer` - Full Node for serving gRPC / REST / RPC clients -- `Seed` - Full Node for sharing IP addresses of `Public Sentry` Nodes ([Seed Node](https://docs.tendermint.com/master/nodes/#seed-nodes)) +- `Seed` - Full Node for sharing IP addresses of `Public Sentry` Nodes ([Seed Node](https://docs.tendermint.com/)) ## DCL network architecture overview diff --git a/docs/transactions.md b/docs/transactions.md index 2a6375205..656a2f99f 100644 --- a/docs/transactions.md +++ b/docs/transactions.md @@ -245,6 +245,22 @@ All non-edited fields remain the same. - CLI command: - `dcld tx model update-model --vid= --pid= ... --from=` +#### DELETE_MODEL + +**Status: Implemented** + +Deletes an existing Model identified by a unique combination of `vid` (vendor ID) and `pid` (product ID) +by the vendor account. + +- Parameters: + - vid: `uint16` - model vendor ID (positive non-zero) + - pid: `uint16` - model product ID (positive non-zero) +- In State: `model/Model/value//` +- Who can send: + - Vendor account associated with the same vid who has created the model +- CLI command: + - `dcld tx model delete-model --vid= --pid= --from=` + #### ADD_MODEL_VERSION **Status: Implemented**