Skip to content

Commit 85f66cd

Browse files
committed
update doc
1 parent 64baed2 commit 85f66cd

File tree

4 files changed

+78
-3
lines changed

4 files changed

+78
-3
lines changed

docs/commands/README.md

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
CosmWasm swiss-army knife configured for Osmosis by default, but trivial to make it work for other CosmWasm enabled chain.
44

5-
Version: 0.1.3
5+
Version: 0.1.4
66

77
Arguments:
88

@@ -68,4 +68,18 @@ Arguments:
6868

6969
* `--version`: Print version information
7070

71-
* `-n/--network <network>` (default: `local`)
71+
* `-n/--network <network>` (default: `local`)
72+
73+
---
74+
75+
### `beaker task`
76+
77+
Managing tasks for the project
78+
79+
[\> `beaker task`'s subcommands](./beaker_task.md)
80+
81+
Arguments:
82+
83+
* `--help`: Print help information
84+
85+
* `--version`: Print version information

docs/commands/beaker_task.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# `beaker task`
2+
3+
Managing tasks for the project
4+
5+
Arguments:
6+
7+
* `--help`: Print help information
8+
9+
* `--version`: Print version information
10+
11+
## Subcommands
12+
13+
### `beaker task new`
14+
15+
Create a new task
16+
17+
Arguments:
18+
19+
* `--help`: Print help information
20+
21+
* `--version`: Print version information
22+
23+
* ` <task>`Name of the task
24+
25+
---
26+
27+
### `beaker task run`
28+
29+
Run a task
30+
31+
Arguments:
32+
33+
* `--help`: Print help information
34+
35+
* `--version`: Print version information
36+
37+
* ` <script>`Name of the task
38+
39+
* ` <args>`

docs/commands/beaker_wasm.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,8 @@ Arguments:
7676

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

79+
* `-a/--account-sequence <account-sequence>`: Account sequence number to use for the transaction, if not provided, sequence will be fetched from the chain. This is useful if there is an account sequence mismatch
80+
7981
---
8082

8183
### `beaker wasm ts-gen`
@@ -128,6 +130,8 @@ Arguments:
128130

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

133+
* `-a/--account-sequence <account-sequence>`: Account sequence number to use for the transaction, if not provided, sequence will be fetched from the chain. This is useful if there is an account sequence mismatch
134+
131135
---
132136

133137
### `beaker wasm clear-admin`
@@ -160,6 +164,8 @@ Arguments:
160164

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

167+
* `-a/--account-sequence <account-sequence>`: Account sequence number to use for the transaction, if not provided, sequence will be fetched from the chain. This is useful if there is an account sequence mismatch
168+
163169
---
164170

165171
### `beaker wasm instantiate`
@@ -202,6 +208,8 @@ Arguments:
202208

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

211+
* `-a/--account-sequence <account-sequence>`: Account sequence number to use for the transaction, if not provided, sequence will be fetched from the chain. This is useful if there is an account sequence mismatch
212+
205213
---
206214

207215
### `beaker wasm migrate`
@@ -240,6 +248,8 @@ Arguments:
240248

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

251+
* `-a/--account-sequence <account-sequence>`: Account sequence number to use for the transaction, if not provided, sequence will be fetched from the chain. This is useful if there is an account sequence mismatch
252+
243253
---
244254

245255
### `beaker wasm deploy`
@@ -284,6 +294,8 @@ Arguments:
284294

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

297+
* `-a/--account-sequence <account-sequence>`: Account sequence number to use for the transaction, if not provided, sequence will be fetched from the chain. This is useful if there is an account sequence mismatch
298+
287299
---
288300

289301
### `beaker wasm upgrade`
@@ -324,6 +336,8 @@ Arguments:
324336

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

339+
* `-a/--account-sequence <account-sequence>`: Account sequence number to use for the transaction, if not provided, sequence will be fetched from the chain. This is useful if there is an account sequence mismatch
340+
327341
---
328342

329343
### `beaker wasm proposal`
@@ -372,6 +386,8 @@ Arguments:
372386

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

389+
* `-a/--account-sequence <account-sequence>`: Account sequence number to use for the transaction, if not provided, sequence will be fetched from the chain. This is useful if there is an account sequence mismatch
390+
375391
---
376392

377393
### `beaker wasm query`
@@ -404,4 +420,6 @@ Arguments:
404420

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

407-
* `-t/--timeout-height <timeout-height>`: Specifies a block timeout height to prevent the tx from being committed past a certain height (default: `0`)
423+
* `-t/--timeout-height <timeout-height>`: Specifies a block timeout height to prevent the tx from being committed past a certain height (default: `0`)
424+
425+
* `-a/--account-sequence <account-sequence>`: Account sequence number to use for the transaction, if not provided, sequence will be fetched from the chain. This is useful if there is an account sequence mismatch

docs/commands/beaker_wasm_proposal.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,8 @@ Arguments:
5252

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

55+
* `-a/--account-sequence <account-sequence>`: Account sequence number to use for the transaction, if not provided, sequence will be fetched from the chain. This is useful if there is an account sequence mismatch
56+
5557
---
5658

5759
### `beaker wasm proposal vote`
@@ -84,6 +86,8 @@ Arguments:
8486

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

89+
* `-a/--account-sequence <account-sequence>`: Account sequence number to use for the transaction, if not provided, sequence will be fetched from the chain. This is useful if there is an account sequence mismatch
90+
8791
---
8892

8993
### `beaker wasm proposal query`

0 commit comments

Comments
 (0)