-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
1,022 additions
and
3 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
# `beaker` | ||
|
||
CosmWasm swiss-army knife configured for Osmosis by default, but trivial to make it work for other CosmWasm enabled chain. | ||
|
||
Version: 0.1.7 | ||
|
||
## Subcommands | ||
|
||
--- | ||
|
||
### `beaker new` | ||
|
||
Create new workspace from boilerplate | ||
|
||
Arguments: | ||
|
||
* `<NAME>` Workspace name | ||
|
||
* `-t / --target-dir <TARGET_DIR>`: Path to store generated workspace | ||
|
||
* `-b / --branch <BRANCH>`: Template's branch, using main if not specified | ||
|
||
--- | ||
|
||
### `beaker wasm` | ||
|
||
Manipulating and interacting with CosmWasm contract | ||
|
||
[\> `beaker wasm`'s subcommands](./beaker_wasm.md) | ||
|
||
--- | ||
|
||
### `beaker key` | ||
|
||
Managing key backed by system's secret store | ||
|
||
[\> `beaker key`'s subcommands](./beaker_key.md) | ||
|
||
--- | ||
|
||
### `beaker console` | ||
|
||
Launch interactive console for interacting with the project | ||
|
||
Arguments: | ||
|
||
* `-n / --network <NETWORK>` (default: `local`) | ||
|
||
--- | ||
|
||
### `beaker task` | ||
|
||
Managing tasks for the project | ||
|
||
[\> `beaker task`'s subcommands](./beaker_task.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
# `beaker key` | ||
|
||
Managing key backed by system's secret store | ||
|
||
## Subcommands | ||
|
||
--- | ||
|
||
### `beaker key set` | ||
|
||
Create new key or update existing key | ||
|
||
Arguments: | ||
|
||
* `<NAME>` Name of the key to create or update | ||
|
||
* `<MNEMONIC>` Mnemonic string to store as an entry | ||
|
||
* `-y / --yes <YES>`: Agree to all prompts | ||
|
||
--- | ||
|
||
### `beaker key delete` | ||
|
||
Delete existing key | ||
|
||
Arguments: | ||
|
||
* `<NAME>` Name of the key to create or update | ||
|
||
* `-y / --yes <YES>`: Agree to all prompts | ||
|
||
--- | ||
|
||
### `beaker key address` | ||
|
||
Get address from keyring's stored key | ||
|
||
Arguments: | ||
|
||
* `<NAME>` Name of the key to create or update | ||
|
||
--- | ||
|
||
### `beaker key generate` | ||
|
||
Generate new mnemonic | ||
|
||
Arguments: | ||
|
||
* `<NAME>` Name of the key to create or update | ||
|
||
* `--show <SHOW>`: Show mnemonic in the console if set, keep it secret otherwise | ||
|
||
* `-y / --yes <YES>`: Agree to all prompts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# `beaker task` | ||
|
||
Managing tasks for the project | ||
|
||
## Subcommands | ||
|
||
--- | ||
|
||
### `beaker task new` | ||
|
||
Create a new task | ||
|
||
Arguments: | ||
|
||
* `<TASK>` Name of the task | ||
|
||
--- | ||
|
||
### `beaker task run` | ||
|
||
Run a task | ||
|
||
Arguments: | ||
|
||
* `<SCRIPT>` Name of the task | ||
|
||
* `<ARGS>` |
Oops, something went wrong.