Skip to content

Commit

Permalink
bump version to 0.0.8 and update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
iboss-ptk committed Aug 29, 2022
1 parent 7a03eff commit 9b4746b
Show file tree
Hide file tree
Showing 4 changed files with 82 additions and 12 deletions.
2 changes: 1 addition & 1 deletion docs/commands/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

CosmWasm development tooling

Version: 0.0.6
Version: 0.0.8

Arguments:

Expand Down
86 changes: 78 additions & 8 deletions docs/commands/beaker_wasm.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ Arguments:

* `--signer-account <signer-account>`: Specifies predefined account as a tx signer

* `--signer-keyring <signer-keyring>`: Specifies private_key as a tx signer (base64 encoded string)
* `--signer-keyring <signer-keyring>`: Use the OS secure store as backend to securely store your key. To manage them, you can find more information [here](docs/commands/beaker_key.md)

* `--signer-mnemonic <signer-mnemonic>`: Specifies mnemonic as a tx signer

Expand Down Expand Up @@ -122,7 +122,7 @@ Arguments:

* `--signer-account <signer-account>`: Specifies predefined account as a tx signer

* `--signer-keyring <signer-keyring>`: Specifies private_key as a tx signer (base64 encoded string)
* `--signer-keyring <signer-keyring>`: Use the OS secure store as backend to securely store your key. To manage them, you can find more information [here](docs/commands/beaker_key.md)

* `--signer-mnemonic <signer-mnemonic>`: Specifies mnemonic as a tx signer

Expand Down Expand Up @@ -154,7 +154,7 @@ Arguments:

* `--signer-account <signer-account>`: Specifies predefined account as a tx signer

* `--signer-keyring <signer-keyring>`: Specifies private_key as a tx signer (base64 encoded string)
* `--signer-keyring <signer-keyring>`: Use the OS secure store as backend to securely store your key. To manage them, you can find more information [here](docs/commands/beaker_key.md)

* `--signer-mnemonic <signer-mnemonic>`: Specifies mnemonic as a tx signer

Expand Down Expand Up @@ -196,7 +196,7 @@ Arguments:

* `--signer-account <signer-account>`: Specifies predefined account as a tx signer

* `--signer-keyring <signer-keyring>`: Specifies private_key as a tx signer (base64 encoded string)
* `--signer-keyring <signer-keyring>`: Use the OS secure store as backend to securely store your key. To manage them, you can find more information [here](docs/commands/beaker_key.md)

* `--signer-mnemonic <signer-mnemonic>`: Specifies mnemonic as a tx signer

Expand Down Expand Up @@ -234,7 +234,7 @@ Arguments:

* `--signer-account <signer-account>`: Specifies predefined account as a tx signer

* `--signer-keyring <signer-keyring>`: Specifies private_key as a tx signer (base64 encoded string)
* `--signer-keyring <signer-keyring>`: Use the OS secure store as backend to securely store your key. To manage them, you can find more information [here](docs/commands/beaker_key.md)

* `--signer-mnemonic <signer-mnemonic>`: Specifies mnemonic as a tx signer

Expand Down Expand Up @@ -278,7 +278,7 @@ Arguments:

* `--signer-account <signer-account>`: Specifies predefined account as a tx signer

* `--signer-keyring <signer-keyring>`: Specifies private_key as a tx signer (base64 encoded string)
* `--signer-keyring <signer-keyring>`: Use the OS secure store as backend to securely store your key. To manage them, you can find more information [here](docs/commands/beaker_key.md)

* `--signer-mnemonic <signer-mnemonic>`: Specifies mnemonic as a tx signer

Expand Down Expand Up @@ -318,7 +318,7 @@ Arguments:

* `--signer-account <signer-account>`: Specifies predefined account as a tx signer

* `--signer-keyring <signer-keyring>`: Specifies private_key as a tx signer (base64 encoded string)
* `--signer-keyring <signer-keyring>`: Use the OS secure store as backend to securely store your key. To manage them, you can find more information [here](docs/commands/beaker_key.md)

