From 182b8b2243734690f161dcf9a3c3b0da1a0e1b8b Mon Sep 17 00:00:00 2001 From: tacolopo <106569305+tacolopo@users.noreply.github.com> Date: Mon, 22 Aug 2022 09:27:29 -0400 Subject: [PATCH] change tx cert create to generate (#240) * Update and rename akash_tx_cert_create_client.md to akash_tx_cert_generate_client.md * Update and rename akash_tx_cert_create.md to akash_tx_cert_generate.md * Update akash_tx_cert_generate.md * Update and rename akash_tx_cert_create_server.md to akash_tx_cert_generate_server.md * Update akash_tx_cert_generate_server.md * Create akash_tx_cert_publish.md * Update akash_tx_cert_publish.md * Update akash_tx_cert_publish.md * Update akash_tx_cert_revoke.md * Update akash_tx_cert_publish.md * Update akash_tx_cert_publish.md * Create akash_tx_cert_revoke_client.md * Update akash_tx_cert_revoke_client.md * Update akash_tx_cert_revoke_client.md * Create akash_tx_cert_revoke_server.md * Update akash_tx_cert_generate_client.md * Update akash_tx_cert_generate_client.md * Update akash_tx_cert_generate_server.md * Update akash_tx_cert_revoke_server.md * Create akash_tx_cert_publish_client.md * Update akash_tx_cert_publish_client.md * Create akash_tx_cert_revoke_server.md --- akash_tx_cert_revoke_server.md | 48 +++++++++++++++++++ ...rt_create.md => akash_tx_cert_generate.md} | 8 ++-- ...nt.md => akash_tx_cert_generate_client.md} | 16 ++++--- ...er.md => akash_tx_cert_generate_server.md} | 8 ++-- cli/akash_tx_cert_publish.md | 24 ++++++++++ cli/akash_tx_cert_publish_client.md | 36 ++++++++++++++ cli/akash_tx_cert_revoke.md | 6 +-- cli/akash_tx_cert_revoke_client.md | 32 +++++++++++++ cli/akash_tx_cert_revoke_server.md | 47 ++++++++++++++++++ 9 files changed, 207 insertions(+), 18 deletions(-) create mode 100644 akash_tx_cert_revoke_server.md rename cli/{akash_tx_cert_create.md => akash_tx_cert_generate.md} (56%) rename cli/{akash_tx_cert_create_client.md => akash_tx_cert_generate_client.md} (90%) rename cli/{akash_tx_cert_create_server.md => akash_tx_cert_generate_server.md} (91%) create mode 100644 cli/akash_tx_cert_publish.md create mode 100644 cli/akash_tx_cert_publish_client.md create mode 100644 cli/akash_tx_cert_revoke_client.md create mode 100644 cli/akash_tx_cert_revoke_server.md diff --git a/akash_tx_cert_revoke_server.md b/akash_tx_cert_revoke_server.md new file mode 100644 index 00000000..d58078c5 --- /dev/null +++ b/akash_tx_cert_revoke_server.md @@ -0,0 +1,48 @@ +## akash tx cert revoke server + +revoke server api certificate + +``` +akash tx cert revoke server [space separated dns names and/or IP addresses] [flags] +``` + +### Options + +``` + -a, --account-number uint The account number of the signing account (offline mode only) + -b, --broadcast-mode string Transaction broadcasting mode (sync|async|block) (default "sync") + --dry-run ignore the --gas flag and perform a simulation of a transaction, but don't broadcast it + --fees string Fees to pay along with transaction; eg: 10uatom + --from string Name or address of private key with which to sign + --gas string gas limit to set per-transaction; set to "auto" to calculate sufficient gas automatically (default 200000) + --gas-adjustment float adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored (default 1) + --gas-prices string Gas prices in decimal format to determine the transaction fee (e.g. 0.1uatom) + --generate-only Build an unsigned transaction and write it to STDOUT (when enabled, the local Keybase is not accessible) + -h, --help help for server + --keyring-backend string Select keyring's backend (os|file|kwallet|pass|test) (default "os") + --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used + --ledger Use a connected Ledger device + --memo string Memo to send along with transaction + --naf string certificate is not valid after this date. default 365d. days or RFC3339 + --nbf string certificate is not valid before this date. default current timestamp. RFC3339 + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --offline Offline mode (does not allow any online functionality + --rie revoke current certificate if it already present on chain + -s, --sequence uint The sequence number of the signing account (offline mode only) + --sign-mode string Choose sign mode (direct|amino-json), this is an advanced feature + --timeout-height uint Set a block timeout height to prevent the tx from being committed past a certain height + --to-genesis export certificate to genesis + -y, --yes Skip tx broadcasting prompt confirmation +``` + +### Options inherited from parent commands + +``` +--chain-id string The network chain ID +``` + +### SEE ALSO + +* [akash tx cert revoke client](akash_tx_cert_revoke_client.md) - Remove client certificate +* [akash tx cert generate](akash_tx_cert_generate.md) - create/update api certificates + diff --git a/cli/akash_tx_cert_create.md b/cli/akash_tx_cert_generate.md similarity index 56% rename from cli/akash_tx_cert_create.md rename to cli/akash_tx_cert_generate.md index f823816f..09b5dd46 100644 --- a/cli/akash_tx_cert_create.md +++ b/cli/akash_tx_cert_generate.md @@ -1,9 +1,9 @@ -## akash tx cert create +## akash tx cert generate create/update api certificates ``` -akash tx cert create [flags] +akash tx cert generate [flags] ``` ### Options @@ -21,7 +21,7 @@ akash tx cert create [flags] ### SEE ALSO * [akash tx cert](akash_tx_cert.md) - Certificates transaction subcommands -* [akash tx cert create client](akash_tx_cert_create_client.md) - create client api certificate -* [akash tx cert create server](akash_tx_cert_create_server.md) - create server api certificate +* [akash tx cert generate client](akash_tx_cert_generate_client.md) - create client api certificate +* [akash tx cert generate server](akash_tx_cert_generate_server.md) - create server api certificate ###### Auto generated by spf13/cobra on 18-Feb-2021 diff --git a/cli/akash_tx_cert_create_client.md b/cli/akash_tx_cert_generate_client.md similarity index 90% rename from cli/akash_tx_cert_create_client.md rename to cli/akash_tx_cert_generate_client.md index 4fe0aa38..57c13695 100644 --- a/cli/akash_tx_cert_create_client.md +++ b/cli/akash_tx_cert_generate_client.md @@ -1,9 +1,9 @@ -## akash tx cert create client +## akash tx cert generate client create client api certificate ``` -akash tx cert create client [flags] +akash tx cert generate client [flags] ``` ### Options @@ -38,11 +38,15 @@ akash tx cert create client [flags] ### Options inherited from parent commands ``` - --chain-id string The network chain ID +--chain-id string The network chain ID ``` -### SEE ALSO +### Example -* [akash tx cert create](akash_tx_cert_create.md) - create/update api certificates +``` +akash tx cert generate client --from sign --fees 5000uakt +``` + +### SEE ALSO -###### Auto generated by spf13/cobra on 18-Feb-2021 +* [akash tx cert](akash_tx_cert.md) - create/update api certificates diff --git a/cli/akash_tx_cert_create_server.md b/cli/akash_tx_cert_generate_server.md similarity index 91% rename from cli/akash_tx_cert_create_server.md rename to cli/akash_tx_cert_generate_server.md index 47ec77ba..b607783d 100644 --- a/cli/akash_tx_cert_create_server.md +++ b/cli/akash_tx_cert_generate_server.md @@ -1,9 +1,9 @@ -## akash tx cert create server +## akash tx cert generate server create server api certificate ``` -akash tx cert create server [space separated dns names and/or IP addresses] [flags] +akash tx cert generate server [space separated dns names and/or IP addresses] [flags] ``` ### Options @@ -38,11 +38,11 @@ akash tx cert create server [space separated dns names and/or IP addresses] [fla ### Options inherited from parent commands ``` - --chain-id string The network chain ID +--chain-id string The network chain ID ``` ### SEE ALSO -* [akash tx cert create](akash_tx_cert_create.md) - create/update api certificates +* [akash tx cert generate](akash_tx_cert_generate.md) - create/update api certificates ###### Auto generated by spf13/cobra on 18-Feb-2021 diff --git a/cli/akash_tx_cert_publish.md b/cli/akash_tx_cert_publish.md new file mode 100644 index 00000000..dfa468d6 --- /dev/null +++ b/cli/akash_tx_cert_publish.md @@ -0,0 +1,24 @@ +## akash tx cert publish + +publish certificate to the blockchain + +``` +akash tx cert publish [flags] +``` +### Options + +``` +-h, --help help for create +``` + +### Options inherited from parent commands + +``` +--chain-id string The network chain ID +``` + +### SEE ALSO + +* [akash tx cert publish client](akash_tx_cert_publish_client.md) - Publish client certificate +* [akash tx cert publish server](akash_tx_cert_publish_server.md) - Publish server certificate +* [akash tx cert revoke](akash_tx_cert_revoke.md) - Revoke certificate diff --git a/cli/akash_tx_cert_publish_client.md b/cli/akash_tx_cert_publish_client.md new file mode 100644 index 00000000..d070f112 --- /dev/null +++ b/cli/akash_tx_cert_publish_client.md @@ -0,0 +1,36 @@ +## akash tx cert publish client + +publish client certificate to the blockchain + +``` +akash tx cert publish client --from $AKASH_KEY_NAME [flags] +``` +### Options + +``` +-h, --help help for create +``` + +### Options inherited from parent commands + +``` +--chain-id string The network chain ID +``` + +### Example + +``` +akash tx cert publish client --from sign --fees 5000uakt +``` + +### Example on chain + +https://www.mintscan.io/akash/txs/4DAF9CC2CB9203F2FDFA1617CD93909C9DE577A5740A20E00BEB3E4E05E45FBC + + + +### SEE ALSO + +* [akash tx cert publish](akash_tx_cert_publish.md) - Publish certificate +* [akash tx cert publish server](akash_tx_cert_publish_server.md) - Publish server certificate +* [akash tx cert revoke](akash_tx_cert_revoke.md) - Revoke certificate diff --git a/cli/akash_tx_cert_revoke.md b/cli/akash_tx_cert_revoke.md index c34dd489..04eda134 100644 --- a/cli/akash_tx_cert_revoke.md +++ b/cli/akash_tx_cert_revoke.md @@ -21,7 +21,5 @@ akash tx cert revoke [flags] ### SEE ALSO * [akash tx cert](akash_tx_cert.md) - Certificates transaction subcommands -* [akash tx cert revoke client](akash_tx_cert_revoke_client.md) - -* [akash tx cert revoke server](akash_tx_cert_revoke_server.md) - - -###### Auto generated by spf13/cobra on 28-Apr-2022 +* [akash tx cert revoke client](akash_tx_cert_revoke_client.md) - Remove client certificate +* [akash tx cert revoke server](akash_tx_cert_revoke_server.md) - Remove server certificate diff --git a/cli/akash_tx_cert_revoke_client.md b/cli/akash_tx_cert_revoke_client.md new file mode 100644 index 00000000..9a1e2098 --- /dev/null +++ b/cli/akash_tx_cert_revoke_client.md @@ -0,0 +1,32 @@ +## akash tx cert revoke client + +``` +akash tx cert revoke client --from $AKASH_KEY_NAME [flags] +``` + +### Options + +``` +-h, --help help for revoke +``` + +### Options inherited from parent commands + +``` +--chain-id string The network chain ID +``` + +### Example + +``` +akash tx cert revoke client --from sign --fees 5000uakt +``` + +### Example on chain + +https://www.mintscan.io/akash/txs/F9E007A8A915AD4F6AD3F876A92CA280886719EFB30079E02D28D596A685043A + +### SEE ALSO + +* [akash tx cert](akash_tx_cert.md) - Certificates transaction subcommands +* [akash tx cert revoke server](akash_tx_cert_revoke_server.md) - Remove server certificate diff --git a/cli/akash_tx_cert_revoke_server.md b/cli/akash_tx_cert_revoke_server.md new file mode 100644 index 00000000..59fb44e8 --- /dev/null +++ b/cli/akash_tx_cert_revoke_server.md @@ -0,0 +1,47 @@ +## akash tx cert remove server + +remove server api certificate + +``` +akash tx cert remove server [space separated dns names and/or IP addresses] [flags] +``` + +### Options + +``` + -a, --account-number uint The account number of the signing account (offline mode only) + -b, --broadcast-mode string Transaction broadcasting mode (sync|async|block) (default "sync") + --dry-run ignore the --gas flag and perform a simulation of a transaction, but don't broadcast it + --fees string Fees to pay along with transaction; eg: 10uatom + --from string Name or address of private key with which to sign + --gas string gas limit to set per-transaction; set to "auto" to calculate sufficient gas automatically (default 200000) + --gas-adjustment float adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored (default 1) + --gas-prices string Gas prices in decimal format to determine the transaction fee (e.g. 0.1uatom) + --generate-only Build an unsigned transaction and write it to STDOUT (when enabled, the local Keybase is not accessible) + -h, --help help for server + --keyring-backend string Select keyring's backend (os|file|kwallet|pass|test) (default "os") + --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used + --ledger Use a connected Ledger device + --memo string Memo to send along with transaction + --naf string certificate is not valid after this date. default 365d. days or RFC3339 + --nbf string certificate is not valid before this date. default current timestamp. RFC3339 + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --offline Offline mode (does not allow any online functionality + --rie revoke current certificate if it already present on chain + -s, --sequence uint The sequence number of the signing account (offline mode only) + --sign-mode string Choose sign mode (direct|amino-json), this is an advanced feature + --timeout-height uint Set a block timeout height to prevent the tx from being committed past a certain height + --to-genesis export certificate to genesis + -y, --yes Skip tx broadcasting prompt confirmation +``` + +### Options inherited from parent commands + +``` +--chain-id string The network chain ID +``` + +### SEE ALSO + +* [akash tx cert](akash_tx_cert.md) - Certificates transaction subcommands +* [akash tx cert revoke client](akash_tx_cert_revoke_client.md) - Remove client certificate