Skip to content

Commit

Permalink
Docs address and other fixes (#941)
Browse files Browse the repository at this point in the history
* fixed a typo in the --address flag

* moved import statements to the beginning of articles

* fixed a typo

* fixed a typo

* fixed a typo
  • Loading branch information
ijonele authored Oct 18, 2024
1 parent db10f6e commit b8ce460
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand Down Expand Up @@ -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
```
:::

Expand Down Expand Up @@ -132,7 +132,7 @@ The following steps show how to register a new Keychain entity on-chain.
<TabItem value="buenavista" label="Buenavista">
```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
Expand Down Expand Up @@ -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
```
:::

Expand Down Expand Up @@ -279,7 +279,7 @@ To add a Keychain Writer, take these steps:
<TabItem value="buenavista" label="Buenavista">
```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
```
</TabItem>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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**.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b8ce460

Please sign in to comment.