* `--signer-mnemonic <signer-mnemonic>`: Specifies mnemonic as a tx signer

Expand All @@ -336,4 +336,74 @@ Arguments:

* `--help`: Print help information

* `--version`: Print version information
* `--version`: Print version information

---

### `beaker wasm execute`

Execute contract messages

Arguments:

* `--help`: Print help information

* `--version`: Print version information

* ` <contract-name>`

* `-l/--label <label>` (default: `default`)

* `-r/--raw <raw>`

* `-f/--funds <funds>`

* `-n/--network <network>`: Name of the network to broadcast transaction to, the actual endpoint / chain-id are defined in config (default: `local`)

* `--gas <gas>`: Coin (amount and denom) you are willing to pay as gas eg. `1000uosmo`

* `--gas-limit <gas-limit>`: Limit to how much gas amount allowed to be consumed

* `--signer-account <signer-account>`: Specifies predefined account as a tx signer

* `--signer-keyring <signer-keyring>`: Use the OS secure store as backend to securely store your key. To manage them, you can find more information [here](docs/commands/beaker_key.md)

* `--signer-mnemonic <signer-mnemonic>`: Specifies mnemonic as a tx signer

* `--signer-private-key <signer-private-key>`: Specifies private_key as a tx signer (base64 encoded string)

* `-t/--timeout-height <timeout-height>`: Specifies a block timeout height to prevent the tx from being committed past a certain height (default: `0`)

---

### `beaker wasm query`

Query contract state

Arguments:

* `--help`: Print help information

* `--version`: Print version information

* ` <contract-name>`

* `-l/--label <label>` (default: `default`)

* `-r/--raw <raw>`

* `-n/--network <network>`: Name of the network to broadcast transaction to, the actual endpoint / chain-id are defined in config (default: `local`)

* `--gas <gas>`: Coin (amount and denom) you are willing to pay as gas eg. `1000uosmo`

* `--gas-limit <gas-limit>`: Limit to how much gas amount allowed to be consumed

* `--signer-account <signer-account>`: Specifies predefined account as a tx signer

* `--signer-keyring <signer-keyring>`: Use the OS secure store as backend to securely store your key. To manage them, you can find more information [here](docs/commands/beaker_key.md)

* `--signer-mnemonic <signer-mnemonic>`: Specifies mnemonic as a tx signer

* `--signer-private-key <signer-private-key>`: Specifies private_key as a tx signer (base64 encoded string)

* `-t/--timeout-height <timeout-height>`: Specifies a block timeout height to prevent the tx from being committed past a certain height (default: `0`)
4 changes: 2 additions & 2 deletions docs/commands/beaker_wasm_proposal.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Arguments:

* `--signer-account <signer-account>`: Specifies predefined account as a tx signer

* `--signer-keyring <signer-keyring>`: Specifies private_key as a tx signer (base64 encoded string)
* `--signer-keyring <signer-keyring>`: Use the OS secure store as backend to securely store your key. To manage them, you can find more information [here](docs/commands/beaker_key.md)

* `--signer-mnemonic <signer-mnemonic>`: Specifies mnemonic as a tx signer

Expand Down Expand Up @@ -76,7 +76,7 @@ Arguments:

* `--signer-account <signer-account>`: Specifies predefined account as a tx signer

* `--signer-keyring <signer-keyring>`: Specifies private_key as a tx signer (base64 encoded string)
* `--signer-keyring <signer-keyring>`: Use the OS secure store as backend to securely store your key. To manage them, you can find more information [here](docs/commands/beaker_key.md)

* `--signer-mnemonic <signer-mnemonic>`: Specifies mnemonic as a tx signer

Expand Down
2 changes: 1 addition & 1 deletion packages/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description = "CosmWasm development tooling"
edition = "2021"
license = "MIT OR Apache-2.0"
name = "beaker"
version = "0.0.7"
version = "0.0.8"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down

0 comments on commit 9b4746b

Please sign in to comment.