Skip to content

Commit 0ecbe07

Browse files
committed
feat(commands): update axone-protocol/axoned commands documentation
1 parent 51fb7a2 commit 0ecbe07

File tree

167 files changed

+3466
-3179
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

167 files changed

+3466
-3179
lines changed

commands/axoned.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ Want to learn more about AXONE network? Complete documentation is available at:
2020

2121
* [axoned comet](axoned_comet.md) - CometBFT subcommands
2222
* [axoned config](axoned_config.md) - Utilities for managing application configuration
23-
* [axoned credential](axoned_credential.md) - W3C Verifiable Credential
2423
* [axoned debug](axoned_debug.md) - Tool for helping with debugging your application
2524
* [axoned export](axoned_export.md) - Export state to JSON
2625
* [axoned genesis](axoned_genesis.md) - Application's genesis-related subcommands

commands/axoned_credential.md

Lines changed: 0 additions & 20 deletions
This file was deleted.

commands/axoned_credential_sign.md

Lines changed: 0 additions & 30 deletions
This file was deleted.

commands/axoned_genesis_gentx.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,10 @@ axoned genesis gentx [key_name] [amount] [flags]
6969
--security-contact string The validator's (optional) security contact email
7070
-s, --sequence uint The sequence number of the signing account (offline mode only)
7171
--sign-mode string Choose sign mode (direct|amino-json|direct-aux|textual), this is an advanced feature
72-
--timeout-height uint Set a block timeout height to prevent the tx from being committed past a certain height
72+
--timeout-duration duration TimeoutDuration is the duration the transaction will be considered valid in the mempool. The transaction's unordered nonce will be set to the time of transaction creation + the duration value passed. If the transaction is still in the mempool, and the block time has passed the time of submission + TimeoutTimestamp, the transaction will be rejected.
73+
--timeout-height uint DEPRECATED: Please use --timeout-duration instead. Set a block timeout height to prevent the tx from being committed past a certain height
7374
--tip string Tip is the amount that is going to be transferred to the fee payer on the target chain. This flag is only valid when used with --aux, and is ignored if the target chain didn't enable the TipDecorator
75+
--unordered Enable unordered transaction delivery; must be used in conjunction with --timeout-duration
7476
--website string The validator's (optional) website
7577
-y, --yes Skip tx broadcasting prompt confirmation
7678
```

commands/axoned_init.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,14 @@ axoned init [moniker] [flags]
1313
### Options
1414

1515
```
16-
--chain-id string genesis file chain-id, if left blank will be randomly created (default "axoned")
17-
--default-denom string genesis file default denomination, if left blank default value is 'stake'
18-
-h, --help help for init
19-
--home string node's home directory (default "/home/john/.axoned")
20-
--initial-height int specify the initial block height at genesis (default 1)
21-
-o, --overwrite overwrite the genesis.json file
22-
--recover provide seed phrase to recover existing key instead of creating
16+
--chain-id string genesis file chain-id, if left blank will be randomly created (default "axoned")
17+
--consensus-key-algo string algorithm to use for the consensus key (default "ed25519")
18+
--default-denom string genesis file default denomination, if left blank default value is 'stake'
19+
-h, --help help for init
20+
--home string node's home directory (default "/home/john/.axoned")
21+
--initial-height int specify the initial block height at genesis (default 1)
22+
-o, --overwrite overwrite the genesis.json file
23+
--recover provide seed phrase to recover existing key instead of creating
2324
```
2425

2526
### SEE ALSO

commands/axoned_keys.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ The pass backend requires GnuPG: [https://gnupg.org/](https://gnupg.org/)
4040
* [axoned](axoned.md) - Axone - Orchestration Layer for AI
4141
* [axoned keys add](axoned_keys_add.md) - Add an encrypted private key (either newly generated or recovered), encrypt it, and save to <name> file
4242
* [axoned keys delete](axoned_keys_delete.md) - Delete the given keys
43-
* [axoned keys did](axoned_keys_did.md) - Give the did:key from a ed25519 or secp256k1 pubkey (hex, base64)
4443
* [axoned keys export](axoned_keys_export.md) - Export private keys
4544
* [axoned keys import](axoned_keys_import.md) - Import private keys into the local keybase
4645
* [axoned keys import-hex](axoned_keys_import-hex.md) - Import private keys into the local keybase

commands/axoned_keys_did.md

Lines changed: 0 additions & 35 deletions
This file was deleted.

commands/axoned_keys_export.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ axoned keys export <name> [flags]
2323
-h, --help help for export
2424
--unarmored-hex Export unarmored hex privkey. Requires --unsafe.
2525
--unsafe Enable unsafe operations. This flag must be switched on along with all unsafe operation-specific options.
26+
-y, --yes Skip confirmation prompt when export unarmored hex privkey
2627
```
2728

2829
### Options inherited from parent commands

commands/axoned_keys_import-hex.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Supported key-types can be obtained with:
99
axoned list-key-types
1010

1111
```
12-
axoned keys import-hex <name> <hex> [flags]
12+
axoned keys import-hex <name> [hex] [flags]
1313
```
1414

1515
### Options

commands/axoned_keys_mnemonic.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ axoned keys mnemonic [flags]
1515
```
1616
-h, --help help for mnemonic
1717
--unsafe-entropy Prompt the user to supply their own entropy, instead of relying on the system
18+
-y, --yes Skip confirmation prompt when check input entropy length
1819
```
1920

2021
### Options inherited from parent commands

0 commit comments

Comments
 (0)