From 6e3d00849dae9b58a83deba61bfa3dd9e80d697a Mon Sep 17 00:00:00 2001 From: Margarita Skomorokh Date: Fri, 18 Oct 2024 11:22:19 +0200 Subject: [PATCH 1/5] fixed a typo in the --address flag --- .../build-a-keychain/operate-a-keychain/create-a-keychain.md | 4 ++-- docs/developer-docs/docs/operate-a-node/create-a-validator.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/developer-docs/docs/build-a-keychain/operate-a-keychain/create-a-keychain.md b/docs/developer-docs/docs/build-a-keychain/operate-a-keychain/create-a-keychain.md index be4b4ea07..e50562554 100644 --- a/docs/developer-docs/docs/build-a-keychain/operate-a-keychain/create-a-keychain.md +++ b/docs/developer-docs/docs/build-a-keychain/operate-a-keychain/create-a-keychain.md @@ -94,7 +94,7 @@ You can skip this guide and test a preconfigured Keychain. Just run a local node You can always check your public address by running this command: ``` - wardend keys show my-key-name -address + wardend keys show my-key-name --address ``` ::: @@ -213,7 +213,7 @@ To add a Keychain Writer, take these steps: You can always check your public address by running this command: ``` - wardend keys show my-key-name -address + wardend keys show my-key-name --address ``` ::: diff --git a/docs/developer-docs/docs/operate-a-node/create-a-validator.md b/docs/developer-docs/docs/operate-a-node/create-a-validator.md index e11d67b71..35aac8cc1 100644 --- a/docs/developer-docs/docs/operate-a-node/create-a-validator.md +++ b/docs/developer-docs/docs/operate-a-node/create-a-validator.md @@ -31,7 +31,7 @@ wardend keys add my-key-name --recover Then get your public address: ```bash -wardend keys show my-key-name -address +wardend keys show my-key-name --address ``` ## 2. Get testnet WARD From d0370ac1c0d99451a5e60cdeaa2f9e0c5e8c5e31 Mon Sep 17 00:00:00 2001 From: Margarita Skomorokh Date: Fri, 18 Oct 2024 11:24:20 +0200 Subject: [PATCH 2/5] moved import statements to the beginning of articles --- .../build-a-keychain/operate-a-keychain/create-a-keychain.md | 4 ++-- .../operate-a-keychain/fulfill-requests-from-cli.md | 4 ++-- .../deploy-a-wasm-contract.md | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/developer-docs/docs/build-a-keychain/operate-a-keychain/create-a-keychain.md b/docs/developer-docs/docs/build-a-keychain/operate-a-keychain/create-a-keychain.md index e50562554..e663dad75 100644 --- a/docs/developer-docs/docs/build-a-keychain/operate-a-keychain/create-a-keychain.md +++ b/docs/developer-docs/docs/build-a-keychain/operate-a-keychain/create-a-keychain.md @@ -2,11 +2,11 @@ sidebar_position: 2 --- -# Create a Keychain - import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; +# Create a Keychain + ## Overview To become a **Keychain operator**, you need to create and configure a Keychain entity on-chain, as shown in this guide. To interact with the chain, you'll use [node commands](/operate-a-node/node-commands). diff --git a/docs/developer-docs/docs/build-a-keychain/operate-a-keychain/fulfill-requests-from-cli.md b/docs/developer-docs/docs/build-a-keychain/operate-a-keychain/fulfill-requests-from-cli.md index e74c3d68f..1a8f704f7 100644 --- a/docs/developer-docs/docs/build-a-keychain/operate-a-keychain/fulfill-requests-from-cli.md +++ b/docs/developer-docs/docs/build-a-keychain/operate-a-keychain/fulfill-requests-from-cli.md @@ -2,11 +2,11 @@ sidebar_position: 2 --- -# Fulfill requests from CLI - import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; +# Fulfill requests from CLI + ## Overview This is a step-by-step guide explaining how to fulfill key and signature requests with your Keychain from the command line. diff --git a/docs/developer-docs/docs/build-an-app/deploy-smart-contracts-on-warden/deploy-a-wasm-contract.md b/docs/developer-docs/docs/build-an-app/deploy-smart-contracts-on-warden/deploy-a-wasm-contract.md index 113460832..0f83d9e3e 100644 --- a/docs/developer-docs/docs/build-an-app/deploy-smart-contracts-on-warden/deploy-a-wasm-contract.md +++ b/docs/developer-docs/docs/build-an-app/deploy-smart-contracts-on-warden/deploy-a-wasm-contract.md @@ -2,11 +2,11 @@ sidebar_position: 2 --- -# Deploy a WASM contract - import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; +# Deploy a WASM contract + ## Overview The [`x/wasm`](/learn/warden-protocol-modules/external-modules#xwasm) Warden module allows executing WebAssembly smart contracts developed with [CosmWasm](https://cosmwasm.com) and **Rust**. From 360ee0c306b8d2eab47c91e7630609d04340bef9 Mon Sep 17 00:00:00 2001 From: Margarita Skomorokh Date: Fri, 18 Oct 2024 11:25:06 +0200 Subject: [PATCH 3/5] fixed a typo --- .../build-a-keychain/operate-a-keychain/create-a-keychain.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/developer-docs/docs/build-a-keychain/operate-a-keychain/create-a-keychain.md b/docs/developer-docs/docs/build-a-keychain/operate-a-keychain/create-a-keychain.md index e663dad75..498bf1d94 100644 --- a/docs/developer-docs/docs/build-a-keychain/operate-a-keychain/create-a-keychain.md +++ b/docs/developer-docs/docs/build-a-keychain/operate-a-keychain/create-a-keychain.md @@ -132,7 +132,7 @@ The following steps show how to register a new Keychain entity on-chain. ```bash wardend tx warden new-keychain \ - --description 'my-keychain-name' \ + --description 'my-keychain-description' \ --from my-key-name \ --chain-id buenavista-1 \ --node https://rpc.buenavista.wardenprotocol.org:443 From 076a8de6c34a69f8e10e5b545a2f7b2a6fce5c23 Mon Sep 17 00:00:00 2001 From: Margarita Skomorokh Date: Fri, 18 Oct 2024 11:27:52 +0200 Subject: [PATCH 4/5] fixed a typo --- .../build-a-keychain/operate-a-keychain/create-a-keychain.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/developer-docs/docs/build-a-keychain/operate-a-keychain/create-a-keychain.md b/docs/developer-docs/docs/build-a-keychain/operate-a-keychain/create-a-keychain.md index 498bf1d94..63e53a393 100644 --- a/docs/developer-docs/docs/build-a-keychain/operate-a-keychain/create-a-keychain.md +++ b/docs/developer-docs/docs/build-a-keychain/operate-a-keychain/create-a-keychain.md @@ -213,7 +213,7 @@ To add a Keychain Writer, take these steps: You can always check your public address by running this command: ``` - wardend keys show my-key-name --address + wardend keys show my-keychain-writer-name --address ``` ::: From 65681d6d2332ec2d0e55a1b15fa33bc4d286ccd4 Mon Sep 17 00:00:00 2001 From: Margarita Skomorokh Date: Fri, 18 Oct 2024 11:43:10 +0200 Subject: [PATCH 5/5] fixed a typo --- .../build-a-keychain/operate-a-keychain/create-a-keychain.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/developer-docs/docs/build-a-keychain/operate-a-keychain/create-a-keychain.md b/docs/developer-docs/docs/build-a-keychain/operate-a-keychain/create-a-keychain.md index 63e53a393..b2eff1b69 100644 --- a/docs/developer-docs/docs/build-a-keychain/operate-a-keychain/create-a-keychain.md +++ b/docs/developer-docs/docs/build-a-keychain/operate-a-keychain/create-a-keychain.md @@ -279,7 +279,7 @@ To add a Keychain Writer, take these steps: ```bash wardend tx warden add-keychain-writer --from my-key-name \ - --keychain-id 2 --writer $(wardend keys show --address my-keychain-writer-name) \ + --keychain-id 1 --writer $(wardend keys show --address my-keychain-writer-name) \ --chain-id buenavista-1 --node https://rpc.buenavista.wardenprotocol.org:443 ```