From 7ed5644c82febab515ffbc34ccb5b14e99b234df Mon Sep 17 00:00:00 2001 From: ccamel Date: Tue, 2 Jan 2024 16:28:50 +0100 Subject: [PATCH 1/3] build: normalize commands documentation (MDX v3) --- Makefile | 3 +- scripts/generate_command_doc.go | 7 +- scripts/generate_predicates_doc.go | 22 ----- scripts/util.go | 127 +++++++++++++++++++++++++++++ 4 files changed, 135 insertions(+), 24 deletions(-) create mode 100644 scripts/util.go diff --git a/Makefile b/Makefile index 13a28fcd..f92622d5 100644 --- a/Makefile +++ b/Makefile @@ -390,8 +390,9 @@ doc-command: ## Generate markdown documentation for the command sed -i $(SED_FLAG) 's/(default \"\/.*\/\.okp4d\")/(default \"\/home\/john\/\.okp4d\")/g' $$OUT_FOLDER/*.md; \ sed -i $(SED_FLAG) 's/node\ name\ (default\ \".*\")/node\ name\ (default\ \"my-machine\")/g' $$OUT_FOLDER/*.md; \ sed -i $(SED_FLAG) 's/IP\ (default\ \".*\")/IP\ (default\ \"127.0.0.1\")/g' $$OUT_FOLDER/*.md; \ + sed -i $(SED_FLAG) 's/<appd>/okp4d/g' $$OUT_FOLDER/*.md; \ sed -i $(SED_FLAG) 's//okp4d/g' $$OUT_FOLDER/*.md; \ - sed -i $(SED_FLAG) 's/<\([a-zA-Z-]*\)>/\<\1\>/g' $$OUT_FOLDER/*.md; \ + sed -i $(SED_FLAG) -E 's| (https?://[a-zA-Z0-9\.\/_=%-]+)| [\1](\1) |g' $$OUT_FOLDER/*.md; \ docker run --rm \ -v `pwd`:/usr/src/docs \ -w /usr/src/docs \ diff --git a/scripts/generate_command_doc.go b/scripts/generate_command_doc.go index 948777b9..8c92f98d 100644 --- a/scripts/generate_command_doc.go +++ b/scripts/generate_command_doc.go @@ -22,5 +22,10 @@ func GenerateCommandDocumentation() error { return err } - return doc.GenMarkdownTree(rootCmd, targetPath) + err = doc.GenMarkdownTree(rootCmd, targetPath) + if err != nil { + return err + } + + return normalizeMarkdownFiles(targetPath) } diff --git a/scripts/generate_predicates_doc.go b/scripts/generate_predicates_doc.go index e0ea555b..08544f96 100644 --- a/scripts/generate_predicates_doc.go +++ b/scripts/generate_predicates_doc.go @@ -1,7 +1,6 @@ package main import ( - "bufio" "embed" "fmt" "go/build" @@ -94,24 +93,3 @@ func readTemplateMust(templateName string) string { return string(template) } - -func writeToFile(filePath string, content string) error { - file, err := os.Create(filePath) - if err != nil { - return fmt.Errorf("failed to create file %s: %w", filePath, err) - } - defer func(file *os.File) { - _ = file.Close() - }(file) - - w := bufio.NewWriter(file) - if _, err = w.WriteString(content); err != nil { - return fmt.Errorf("failed to write to file %s: %w", filePath, err) - } - - if err = w.Flush(); err != nil { - return fmt.Errorf("failed to flush writer: %w", err) - } - - return nil -} diff --git a/scripts/util.go b/scripts/util.go new file mode 100644 index 00000000..93a0652a --- /dev/null +++ b/scripts/util.go @@ -0,0 +1,127 @@ +package main + +import ( + "bufio" + "errors" + "fmt" + "io" + "os" + "path/filepath" + "strings" +) + +func writeToFile(filePath string, content string) error { + file, err := os.Create(filePath) + if err != nil { + return fmt.Errorf("failed to create file %s: %w", filePath, err) + } + defer func(file *os.File) { + _ = file.Close() + }(file) + + w := bufio.NewWriter(file) + if _, err = w.WriteString(content); err != nil { + return fmt.Errorf("failed to write to file %s: %w", filePath, err) + } + + if err = w.Flush(); err != nil { + return fmt.Errorf("failed to flush writer: %w", err) + } + + return nil +} + +func normalizeMarkdownFiles(dir string) error { + files, err := os.ReadDir(dir) + if err != nil { + return err + } + + for _, file := range files { + path := filepath.Join(dir, file.Name()) + if file.IsDir() { + if err := normalizeMarkdownFiles(path); err != nil { + return err + } + } else if strings.HasSuffix(file.Name(), ".md") { + if err := normalizeMarkdownFile(path); err != nil { + return err + } + } + } + + return nil +} + +func normalizeMarkdownFile(file string) error { + f, err := os.Open(file) + if err != nil { + return err + } + defer f.Close() + + normalizedContent, err := normalizeMarkdownContent(f) + if err != nil { + return err + } + + return writeToFile(file, normalizedContent) +} + +func normalizeMarkdownContent(input io.Reader) (string, error) { + inCodeBlock := false + inInlineCode := false + var output strings.Builder + + reader := bufio.NewReader(input) + for { + char, _, err := reader.ReadRune() + if err != nil { + if errors.Is(err, io.EOF) { + break + } + return "", err + } + switch char { + case '`': + output.WriteRune(char) + + if !inCodeBlock { + inInlineCode = !inInlineCode + } + case '\n': + output.WriteRune(char) + + peekBytes, _ := reader.Peek(3) + if string(peekBytes) == "```" { + inCodeBlock = !inCodeBlock + + _, err := io.CopyN(&output, reader, 3) + if err != nil { + return "", err + } + } + default: + if !inCodeBlock && !inInlineCode { + switch char { + case '{': + output.WriteRune('\\') + output.WriteRune(char) + case '}': + output.WriteRune('\\') + output.WriteRune(char) + case '<': + output.WriteString("<") + case '>': + output.WriteString(">") + default: + output.WriteRune(char) + } + continue + } + output.WriteRune(char) + } + } + + return output.String(), nil +} From 2cc708b58278a81358c21baa4ad03be5c2d0e2cd Mon Sep 17 00:00:00 2001 From: ccamel Date: Tue, 2 Jan 2024 16:29:33 +0100 Subject: [PATCH 2/3] docs(command): generate MDX v3 normalize documentation --- docs/command/okp4d.md | 2 +- docs/command/okp4d_add-genesis-account.md | 2 +- docs/command/okp4d_config.md | 2 +- docs/command/okp4d_debug_prefixes.md | 2 +- docs/command/okp4d_debug_pubkey.md | 2 +- docs/command/okp4d_gentx.md | 2 +- docs/command/okp4d_keys.md | 6 +++--- docs/command/okp4d_keys_add.md | 4 ++-- docs/command/okp4d_keys_delete.md | 2 +- docs/command/okp4d_keys_export.md | 2 +- docs/command/okp4d_keys_import.md | 2 +- docs/command/okp4d_keys_migrate.md | 2 +- docs/command/okp4d_query_account.md | 2 +- docs/command/okp4d_query_auth_account.md | 2 +- docs/command/okp4d_query_auth_accounts.md | 2 +- .../okp4d_query_auth_address-by-acc-num.md | 2 +- docs/command/okp4d_query_auth_module-account.md | 2 +- docs/command/okp4d_query_auth_module-accounts.md | 2 +- docs/command/okp4d_query_auth_params.md | 2 +- .../okp4d_query_authz_grants-by-grantee.md | 2 +- .../okp4d_query_authz_grants-by-granter.md | 2 +- docs/command/okp4d_query_authz_grants.md | 2 +- docs/command/okp4d_query_bank_balances.md | 2 +- docs/command/okp4d_query_bank_denom-metadata.md | 2 +- docs/command/okp4d_query_bank_send-enabled.md | 2 +- .../okp4d_query_bank_spendable-balances.md | 4 ++-- docs/command/okp4d_query_bank_total.md | 2 +- .../okp4d_query_distribution_commission.md | 2 +- .../okp4d_query_distribution_community-pool.md | 2 +- docs/command/okp4d_query_distribution_params.md | 2 +- docs/command/okp4d_query_distribution_rewards.md | 2 +- docs/command/okp4d_query_distribution_slashes.md | 2 +- ...y_distribution_validator-distribution-info.md | 2 +- ...distribution_validator-outstanding-rewards.md | 2 +- docs/command/okp4d_query_evidence.md | 2 +- docs/command/okp4d_query_feegrant_grant.md | 2 +- .../okp4d_query_feegrant_grants-by-grantee.md | 2 +- .../okp4d_query_feegrant_grants-by-granter.md | 2 +- docs/command/okp4d_query_gov_deposit.md | 2 +- docs/command/okp4d_query_gov_deposits.md | 2 +- docs/command/okp4d_query_gov_param.md | 2 +- docs/command/okp4d_query_gov_params.md | 2 +- docs/command/okp4d_query_gov_proposal.md | 2 +- docs/command/okp4d_query_gov_proposals.md | 2 +- docs/command/okp4d_query_gov_proposer.md | 2 +- docs/command/okp4d_query_gov_tally.md | 2 +- docs/command/okp4d_query_gov_vote.md | 2 +- docs/command/okp4d_query_gov_votes.md | 2 +- docs/command/okp4d_query_group_group-info.md | 2 +- docs/command/okp4d_query_group_group-members.md | 2 +- .../okp4d_query_group_group-policies-by-admin.md | 2 +- .../okp4d_query_group_group-policies-by-group.md | 2 +- .../okp4d_query_group_group-policy-info.md | 2 +- .../command/okp4d_query_group_groups-by-admin.md | 2 +- .../okp4d_query_group_groups-by-member.md | 2 +- docs/command/okp4d_query_group_groups.md | 2 +- docs/command/okp4d_query_group_proposal.md | 2 +- ...kp4d_query_group_proposals-by-group-policy.md | 2 +- docs/command/okp4d_query_group_tally-result.md | 2 +- docs/command/okp4d_query_group_vote.md | 2 +- .../okp4d_query_group_votes-by-proposal.md | 2 +- docs/command/okp4d_query_group_votes-by-voter.md | 2 +- docs/command/okp4d_query_ibc-fee_channel.md | 2 +- docs/command/okp4d_query_ibc-fee_channels.md | 2 +- .../okp4d_query_ibc-fee_counterparty-payee.md | 2 +- docs/command/okp4d_query_ibc-fee_packet.md | 2 +- .../okp4d_query_ibc-fee_packets-for-channel.md | 2 +- docs/command/okp4d_query_ibc-fee_packets.md | 2 +- docs/command/okp4d_query_ibc-fee_payee.md | 2 +- .../okp4d_query_ibc-fee_total-ack-fees.md | 2 +- .../okp4d_query_ibc-fee_total-recv-fees.md | 2 +- .../okp4d_query_ibc-fee_total-timeout-fees.md | 2 +- .../okp4d_query_ibc-transfer_denom-hash.md | 2 +- .../okp4d_query_ibc-transfer_denom-trace.md | 2 +- .../okp4d_query_ibc-transfer_denom-traces.md | 2 +- .../okp4d_query_ibc-transfer_escrow-address.md | 2 +- docs/command/okp4d_query_ibc-transfer_params.md | 2 +- .../okp4d_query_ibc-transfer_total-escrow.md | 2 +- docs/command/okp4d_query_ibc_channel_channels.md | 2 +- .../okp4d_query_ibc_channel_client-state.md | 2 +- .../okp4d_query_ibc_channel_connections.md | 2 +- docs/command/okp4d_query_ibc_channel_end.md | 2 +- ...4d_query_ibc_channel_next-sequence-receive.md | 2 +- .../okp4d_query_ibc_channel_packet-ack.md | 2 +- .../okp4d_query_ibc_channel_packet-commitment.md | 2 +- ...okp4d_query_ibc_channel_packet-commitments.md | 2 +- .../okp4d_query_ibc_channel_packet-receipt.md | 2 +- .../okp4d_query_ibc_channel_unreceived-acks.md | 2 +- ...okp4d_query_ibc_channel_unreceived-packets.md | 2 +- ...d_query_ibc_client_consensus-state-heights.md | 2 +- .../okp4d_query_ibc_client_consensus-state.md | 2 +- .../okp4d_query_ibc_client_consensus-states.md | 2 +- docs/command/okp4d_query_ibc_client_header.md | 2 +- docs/command/okp4d_query_ibc_client_params.md | 2 +- ...kp4d_query_ibc_client_self-consensus-state.md | 2 +- docs/command/okp4d_query_ibc_client_state.md | 2 +- docs/command/okp4d_query_ibc_client_states.md | 2 +- docs/command/okp4d_query_ibc_client_status.md | 2 +- .../okp4d_query_ibc_connection_connections.md | 2 +- docs/command/okp4d_query_ibc_connection_end.md | 2 +- .../command/okp4d_query_ibc_connection_params.md | 2 +- docs/command/okp4d_query_ibc_connection_path.md | 2 +- ...ain-accounts_controller_interchain-account.md | 2 +- ...uery_interchain-accounts_controller_params.md | 2 +- ...ery_interchain-accounts_host_packet-events.md | 2 +- ...kp4d_query_interchain-accounts_host_params.md | 2 +- docs/command/okp4d_query_logic_ask.md | 4 ++-- docs/command/okp4d_query_logic_params.md | 2 +- .../okp4d_query_mint_annual-provisions.md | 2 +- docs/command/okp4d_query_mint_inflation.md | 2 +- docs/command/okp4d_query_mint_params.md | 2 +- docs/command/okp4d_query_params_subspace.md | 2 +- docs/command/okp4d_query_slashing_params.md | 2 +- .../command/okp4d_query_slashing_signing-info.md | 4 ++-- .../okp4d_query_slashing_signing-infos.md | 2 +- docs/command/okp4d_query_staking_delegation.md | 2 +- .../okp4d_query_staking_delegations-to.md | 2 +- docs/command/okp4d_query_staking_delegations.md | 2 +- .../okp4d_query_staking_historical-info.md | 2 +- docs/command/okp4d_query_staking_params.md | 2 +- docs/command/okp4d_query_staking_pool.md | 2 +- docs/command/okp4d_query_staking_redelegation.md | 2 +- .../okp4d_query_staking_redelegations-from.md | 2 +- .../command/okp4d_query_staking_redelegations.md | 2 +- .../okp4d_query_staking_unbonding-delegation.md | 2 +- ...d_query_staking_unbonding-delegations-from.md | 2 +- .../okp4d_query_staking_unbonding-delegations.md | 2 +- docs/command/okp4d_query_staking_validator.md | 2 +- docs/command/okp4d_query_staking_validators.md | 2 +- .../okp4d_query_tendermint-validator-set.md | 2 +- docs/command/okp4d_query_tx.md | 4 ++-- docs/command/okp4d_query_txs.md | 4 ++-- docs/command/okp4d_query_upgrade_applied.md | 2 +- .../okp4d_query_upgrade_module_versions.md | 2 +- docs/command/okp4d_query_upgrade_plan.md | 2 +- docs/command/okp4d_query_wasm_code-info.md | 2 +- docs/command/okp4d_query_wasm_code.md | 2 +- .../command/okp4d_query_wasm_contract-history.md | 2 +- .../okp4d_query_wasm_contract-state_all.md | 2 +- .../okp4d_query_wasm_contract-state_raw.md | 2 +- .../okp4d_query_wasm_contract-state_smart.md | 2 +- docs/command/okp4d_query_wasm_contract.md | 2 +- docs/command/okp4d_query_wasm_list-code.md | 2 +- .../okp4d_query_wasm_list-contract-by-code.md | 2 +- ...okp4d_query_wasm_list-contracts-by-creator.md | 2 +- docs/command/okp4d_query_wasm_params.md | 2 +- docs/command/okp4d_query_wasm_pinned.md | 2 +- docs/command/okp4d_tx_authz_exec.md | 4 ++-- docs/command/okp4d_tx_authz_grant.md | 4 ++-- docs/command/okp4d_tx_authz_revoke.md | 2 +- docs/command/okp4d_tx_bank_multi-send.md | 2 +- docs/command/okp4d_tx_bank_send.md | 2 +- docs/command/okp4d_tx_broadcast.md | 2 +- docs/command/okp4d_tx_crisis_invariant-broken.md | 2 +- docs/command/okp4d_tx_decode.md | 2 +- .../okp4d_tx_distribution_fund-community-pool.md | 2 +- .../okp4d_tx_distribution_set-withdraw-addr.md | 2 +- ...okp4d_tx_distribution_withdraw-all-rewards.md | 2 +- .../okp4d_tx_distribution_withdraw-rewards.md | 2 +- docs/command/okp4d_tx_encode.md | 2 +- docs/command/okp4d_tx_feegrant_grant.md | 2 +- docs/command/okp4d_tx_feegrant_revoke.md | 2 +- docs/command/okp4d_tx_gov_deposit.md | 2 +- docs/command/okp4d_tx_gov_draft-proposal.md | 2 +- .../okp4d_tx_gov_submit-legacy-proposal.md | 6 +++--- ...it-legacy-proposal_cancel-software-upgrade.md | 2 +- ..._tx_gov_submit-legacy-proposal_ibc-upgrade.md | 10 +++++----- ...tx_gov_submit-legacy-proposal_param-change.md | 12 ++++++------ ...ov_submit-legacy-proposal_software-upgrade.md | 4 ++-- ...x_gov_submit-legacy-proposal_update-client.md | 2 +- docs/command/okp4d_tx_gov_submit-proposal.md | 16 ++++++++-------- docs/command/okp4d_tx_gov_vote.md | 2 +- docs/command/okp4d_tx_gov_weighted-vote.md | 2 +- .../okp4d_tx_group_create-group-policy.md | 2 +- .../okp4d_tx_group_create-group-with-policy.md | 2 +- docs/command/okp4d_tx_group_create-group.md | 2 +- docs/command/okp4d_tx_group_draft-proposal.md | 2 +- docs/command/okp4d_tx_group_exec.md | 2 +- docs/command/okp4d_tx_group_leave-group.md | 2 +- docs/command/okp4d_tx_group_submit-proposal.md | 2 +- .../command/okp4d_tx_group_update-group-admin.md | 2 +- .../okp4d_tx_group_update-group-members.md | 2 +- .../okp4d_tx_group_update-group-metadata.md | 2 +- .../okp4d_tx_group_update-group-policy-admin.md | 2 +- ..._group_update-group-policy-decision-policy.md | 2 +- ...kp4d_tx_group_update-group-policy-metadata.md | 2 +- docs/command/okp4d_tx_group_vote.md | 2 +- docs/command/okp4d_tx_group_withdraw-proposal.md | 2 +- docs/command/okp4d_tx_ibc-fee_pay-packet-fee.md | 2 +- ...p4d_tx_ibc-fee_register-counterparty-payee.md | 2 +- docs/command/okp4d_tx_ibc-fee_register-payee.md | 2 +- docs/command/okp4d_tx_ibc-transfer_transfer.md | 4 ++-- docs/command/okp4d_tx_ibc_client_create.md | 8 ++++---- docs/command/okp4d_tx_ibc_client_misbehaviour.md | 4 ++-- docs/command/okp4d_tx_ibc_client_update.md | 4 ++-- docs/command/okp4d_tx_ibc_client_upgrade.md | 8 ++++---- ...tx_interchain-accounts_controller_register.md | 4 ++-- ..._tx_interchain-accounts_controller_send-tx.md | 4 ++-- docs/command/okp4d_tx_multi-sign.md | 2 +- docs/command/okp4d_tx_sign-batch.md | 4 ++-- docs/command/okp4d_tx_sign.md | 4 ++-- docs/command/okp4d_tx_slashing_unjail.md | 2 +- docs/command/okp4d_tx_staking_cancel-unbond.md | 4 ++-- .../command/okp4d_tx_staking_create-validator.md | 2 +- docs/command/okp4d_tx_staking_delegate.md | 2 +- docs/command/okp4d_tx_staking_edit-validator.md | 2 +- docs/command/okp4d_tx_staking_redelegate.md | 2 +- docs/command/okp4d_tx_staking_unbond.md | 2 +- docs/command/okp4d_tx_validate-signatures.md | 2 +- ...4d_tx_vesting_create-cliff-vesting-account.md | 2 +- ...tx_vesting_create-periodic-vesting-account.md | 14 +++++++------- ...tx_vesting_create-permanent-locked-account.md | 2 +- .../okp4d_tx_vesting_create-vesting-account.md | 2 +- .../okp4d_tx_wasm_clear-contract-admin.md | 2 +- docs/command/okp4d_tx_wasm_execute.md | 2 +- docs/command/okp4d_tx_wasm_grant.md | 8 ++++---- docs/command/okp4d_tx_wasm_instantiate.md | 4 ++-- docs/command/okp4d_tx_wasm_instantiate2.md | 4 ++-- docs/command/okp4d_tx_wasm_migrate.md | 2 +- docs/command/okp4d_tx_wasm_set-contract-admin.md | 2 +- docs/command/okp4d_tx_wasm_store.md | 2 +- ..._wasm_submit-proposal_clear-contract-admin.md | 2 +- ...d_tx_wasm_submit-proposal_execute-contract.md | 2 +- ...asm_submit-proposal_instantiate-contract-2.md | 2 +- ..._wasm_submit-proposal_instantiate-contract.md | 2 +- ...d_tx_wasm_submit-proposal_migrate-contract.md | 2 +- .../okp4d_tx_wasm_submit-proposal_pin-codes.md | 2 +- ...tx_wasm_submit-proposal_set-contract-admin.md | 2 +- ..._tx_wasm_submit-proposal_store-instantiate.md | 2 +- ...kp4d_tx_wasm_submit-proposal_sudo-contract.md | 2 +- .../okp4d_tx_wasm_submit-proposal_unpin-codes.md | 2 +- ..._submit-proposal_update-instantiate-config.md | 2 +- .../okp4d_tx_wasm_submit-proposal_wasm-store.md | 2 +- .../okp4d_tx_wasm_update-instantiate-config.md | 2 +- 234 files changed, 288 insertions(+), 288 deletions(-) diff --git a/docs/command/okp4d.md b/docs/command/okp4d.md index d8515f8f..b0d43e5c 100644 --- a/docs/command/okp4d.md +++ b/docs/command/okp4d.md @@ -7,7 +7,7 @@ OKP4 Daemon 👹 OKP4 Daemon 👹 - a revolutionary public PoS layer 1 specifically designed to enable communities to trustlessly share data, algorithms and resources to build the Dataverse! -Want to lean more about OKP4 network? Complete documentation is available at 👀 +Want to lean more about OKP4 network? Complete documentation is available at [https://docs.okp4.network](https://docs.okp4.network) 👀 ### Options diff --git a/docs/command/okp4d_add-genesis-account.md b/docs/command/okp4d_add-genesis-account.md index 6ef7bbf2..acf8a0b8 100644 --- a/docs/command/okp4d_add-genesis-account.md +++ b/docs/command/okp4d_add-genesis-account.md @@ -22,7 +22,7 @@ okp4d add-genesis-account [address_or_key_name] [coin][,[coin]] [flags] -h, --help help for add-genesis-account --home string The application home directory (default "/home/john/.okp4d") --keyring-backend string Select keyring's backend (os|file|kwallet|pass|test) (default "test") - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") --vesting-amount string amount of coins for vesting accounts --vesting-cliff-time int schedule cliff time (unix epoch) for vesting accounts diff --git a/docs/command/okp4d_config.md b/docs/command/okp4d_config.md index 171b030e..62cf6beb 100644 --- a/docs/command/okp4d_config.md +++ b/docs/command/okp4d_config.md @@ -3,7 +3,7 @@ Create or query an application CLI configuration file ``` -okp4d config <key> [value] [flags] +okp4d config [value] [flags] ``` ### Options diff --git a/docs/command/okp4d_debug_prefixes.md b/docs/command/okp4d_debug_prefixes.md index 4cf1bbdd..6e2a04da 100644 --- a/docs/command/okp4d_debug_prefixes.md +++ b/docs/command/okp4d_debug_prefixes.md @@ -13,7 +13,7 @@ okp4d debug prefixes [flags] ### Examples ``` -okp4d debug prefixes +$ okp4d debug prefixes ``` ### Options diff --git a/docs/command/okp4d_debug_pubkey.md b/docs/command/okp4d_debug_pubkey.md index 3b4eb967..63b5768e 100644 --- a/docs/command/okp4d_debug_pubkey.md +++ b/docs/command/okp4d_debug_pubkey.md @@ -7,7 +7,7 @@ Decode a pubkey from proto JSON Decode a pubkey from proto JSON and display it's address. Example: -$ okp4d debug pubkey '{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"AurroA7jvfPd1AadmmOvWM2rJSwipXfRf8yD6pLbA2DJ"}' +$ okp4d debug pubkey '\{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"AurroA7jvfPd1AadmmOvWM2rJSwipXfRf8yD6pLbA2DJ"\}' ``` okp4d debug pubkey [pubkey] [flags] diff --git a/docs/command/okp4d_gentx.md b/docs/command/okp4d_gentx.md index bbcd157d..55485fc3 100644 --- a/docs/command/okp4d_gentx.md +++ b/docs/command/okp4d_gentx.md @@ -59,7 +59,7 @@ okp4d gentx [key_name] [amount] [flags] --ledger Use a connected Ledger device --min-self-delegation string The minimum self delegation required on the validator --moniker string The validator's (optional) moniker - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --node-id string The node's NodeID --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) diff --git a/docs/command/okp4d_keys.md b/docs/command/okp4d_keys.md index 7ef8e85c..1d70e3f2 100644 --- a/docs/command/okp4d_keys.md +++ b/docs/command/okp4d_keys.md @@ -21,10 +21,10 @@ The keyring supports the following backends: kwallet and pass backends depend on external tools. Refer to their respective documentation for more information: - KWallet - pass + KWallet [https://github.com/KDE/kwallet](https://github.com/KDE/kwallet) + pass [https://www.passwordstore.org/](https://www.passwordstore.org/) -The pass backend requires GnuPG: +The pass backend requires GnuPG: [https://gnupg.org/](https://gnupg.org/) ### Options diff --git a/docs/command/okp4d_keys_add.md b/docs/command/okp4d_keys_add.md index 7922a600..e90cce4d 100644 --- a/docs/command/okp4d_keys_add.md +++ b/docs/command/okp4d_keys_add.md @@ -24,7 +24,7 @@ Example: keys add mymultisig --multisig "keyname1,keyname2,keyname3" --multisig-threshold 2 ``` -okp4d keys add <name> [flags] +okp4d keys add [flags] ``` ### Options @@ -43,7 +43,7 @@ okp4d keys add <name> [flags] --multisig-threshold int K out of N required signatures. For use in conjunction with --multisig (default 1) --no-backup Don't print out seed phrase (if others are watching the terminal) --nosort Keys passed to --multisig are taken in the order they're supplied - --pubkey string Parse a public key in JSON format and saves key info to <name> file. + --pubkey string Parse a public key in JSON format and saves key info to file. --recover Provide seed phrase to recover existing key instead of creating ``` diff --git a/docs/command/okp4d_keys_delete.md b/docs/command/okp4d_keys_delete.md index 1f12f315..85ee8630 100644 --- a/docs/command/okp4d_keys_delete.md +++ b/docs/command/okp4d_keys_delete.md @@ -11,7 +11,7 @@ only the public key references stored locally, i.e. private keys stored in a ledger device cannot be deleted with the CLI. ``` -okp4d keys delete <name>... [flags] +okp4d keys delete ... [flags] ``` ### Options diff --git a/docs/command/okp4d_keys_export.md b/docs/command/okp4d_keys_export.md index a92797a8..fcc04595 100644 --- a/docs/command/okp4d_keys_export.md +++ b/docs/command/okp4d_keys_export.md @@ -14,7 +14,7 @@ FULLY AWARE OF THE RISKS. If you are unsure, you may want to do some research and export your keys in ASCII-armored encrypted format. ``` -okp4d keys export <name> [flags] +okp4d keys export [flags] ``` ### Options diff --git a/docs/command/okp4d_keys_import.md b/docs/command/okp4d_keys_import.md index 21090ecd..89d92321 100644 --- a/docs/command/okp4d_keys_import.md +++ b/docs/command/okp4d_keys_import.md @@ -7,7 +7,7 @@ Import private keys into the local keybase Import a ASCII armored private key into the local keybase. ``` -okp4d keys import <name> <keyfile> [flags] +okp4d keys import [flags] ``` ### Options diff --git a/docs/command/okp4d_keys_migrate.md b/docs/command/okp4d_keys_migrate.md index 3b6b2341..57623c78 100644 --- a/docs/command/okp4d_keys_migrate.md +++ b/docs/command/okp4d_keys_migrate.md @@ -10,7 +10,7 @@ If this is the case, the key is already migrated. Therefore, we skip it and cont Otherwise, we try to deserialize it using Amino into LegacyInfo. If this attempt is successful, we serialize LegacyInfo to Protobuf serialization format and overwrite the keyring entry. If any error occurred, it will be outputted in CLI and migration will be continued until all keys in the keyring DB are exhausted. -See for more details. +See [https://github.com/cosmos/cosmos-sdk/pull/9695](https://github.com/cosmos/cosmos-sdk/pull/9695) for more details. It is recommended to run in 'dry-run' mode first to verify all key migration material. diff --git a/docs/command/okp4d_query_account.md b/docs/command/okp4d_query_account.md index 21071d5e..71e999a4 100644 --- a/docs/command/okp4d_query_account.md +++ b/docs/command/okp4d_query_account.md @@ -13,7 +13,7 @@ okp4d query account [address] [flags] --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for account - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") ``` diff --git a/docs/command/okp4d_query_auth_account.md b/docs/command/okp4d_query_auth_account.md index 4164a7f2..91b9a85b 100644 --- a/docs/command/okp4d_query_auth_account.md +++ b/docs/command/okp4d_query_auth_account.md @@ -13,7 +13,7 @@ okp4d query auth account [address] [flags] --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for account - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") ``` diff --git a/docs/command/okp4d_query_auth_accounts.md b/docs/command/okp4d_query_auth_accounts.md index d87e45ba..5948be62 100644 --- a/docs/command/okp4d_query_auth_accounts.md +++ b/docs/command/okp4d_query_auth_accounts.md @@ -15,7 +15,7 @@ okp4d query auth accounts [flags] --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for accounts --limit uint pagination limit of all-accounts to query for (default 100) - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") --offset uint pagination offset of all-accounts to query for -o, --output string Output format (text|json) (default "text") --page uint pagination page of all-accounts to query for. This sets offset to a multiple of limit (default 1) diff --git a/docs/command/okp4d_query_auth_address-by-acc-num.md b/docs/command/okp4d_query_auth_address-by-acc-num.md index e81717db..a8a49e23 100644 --- a/docs/command/okp4d_query_auth_address-by-acc-num.md +++ b/docs/command/okp4d_query_auth_address-by-acc-num.md @@ -19,7 +19,7 @@ okp4d q auth address-by-acc-num 1 --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for address-by-acc-num - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") ``` diff --git a/docs/command/okp4d_query_auth_module-account.md b/docs/command/okp4d_query_auth_module-account.md index f8578d53..dbc847ed 100644 --- a/docs/command/okp4d_query_auth_module-account.md +++ b/docs/command/okp4d_query_auth_module-account.md @@ -19,7 +19,7 @@ okp4d q auth module-account auth --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for module-account - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") ``` diff --git a/docs/command/okp4d_query_auth_module-accounts.md b/docs/command/okp4d_query_auth_module-accounts.md index 888fa797..693be70f 100644 --- a/docs/command/okp4d_query_auth_module-accounts.md +++ b/docs/command/okp4d_query_auth_module-accounts.md @@ -13,7 +13,7 @@ okp4d query auth module-accounts [flags] --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for module-accounts - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") ``` diff --git a/docs/command/okp4d_query_auth_params.md b/docs/command/okp4d_query_auth_params.md index d56a23c0..528c63fa 100644 --- a/docs/command/okp4d_query_auth_params.md +++ b/docs/command/okp4d_query_auth_params.md @@ -19,7 +19,7 @@ okp4d query auth params [flags] --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for params - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") ``` diff --git a/docs/command/okp4d_query_authz_grants-by-grantee.md b/docs/command/okp4d_query_authz_grants-by-grantee.md index 911aa2dc..d8bbb94c 100644 --- a/docs/command/okp4d_query_authz_grants-by-grantee.md +++ b/docs/command/okp4d_query_authz_grants-by-grantee.md @@ -21,7 +21,7 @@ okp4d query authz grants-by-grantee [grantee-addr] [flags] --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for grants-by-grantee --limit uint pagination limit of grantee-grants to query for (default 100) - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") --offset uint pagination offset of grantee-grants to query for -o, --output string Output format (text|json) (default "text") --page uint pagination page of grantee-grants to query for. This sets offset to a multiple of limit (default 1) diff --git a/docs/command/okp4d_query_authz_grants-by-granter.md b/docs/command/okp4d_query_authz_grants-by-granter.md index 5933bd20..b236f4ea 100644 --- a/docs/command/okp4d_query_authz_grants-by-granter.md +++ b/docs/command/okp4d_query_authz_grants-by-granter.md @@ -21,7 +21,7 @@ okp4d query authz grants-by-granter [granter-addr] [flags] --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for grants-by-granter --limit uint pagination limit of granter-grants to query for (default 100) - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") --offset uint pagination offset of granter-grants to query for -o, --output string Output format (text|json) (default "text") --page uint pagination page of granter-grants to query for. This sets offset to a multiple of limit (default 1) diff --git a/docs/command/okp4d_query_authz_grants.md b/docs/command/okp4d_query_authz_grants.md index ef3b4edc..b76fa30c 100644 --- a/docs/command/okp4d_query_authz_grants.md +++ b/docs/command/okp4d_query_authz_grants.md @@ -23,7 +23,7 @@ okp4d query authz grants [granter-addr] [grantee-addr] [msg-type-url]? [flags] --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for grants --limit uint pagination limit of grants to query for (default 100) - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") --offset uint pagination offset of grants to query for -o, --output string Output format (text|json) (default "text") --page uint pagination page of grants to query for. This sets offset to a multiple of limit (default 1) diff --git a/docs/command/okp4d_query_bank_balances.md b/docs/command/okp4d_query_bank_balances.md index d744893b..86873b15 100644 --- a/docs/command/okp4d_query_bank_balances.md +++ b/docs/command/okp4d_query_bank_balances.md @@ -24,7 +24,7 @@ okp4d query bank balances [address] [flags] --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for balances --limit uint pagination limit of all balances to query for (default 100) - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") --offset uint pagination offset of all balances to query for -o, --output string Output format (text|json) (default "text") --page uint pagination page of all balances to query for. This sets offset to a multiple of limit (default 1) diff --git a/docs/command/okp4d_query_bank_denom-metadata.md b/docs/command/okp4d_query_bank_denom-metadata.md index 07ce0e64..4c21bd6b 100644 --- a/docs/command/okp4d_query_bank_denom-metadata.md +++ b/docs/command/okp4d_query_bank_denom-metadata.md @@ -25,7 +25,7 @@ okp4d query bank denom-metadata [flags] --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for denom-metadata - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") ``` diff --git a/docs/command/okp4d_query_bank_send-enabled.md b/docs/command/okp4d_query_bank_send-enabled.md index a32964e0..b139a660 100644 --- a/docs/command/okp4d_query_bank_send-enabled.md +++ b/docs/command/okp4d_query_bank_send-enabled.md @@ -35,7 +35,7 @@ Getting all entries: --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for send-enabled --limit uint pagination limit of send enabled entries to query for (default 100) - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") --offset uint pagination offset of send enabled entries to query for -o, --output string Output format (text|json) (default "text") --page uint pagination page of send enabled entries to query for. This sets offset to a multiple of limit (default 1) diff --git a/docs/command/okp4d_query_bank_spendable-balances.md b/docs/command/okp4d_query_bank_spendable-balances.md index 9a301d06..a0198731 100644 --- a/docs/command/okp4d_query_bank_spendable-balances.md +++ b/docs/command/okp4d_query_bank_spendable-balances.md @@ -9,7 +9,7 @@ okp4d query bank spendable-balances [address] [flags] ### Examples ``` -okp4d query bank spendable-balances [address] +$ okp4d query bank spendable-balances [address] ``` ### Options @@ -22,7 +22,7 @@ okp4d query bank spendable-balances [address] --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for spendable-balances --limit uint pagination limit of spendable balances to query for (default 100) - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") --offset uint pagination offset of spendable balances to query for -o, --output string Output format (text|json) (default "text") --page uint pagination page of spendable balances to query for. This sets offset to a multiple of limit (default 1) diff --git a/docs/command/okp4d_query_bank_total.md b/docs/command/okp4d_query_bank_total.md index e6ed28eb..93cdb3ab 100644 --- a/docs/command/okp4d_query_bank_total.md +++ b/docs/command/okp4d_query_bank_total.md @@ -26,7 +26,7 @@ okp4d query bank total [flags] --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for total --limit uint pagination limit of all supply totals to query for (default 100) - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") --offset uint pagination offset of all supply totals to query for -o, --output string Output format (text|json) (default "text") --page uint pagination page of all supply totals to query for. This sets offset to a multiple of limit (default 1) diff --git a/docs/command/okp4d_query_distribution_commission.md b/docs/command/okp4d_query_distribution_commission.md index 9fede60e..6e4fb0da 100644 --- a/docs/command/okp4d_query_distribution_commission.md +++ b/docs/command/okp4d_query_distribution_commission.md @@ -20,7 +20,7 @@ okp4d query distribution commission [validator] [flags] --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for commission - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") ``` diff --git a/docs/command/okp4d_query_distribution_community-pool.md b/docs/command/okp4d_query_distribution_community-pool.md index a689f7a9..cf54a642 100644 --- a/docs/command/okp4d_query_distribution_community-pool.md +++ b/docs/command/okp4d_query_distribution_community-pool.md @@ -20,7 +20,7 @@ okp4d query distribution community-pool [flags] --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for community-pool - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") ``` diff --git a/docs/command/okp4d_query_distribution_params.md b/docs/command/okp4d_query_distribution_params.md index 94eec01a..eb7cc98e 100644 --- a/docs/command/okp4d_query_distribution_params.md +++ b/docs/command/okp4d_query_distribution_params.md @@ -13,7 +13,7 @@ okp4d query distribution params [flags] --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for params - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") ``` diff --git a/docs/command/okp4d_query_distribution_rewards.md b/docs/command/okp4d_query_distribution_rewards.md index 602a4865..41fb8aa0 100644 --- a/docs/command/okp4d_query_distribution_rewards.md +++ b/docs/command/okp4d_query_distribution_rewards.md @@ -21,7 +21,7 @@ okp4d query distribution rewards [delegator-addr] [validator-addr] [flags] --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for rewards - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") ``` diff --git a/docs/command/okp4d_query_distribution_slashes.md b/docs/command/okp4d_query_distribution_slashes.md index 53798a68..8bf76b32 100644 --- a/docs/command/okp4d_query_distribution_slashes.md +++ b/docs/command/okp4d_query_distribution_slashes.md @@ -22,7 +22,7 @@ okp4d query distribution slashes [validator] [start-height] [end-height] [flags] --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for slashes --limit uint pagination limit of validator slashes to query for (default 100) - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") --offset uint pagination offset of validator slashes to query for -o, --output string Output format (text|json) (default "text") --page uint pagination page of validator slashes to query for. This sets offset to a multiple of limit (default 1) diff --git a/docs/command/okp4d_query_distribution_validator-distribution-info.md b/docs/command/okp4d_query_distribution_validator-distribution-info.md index 8637b292..2f592678 100644 --- a/docs/command/okp4d_query_distribution_validator-distribution-info.md +++ b/docs/command/okp4d_query_distribution_validator-distribution-info.md @@ -19,7 +19,7 @@ okp4d query distribution validator-distribution-info [validator] [flags] --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for validator-distribution-info - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") ``` diff --git a/docs/command/okp4d_query_distribution_validator-outstanding-rewards.md b/docs/command/okp4d_query_distribution_validator-outstanding-rewards.md index 0b833177..1b1a349c 100644 --- a/docs/command/okp4d_query_distribution_validator-outstanding-rewards.md +++ b/docs/command/okp4d_query_distribution_validator-outstanding-rewards.md @@ -20,7 +20,7 @@ okp4d query distribution validator-outstanding-rewards [validator] [flags] --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for validator-outstanding-rewards - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") ``` diff --git a/docs/command/okp4d_query_evidence.md b/docs/command/okp4d_query_evidence.md index 5aa4a4fc..792bb799 100644 --- a/docs/command/okp4d_query_evidence.md +++ b/docs/command/okp4d_query_evidence.md @@ -23,7 +23,7 @@ okp4d query evidence [flags] --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for evidence --limit uint pagination limit of evidence to query for (default 100) - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") --offset uint pagination offset of evidence to query for -o, --output string Output format (text|json) (default "text") --page uint pagination page of evidence to query for. This sets offset to a multiple of limit (default 1) diff --git a/docs/command/okp4d_query_feegrant_grant.md b/docs/command/okp4d_query_feegrant_grant.md index e2a5f911..1d979914 100644 --- a/docs/command/okp4d_query_feegrant_grant.md +++ b/docs/command/okp4d_query_feegrant_grant.md @@ -21,7 +21,7 @@ okp4d query feegrant grant [granter] [grantee] [flags] --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for grant - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") ``` diff --git a/docs/command/okp4d_query_feegrant_grants-by-grantee.md b/docs/command/okp4d_query_feegrant_grants-by-grantee.md index 41859ffd..f7627e8f 100644 --- a/docs/command/okp4d_query_feegrant_grants-by-grantee.md +++ b/docs/command/okp4d_query_feegrant_grants-by-grantee.md @@ -22,7 +22,7 @@ okp4d query feegrant grants-by-grantee [grantee] [flags] --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for grants-by-grantee --limit uint pagination limit of grants to query for (default 100) - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") --offset uint pagination offset of grants to query for -o, --output string Output format (text|json) (default "text") --page uint pagination page of grants to query for. This sets offset to a multiple of limit (default 1) diff --git a/docs/command/okp4d_query_feegrant_grants-by-granter.md b/docs/command/okp4d_query_feegrant_grants-by-granter.md index 23b54bcd..1f47f046 100644 --- a/docs/command/okp4d_query_feegrant_grants-by-granter.md +++ b/docs/command/okp4d_query_feegrant_grants-by-granter.md @@ -22,7 +22,7 @@ okp4d query feegrant grants-by-granter [granter] [flags] --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for grants-by-granter --limit uint pagination limit of grants to query for (default 100) - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") --offset uint pagination offset of grants to query for -o, --output string Output format (text|json) (default "text") --page uint pagination page of grants to query for. This sets offset to a multiple of limit (default 1) diff --git a/docs/command/okp4d_query_gov_deposit.md b/docs/command/okp4d_query_gov_deposit.md index 1ec4f492..4b4431df 100644 --- a/docs/command/okp4d_query_gov_deposit.md +++ b/docs/command/okp4d_query_gov_deposit.md @@ -20,7 +20,7 @@ okp4d query gov deposit [proposal-id] [depositer-addr] [flags] --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for deposit - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") ``` diff --git a/docs/command/okp4d_query_gov_deposits.md b/docs/command/okp4d_query_gov_deposits.md index cc41d010..3ac3b331 100644 --- a/docs/command/okp4d_query_gov_deposits.md +++ b/docs/command/okp4d_query_gov_deposits.md @@ -23,7 +23,7 @@ okp4d query gov deposits [proposal-id] [flags] --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for deposits --limit uint pagination limit of deposits to query for (default 100) - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") --offset uint pagination offset of deposits to query for -o, --output string Output format (text|json) (default "text") --page uint pagination page of deposits to query for. This sets offset to a multiple of limit (default 1) diff --git a/docs/command/okp4d_query_gov_param.md b/docs/command/okp4d_query_gov_param.md index a1ae73f7..8df423e6 100644 --- a/docs/command/okp4d_query_gov_param.md +++ b/docs/command/okp4d_query_gov_param.md @@ -21,7 +21,7 @@ okp4d query gov param [param-type] [flags] --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for param - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") ``` diff --git a/docs/command/okp4d_query_gov_params.md b/docs/command/okp4d_query_gov_params.md index 11408863..6226a20a 100644 --- a/docs/command/okp4d_query_gov_params.md +++ b/docs/command/okp4d_query_gov_params.md @@ -20,7 +20,7 @@ okp4d query gov params [flags] --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for params - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") ``` diff --git a/docs/command/okp4d_query_gov_proposal.md b/docs/command/okp4d_query_gov_proposal.md index 896cae0c..555dba18 100644 --- a/docs/command/okp4d_query_gov_proposal.md +++ b/docs/command/okp4d_query_gov_proposal.md @@ -21,7 +21,7 @@ okp4d query gov proposal [proposal-id] [flags] --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for proposal - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") ``` diff --git a/docs/command/okp4d_query_gov_proposals.md b/docs/command/okp4d_query_gov_proposals.md index cb8df96d..01171103 100644 --- a/docs/command/okp4d_query_gov_proposals.md +++ b/docs/command/okp4d_query_gov_proposals.md @@ -26,7 +26,7 @@ okp4d query gov proposals [flags] --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for proposals --limit uint pagination limit of proposals to query for (default 100) - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") --offset uint pagination offset of proposals to query for -o, --output string Output format (text|json) (default "text") --page uint pagination page of proposals to query for. This sets offset to a multiple of limit (default 1) diff --git a/docs/command/okp4d_query_gov_proposer.md b/docs/command/okp4d_query_gov_proposer.md index 7f2f7b4d..10b8f197 100644 --- a/docs/command/okp4d_query_gov_proposer.md +++ b/docs/command/okp4d_query_gov_proposer.md @@ -20,7 +20,7 @@ okp4d query gov proposer [proposal-id] [flags] --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for proposer - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") ``` diff --git a/docs/command/okp4d_query_gov_tally.md b/docs/command/okp4d_query_gov_tally.md index 51c224c9..29a7e64c 100644 --- a/docs/command/okp4d_query_gov_tally.md +++ b/docs/command/okp4d_query_gov_tally.md @@ -21,7 +21,7 @@ okp4d query gov tally [proposal-id] [flags] --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for tally - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") ``` diff --git a/docs/command/okp4d_query_gov_vote.md b/docs/command/okp4d_query_gov_vote.md index d26dc0f4..ef3014c1 100644 --- a/docs/command/okp4d_query_gov_vote.md +++ b/docs/command/okp4d_query_gov_vote.md @@ -20,7 +20,7 @@ okp4d query gov vote [proposal-id] [voter-addr] [flags] --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for vote - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") ``` diff --git a/docs/command/okp4d_query_gov_votes.md b/docs/command/okp4d_query_gov_votes.md index 54b2fa0e..ffc290fe 100644 --- a/docs/command/okp4d_query_gov_votes.md +++ b/docs/command/okp4d_query_gov_votes.md @@ -23,7 +23,7 @@ okp4d query gov votes [proposal-id] [flags] --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for votes --limit uint pagination limit of votes to query for (default 100) - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") --offset uint pagination offset of votes to query for -o, --output string Output format (text|json) (default "text") --page uint pagination page of votes to query for. This sets offset to a multiple of limit (default 1) diff --git a/docs/command/okp4d_query_group_group-info.md b/docs/command/okp4d_query_group_group-info.md index 15853d06..01163868 100644 --- a/docs/command/okp4d_query_group_group-info.md +++ b/docs/command/okp4d_query_group_group-info.md @@ -13,7 +13,7 @@ okp4d query group group-info [id] [flags] --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for group-info - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") ``` diff --git a/docs/command/okp4d_query_group_group-members.md b/docs/command/okp4d_query_group_group-members.md index 192014c9..a920c14b 100644 --- a/docs/command/okp4d_query_group_group-members.md +++ b/docs/command/okp4d_query_group_group-members.md @@ -15,7 +15,7 @@ okp4d query group group-members [id] [flags] --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for group-members --limit uint pagination limit of group-members to query for (default 100) - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") --offset uint pagination offset of group-members to query for -o, --output string Output format (text|json) (default "text") --page uint pagination page of group-members to query for. This sets offset to a multiple of limit (default 1) diff --git a/docs/command/okp4d_query_group_group-policies-by-admin.md b/docs/command/okp4d_query_group_group-policies-by-admin.md index ab58db8a..a4f377d4 100644 --- a/docs/command/okp4d_query_group_group-policies-by-admin.md +++ b/docs/command/okp4d_query_group_group-policies-by-admin.md @@ -15,7 +15,7 @@ okp4d query group group-policies-by-admin [admin] [flags] --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for group-policies-by-admin --limit uint pagination limit of group-policies-by-admin to query for (default 100) - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") --offset uint pagination offset of group-policies-by-admin to query for -o, --output string Output format (text|json) (default "text") --page uint pagination page of group-policies-by-admin to query for. This sets offset to a multiple of limit (default 1) diff --git a/docs/command/okp4d_query_group_group-policies-by-group.md b/docs/command/okp4d_query_group_group-policies-by-group.md index ea37740a..f0e8a257 100644 --- a/docs/command/okp4d_query_group_group-policies-by-group.md +++ b/docs/command/okp4d_query_group_group-policies-by-group.md @@ -15,7 +15,7 @@ okp4d query group group-policies-by-group [group-id] [flags] --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for group-policies-by-group --limit uint pagination limit of groups-policies-by-group to query for (default 100) - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") --offset uint pagination offset of groups-policies-by-group to query for -o, --output string Output format (text|json) (default "text") --page uint pagination page of groups-policies-by-group to query for. This sets offset to a multiple of limit (default 1) diff --git a/docs/command/okp4d_query_group_group-policy-info.md b/docs/command/okp4d_query_group_group-policy-info.md index 59f363bb..04193700 100644 --- a/docs/command/okp4d_query_group_group-policy-info.md +++ b/docs/command/okp4d_query_group_group-policy-info.md @@ -13,7 +13,7 @@ okp4d query group group-policy-info [group-policy-account] [flags] --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for group-policy-info - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") ``` diff --git a/docs/command/okp4d_query_group_groups-by-admin.md b/docs/command/okp4d_query_group_groups-by-admin.md index d38e57f3..c0f1c337 100644 --- a/docs/command/okp4d_query_group_groups-by-admin.md +++ b/docs/command/okp4d_query_group_groups-by-admin.md @@ -15,7 +15,7 @@ okp4d query group groups-by-admin [admin] [flags] --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for groups-by-admin --limit uint pagination limit of groups-by-admin to query for (default 100) - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") --offset uint pagination offset of groups-by-admin to query for -o, --output string Output format (text|json) (default "text") --page uint pagination page of groups-by-admin to query for. This sets offset to a multiple of limit (default 1) diff --git a/docs/command/okp4d_query_group_groups-by-member.md b/docs/command/okp4d_query_group_groups-by-member.md index fade8213..3f3d7949 100644 --- a/docs/command/okp4d_query_group_groups-by-member.md +++ b/docs/command/okp4d_query_group_groups-by-member.md @@ -15,7 +15,7 @@ okp4d query group groups-by-member [address] [flags] --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for groups-by-member --limit uint pagination limit of groups-by-members to query for (default 100) - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") --offset uint pagination offset of groups-by-members to query for -o, --output string Output format (text|json) (default "text") --page uint pagination page of groups-by-members to query for. This sets offset to a multiple of limit (default 1) diff --git a/docs/command/okp4d_query_group_groups.md b/docs/command/okp4d_query_group_groups.md index 49d3b16d..f531aedf 100644 --- a/docs/command/okp4d_query_group_groups.md +++ b/docs/command/okp4d_query_group_groups.md @@ -15,7 +15,7 @@ okp4d query group groups [flags] --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for groups --limit uint pagination limit of groups to query for (default 100) - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") --offset uint pagination offset of groups to query for -o, --output string Output format (text|json) (default "text") --page uint pagination page of groups to query for. This sets offset to a multiple of limit (default 1) diff --git a/docs/command/okp4d_query_group_proposal.md b/docs/command/okp4d_query_group_proposal.md index 573066ab..a2a07e5c 100644 --- a/docs/command/okp4d_query_group_proposal.md +++ b/docs/command/okp4d_query_group_proposal.md @@ -13,7 +13,7 @@ okp4d query group proposal [id] [flags] --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for proposal - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") ``` diff --git a/docs/command/okp4d_query_group_proposals-by-group-policy.md b/docs/command/okp4d_query_group_proposals-by-group-policy.md index d1003724..d15d0db4 100644 --- a/docs/command/okp4d_query_group_proposals-by-group-policy.md +++ b/docs/command/okp4d_query_group_proposals-by-group-policy.md @@ -15,7 +15,7 @@ okp4d query group proposals-by-group-policy [group-policy-account] [flags] --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for proposals-by-group-policy --limit uint pagination limit of proposals-by-group-policy to query for (default 100) - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") --offset uint pagination offset of proposals-by-group-policy to query for -o, --output string Output format (text|json) (default "text") --page uint pagination page of proposals-by-group-policy to query for. This sets offset to a multiple of limit (default 1) diff --git a/docs/command/okp4d_query_group_tally-result.md b/docs/command/okp4d_query_group_tally-result.md index 22b8a3a4..7b3253f5 100644 --- a/docs/command/okp4d_query_group_tally-result.md +++ b/docs/command/okp4d_query_group_tally-result.md @@ -13,7 +13,7 @@ okp4d query group tally-result [proposal-id] [flags] --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for tally-result - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") ``` diff --git a/docs/command/okp4d_query_group_vote.md b/docs/command/okp4d_query_group_vote.md index d04d4d18..0c84ec64 100644 --- a/docs/command/okp4d_query_group_vote.md +++ b/docs/command/okp4d_query_group_vote.md @@ -13,7 +13,7 @@ okp4d query group vote [proposal-id] [voter] [flags] --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for vote - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") ``` diff --git a/docs/command/okp4d_query_group_votes-by-proposal.md b/docs/command/okp4d_query_group_votes-by-proposal.md index dcfdb5f4..f0ff0de0 100644 --- a/docs/command/okp4d_query_group_votes-by-proposal.md +++ b/docs/command/okp4d_query_group_votes-by-proposal.md @@ -15,7 +15,7 @@ okp4d query group votes-by-proposal [proposal-id] [flags] --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for votes-by-proposal --limit uint pagination limit of votes-by-proposal to query for (default 100) - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") --offset uint pagination offset of votes-by-proposal to query for -o, --output string Output format (text|json) (default "text") --page uint pagination page of votes-by-proposal to query for. This sets offset to a multiple of limit (default 1) diff --git a/docs/command/okp4d_query_group_votes-by-voter.md b/docs/command/okp4d_query_group_votes-by-voter.md index 0d9c71cc..3643813f 100644 --- a/docs/command/okp4d_query_group_votes-by-voter.md +++ b/docs/command/okp4d_query_group_votes-by-voter.md @@ -15,7 +15,7 @@ okp4d query group votes-by-voter [voter] [flags] --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for votes-by-voter --limit uint pagination limit of votes-by-voter to query for (default 100) - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") --offset uint pagination offset of votes-by-voter to query for -o, --output string Output format (text|json) (default "text") --page uint pagination page of votes-by-voter to query for. This sets offset to a multiple of limit (default 1) diff --git a/docs/command/okp4d_query_ibc-fee_channel.md b/docs/command/okp4d_query_ibc-fee_channel.md index 42be546e..bb71bce6 100644 --- a/docs/command/okp4d_query_ibc-fee_channel.md +++ b/docs/command/okp4d_query_ibc-fee_channel.md @@ -23,7 +23,7 @@ okp4d query ibc-fee channel transfer channel-6 --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for channel - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") ``` diff --git a/docs/command/okp4d_query_ibc-fee_channels.md b/docs/command/okp4d_query_ibc-fee_channels.md index e6e23e56..cbd081ce 100644 --- a/docs/command/okp4d_query_ibc-fee_channels.md +++ b/docs/command/okp4d_query_ibc-fee_channels.md @@ -25,7 +25,7 @@ okp4d query ibc-fee channels --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for channels --limit uint pagination limit of channels to query for (default 100) - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") --offset uint pagination offset of channels to query for -o, --output string Output format (text|json) (default "text") --page uint pagination page of channels to query for. This sets offset to a multiple of limit (default 1) diff --git a/docs/command/okp4d_query_ibc-fee_counterparty-payee.md b/docs/command/okp4d_query_ibc-fee_counterparty-payee.md index e4f7ce44..c7df2573 100644 --- a/docs/command/okp4d_query_ibc-fee_counterparty-payee.md +++ b/docs/command/okp4d_query_ibc-fee_counterparty-payee.md @@ -23,7 +23,7 @@ okp4d query ibc-fee counterparty-payee channel-5 cosmos1layxcsmyye0dc0har9sdfzwc --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for counterparty-payee - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") ``` diff --git a/docs/command/okp4d_query_ibc-fee_packet.md b/docs/command/okp4d_query_ibc-fee_packet.md index c8dc70f1..a5c0ffdb 100644 --- a/docs/command/okp4d_query_ibc-fee_packet.md +++ b/docs/command/okp4d_query_ibc-fee_packet.md @@ -23,7 +23,7 @@ okp4d query ibc-fee packet --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for packet - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") ``` diff --git a/docs/command/okp4d_query_ibc-fee_packets-for-channel.md b/docs/command/okp4d_query_ibc-fee_packets-for-channel.md index 2c02f100..5ffa2e28 100644 --- a/docs/command/okp4d_query_ibc-fee_packets-for-channel.md +++ b/docs/command/okp4d_query_ibc-fee_packets-for-channel.md @@ -25,7 +25,7 @@ okp4d query ibc-fee packets-for-channel --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for packets-for-channel --limit uint pagination limit of packets-for-channel to query for (default 100) - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") --offset uint pagination offset of packets-for-channel to query for -o, --output string Output format (text|json) (default "text") --page uint pagination page of packets-for-channel to query for. This sets offset to a multiple of limit (default 1) diff --git a/docs/command/okp4d_query_ibc-fee_packets.md b/docs/command/okp4d_query_ibc-fee_packets.md index 69548b25..275fe8eb 100644 --- a/docs/command/okp4d_query_ibc-fee_packets.md +++ b/docs/command/okp4d_query_ibc-fee_packets.md @@ -25,7 +25,7 @@ okp4d query ibc-fee packets --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for packets --limit uint pagination limit of packets to query for (default 100) - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") --offset uint pagination offset of packets to query for -o, --output string Output format (text|json) (default "text") --page uint pagination page of packets to query for. This sets offset to a multiple of limit (default 1) diff --git a/docs/command/okp4d_query_ibc-fee_payee.md b/docs/command/okp4d_query_ibc-fee_payee.md index e90e82ad..cbd5ef53 100644 --- a/docs/command/okp4d_query_ibc-fee_payee.md +++ b/docs/command/okp4d_query_ibc-fee_payee.md @@ -23,7 +23,7 @@ okp4d query ibc-fee payee channel-5 cosmos1layxcsmyye0dc0har9sdfzwckaz8sjwlfsj8z --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for payee - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") ``` diff --git a/docs/command/okp4d_query_ibc-fee_total-ack-fees.md b/docs/command/okp4d_query_ibc-fee_total-ack-fees.md index 46604fc8..9fc3f946 100644 --- a/docs/command/okp4d_query_ibc-fee_total-ack-fees.md +++ b/docs/command/okp4d_query_ibc-fee_total-ack-fees.md @@ -23,7 +23,7 @@ okp4d query ibc-fee total-ack-fees transfer channel-5 100 --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for total-ack-fees - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") ``` diff --git a/docs/command/okp4d_query_ibc-fee_total-recv-fees.md b/docs/command/okp4d_query_ibc-fee_total-recv-fees.md index 40a2397f..f9a6c52f 100644 --- a/docs/command/okp4d_query_ibc-fee_total-recv-fees.md +++ b/docs/command/okp4d_query_ibc-fee_total-recv-fees.md @@ -23,7 +23,7 @@ okp4d query ibc-fee total-recv-fees transfer channel-5 100 --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for total-recv-fees - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") ``` diff --git a/docs/command/okp4d_query_ibc-fee_total-timeout-fees.md b/docs/command/okp4d_query_ibc-fee_total-timeout-fees.md index 999dea9f..2a582ac1 100644 --- a/docs/command/okp4d_query_ibc-fee_total-timeout-fees.md +++ b/docs/command/okp4d_query_ibc-fee_total-timeout-fees.md @@ -23,7 +23,7 @@ okp4d query ibc-fee total-timeout-fees transfer channel-5 100 --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for total-timeout-fees - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") ``` diff --git a/docs/command/okp4d_query_ibc-transfer_denom-hash.md b/docs/command/okp4d_query_ibc-transfer_denom-hash.md index 4c753be1..e7f27362 100644 --- a/docs/command/okp4d_query_ibc-transfer_denom-hash.md +++ b/docs/command/okp4d_query_ibc-transfer_denom-hash.md @@ -23,7 +23,7 @@ okp4d query ibc-transfer denom-hash transfer/channel-0/uatom --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for denom-hash - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") ``` diff --git a/docs/command/okp4d_query_ibc-transfer_denom-trace.md b/docs/command/okp4d_query_ibc-transfer_denom-trace.md index b3f95fd4..6d2cc20b 100644 --- a/docs/command/okp4d_query_ibc-transfer_denom-trace.md +++ b/docs/command/okp4d_query_ibc-transfer_denom-trace.md @@ -23,7 +23,7 @@ okp4d query ibc-transfer denom-trace 27A6394C3F9FF9C9DCF5DFFADF9BB5FE9A37C7E92B0 --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for denom-trace - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") ``` diff --git a/docs/command/okp4d_query_ibc-transfer_denom-traces.md b/docs/command/okp4d_query_ibc-transfer_denom-traces.md index 8f9b23d1..f8dc88e2 100644 --- a/docs/command/okp4d_query_ibc-transfer_denom-traces.md +++ b/docs/command/okp4d_query_ibc-transfer_denom-traces.md @@ -25,7 +25,7 @@ okp4d query ibc-transfer denom-traces --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for denom-traces --limit uint pagination limit of denominations trace to query for (default 100) - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") --offset uint pagination offset of denominations trace to query for -o, --output string Output format (text|json) (default "text") --page uint pagination page of denominations trace to query for. This sets offset to a multiple of limit (default 1) diff --git a/docs/command/okp4d_query_ibc-transfer_escrow-address.md b/docs/command/okp4d_query_ibc-transfer_escrow-address.md index 2941552f..6e62afef 100644 --- a/docs/command/okp4d_query_ibc-transfer_escrow-address.md +++ b/docs/command/okp4d_query_ibc-transfer_escrow-address.md @@ -23,7 +23,7 @@ okp4d query ibc-transfer escrow-address [port] [channel-id] --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for escrow-address - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") ``` diff --git a/docs/command/okp4d_query_ibc-transfer_params.md b/docs/command/okp4d_query_ibc-transfer_params.md index 0ad3058d..d06a6904 100644 --- a/docs/command/okp4d_query_ibc-transfer_params.md +++ b/docs/command/okp4d_query_ibc-transfer_params.md @@ -23,7 +23,7 @@ okp4d query ibc-transfer params --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for params - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") ``` diff --git a/docs/command/okp4d_query_ibc-transfer_total-escrow.md b/docs/command/okp4d_query_ibc-transfer_total-escrow.md index 1a19c282..3719c92a 100644 --- a/docs/command/okp4d_query_ibc-transfer_total-escrow.md +++ b/docs/command/okp4d_query_ibc-transfer_total-escrow.md @@ -23,7 +23,7 @@ okp4d query ibc-transfer total-escrow uosmo --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for total-escrow - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") ``` diff --git a/docs/command/okp4d_query_ibc_channel_channels.md b/docs/command/okp4d_query_ibc_channel_channels.md index e85dc1a6..43c3fb71 100644 --- a/docs/command/okp4d_query_ibc_channel_channels.md +++ b/docs/command/okp4d_query_ibc_channel_channels.md @@ -25,7 +25,7 @@ okp4d query ibc channel channels --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for channels --limit uint pagination limit of channels to query for (default 100) - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") --offset uint pagination offset of channels to query for -o, --output string Output format (text|json) (default "text") --page uint pagination page of channels to query for. This sets offset to a multiple of limit (default 1) diff --git a/docs/command/okp4d_query_ibc_channel_client-state.md b/docs/command/okp4d_query_ibc_channel_client-state.md index c611d3ae..04f14e92 100644 --- a/docs/command/okp4d_query_ibc_channel_client-state.md +++ b/docs/command/okp4d_query_ibc_channel_client-state.md @@ -23,7 +23,7 @@ okp4d query ibc channel client-state [port-id] [channel-id] --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for client-state - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") ``` diff --git a/docs/command/okp4d_query_ibc_channel_connections.md b/docs/command/okp4d_query_ibc_channel_connections.md index 6eb0175d..6de7020c 100644 --- a/docs/command/okp4d_query_ibc_channel_connections.md +++ b/docs/command/okp4d_query_ibc_channel_connections.md @@ -25,7 +25,7 @@ okp4d query ibc channel connections [connection-id] --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for connections --limit uint pagination limit of channels associated with a connection to query for (default 100) - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") --offset uint pagination offset of channels associated with a connection to query for -o, --output string Output format (text|json) (default "text") --page uint pagination page of channels associated with a connection to query for. This sets offset to a multiple of limit (default 1) diff --git a/docs/command/okp4d_query_ibc_channel_end.md b/docs/command/okp4d_query_ibc_channel_end.md index af8724b5..93712c40 100644 --- a/docs/command/okp4d_query_ibc_channel_end.md +++ b/docs/command/okp4d_query_ibc_channel_end.md @@ -23,7 +23,7 @@ okp4d query ibc channel end [port-id] [channel-id] --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for end - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") --prove show proofs for the query results (default true) ``` diff --git a/docs/command/okp4d_query_ibc_channel_next-sequence-receive.md b/docs/command/okp4d_query_ibc_channel_next-sequence-receive.md index 40e9fc75..5043d6c5 100644 --- a/docs/command/okp4d_query_ibc_channel_next-sequence-receive.md +++ b/docs/command/okp4d_query_ibc_channel_next-sequence-receive.md @@ -23,7 +23,7 @@ okp4d query ibc channel next-sequence-receive [port-id] [channel-id] --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for next-sequence-receive - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") --prove show proofs for the query results (default true) ``` diff --git a/docs/command/okp4d_query_ibc_channel_packet-ack.md b/docs/command/okp4d_query_ibc_channel_packet-ack.md index 65899b1c..29570c75 100644 --- a/docs/command/okp4d_query_ibc_channel_packet-ack.md +++ b/docs/command/okp4d_query_ibc_channel_packet-ack.md @@ -23,7 +23,7 @@ okp4d query ibc channel packet-ack [port-id] [channel-id] [sequence] --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for packet-ack - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") --prove show proofs for the query results (default true) ``` diff --git a/docs/command/okp4d_query_ibc_channel_packet-commitment.md b/docs/command/okp4d_query_ibc_channel_packet-commitment.md index 41631302..226f575e 100644 --- a/docs/command/okp4d_query_ibc_channel_packet-commitment.md +++ b/docs/command/okp4d_query_ibc_channel_packet-commitment.md @@ -23,7 +23,7 @@ okp4d query ibc channel packet-commitment [port-id] [channel-id] [sequence] --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for packet-commitment - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") --prove show proofs for the query results (default true) ``` diff --git a/docs/command/okp4d_query_ibc_channel_packet-commitments.md b/docs/command/okp4d_query_ibc_channel_packet-commitments.md index 88244e6b..33890072 100644 --- a/docs/command/okp4d_query_ibc_channel_packet-commitments.md +++ b/docs/command/okp4d_query_ibc_channel_packet-commitments.md @@ -25,7 +25,7 @@ okp4d query ibc channel packet-commitments [port-id] [channel-id] --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for packet-commitments --limit uint pagination limit of packet commitments associated with a channel to query for (default 100) - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") --offset uint pagination offset of packet commitments associated with a channel to query for -o, --output string Output format (text|json) (default "text") --page uint pagination page of packet commitments associated with a channel to query for. This sets offset to a multiple of limit (default 1) diff --git a/docs/command/okp4d_query_ibc_channel_packet-receipt.md b/docs/command/okp4d_query_ibc_channel_packet-receipt.md index 92efa1e4..47115256 100644 --- a/docs/command/okp4d_query_ibc_channel_packet-receipt.md +++ b/docs/command/okp4d_query_ibc_channel_packet-receipt.md @@ -23,7 +23,7 @@ okp4d query ibc channel packet-receipt [port-id] [channel-id] [sequence] --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for packet-receipt - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") --prove show proofs for the query results (default true) ``` diff --git a/docs/command/okp4d_query_ibc_channel_unreceived-acks.md b/docs/command/okp4d_query_ibc_channel_unreceived-acks.md index 73599bd8..d49bdd79 100644 --- a/docs/command/okp4d_query_ibc_channel_unreceived-acks.md +++ b/docs/command/okp4d_query_ibc_channel_unreceived-acks.md @@ -27,7 +27,7 @@ okp4d query ibc channel unreceived-acks [port-id] [channel-id] --sequences=1,2,3 --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for unreceived-acks - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") --sequences int64Slice comma separated list of packet sequence numbers (default []) ``` diff --git a/docs/command/okp4d_query_ibc_channel_unreceived-packets.md b/docs/command/okp4d_query_ibc_channel_unreceived-packets.md index 25665c28..afb5d416 100644 --- a/docs/command/okp4d_query_ibc_channel_unreceived-packets.md +++ b/docs/command/okp4d_query_ibc_channel_unreceived-packets.md @@ -27,7 +27,7 @@ okp4d query ibc channel unreceived-packets [port-id] [channel-id] --sequences=1, --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for unreceived-packets - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") --sequences int64Slice comma separated list of packet sequence numbers (default []) ``` diff --git a/docs/command/okp4d_query_ibc_client_consensus-state-heights.md b/docs/command/okp4d_query_ibc_client_consensus-state-heights.md index 60a7fbd4..325a625b 100644 --- a/docs/command/okp4d_query_ibc_client_consensus-state-heights.md +++ b/docs/command/okp4d_query_ibc_client_consensus-state-heights.md @@ -25,7 +25,7 @@ okp4d query ibc client consensus-state-heights [client-id] --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for consensus-state-heights --limit uint pagination limit of consensus state heights to query for (default 100) - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") --offset uint pagination offset of consensus state heights to query for -o, --output string Output format (text|json) (default "text") --page uint pagination page of consensus state heights to query for. This sets offset to a multiple of limit (default 1) diff --git a/docs/command/okp4d_query_ibc_client_consensus-state.md b/docs/command/okp4d_query_ibc_client_consensus-state.md index 772be5ff..429767c7 100644 --- a/docs/command/okp4d_query_ibc_client_consensus-state.md +++ b/docs/command/okp4d_query_ibc_client_consensus-state.md @@ -25,7 +25,7 @@ okp4d query ibc client consensus-state [client-id] [height] --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for consensus-state --latest-height return latest stored consensus state - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") --prove show proofs for the query results (default true) ``` diff --git a/docs/command/okp4d_query_ibc_client_consensus-states.md b/docs/command/okp4d_query_ibc_client_consensus-states.md index 7b8b1221..29839c6b 100644 --- a/docs/command/okp4d_query_ibc_client_consensus-states.md +++ b/docs/command/okp4d_query_ibc_client_consensus-states.md @@ -25,7 +25,7 @@ okp4d query ibc client consensus-states [client-id] --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for consensus-states --limit uint pagination limit of consensus states to query for (default 100) - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") --offset uint pagination offset of consensus states to query for -o, --output string Output format (text|json) (default "text") --page uint pagination page of consensus states to query for. This sets offset to a multiple of limit (default 1) diff --git a/docs/command/okp4d_query_ibc_client_header.md b/docs/command/okp4d_query_ibc_client_header.md index 05854127..ac63a89a 100644 --- a/docs/command/okp4d_query_ibc_client_header.md +++ b/docs/command/okp4d_query_ibc_client_header.md @@ -23,7 +23,7 @@ okp4d query ibc client header --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for header - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") ``` diff --git a/docs/command/okp4d_query_ibc_client_params.md b/docs/command/okp4d_query_ibc_client_params.md index c27c3811..e632eaf7 100644 --- a/docs/command/okp4d_query_ibc_client_params.md +++ b/docs/command/okp4d_query_ibc_client_params.md @@ -23,7 +23,7 @@ okp4d query ibc client params --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for params - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") ``` diff --git a/docs/command/okp4d_query_ibc_client_self-consensus-state.md b/docs/command/okp4d_query_ibc_client_self-consensus-state.md index 0cd95e7d..a356a7bc 100644 --- a/docs/command/okp4d_query_ibc_client_self-consensus-state.md +++ b/docs/command/okp4d_query_ibc_client_self-consensus-state.md @@ -23,7 +23,7 @@ okp4d query ibc client self-consensus-state --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for self-consensus-state - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") ``` diff --git a/docs/command/okp4d_query_ibc_client_state.md b/docs/command/okp4d_query_ibc_client_state.md index a2266d15..78cba776 100644 --- a/docs/command/okp4d_query_ibc_client_state.md +++ b/docs/command/okp4d_query_ibc_client_state.md @@ -23,7 +23,7 @@ okp4d query ibc client state [client-id] --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for state - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") --prove show proofs for the query results (default true) ``` diff --git a/docs/command/okp4d_query_ibc_client_states.md b/docs/command/okp4d_query_ibc_client_states.md index aebd093a..fe448e73 100644 --- a/docs/command/okp4d_query_ibc_client_states.md +++ b/docs/command/okp4d_query_ibc_client_states.md @@ -25,7 +25,7 @@ okp4d query ibc client states --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for states --limit uint pagination limit of client states to query for (default 100) - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") --offset uint pagination offset of client states to query for -o, --output string Output format (text|json) (default "text") --page uint pagination page of client states to query for. This sets offset to a multiple of limit (default 1) diff --git a/docs/command/okp4d_query_ibc_client_status.md b/docs/command/okp4d_query_ibc_client_status.md index 41fcdef3..913be420 100644 --- a/docs/command/okp4d_query_ibc_client_status.md +++ b/docs/command/okp4d_query_ibc_client_status.md @@ -23,7 +23,7 @@ okp4d query ibc client status [client-id] --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for status - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") ``` diff --git a/docs/command/okp4d_query_ibc_connection_connections.md b/docs/command/okp4d_query_ibc_connection_connections.md index feb92e83..2dfc9f7a 100644 --- a/docs/command/okp4d_query_ibc_connection_connections.md +++ b/docs/command/okp4d_query_ibc_connection_connections.md @@ -25,7 +25,7 @@ okp4d query ibc connection connections --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for connections --limit uint pagination limit of connection ends to query for (default 100) - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") --offset uint pagination offset of connection ends to query for -o, --output string Output format (text|json) (default "text") --page uint pagination page of connection ends to query for. This sets offset to a multiple of limit (default 1) diff --git a/docs/command/okp4d_query_ibc_connection_end.md b/docs/command/okp4d_query_ibc_connection_end.md index 8ebf8ec1..5898eb45 100644 --- a/docs/command/okp4d_query_ibc_connection_end.md +++ b/docs/command/okp4d_query_ibc_connection_end.md @@ -23,7 +23,7 @@ okp4d query ibc connection end [connection-id] --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for end - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") --prove show proofs for the query results (default true) ``` diff --git a/docs/command/okp4d_query_ibc_connection_params.md b/docs/command/okp4d_query_ibc_connection_params.md index 5ba8dd25..150f89dc 100644 --- a/docs/command/okp4d_query_ibc_connection_params.md +++ b/docs/command/okp4d_query_ibc_connection_params.md @@ -23,7 +23,7 @@ okp4d query ibc connection params --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for params - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") ``` diff --git a/docs/command/okp4d_query_ibc_connection_path.md b/docs/command/okp4d_query_ibc_connection_path.md index 6004b600..ab5b058b 100644 --- a/docs/command/okp4d_query_ibc_connection_path.md +++ b/docs/command/okp4d_query_ibc_connection_path.md @@ -23,7 +23,7 @@ okp4d query ibc connection path [client-id] --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for path - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") --prove show proofs for the query results (default true) ``` diff --git a/docs/command/okp4d_query_interchain-accounts_controller_interchain-account.md b/docs/command/okp4d_query_interchain-accounts_controller_interchain-account.md index 6ea2b751..50c83fd4 100644 --- a/docs/command/okp4d_query_interchain-accounts_controller_interchain-account.md +++ b/docs/command/okp4d_query_interchain-accounts_controller_interchain-account.md @@ -23,7 +23,7 @@ okp4d query interchain-accounts controller interchain-account cosmos1layxcsmyye0 --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for interchain-account - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") ``` diff --git a/docs/command/okp4d_query_interchain-accounts_controller_params.md b/docs/command/okp4d_query_interchain-accounts_controller_params.md index 492add7c..f08cbd8d 100644 --- a/docs/command/okp4d_query_interchain-accounts_controller_params.md +++ b/docs/command/okp4d_query_interchain-accounts_controller_params.md @@ -23,7 +23,7 @@ okp4d query interchain-accounts controller params --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for params - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") ``` diff --git a/docs/command/okp4d_query_interchain-accounts_host_packet-events.md b/docs/command/okp4d_query_interchain-accounts_host_packet-events.md index 85823c9b..2108db60 100644 --- a/docs/command/okp4d_query_interchain-accounts_host_packet-events.md +++ b/docs/command/okp4d_query_interchain-accounts_host_packet-events.md @@ -23,7 +23,7 @@ okp4d query interchain-accounts host packet-events channel-0 100 --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for packet-events - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") ``` diff --git a/docs/command/okp4d_query_interchain-accounts_host_params.md b/docs/command/okp4d_query_interchain-accounts_host_params.md index e33771a1..a4d9132b 100644 --- a/docs/command/okp4d_query_interchain-accounts_host_params.md +++ b/docs/command/okp4d_query_interchain-accounts_host_params.md @@ -23,7 +23,7 @@ okp4d query interchain-accounts host params --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for params - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") ``` diff --git a/docs/command/okp4d_query_logic_ask.md b/docs/command/okp4d_query_logic_ask.md index 43377c3b..1ce993a8 100644 --- a/docs/command/okp4d_query_logic_ask.md +++ b/docs/command/okp4d_query_logic_ask.md @@ -19,7 +19,7 @@ okp4d query logic ask [query] [flags] ### Examples ``` -okp4d query logic ask "chain_id(X)." # returns the chain-id +$ okp4d query logic ask "chain_id(X)." # returns the chain-id ``` ### Options @@ -29,7 +29,7 @@ okp4d query logic ask "chain_id(X)." # returns the chain-id --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for ask - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") --program string reads the program from the given string. --program-file string reads the program from the given filename or from stdin if "-" is passed as the filename. diff --git a/docs/command/okp4d_query_logic_params.md b/docs/command/okp4d_query_logic_params.md index 6f993395..56a863a2 100644 --- a/docs/command/okp4d_query_logic_params.md +++ b/docs/command/okp4d_query_logic_params.md @@ -13,7 +13,7 @@ okp4d query logic params [flags] --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for params - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") ``` diff --git a/docs/command/okp4d_query_mint_annual-provisions.md b/docs/command/okp4d_query_mint_annual-provisions.md index 12e6e115..40296bd2 100644 --- a/docs/command/okp4d_query_mint_annual-provisions.md +++ b/docs/command/okp4d_query_mint_annual-provisions.md @@ -13,7 +13,7 @@ okp4d query mint annual-provisions [flags] --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for annual-provisions - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") ``` diff --git a/docs/command/okp4d_query_mint_inflation.md b/docs/command/okp4d_query_mint_inflation.md index 4a2d6040..281cd28e 100644 --- a/docs/command/okp4d_query_mint_inflation.md +++ b/docs/command/okp4d_query_mint_inflation.md @@ -13,7 +13,7 @@ okp4d query mint inflation [flags] --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for inflation - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") ``` diff --git a/docs/command/okp4d_query_mint_params.md b/docs/command/okp4d_query_mint_params.md index 5815d2d8..e2e817a6 100644 --- a/docs/command/okp4d_query_mint_params.md +++ b/docs/command/okp4d_query_mint_params.md @@ -13,7 +13,7 @@ okp4d query mint params [flags] --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for params - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") ``` diff --git a/docs/command/okp4d_query_params_subspace.md b/docs/command/okp4d_query_params_subspace.md index e32f5deb..ac71942d 100644 --- a/docs/command/okp4d_query_params_subspace.md +++ b/docs/command/okp4d_query_params_subspace.md @@ -13,7 +13,7 @@ okp4d query params subspace [subspace] [key] [flags] --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for subspace - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") ``` diff --git a/docs/command/okp4d_query_slashing_params.md b/docs/command/okp4d_query_slashing_params.md index d93668a1..6c48574f 100644 --- a/docs/command/okp4d_query_slashing_params.md +++ b/docs/command/okp4d_query_slashing_params.md @@ -19,7 +19,7 @@ okp4d query slashing params [flags] --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for params - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") ``` diff --git a/docs/command/okp4d_query_slashing_signing-info.md b/docs/command/okp4d_query_slashing_signing-info.md index 89947031..eed92ae5 100644 --- a/docs/command/okp4d_query_slashing_signing-info.md +++ b/docs/command/okp4d_query_slashing_signing-info.md @@ -6,7 +6,7 @@ Query a validator's signing information Use a validators' consensus public key to find the signing-info for that validator: -$ okp4d query slashing signing-info '{"@type":"/cosmos.crypto.ed25519.PubKey","key":"OauFcTKbN5Lx3fJL689cikXBqe+hcp6Y+x0rYUdR9Jk="}' +$ okp4d query slashing signing-info '\{"@type":"/cosmos.crypto.ed25519.PubKey","key":"OauFcTKbN5Lx3fJL689cikXBqe+hcp6Y+x0rYUdR9Jk="\}' ``` okp4d query slashing signing-info [validator-conspub] [flags] @@ -19,7 +19,7 @@ okp4d query slashing signing-info [validator-conspub] [flags] --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for signing-info - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") ``` diff --git a/docs/command/okp4d_query_slashing_signing-infos.md b/docs/command/okp4d_query_slashing_signing-infos.md index 5d52e6a4..41a3f00b 100644 --- a/docs/command/okp4d_query_slashing_signing-infos.md +++ b/docs/command/okp4d_query_slashing_signing-infos.md @@ -21,7 +21,7 @@ okp4d query slashing signing-infos [flags] --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for signing-infos --limit uint pagination limit of signing infos to query for (default 100) - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") --offset uint pagination offset of signing infos to query for -o, --output string Output format (text|json) (default "text") --page uint pagination page of signing infos to query for. This sets offset to a multiple of limit (default 1) diff --git a/docs/command/okp4d_query_staking_delegation.md b/docs/command/okp4d_query_staking_delegation.md index bc15c0a5..7a085347 100644 --- a/docs/command/okp4d_query_staking_delegation.md +++ b/docs/command/okp4d_query_staking_delegation.md @@ -20,7 +20,7 @@ okp4d query staking delegation [delegator-addr] [validator-addr] [flags] --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for delegation - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") ``` diff --git a/docs/command/okp4d_query_staking_delegations-to.md b/docs/command/okp4d_query_staking_delegations-to.md index 52ab3ad8..443abbe5 100644 --- a/docs/command/okp4d_query_staking_delegations-to.md +++ b/docs/command/okp4d_query_staking_delegations-to.md @@ -22,7 +22,7 @@ okp4d query staking delegations-to [validator-addr] [flags] --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for delegations-to --limit uint pagination limit of validator delegations to query for (default 100) - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") --offset uint pagination offset of validator delegations to query for -o, --output string Output format (text|json) (default "text") --page uint pagination page of validator delegations to query for. This sets offset to a multiple of limit (default 1) diff --git a/docs/command/okp4d_query_staking_delegations.md b/docs/command/okp4d_query_staking_delegations.md index b0e869f1..2ce467d2 100644 --- a/docs/command/okp4d_query_staking_delegations.md +++ b/docs/command/okp4d_query_staking_delegations.md @@ -22,7 +22,7 @@ okp4d query staking delegations [delegator-addr] [flags] --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for delegations --limit uint pagination limit of delegations to query for (default 100) - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") --offset uint pagination offset of delegations to query for -o, --output string Output format (text|json) (default "text") --page uint pagination page of delegations to query for. This sets offset to a multiple of limit (default 1) diff --git a/docs/command/okp4d_query_staking_historical-info.md b/docs/command/okp4d_query_staking_historical-info.md index b1232369..2736d133 100644 --- a/docs/command/okp4d_query_staking_historical-info.md +++ b/docs/command/okp4d_query_staking_historical-info.md @@ -20,7 +20,7 @@ okp4d query staking historical-info [height] [flags] --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for historical-info - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") ``` diff --git a/docs/command/okp4d_query_staking_params.md b/docs/command/okp4d_query_staking_params.md index a1966f81..b46ca250 100644 --- a/docs/command/okp4d_query_staking_params.md +++ b/docs/command/okp4d_query_staking_params.md @@ -20,7 +20,7 @@ okp4d query staking params [flags] --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for params - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") ``` diff --git a/docs/command/okp4d_query_staking_pool.md b/docs/command/okp4d_query_staking_pool.md index 6b3ea500..373884bf 100644 --- a/docs/command/okp4d_query_staking_pool.md +++ b/docs/command/okp4d_query_staking_pool.md @@ -20,7 +20,7 @@ okp4d query staking pool [flags] --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for pool - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") ``` diff --git a/docs/command/okp4d_query_staking_redelegation.md b/docs/command/okp4d_query_staking_redelegation.md index 8e226243..a9165446 100644 --- a/docs/command/okp4d_query_staking_redelegation.md +++ b/docs/command/okp4d_query_staking_redelegation.md @@ -20,7 +20,7 @@ okp4d query staking redelegation [delegator-addr] [src-validator-addr] [dst-vali --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for redelegation - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") ``` diff --git a/docs/command/okp4d_query_staking_redelegations-from.md b/docs/command/okp4d_query_staking_redelegations-from.md index a033622e..90d62ce4 100644 --- a/docs/command/okp4d_query_staking_redelegations-from.md +++ b/docs/command/okp4d_query_staking_redelegations-from.md @@ -22,7 +22,7 @@ okp4d query staking redelegations-from [validator-addr] [flags] --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for redelegations-from --limit uint pagination limit of validator redelegations to query for (default 100) - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") --offset uint pagination offset of validator redelegations to query for -o, --output string Output format (text|json) (default "text") --page uint pagination page of validator redelegations to query for. This sets offset to a multiple of limit (default 1) diff --git a/docs/command/okp4d_query_staking_redelegations.md b/docs/command/okp4d_query_staking_redelegations.md index 946354cb..29fd5d73 100644 --- a/docs/command/okp4d_query_staking_redelegations.md +++ b/docs/command/okp4d_query_staking_redelegations.md @@ -22,7 +22,7 @@ okp4d query staking redelegations [delegator-addr] [flags] --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for redelegations --limit uint pagination limit of delegator redelegations to query for (default 100) - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") --offset uint pagination offset of delegator redelegations to query for -o, --output string Output format (text|json) (default "text") --page uint pagination page of delegator redelegations to query for. This sets offset to a multiple of limit (default 1) diff --git a/docs/command/okp4d_query_staking_unbonding-delegation.md b/docs/command/okp4d_query_staking_unbonding-delegation.md index cbe5be60..5481f786 100644 --- a/docs/command/okp4d_query_staking_unbonding-delegation.md +++ b/docs/command/okp4d_query_staking_unbonding-delegation.md @@ -20,7 +20,7 @@ okp4d query staking unbonding-delegation [delegator-addr] [validator-addr] [flag --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for unbonding-delegation - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") ``` diff --git a/docs/command/okp4d_query_staking_unbonding-delegations-from.md b/docs/command/okp4d_query_staking_unbonding-delegations-from.md index 2e32f40d..487537a4 100644 --- a/docs/command/okp4d_query_staking_unbonding-delegations-from.md +++ b/docs/command/okp4d_query_staking_unbonding-delegations-from.md @@ -22,7 +22,7 @@ okp4d query staking unbonding-delegations-from [validator-addr] [flags] --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for unbonding-delegations-from --limit uint pagination limit of unbonding delegations to query for (default 100) - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") --offset uint pagination offset of unbonding delegations to query for -o, --output string Output format (text|json) (default "text") --page uint pagination page of unbonding delegations to query for. This sets offset to a multiple of limit (default 1) diff --git a/docs/command/okp4d_query_staking_unbonding-delegations.md b/docs/command/okp4d_query_staking_unbonding-delegations.md index 0121df78..8243045b 100644 --- a/docs/command/okp4d_query_staking_unbonding-delegations.md +++ b/docs/command/okp4d_query_staking_unbonding-delegations.md @@ -22,7 +22,7 @@ okp4d query staking unbonding-delegations [delegator-addr] [flags] --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for unbonding-delegations --limit uint pagination limit of unbonding delegations to query for (default 100) - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") --offset uint pagination offset of unbonding delegations to query for -o, --output string Output format (text|json) (default "text") --page uint pagination page of unbonding delegations to query for. This sets offset to a multiple of limit (default 1) diff --git a/docs/command/okp4d_query_staking_validator.md b/docs/command/okp4d_query_staking_validator.md index 5fce7855..a4eb440d 100644 --- a/docs/command/okp4d_query_staking_validator.md +++ b/docs/command/okp4d_query_staking_validator.md @@ -20,7 +20,7 @@ okp4d query staking validator [validator-addr] [flags] --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for validator - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") ``` diff --git a/docs/command/okp4d_query_staking_validators.md b/docs/command/okp4d_query_staking_validators.md index 791618ce..f508aff3 100644 --- a/docs/command/okp4d_query_staking_validators.md +++ b/docs/command/okp4d_query_staking_validators.md @@ -22,7 +22,7 @@ okp4d query staking validators [flags] --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for validators --limit uint pagination limit of validators to query for (default 100) - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") --offset uint pagination offset of validators to query for -o, --output string Output format (text|json) (default "text") --page uint pagination page of validators to query for. This sets offset to a multiple of limit (default 1) diff --git a/docs/command/okp4d_query_tendermint-validator-set.md b/docs/command/okp4d_query_tendermint-validator-set.md index 895dc2bc..35ff2158 100644 --- a/docs/command/okp4d_query_tendermint-validator-set.md +++ b/docs/command/okp4d_query_tendermint-validator-set.md @@ -11,7 +11,7 @@ okp4d query tendermint-validator-set [height] [flags] ``` -h, --help help for tendermint-validator-set --limit int Query number of results returned per page (default 100) - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") --page int Query a specific page of paginated results (default 1) ``` diff --git a/docs/command/okp4d_query_tx.md b/docs/command/okp4d_query_tx.md index ab89af3c..d8e636f5 100644 --- a/docs/command/okp4d_query_tx.md +++ b/docs/command/okp4d_query_tx.md @@ -7,7 +7,7 @@ Query for a transaction by hash, "<addr>/<seq>" combination or comma Example: $ okp4d query tx <hash> $ okp4d query tx --type=acc_seq <addr>/<sequence> -$ okp4d query tx --type=signature , +$ okp4d query tx --type=signature <sig1_base64>,<sig2_base64...> ``` okp4d query tx --type=[hash|acc_seq|signature] [hash|acc_seq|signature] [flags] @@ -20,7 +20,7 @@ okp4d query tx --type=[hash|acc_seq|signature] [hash|acc_seq|signature] [flags] --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for tx - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") --type string The type to be used when querying tx, can be one of "hash", "acc_seq", "signature" (default "hash") ``` diff --git a/docs/command/okp4d_query_txs.md b/docs/command/okp4d_query_txs.md index a8f00800..7a38d40b 100644 --- a/docs/command/okp4d_query_txs.md +++ b/docs/command/okp4d_query_txs.md @@ -5,7 +5,7 @@ Query for paginated transactions that match a set of events ### Synopsis Search for transactions that match the exact given events where results are paginated. -Each event takes the form of '{eventType}.{eventAttribute}={value}'. Please refer +Each event takes the form of '\{eventType\}.\{eventAttribute\}=\{value\}'. Please refer to each module's documentation for the full set of events to query for. Each module documents its respective events under 'xx_events.md'. @@ -25,7 +25,7 @@ okp4d query txs [flags] --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for txs --limit int Query number of transactions results per page returned (default 100) - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") --page int Query a specific page of paginated results (default 1) ``` diff --git a/docs/command/okp4d_query_upgrade_applied.md b/docs/command/okp4d_query_upgrade_applied.md index 9490e9b4..4c430ec4 100644 --- a/docs/command/okp4d_query_upgrade_applied.md +++ b/docs/command/okp4d_query_upgrade_applied.md @@ -18,7 +18,7 @@ okp4d query upgrade applied [upgrade-name] [flags] --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for applied - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") ``` diff --git a/docs/command/okp4d_query_upgrade_module_versions.md b/docs/command/okp4d_query_upgrade_module_versions.md index 63c11ee5..c8ff225d 100644 --- a/docs/command/okp4d_query_upgrade_module_versions.md +++ b/docs/command/okp4d_query_upgrade_module_versions.md @@ -19,7 +19,7 @@ okp4d query upgrade module_versions [optional module_name] [flags] --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for module_versions - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") ``` diff --git a/docs/command/okp4d_query_upgrade_plan.md b/docs/command/okp4d_query_upgrade_plan.md index d89051aa..32615335 100644 --- a/docs/command/okp4d_query_upgrade_plan.md +++ b/docs/command/okp4d_query_upgrade_plan.md @@ -17,7 +17,7 @@ okp4d query upgrade plan [flags] --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for plan - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") ``` diff --git a/docs/command/okp4d_query_wasm_code-info.md b/docs/command/okp4d_query_wasm_code-info.md index dee79d84..1e830ebd 100644 --- a/docs/command/okp4d_query_wasm_code-info.md +++ b/docs/command/okp4d_query_wasm_code-info.md @@ -17,7 +17,7 @@ okp4d query wasm code-info [code_id] [flags] --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for code-info - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") ``` diff --git a/docs/command/okp4d_query_wasm_code.md b/docs/command/okp4d_query_wasm_code.md index b68df9de..0c62297f 100644 --- a/docs/command/okp4d_query_wasm_code.md +++ b/docs/command/okp4d_query_wasm_code.md @@ -17,7 +17,7 @@ okp4d query wasm code [code_id] [output filename] [flags] --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for code - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") ``` diff --git a/docs/command/okp4d_query_wasm_contract-history.md b/docs/command/okp4d_query_wasm_contract-history.md index 42ba1c6a..8317f9df 100644 --- a/docs/command/okp4d_query_wasm_contract-history.md +++ b/docs/command/okp4d_query_wasm_contract-history.md @@ -19,7 +19,7 @@ okp4d query wasm contract-history [bech32_address] [flags] --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for contract-history --limit uint pagination limit of contract history to query for (default 100) - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") --offset uint pagination offset of contract history to query for -o, --output string Output format (text|json) (default "text") --page uint pagination page of contract history to query for. This sets offset to a multiple of limit (default 1) diff --git a/docs/command/okp4d_query_wasm_contract-state_all.md b/docs/command/okp4d_query_wasm_contract-state_all.md index 27867d58..072a58ff 100644 --- a/docs/command/okp4d_query_wasm_contract-state_all.md +++ b/docs/command/okp4d_query_wasm_contract-state_all.md @@ -19,7 +19,7 @@ okp4d query wasm contract-state all [bech32_address] [flags] --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for all --limit uint pagination limit of contract state to query for (default 100) - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") --offset uint pagination offset of contract state to query for -o, --output string Output format (text|json) (default "text") --page uint pagination page of contract state to query for. This sets offset to a multiple of limit (default 1) diff --git a/docs/command/okp4d_query_wasm_contract-state_raw.md b/docs/command/okp4d_query_wasm_contract-state_raw.md index 50d83497..aa0d7cf4 100644 --- a/docs/command/okp4d_query_wasm_contract-state_raw.md +++ b/docs/command/okp4d_query_wasm_contract-state_raw.md @@ -20,7 +20,7 @@ okp4d query wasm contract-state raw [bech32_address] [key] [flags] --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for raw --hex hex encoded key argument - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") ``` diff --git a/docs/command/okp4d_query_wasm_contract-state_smart.md b/docs/command/okp4d_query_wasm_contract-state_smart.md index 6e38324b..70a279b8 100644 --- a/docs/command/okp4d_query_wasm_contract-state_smart.md +++ b/docs/command/okp4d_query_wasm_contract-state_smart.md @@ -20,7 +20,7 @@ okp4d query wasm contract-state smart [bech32_address] [query] [flags] --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for smart --hex hex encoded query argument - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") ``` diff --git a/docs/command/okp4d_query_wasm_contract.md b/docs/command/okp4d_query_wasm_contract.md index 1e351930..99714764 100644 --- a/docs/command/okp4d_query_wasm_contract.md +++ b/docs/command/okp4d_query_wasm_contract.md @@ -17,7 +17,7 @@ okp4d query wasm contract [bech32_address] [flags] --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for contract - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") ``` diff --git a/docs/command/okp4d_query_wasm_list-code.md b/docs/command/okp4d_query_wasm_list-code.md index 3cf5deca..7a443f0c 100644 --- a/docs/command/okp4d_query_wasm_list-code.md +++ b/docs/command/okp4d_query_wasm_list-code.md @@ -19,7 +19,7 @@ okp4d query wasm list-code [flags] --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for list-code --limit uint pagination limit of list codes to query for (default 100) - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") --offset uint pagination offset of list codes to query for -o, --output string Output format (text|json) (default "text") --page uint pagination page of list codes to query for. This sets offset to a multiple of limit (default 1) diff --git a/docs/command/okp4d_query_wasm_list-contract-by-code.md b/docs/command/okp4d_query_wasm_list-contract-by-code.md index fa7bf7be..32529ff5 100644 --- a/docs/command/okp4d_query_wasm_list-contract-by-code.md +++ b/docs/command/okp4d_query_wasm_list-contract-by-code.md @@ -19,7 +19,7 @@ okp4d query wasm list-contract-by-code [code_id] [flags] --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for list-contract-by-code --limit uint pagination limit of list contracts by code to query for (default 100) - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") --offset uint pagination offset of list contracts by code to query for -o, --output string Output format (text|json) (default "text") --page uint pagination page of list contracts by code to query for. This sets offset to a multiple of limit (default 1) diff --git a/docs/command/okp4d_query_wasm_list-contracts-by-creator.md b/docs/command/okp4d_query_wasm_list-contracts-by-creator.md index fa716a43..60fd4ba3 100644 --- a/docs/command/okp4d_query_wasm_list-contracts-by-creator.md +++ b/docs/command/okp4d_query_wasm_list-contracts-by-creator.md @@ -19,7 +19,7 @@ okp4d query wasm list-contracts-by-creator [creator] [flags] --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for list-contracts-by-creator --limit uint pagination limit of list contracts by creator to query for (default 100) - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") --offset uint pagination offset of list contracts by creator to query for -o, --output string Output format (text|json) (default "text") --page uint pagination page of list contracts by creator to query for. This sets offset to a multiple of limit (default 1) diff --git a/docs/command/okp4d_query_wasm_params.md b/docs/command/okp4d_query_wasm_params.md index 23339203..94dd954b 100644 --- a/docs/command/okp4d_query_wasm_params.md +++ b/docs/command/okp4d_query_wasm_params.md @@ -13,7 +13,7 @@ okp4d query wasm params [flags] --grpc-insecure allow gRPC over insecure channels, if not TLS the server must use TLS --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for params - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") -o, --output string Output format (text|json) (default "text") ``` diff --git a/docs/command/okp4d_query_wasm_pinned.md b/docs/command/okp4d_query_wasm_pinned.md index 90e385aa..8eed9b50 100644 --- a/docs/command/okp4d_query_wasm_pinned.md +++ b/docs/command/okp4d_query_wasm_pinned.md @@ -19,7 +19,7 @@ okp4d query wasm pinned [flags] --height int Use a specific height to query state at (this can error if the node is pruning state) -h, --help help for pinned --limit uint pagination limit of list codes to query for (default 100) - --node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657") + --node string : to Tendermint RPC interface for this chain (default "tcp://localhost:26657") --offset uint pagination offset of list codes to query for -o, --output string Output format (text|json) (default "text") --page uint pagination page of list codes to query for. This sets offset to a multiple of limit (default 1) diff --git a/docs/command/okp4d_tx_authz_exec.md b/docs/command/okp4d_tx_authz_exec.md index a76be40a..0771ee54 100644 --- a/docs/command/okp4d_tx_authz_exec.md +++ b/docs/command/okp4d_tx_authz_exec.md @@ -7,7 +7,7 @@ execute tx on behalf of granter account execute tx on behalf of granter account: Example: $ okp4d tx authz exec tx.json --from grantee - $ okp4d tx bank send <granter> <recipient> --from <granter> --chain-id <chain-id> --generate-only > tx.json && okp4d tx authz exec tx.json --from grantee + $ okp4d tx bank send <granter> <recipient> --from <granter> --chain-id <chain-id> --generate-only > tx.json && okp4d tx authz exec tx.json --from grantee ``` okp4d tx authz exec [tx-json-file] --from [grantee] [flags] @@ -33,7 +33,7 @@ okp4d tx authz exec [tx-json-file] --from [grantee] [flags] --keyring-backend string Select keyring's backend (os|file|kwallet|pass|test|memory) (default "test") --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_authz_grant.md b/docs/command/okp4d_tx_authz_grant.md index 26b1f3e6..dbbe1d37 100644 --- a/docs/command/okp4d_tx_authz_grant.md +++ b/docs/command/okp4d_tx_authz_grant.md @@ -11,7 +11,7 @@ Examples: $ okp4d tx authz grant cosmos1skjw.. generic --msg-type=/cosmos.gov.v1.MsgVote --from=cosmos1sk.. ``` -okp4d tx authz grant <grantee> --from <granter> [flags] +okp4d tx authz grant --from [flags] ``` ### Options @@ -39,7 +39,7 @@ okp4d tx authz grant <grantee> : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_authz_revoke.md b/docs/command/okp4d_tx_authz_revoke.md index 7d45a3f6..7e9cb1bc 100644 --- a/docs/command/okp4d_tx_authz_revoke.md +++ b/docs/command/okp4d_tx_authz_revoke.md @@ -32,7 +32,7 @@ okp4d tx authz revoke [grantee] [msg-type-url] --from=[granter] [flags] --keyring-backend string Select keyring's backend (os|file|kwallet|pass|test|memory) (default "test") --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_bank_multi-send.md b/docs/command/okp4d_tx_bank_multi-send.md index f9f34ee5..fb2e3e81 100644 --- a/docs/command/okp4d_tx_bank_multi-send.md +++ b/docs/command/okp4d_tx_bank_multi-send.md @@ -34,7 +34,7 @@ okp4d tx bank multi-send [from_key_or_address] [to_address_1, to_address_2, ...] --keyring-backend string Select keyring's backend (os|file|kwallet|pass|test|memory) (default "test") --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_bank_send.md b/docs/command/okp4d_tx_bank_send.md index 4aa3140e..5f35fb47 100644 --- a/docs/command/okp4d_tx_bank_send.md +++ b/docs/command/okp4d_tx_bank_send.md @@ -32,7 +32,7 @@ okp4d tx bank send [from_key_or_address] [to_address] [amount] [flags] --keyring-backend string Select keyring's backend (os|file|kwallet|pass|test|memory) (default "test") --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_broadcast.md b/docs/command/okp4d_tx_broadcast.md index be8ef075..204620a8 100644 --- a/docs/command/okp4d_tx_broadcast.md +++ b/docs/command/okp4d_tx_broadcast.md @@ -35,7 +35,7 @@ okp4d tx broadcast [file_path] [flags] --keyring-backend string Select keyring's backend (os|file|kwallet|pass|test|memory) (default "test") --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_crisis_invariant-broken.md b/docs/command/okp4d_tx_crisis_invariant-broken.md index 0e2dd08c..f8dd5202 100644 --- a/docs/command/okp4d_tx_crisis_invariant-broken.md +++ b/docs/command/okp4d_tx_crisis_invariant-broken.md @@ -26,7 +26,7 @@ okp4d tx crisis invariant-broken [module-name] [invariant-route] [flags] --keyring-backend string Select keyring's backend (os|file|kwallet|pass|test|memory) (default "test") --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_decode.md b/docs/command/okp4d_tx_decode.md index 2106479b..cdc7ef56 100644 --- a/docs/command/okp4d_tx_decode.md +++ b/docs/command/okp4d_tx_decode.md @@ -27,7 +27,7 @@ okp4d tx decode [protobuf-byte-string] [flags] --keyring-backend string Select keyring's backend (os|file|kwallet|pass|test|memory) (default "test") --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_distribution_fund-community-pool.md b/docs/command/okp4d_tx_distribution_fund-community-pool.md index 3c0f7055..23980d0c 100644 --- a/docs/command/okp4d_tx_distribution_fund-community-pool.md +++ b/docs/command/okp4d_tx_distribution_fund-community-pool.md @@ -33,7 +33,7 @@ okp4d tx distribution fund-community-pool [amount] [flags] --keyring-backend string Select keyring's backend (os|file|kwallet|pass|test|memory) (default "test") --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_distribution_set-withdraw-addr.md b/docs/command/okp4d_tx_distribution_set-withdraw-addr.md index 92aed693..8163e201 100644 --- a/docs/command/okp4d_tx_distribution_set-withdraw-addr.md +++ b/docs/command/okp4d_tx_distribution_set-withdraw-addr.md @@ -33,7 +33,7 @@ okp4d tx distribution set-withdraw-addr [withdraw-addr] [flags] --keyring-backend string Select keyring's backend (os|file|kwallet|pass|test|memory) (default "test") --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_distribution_withdraw-all-rewards.md b/docs/command/okp4d_tx_distribution_withdraw-all-rewards.md index 171acbb5..27dbad53 100644 --- a/docs/command/okp4d_tx_distribution_withdraw-all-rewards.md +++ b/docs/command/okp4d_tx_distribution_withdraw-all-rewards.md @@ -35,7 +35,7 @@ okp4d tx distribution withdraw-all-rewards [flags] --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device --max-msgs int Limit the number of messages per tx (0 for unlimited) - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_distribution_withdraw-rewards.md b/docs/command/okp4d_tx_distribution_withdraw-rewards.md index dfa04dcf..950a8a73 100644 --- a/docs/command/okp4d_tx_distribution_withdraw-rewards.md +++ b/docs/command/okp4d_tx_distribution_withdraw-rewards.md @@ -36,7 +36,7 @@ okp4d tx distribution withdraw-rewards [validator-addr] [flags] --keyring-backend string Select keyring's backend (os|file|kwallet|pass|test|memory) (default "test") --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_encode.md b/docs/command/okp4d_tx_encode.md index 9ac695bc..b9136c44 100644 --- a/docs/command/okp4d_tx_encode.md +++ b/docs/command/okp4d_tx_encode.md @@ -32,7 +32,7 @@ okp4d tx encode [file] [flags] --keyring-backend string Select keyring's backend (os|file|kwallet|pass|test|memory) (default "test") --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_feegrant_grant.md b/docs/command/okp4d_tx_feegrant_grant.md index c70e5c47..8affc6c2 100644 --- a/docs/command/okp4d_tx_feegrant_grant.md +++ b/docs/command/okp4d_tx_feegrant_grant.md @@ -39,7 +39,7 @@ okp4d tx feegrant grant [granter_key_or_address] [grantee] [flags] --keyring-backend string Select keyring's backend (os|file|kwallet|pass|test|memory) (default "test") --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_feegrant_revoke.md b/docs/command/okp4d_tx_feegrant_revoke.md index 9f502ebf..fb84324e 100644 --- a/docs/command/okp4d_tx_feegrant_revoke.md +++ b/docs/command/okp4d_tx_feegrant_revoke.md @@ -34,7 +34,7 @@ okp4d tx feegrant revoke [granter] [grantee] [flags] --keyring-backend string Select keyring's backend (os|file|kwallet|pass|test|memory) (default "test") --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_gov_deposit.md b/docs/command/okp4d_tx_gov_deposit.md index 402a3798..4dfc05b4 100644 --- a/docs/command/okp4d_tx_gov_deposit.md +++ b/docs/command/okp4d_tx_gov_deposit.md @@ -34,7 +34,7 @@ okp4d tx gov deposit [proposal-id] [deposit] [flags] --keyring-backend string Select keyring's backend (os|file|kwallet|pass|test|memory) (default "test") --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_gov_draft-proposal.md b/docs/command/okp4d_tx_gov_draft-proposal.md index 394188b4..7c8702f3 100644 --- a/docs/command/okp4d_tx_gov_draft-proposal.md +++ b/docs/command/okp4d_tx_gov_draft-proposal.md @@ -26,7 +26,7 @@ okp4d tx gov draft-proposal [flags] --keyring-backend string Select keyring's backend (os|file|kwallet|pass|test|memory) (default "test") --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_gov_submit-legacy-proposal.md b/docs/command/okp4d_tx_gov_submit-legacy-proposal.md index 04205df5..c8397b7d 100644 --- a/docs/command/okp4d_tx_gov_submit-legacy-proposal.md +++ b/docs/command/okp4d_tx_gov_submit-legacy-proposal.md @@ -12,12 +12,12 @@ $ okp4d tx gov submit-legacy-proposal --proposal="path/to/proposal.json" --from Where proposal.json contains: -{ +\{ "title": "Test Proposal", "description": "My awesome proposal", "type": "Text", "deposit": "10test" -} +\} Which is equivalent to: @@ -49,7 +49,7 @@ okp4d tx gov submit-legacy-proposal [flags] --keyring-backend string Select keyring's backend (os|file|kwallet|pass|test|memory) (default "test") --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_gov_submit-legacy-proposal_cancel-software-upgrade.md b/docs/command/okp4d_tx_gov_submit-legacy-proposal_cancel-software-upgrade.md index 698f25e8..8898f70f 100644 --- a/docs/command/okp4d_tx_gov_submit-legacy-proposal_cancel-software-upgrade.md +++ b/docs/command/okp4d_tx_gov_submit-legacy-proposal_cancel-software-upgrade.md @@ -32,7 +32,7 @@ okp4d tx gov submit-legacy-proposal cancel-software-upgrade [flags] --keyring-backend string Select keyring's backend (os|file|kwallet|pass|test|memory) (default "test") --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_gov_submit-legacy-proposal_ibc-upgrade.md b/docs/command/okp4d_tx_gov_submit-legacy-proposal_ibc-upgrade.md index b568c4e8..c2702975 100644 --- a/docs/command/okp4d_tx_gov_submit-legacy-proposal_ibc-upgrade.md +++ b/docs/command/okp4d_tx_gov_submit-legacy-proposal_ibc-upgrade.md @@ -7,14 +7,14 @@ Submit an IBC upgrade proposal Submit an IBC client breaking upgrade proposal along with an initial deposit. The client state specified is the upgraded client state representing the upgraded chain Example Upgraded Client State JSON: -{ +\{ "@type":"/ibc.lightclients.tendermint.v1.ClientState", "chain_id":"testchain1", "unbonding_period":"1814400s", - "latest_height":{"revision_number":"0","revision_height":"2"}, - "proof_specs":[{"leaf_spec":{"hash":"SHA256","prehash_key":"NO_HASH","prehash_value":"SHA256","length":"VAR_PROTO","prefix":"AA=="},"inner_spec":{"child_order":[0,1],"child_size":33,"min_prefix_length":4,"max_prefix_length":12,"empty_child":null,"hash":"SHA256"},"max_depth":0,"min_depth":0},{"leaf_spec":{"hash":"SHA256","prehash_key":"NO_HASH","prehash_value":"SHA256","length":"VAR_PROTO","prefix":"AA=="},"inner_spec":{"child_order":[0,1],"child_size":32,"min_prefix_length":1,"max_prefix_length":1,"empty_child":null,"hash":"SHA256"},"max_depth":0,"min_depth":0}], + "latest_height":\{"revision_number":"0","revision_height":"2"\}, + "proof_specs":[\{"leaf_spec":\{"hash":"SHA256","prehash_key":"NO_HASH","prehash_value":"SHA256","length":"VAR_PROTO","prefix":"AA=="\},"inner_spec":\{"child_order":[0,1],"child_size":33,"min_prefix_length":4,"max_prefix_length":12,"empty_child":null,"hash":"SHA256"\},"max_depth":0,"min_depth":0\},\{"leaf_spec":\{"hash":"SHA256","prehash_key":"NO_HASH","prehash_value":"SHA256","length":"VAR_PROTO","prefix":"AA=="\},"inner_spec":\{"child_order":[0,1],"child_size":32,"min_prefix_length":1,"max_prefix_length":1,"empty_child":null,"hash":"SHA256"\},"max_depth":0,"min_depth":0\}], "upgrade_path":["upgrade","upgradedIBCState"], -} +\} ``` okp4d tx gov submit-legacy-proposal ibc-upgrade [name] [height] [path/to/upgraded_client_state.json] [flags] @@ -42,7 +42,7 @@ okp4d tx gov submit-legacy-proposal ibc-upgrade [name] [height] [path/to/upgrade --keyring-backend string Select keyring's backend (os|file|kwallet|pass|test|memory) (default "test") --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_gov_submit-legacy-proposal_param-change.md b/docs/command/okp4d_tx_gov_submit-legacy-proposal_param-change.md index 6dce60e7..fa9dee45 100644 --- a/docs/command/okp4d_tx_gov_submit-legacy-proposal_param-change.md +++ b/docs/command/okp4d_tx_gov_submit-legacy-proposal_param-change.md @@ -17,22 +17,22 @@ Proper vetting of a parameter change proposal should prevent this from happening regardless. Example: -$ okp4d tx gov submit-proposal param-change --from= +$ okp4d tx gov submit-proposal param-change <path/to/proposal.json> --from=<key_or_address> Where proposal.json contains: -{ +\{ "title": "Staking Param Change", "description": "Update max validators", "changes": [ - { + \{ "subspace": "staking", "key": "MaxValidators", "value": 105 - } + \} ], "deposit": "1000stake" -} +\} ``` okp4d tx gov submit-legacy-proposal param-change [proposal-file] [flags] @@ -58,7 +58,7 @@ okp4d tx gov submit-legacy-proposal param-change [proposal-file] [flags] --keyring-backend string Select keyring's backend (os|file|kwallet|pass|test|memory) (default "test") --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_gov_submit-legacy-proposal_software-upgrade.md b/docs/command/okp4d_tx_gov_submit-legacy-proposal_software-upgrade.md index a99d2a2d..84201501 100644 --- a/docs/command/okp4d_tx_gov_submit-legacy-proposal_software-upgrade.md +++ b/docs/command/okp4d_tx_gov_submit-legacy-proposal_software-upgrade.md @@ -6,7 +6,7 @@ Submit a software upgrade proposal Submit a software upgrade along with an initial deposit. Please specify a unique name and height for the upgrade to take effect. -You may include info to reference a binary download link, in a format compatible with: +You may include info to reference a binary download link, in a format compatible with: [https://github.com/cosmos/cosmos-sdk/tree/main/cosmovisor](https://github.com/cosmos/cosmos-sdk/tree/main/cosmovisor) ``` okp4d tx gov submit-legacy-proposal software-upgrade [name] (--upgrade-height [height]) (--upgrade-info [info]) [flags] @@ -36,7 +36,7 @@ okp4d tx gov submit-legacy-proposal software-upgrade [name] (--upgrade-height [h --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device --no-validate Skip validation of the upgrade info - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_gov_submit-legacy-proposal_update-client.md b/docs/command/okp4d_tx_gov_submit-legacy-proposal_update-client.md index dd5b1247..80f28b7b 100644 --- a/docs/command/okp4d_tx_gov_submit-legacy-proposal_update-client.md +++ b/docs/command/okp4d_tx_gov_submit-legacy-proposal_update-client.md @@ -34,7 +34,7 @@ okp4d tx gov submit-legacy-proposal update-client [subject-client-id] [substitut --keyring-backend string Select keyring's backend (os|file|kwallet|pass|test|memory) (default "test") --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_gov_submit-proposal.md b/docs/command/okp4d_tx_gov_submit-proposal.md index edb5429d..84db5d25 100644 --- a/docs/command/okp4d_tx_gov_submit-proposal.md +++ b/docs/command/okp4d_tx_gov_submit-proposal.md @@ -12,15 +12,15 @@ $ okp4d tx gov submit-proposal path/to/proposal.json Where proposal.json contains: -{ +\{ // array of proto-JSON-encoded sdk.Msgs "messages": [ - { + \{ "@type": "/cosmos.bank.v1beta1.MsgSend", "from_address": "cosmos1...", "to_address": "cosmos1...", - "amount":[{"denom": "stake","amount": "10"}] - } + "amount":[\{"denom": "stake","amount": "10"\}] + \} ], // metadata can be any of base64 encoded, raw text, stringified json, IPFS link to json // see below for example metadata @@ -28,17 +28,17 @@ Where proposal.json contains: "deposit": "10stake" "title: "My proposal" "summary": "A short summary of my proposal" -} +\} metadata example: -{ +\{ "title": "", "authors": [""], "summary": "", "details": "", "proposal_forum_url": "", "vote_option_context": "", -} +\} ``` okp4d tx gov submit-proposal [path/to/proposal.json] [flags] @@ -64,7 +64,7 @@ okp4d tx gov submit-proposal [path/to/proposal.json] [flags] --keyring-backend string Select keyring's backend (os|file|kwallet|pass|test|memory) (default "test") --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_gov_vote.md b/docs/command/okp4d_tx_gov_vote.md index e6f684d9..069bdfd3 100644 --- a/docs/command/okp4d_tx_gov_vote.md +++ b/docs/command/okp4d_tx_gov_vote.md @@ -35,7 +35,7 @@ okp4d tx gov vote [proposal-id] [option] [flags] --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device --metadata string Specify metadata of the vote - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_gov_weighted-vote.md b/docs/command/okp4d_tx_gov_weighted-vote.md index 44946980..4263ed97 100644 --- a/docs/command/okp4d_tx_gov_weighted-vote.md +++ b/docs/command/okp4d_tx_gov_weighted-vote.md @@ -35,7 +35,7 @@ okp4d tx gov weighted-vote [proposal-id] [weighted-options] [flags] --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device --metadata string Specify metadata of the weighted vote - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_group_create-group-policy.md b/docs/command/okp4d_tx_group_create-group-policy.md index b51b677e..f3c2ef4f 100644 --- a/docs/command/okp4d_tx_group_create-group-policy.md +++ b/docs/command/okp4d_tx_group_create-group-policy.md @@ -55,7 +55,7 @@ Here, we can use percentage decision policy when needed, where 0 < percentage <= --keyring-backend string Select keyring's backend (os|file|kwallet|pass|test|memory) (default "test") --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_group_create-group-with-policy.md b/docs/command/okp4d_tx_group_create-group-with-policy.md index 6f7a907d..a8635f0c 100644 --- a/docs/command/okp4d_tx_group_create-group-with-policy.md +++ b/docs/command/okp4d_tx_group_create-group-with-policy.md @@ -70,7 +70,7 @@ and policy.json contains: --keyring-backend string Select keyring's backend (os|file|kwallet|pass|test|memory) (default "test") --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_group_create-group.md b/docs/command/okp4d_tx_group_create-group.md index fba44938..b16a5842 100644 --- a/docs/command/okp4d_tx_group_create-group.md +++ b/docs/command/okp4d_tx_group_create-group.md @@ -55,7 +55,7 @@ Where members.json contains: --keyring-backend string Select keyring's backend (os|file|kwallet|pass|test|memory) (default "test") --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_group_draft-proposal.md b/docs/command/okp4d_tx_group_draft-proposal.md index 8502e243..a5b9da6c 100644 --- a/docs/command/okp4d_tx_group_draft-proposal.md +++ b/docs/command/okp4d_tx_group_draft-proposal.md @@ -26,7 +26,7 @@ okp4d tx group draft-proposal [flags] --keyring-backend string Select keyring's backend (os|file|kwallet|pass|test|memory) (default "test") --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_group_exec.md b/docs/command/okp4d_tx_group_exec.md index 639372ff..5a39fa2c 100644 --- a/docs/command/okp4d_tx_group_exec.md +++ b/docs/command/okp4d_tx_group_exec.md @@ -26,7 +26,7 @@ okp4d tx group exec [proposal-id] [flags] --keyring-backend string Select keyring's backend (os|file|kwallet|pass|test|memory) (default "test") --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_group_leave-group.md b/docs/command/okp4d_tx_group_leave-group.md index 50a06a15..89fefe5d 100644 --- a/docs/command/okp4d_tx_group_leave-group.md +++ b/docs/command/okp4d_tx_group_leave-group.md @@ -35,7 +35,7 @@ okp4d tx group leave-group [member-address] [group-id] [flags] --keyring-backend string Select keyring's backend (os|file|kwallet|pass|test|memory) (default "test") --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_group_submit-proposal.md b/docs/command/okp4d_tx_group_submit-proposal.md index acbb2b17..0606ba47 100644 --- a/docs/command/okp4d_tx_group_submit-proposal.md +++ b/docs/command/okp4d_tx_group_submit-proposal.md @@ -72,7 +72,7 @@ metadata example: --keyring-backend string Select keyring's backend (os|file|kwallet|pass|test|memory) (default "test") --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_group_update-group-admin.md b/docs/command/okp4d_tx_group_update-group-admin.md index 10afbef0..8771f8df 100644 --- a/docs/command/okp4d_tx_group_update-group-admin.md +++ b/docs/command/okp4d_tx_group_update-group-admin.md @@ -26,7 +26,7 @@ okp4d tx group update-group-admin [admin] [group-id] [new-admin] [flags] --keyring-backend string Select keyring's backend (os|file|kwallet|pass|test|memory) (default "test") --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_group_update-group-members.md b/docs/command/okp4d_tx_group_update-group-members.md index 6ffd630a..0135ad6b 100644 --- a/docs/command/okp4d_tx_group_update-group-members.md +++ b/docs/command/okp4d_tx_group_update-group-members.md @@ -53,7 +53,7 @@ Set a member's weight to "0" to delete it. --keyring-backend string Select keyring's backend (os|file|kwallet|pass|test|memory) (default "test") --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_group_update-group-metadata.md b/docs/command/okp4d_tx_group_update-group-metadata.md index 8ab4fe89..e48c69cb 100644 --- a/docs/command/okp4d_tx_group_update-group-metadata.md +++ b/docs/command/okp4d_tx_group_update-group-metadata.md @@ -26,7 +26,7 @@ okp4d tx group update-group-metadata [admin] [group-id] [metadata] [flags] --keyring-backend string Select keyring's backend (os|file|kwallet|pass|test|memory) (default "test") --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_group_update-group-policy-admin.md b/docs/command/okp4d_tx_group_update-group-policy-admin.md index 17c7a48f..da3e1cce 100644 --- a/docs/command/okp4d_tx_group_update-group-policy-admin.md +++ b/docs/command/okp4d_tx_group_update-group-policy-admin.md @@ -26,7 +26,7 @@ okp4d tx group update-group-policy-admin [admin] [group-policy-account] [new-adm --keyring-backend string Select keyring's backend (os|file|kwallet|pass|test|memory) (default "test") --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_group_update-group-policy-decision-policy.md b/docs/command/okp4d_tx_group_update-group-policy-decision-policy.md index 8a385e16..6b5cdd97 100644 --- a/docs/command/okp4d_tx_group_update-group-policy-decision-policy.md +++ b/docs/command/okp4d_tx_group_update-group-policy-decision-policy.md @@ -26,7 +26,7 @@ okp4d tx group update-group-policy-decision-policy [admin] [group-policy-account --keyring-backend string Select keyring's backend (os|file|kwallet|pass|test|memory) (default "test") --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_group_update-group-policy-metadata.md b/docs/command/okp4d_tx_group_update-group-policy-metadata.md index 71685547..b306e6e4 100644 --- a/docs/command/okp4d_tx_group_update-group-policy-metadata.md +++ b/docs/command/okp4d_tx_group_update-group-policy-metadata.md @@ -26,7 +26,7 @@ okp4d tx group update-group-policy-metadata [admin] [group-policy-account] [new- --keyring-backend string Select keyring's backend (os|file|kwallet|pass|test|memory) (default "test") --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_group_vote.md b/docs/command/okp4d_tx_group_vote.md index 746a195b..372a096d 100644 --- a/docs/command/okp4d_tx_group_vote.md +++ b/docs/command/okp4d_tx_group_vote.md @@ -42,7 +42,7 @@ okp4d tx group vote [proposal-id] [voter] [vote-option] [metadata] [flags] --keyring-backend string Select keyring's backend (os|file|kwallet|pass|test|memory) (default "test") --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_group_withdraw-proposal.md b/docs/command/okp4d_tx_group_withdraw-proposal.md index 72bbee8a..03a5a8b7 100644 --- a/docs/command/okp4d_tx_group_withdraw-proposal.md +++ b/docs/command/okp4d_tx_group_withdraw-proposal.md @@ -35,7 +35,7 @@ okp4d tx group withdraw-proposal [proposal-id] [group-policy-admin-or-proposer] --keyring-backend string Select keyring's backend (os|file|kwallet|pass|test|memory) (default "test") --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_ibc-fee_pay-packet-fee.md b/docs/command/okp4d_tx_ibc-fee_pay-packet-fee.md index 388e09e5..89e9e856 100644 --- a/docs/command/okp4d_tx_ibc-fee_pay-packet-fee.md +++ b/docs/command/okp4d_tx_ibc-fee_pay-packet-fee.md @@ -37,7 +37,7 @@ okp4d tx ibc-fee pay-packet-fee transfer channel-0 1 --recv-fee 10stake --ack-fe --keyring-backend string Select keyring's backend (os|file|kwallet|pass|test|memory) (default "test") --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_ibc-fee_register-counterparty-payee.md b/docs/command/okp4d_tx_ibc-fee_register-counterparty-payee.md index 40c11b5f..56d8d0b9 100644 --- a/docs/command/okp4d_tx_ibc-fee_register-counterparty-payee.md +++ b/docs/command/okp4d_tx_ibc-fee_register-counterparty-payee.md @@ -36,7 +36,7 @@ okp4d tx ibc-fee register-counterparty-payee transfer channel-0 cosmos1rsp837a4k --keyring-backend string Select keyring's backend (os|file|kwallet|pass|test|memory) (default "test") --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_ibc-fee_register-payee.md b/docs/command/okp4d_tx_ibc-fee_register-payee.md index ba9399fe..f7c9eb0d 100644 --- a/docs/command/okp4d_tx_ibc-fee_register-payee.md +++ b/docs/command/okp4d_tx_ibc-fee_register-payee.md @@ -36,7 +36,7 @@ okp4d tx ibc-fee register-payee transfer channel-0 cosmos1rsp837a4kvtgp2m4uqzdge --keyring-backend string Select keyring's backend (os|file|kwallet|pass|test|memory) (default "test") --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_ibc-transfer_transfer.md b/docs/command/okp4d_tx_ibc-transfer_transfer.md index 79ad3247..b53063f3 100644 --- a/docs/command/okp4d_tx_ibc-transfer_transfer.md +++ b/docs/command/okp4d_tx_ibc-transfer_transfer.md @@ -6,7 +6,7 @@ Transfer a fungible token through IBC Transfer a fungible token through IBC. Timeouts can be specified as absolute or relative using the "absolute-timeouts" flag. Timeout height can be set by passing in the height string -in the form {revision}-{height} using the "packet-timeout-height" flag. Relative timeout height is added to the block +in the form \{revision\}-\{height\} using the "packet-timeout-height" flag. Relative timeout height is added to the block height queried from the latest consensus state corresponding to the counterparty channel. Relative timeout timestamp is added to the greater value of the local clock time and the block timestamp queried from the latest consensus state corresponding to the counterparty channel. Any timeout set to 0 is disabled. @@ -43,7 +43,7 @@ okp4d tx ibc-transfer transfer [src-port] [src-channel] [receiver] [amount] --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 be sent along with the packet. - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_ibc_client_create.md b/docs/command/okp4d_tx_ibc_client_create.md index 0fff425c..14aab933 100644 --- a/docs/command/okp4d_tx_ibc_client_create.md +++ b/docs/command/okp4d_tx_ibc_client_create.md @@ -5,8 +5,8 @@ create new IBC client ### Synopsis create a new IBC client with the specified client state and consensus state - - ClientState JSON example: {"@type":"/ibc.lightclients.solomachine.v1.ClientState","sequence":"1","frozen_sequence":"0","consensus_state":{"public_key":{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"AtK50+5pJOoaa04qqAqrnyAqsYrwrR/INnA6UPIaYZlp"},"diversifier":"testing","timestamp":"10"},"allow_update_after_proposal":false} - - ConsensusState JSON example: {"@type":"/ibc.lightclients.solomachine.v1.ConsensusState","public_key":{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"AtK50+5pJOoaa04qqAqrnyAqsYrwrR/INnA6UPIaYZlp"},"diversifier":"testing","timestamp":"10"} + - ClientState JSON example: \{"@type":"/ibc.lightclients.solomachine.v1.ClientState","sequence":"1","frozen_sequence":"0","consensus_state":\{"public_key":\{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"AtK50+5pJOoaa04qqAqrnyAqsYrwrR/INnA6UPIaYZlp"\},"diversifier":"testing","timestamp":"10"\},"allow_update_after_proposal":false\} + - ConsensusState JSON example: \{"@type":"/ibc.lightclients.solomachine.v1.ConsensusState","public_key":\{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"AtK50+5pJOoaa04qqAqrnyAqsYrwrR/INnA6UPIaYZlp"\},"diversifier":"testing","timestamp":"10"\} ``` okp4d tx ibc client create [path/to/client_state.json] [path/to/consensus_state.json] [flags] @@ -15,7 +15,7 @@ okp4d tx ibc client create [path/to/client_state.json] [path/to/consensus_state. ### Examples ``` -okp4d tx ibc client create [path/to/client_state.json] [path/to/consensus_state.json] --from node0 --home ../node0/<app>cli --chain-id $CID +okp4d tx ibc client create [path/to/client_state.json] [path/to/consensus_state.json] --from node0 --home ../node0/cli --chain-id $CID ``` ### Options @@ -38,7 +38,7 @@ okp4d tx ibc client create [path/to/client_state.json] [path/to/consensus_state. --keyring-backend string Select keyring's backend (os|file|kwallet|pass|test|memory) (default "test") --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_ibc_client_misbehaviour.md b/docs/command/okp4d_tx_ibc_client_misbehaviour.md index 97677331..32191512 100644 --- a/docs/command/okp4d_tx_ibc_client_misbehaviour.md +++ b/docs/command/okp4d_tx_ibc_client_misbehaviour.md @@ -13,7 +13,7 @@ okp4d tx ibc client misbehaviour [clientID] [path/to/misbehaviour.json] [flags] ### Examples ``` -okp4d tx ibc client misbehaviour [clientID] [path/to/misbehaviour.json] --from node0 --home ../node0/<app>cli --chain-id $CID +okp4d tx ibc client misbehaviour [clientID] [path/to/misbehaviour.json] --from node0 --home ../node0/cli --chain-id $CID ``` ### Options @@ -36,7 +36,7 @@ okp4d tx ibc client misbehaviour [clientID] [path/to/misbehaviour.json] --from n --keyring-backend string Select keyring's backend (os|file|kwallet|pass|test|memory) (default "test") --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_ibc_client_update.md b/docs/command/okp4d_tx_ibc_client_update.md index 8a1bbbb6..5e4374f0 100644 --- a/docs/command/okp4d_tx_ibc_client_update.md +++ b/docs/command/okp4d_tx_ibc_client_update.md @@ -13,7 +13,7 @@ okp4d tx ibc client update [client-id] [path/to/client_msg.json] [flags] ### Examples ``` -okp4d tx ibc client update [client-id] [path/to/client_msg.json] --from node0 --home ../node0/<app>cli --chain-id $CID +okp4d tx ibc client update [client-id] [path/to/client_msg.json] --from node0 --home ../node0/cli --chain-id $CID ``` ### Options @@ -36,7 +36,7 @@ okp4d tx ibc client update [client-id] [path/to/client_msg.json] --from node0 -- --keyring-backend string Select keyring's backend (os|file|kwallet|pass|test|memory) (default "test") --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_ibc_client_upgrade.md b/docs/command/okp4d_tx_ibc_client_upgrade.md index 0c55d38f..3c015a17 100644 --- a/docs/command/okp4d_tx_ibc_client_upgrade.md +++ b/docs/command/okp4d_tx_ibc_client_upgrade.md @@ -5,8 +5,8 @@ upgrade an IBC client ### Synopsis upgrade the IBC client associated with the provided client identifier while providing proof committed by the counterparty chain to the new client and consensus states - - ClientState JSON example: {"@type":"/ibc.lightclients.solomachine.v1.ClientState","sequence":"1","frozen_sequence":"0","consensus_state":{"public_key":{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"AtK50+5pJOoaa04qqAqrnyAqsYrwrR/INnA6UPIaYZlp"},"diversifier":"testing","timestamp":"10"},"allow_update_after_proposal":false} - - ConsensusState JSON example: {"@type":"/ibc.lightclients.solomachine.v1.ConsensusState","public_key":{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"AtK50+5pJOoaa04qqAqrnyAqsYrwrR/INnA6UPIaYZlp"},"diversifier":"testing","timestamp":"10"} + - ClientState JSON example: \{"@type":"/ibc.lightclients.solomachine.v1.ClientState","sequence":"1","frozen_sequence":"0","consensus_state":\{"public_key":\{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"AtK50+5pJOoaa04qqAqrnyAqsYrwrR/INnA6UPIaYZlp"\},"diversifier":"testing","timestamp":"10"\},"allow_update_after_proposal":false\} + - ConsensusState JSON example: \{"@type":"/ibc.lightclients.solomachine.v1.ConsensusState","public_key":\{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"AtK50+5pJOoaa04qqAqrnyAqsYrwrR/INnA6UPIaYZlp"\},"diversifier":"testing","timestamp":"10"\} ``` okp4d tx ibc client upgrade [client-identifier] [path/to/client_state.json] [path/to/consensus_state.json] [upgrade-client-proof] [upgrade-consensus-state-proof] [flags] @@ -15,7 +15,7 @@ okp4d tx ibc client upgrade [client-identifier] [path/to/client_state.json] [pat ### Examples ``` -okp4d tx ibc client upgrade [client-identifier] [path/to/client_state.json] [path/to/consensus_state.json] [client-state-proof] [consensus-state-proof] --from node0 --home ../node0/<app>cli --chain-id $CID +okp4d tx ibc client upgrade [client-identifier] [path/to/client_state.json] [path/to/consensus_state.json] [client-state-proof] [consensus-state-proof] --from node0 --home ../node0/cli --chain-id $CID ``` ### Options @@ -38,7 +38,7 @@ okp4d tx ibc client upgrade [client-identifier] [path/to/client_state.json] [pat --keyring-backend string Select keyring's backend (os|file|kwallet|pass|test|memory) (default "test") --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_interchain-accounts_controller_register.md b/docs/command/okp4d_tx_interchain-accounts_controller_register.md index 751fbab9..ac7907aa 100644 --- a/docs/command/okp4d_tx_interchain-accounts_controller_register.md +++ b/docs/command/okp4d_tx_interchain-accounts_controller_register.md @@ -7,7 +7,7 @@ Register an interchain account on the provided connection. Register an account on the counterparty chain via the connection id from the source chain. Connection identifier should be for the source chain and the interchain account will be created on the counterparty chain. Callers are expected to -provide the appropriate application version string via {version} flag. Generates a new +provide the appropriate application version string via \{version\} flag. Generates a new port identifier using the provided owner string, binds to the port identifier and claims the associated capability. @@ -35,7 +35,7 @@ okp4d tx interchain-accounts controller register [connection-id] [flags] --keyring-backend string Select keyring's backend (os|file|kwallet|pass|test|memory) (default "test") --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_interchain-accounts_controller_send-tx.md b/docs/command/okp4d_tx_interchain-accounts_controller_send-tx.md index 08290b96..1ef47741 100644 --- a/docs/command/okp4d_tx_interchain-accounts_controller_send-tx.md +++ b/docs/command/okp4d_tx_interchain-accounts_controller_send-tx.md @@ -6,7 +6,7 @@ Send an interchain account tx on the provided connection. Submits pre-built packet data containing messages to be executed on the host chain and attempts to send the packet. Packet data is provided as json, file or string. An -appropriate relative timeoutTimestamp must be provided with flag {relative-packet-timeout} +appropriate relative timeoutTimestamp must be provided with flag \{relative-packet-timeout\} ``` okp4d tx interchain-accounts controller send-tx [connection-id] [path/to/packet_msg.json] [flags] @@ -32,7 +32,7 @@ okp4d tx interchain-accounts controller send-tx [connection-id] [path/to/packet_ --keyring-backend string Select keyring's backend (os|file|kwallet|pass|test|memory) (default "test") --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_multi-sign.md b/docs/command/okp4d_tx_multi-sign.md index 769fa1bd..b8e92559 100644 --- a/docs/command/okp4d_tx_multi-sign.md +++ b/docs/command/okp4d_tx_multi-sign.md @@ -47,7 +47,7 @@ okp4d tx multi-sign [file] [name] [[signature]...] [flags] --keyring-backend string Select keyring's backend (os|file|kwallet|pass|test|memory) (default "test") --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_sign-batch.md b/docs/command/okp4d_tx_sign-batch.md index ddbfecfa..ce512eea 100644 --- a/docs/command/okp4d_tx_sign-batch.md +++ b/docs/command/okp4d_tx_sign-batch.md @@ -20,7 +20,7 @@ transaction that is signed. If --account-number or --sequence flag is used when offline=false, they are ignored and overwritten by the default flag values. -The --multisig= flag generates a signature on behalf of a multisig +The --multisig=<multisig_key> flag generates a signature on behalf of a multisig account key. It implies --signature-only. ``` @@ -49,7 +49,7 @@ okp4d tx sign-batch [file] ([file2]...) [flags] --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device --multisig string Address or key name of the multisig account on behalf of which the transaction shall be signed - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_sign.md b/docs/command/okp4d_tx_sign.md index 41ffdd6d..55a6c014 100644 --- a/docs/command/okp4d_tx_sign.md +++ b/docs/command/okp4d_tx_sign.md @@ -14,7 +14,7 @@ As a result, the account and sequence number queries will not be performed and it is required to set such parameters manually. Note, invalid values will cause the transaction to fail. -The --multisig= flag generates a signature on behalf of a multisig account +The --multisig=<multisig_key> flag generates a signature on behalf of a multisig account key. It implies --signature-only. Full multisig signed transactions may eventually be generated via the 'multisign' command. @@ -44,7 +44,7 @@ okp4d tx sign [file] [flags] --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device --multisig string Address or key name of the multisig account on behalf of which the transaction shall be signed - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_slashing_unjail.md b/docs/command/okp4d_tx_slashing_unjail.md index 37659e8c..3b6f680c 100644 --- a/docs/command/okp4d_tx_slashing_unjail.md +++ b/docs/command/okp4d_tx_slashing_unjail.md @@ -32,7 +32,7 @@ okp4d tx slashing unjail [flags] --keyring-backend string Select keyring's backend (os|file|kwallet|pass|test|memory) (default "test") --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_staking_cancel-unbond.md b/docs/command/okp4d_tx_staking_cancel-unbond.md index f6e65995..aed722b6 100644 --- a/docs/command/okp4d_tx_staking_cancel-unbond.md +++ b/docs/command/okp4d_tx_staking_cancel-unbond.md @@ -16,7 +16,7 @@ okp4d tx staking cancel-unbond [validator-addr] [amount] [creation-height] [flag ### Examples ``` -okp4d tx staking cancel-unbond okp4valoper1gghjut3ccd8ay0zduzj64hwre2fxs9ldmqhffj 100stake 2 --from mykey +$ okp4d tx staking cancel-unbond okp4valoper1gghjut3ccd8ay0zduzj64hwre2fxs9ldmqhffj 100stake 2 --from mykey ``` ### Options @@ -39,7 +39,7 @@ okp4d tx staking cancel-unbond okp4valoper1gghjut3ccd8ay0zduzj64hwre2fxs9ldmqhff --keyring-backend string Select keyring's backend (os|file|kwallet|pass|test|memory) (default "test") --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_staking_create-validator.md b/docs/command/okp4d_tx_staking_create-validator.md index 8e65eb46..341af88b 100644 --- a/docs/command/okp4d_tx_staking_create-validator.md +++ b/docs/command/okp4d_tx_staking_create-validator.md @@ -35,7 +35,7 @@ okp4d tx staking create-validator [flags] --ledger Use a connected Ledger device --min-self-delegation string The minimum self delegation required on the validator --moniker string The validator's name - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --node-id string The node's ID --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) diff --git a/docs/command/okp4d_tx_staking_delegate.md b/docs/command/okp4d_tx_staking_delegate.md index 161c81a6..35f86ca3 100644 --- a/docs/command/okp4d_tx_staking_delegate.md +++ b/docs/command/okp4d_tx_staking_delegate.md @@ -33,7 +33,7 @@ okp4d tx staking delegate [validator-addr] [amount] [flags] --keyring-backend string Select keyring's backend (os|file|kwallet|pass|test|memory) (default "test") --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_staking_edit-validator.md b/docs/command/okp4d_tx_staking_edit-validator.md index 85887011..4a785721 100644 --- a/docs/command/okp4d_tx_staking_edit-validator.md +++ b/docs/command/okp4d_tx_staking_edit-validator.md @@ -31,7 +31,7 @@ okp4d tx staking edit-validator [flags] --ledger Use a connected Ledger device --min-self-delegation string The minimum self delegation required on the validator --new-moniker string The validator's name (default "[do-not-modify]") - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_staking_redelegate.md b/docs/command/okp4d_tx_staking_redelegate.md index c2b8fec5..be8f0bc7 100644 --- a/docs/command/okp4d_tx_staking_redelegate.md +++ b/docs/command/okp4d_tx_staking_redelegate.md @@ -33,7 +33,7 @@ okp4d tx staking redelegate [src-validator-addr] [dst-validator-addr] [amount] [ --keyring-backend string Select keyring's backend (os|file|kwallet|pass|test|memory) (default "test") --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_staking_unbond.md b/docs/command/okp4d_tx_staking_unbond.md index de313ada..bfaaab81 100644 --- a/docs/command/okp4d_tx_staking_unbond.md +++ b/docs/command/okp4d_tx_staking_unbond.md @@ -33,7 +33,7 @@ okp4d tx staking unbond [validator-addr] [amount] [flags] --keyring-backend string Select keyring's backend (os|file|kwallet|pass|test|memory) (default "test") --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_validate-signatures.md b/docs/command/okp4d_tx_validate-signatures.md index 6b17bf07..b54ec1be 100644 --- a/docs/command/okp4d_tx_validate-signatures.md +++ b/docs/command/okp4d_tx_validate-signatures.md @@ -36,7 +36,7 @@ okp4d tx validate-signatures [file] [flags] --keyring-backend string Select keyring's backend (os|file|kwallet|pass|test|memory) (default "test") --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_vesting_create-cliff-vesting-account.md b/docs/command/okp4d_tx_vesting_create-cliff-vesting-account.md index c68e6840..9092eb1f 100644 --- a/docs/command/okp4d_tx_vesting_create-cliff-vesting-account.md +++ b/docs/command/okp4d_tx_vesting_create-cliff-vesting-account.md @@ -34,7 +34,7 @@ okp4d tx vesting create-cliff-vesting-account [to_address] [amount] [cliff_time] --keyring-backend string Select keyring's backend (os|file|kwallet|pass|test|memory) (default "test") --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_vesting_create-periodic-vesting-account.md b/docs/command/okp4d_tx_vesting_create-periodic-vesting-account.md index 366c0d69..80f6094d 100644 --- a/docs/command/okp4d_tx_vesting_create-periodic-vesting-account.md +++ b/docs/command/okp4d_tx_vesting_create-periodic-vesting-account.md @@ -8,18 +8,18 @@ A sequence of coins and period length in seconds. Periods are sequential, in tha Where periods.json contains: An array of coin strings and unix epoch times for coins to vest -{ "start_time": 1625204910, +\{ "start_time": 1625204910, "period":[ - { + \{ "coins": "10test", "length_seconds":2592000 //30 days - }, - { + \}, + \{ "coins": "10test", "length_seconds":2592000 //30 days - }, + \}, ] - } + \} ``` okp4d tx vesting create-periodic-vesting-account [to_address] [periods_json_file] [flags] @@ -45,7 +45,7 @@ okp4d tx vesting create-periodic-vesting-account [to_address] [periods_json_file --keyring-backend string Select keyring's backend (os|file|kwallet|pass|test|memory) (default "test") --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_vesting_create-permanent-locked-account.md b/docs/command/okp4d_tx_vesting_create-permanent-locked-account.md index cd72a46d..ae95a551 100644 --- a/docs/command/okp4d_tx_vesting_create-permanent-locked-account.md +++ b/docs/command/okp4d_tx_vesting_create-permanent-locked-account.md @@ -32,7 +32,7 @@ okp4d tx vesting create-permanent-locked-account [to_address] [amount] [flags] --keyring-backend string Select keyring's backend (os|file|kwallet|pass|test|memory) (default "test") --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_vesting_create-vesting-account.md b/docs/command/okp4d_tx_vesting_create-vesting-account.md index d0ded900..feeb8e49 100644 --- a/docs/command/okp4d_tx_vesting_create-vesting-account.md +++ b/docs/command/okp4d_tx_vesting_create-vesting-account.md @@ -35,7 +35,7 @@ okp4d tx vesting create-vesting-account [to_address] [amount] [end_time] [flags] --keyring-backend string Select keyring's backend (os|file|kwallet|pass|test|memory) (default "test") --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_wasm_clear-contract-admin.md b/docs/command/okp4d_tx_wasm_clear-contract-admin.md index d6405b16..42dab526 100644 --- a/docs/command/okp4d_tx_wasm_clear-contract-admin.md +++ b/docs/command/okp4d_tx_wasm_clear-contract-admin.md @@ -26,7 +26,7 @@ okp4d tx wasm clear-contract-admin [contract_addr_bech32] [flags] --keyring-backend string Select keyring's backend (os|file|kwallet|pass|test|memory) (default "test") --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_wasm_execute.md b/docs/command/okp4d_tx_wasm_execute.md index ef43e115..66d0057d 100644 --- a/docs/command/okp4d_tx_wasm_execute.md +++ b/docs/command/okp4d_tx_wasm_execute.md @@ -27,7 +27,7 @@ okp4d tx wasm execute [contract_addr_bech32] [json_encoded_send_args] --amount [ --keyring-backend string Select keyring's backend (os|file|kwallet|pass|test|memory) (default "test") --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_wasm_grant.md b/docs/command/okp4d_tx_wasm_grant.md index 4329c8d5..598af1d1 100644 --- a/docs/command/okp4d_tx_wasm_grant.md +++ b/docs/command/okp4d_tx_wasm_grant.md @@ -6,11 +6,11 @@ Grant authorization to an address Grant authorization to an address. Examples: -$ okp4d tx grant execution --allow-all-messages --max-calls 1 --no-token-transfer --expiration 1667979596 +$ okp4d tx grant <grantee_addr> execution <contract_addr> --allow-all-messages --max-calls 1 --no-token-transfer --expiration 1667979596 -$ okp4d tx grant execution --allow-all-messages --max-funds 100000uwasm --expiration 1667979596 +$ okp4d tx grant <grantee_addr> execution <contract_addr> --allow-all-messages --max-funds 100000uwasm --expiration 1667979596 -$ okp4d tx grant execution --allow-all-messages --max-calls 5 --max-funds 100000uwasm --expiration 1667979596 +$ okp4d tx grant <grantee_addr> execution <contract_addr> --allow-all-messages --max-calls 5 --max-funds 100000uwasm --expiration 1667979596 ``` okp4d tx wasm grant [grantee] [message_type="execution"|"migration"] [contract_addr_bech32] --allow-raw-msgs [msg1,msg2,...] --allow-msg-keys [key1,key2,...] --allow-all-messages [flags] @@ -43,7 +43,7 @@ okp4d tx wasm grant [grantee] [message_type="execution"|"migration"] [contract_a --max-calls uint Maximal number of calls to the contract --max-funds string Maximal amount of tokens transferable to the contract. --no-token-transfer Don't allow token transfer - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_wasm_instantiate.md b/docs/command/okp4d_tx_wasm_instantiate.md index 6df912cb..8797c672 100644 --- a/docs/command/okp4d_tx_wasm_instantiate.md +++ b/docs/command/okp4d_tx_wasm_instantiate.md @@ -7,7 +7,7 @@ Instantiate a wasm contract Creates a new instance of an uploaded wasm code with the given 'constructor' message. Each contract instance has a unique address assigned. Example: -$ okp4d tx wasm instantiate 1 '{"foo":"bar"}' --admin="$(okp4d keys show mykey -a)" \ +$ okp4d tx wasm instantiate 1 '\{"foo":"bar"\}' --admin="$(okp4d keys show mykey -a)" \ --from mykey --amount="100ustake" --label "local0.1.0" ``` @@ -38,7 +38,7 @@ okp4d tx wasm instantiate [code_id_int64] [json_encoded_init_args] --label [text --label string A human-readable name for this contract in lists --ledger Use a connected Ledger device --no-admin You must set this explicitly if you don't want an admin - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_wasm_instantiate2.md b/docs/command/okp4d_tx_wasm_instantiate2.md index caf4c891..e4b8f95d 100644 --- a/docs/command/okp4d_tx_wasm_instantiate2.md +++ b/docs/command/okp4d_tx_wasm_instantiate2.md @@ -9,7 +9,7 @@ Each contract instance has a unique address assigned. They are assigned automati for special use cases, the given 'salt' argument and '--fix-msg' parameters can be used to generate a custom address. Predictable address example (also see 'okp4d query wasm build-address -h'): -$ okp4d tx wasm instantiate2 1 '{"foo":"bar"}' $(echo -n "testing" | xxd -ps) --admin="$(okp4d keys show mykey -a)" \ +$ okp4d tx wasm instantiate2 1 '\{"foo":"bar"\}' $(echo -n "testing" | xxd -ps) --admin="$(okp4d keys show mykey -a)" \ --from mykey --amount="100ustake" --label "local0.1.0" \ --fix-msg @@ -45,7 +45,7 @@ okp4d tx wasm instantiate2 [code_id_int64] [json_encoded_init_args] [salt] --lab --label string A human-readable name for this contract in lists --ledger Use a connected Ledger device --no-admin You must set this explicitly if you don't want an admin - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_wasm_migrate.md b/docs/command/okp4d_tx_wasm_migrate.md index 874820e6..dee172d9 100644 --- a/docs/command/okp4d_tx_wasm_migrate.md +++ b/docs/command/okp4d_tx_wasm_migrate.md @@ -26,7 +26,7 @@ okp4d tx wasm migrate [contract_addr_bech32] [new_code_id_int64] [json_encoded_m --keyring-backend string Select keyring's backend (os|file|kwallet|pass|test|memory) (default "test") --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_wasm_set-contract-admin.md b/docs/command/okp4d_tx_wasm_set-contract-admin.md index 0cfb7303..40f6b899 100644 --- a/docs/command/okp4d_tx_wasm_set-contract-admin.md +++ b/docs/command/okp4d_tx_wasm_set-contract-admin.md @@ -26,7 +26,7 @@ okp4d tx wasm set-contract-admin [contract_addr_bech32] [new_admin_addr_bech32] --keyring-backend string Select keyring's backend (os|file|kwallet|pass|test|memory) (default "test") --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_wasm_store.md b/docs/command/okp4d_tx_wasm_store.md index fcbc7865..0a87fc8e 100644 --- a/docs/command/okp4d_tx_wasm_store.md +++ b/docs/command/okp4d_tx_wasm_store.md @@ -30,7 +30,7 @@ okp4d tx wasm store [wasm file] [flags] --keyring-backend string Select keyring's backend (os|file|kwallet|pass|test|memory) (default "test") --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_wasm_submit-proposal_clear-contract-admin.md b/docs/command/okp4d_tx_wasm_submit-proposal_clear-contract-admin.md index 5e258ca2..0237964c 100644 --- a/docs/command/okp4d_tx_wasm_submit-proposal_clear-contract-admin.md +++ b/docs/command/okp4d_tx_wasm_submit-proposal_clear-contract-admin.md @@ -28,7 +28,7 @@ okp4d tx wasm submit-proposal clear-contract-admin [contract_addr_bech32] --titl --keyring-backend string Select keyring's backend (os|file|kwallet|pass|test|memory) (default "test") --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_wasm_submit-proposal_execute-contract.md b/docs/command/okp4d_tx_wasm_submit-proposal_execute-contract.md index 243e98d0..fbb2c5ae 100644 --- a/docs/command/okp4d_tx_wasm_submit-proposal_execute-contract.md +++ b/docs/command/okp4d_tx_wasm_submit-proposal_execute-contract.md @@ -29,7 +29,7 @@ okp4d tx wasm submit-proposal execute-contract [contract_addr_bech32] [json_enco --keyring-backend string Select keyring's backend (os|file|kwallet|pass|test|memory) (default "test") --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_wasm_submit-proposal_instantiate-contract-2.md b/docs/command/okp4d_tx_wasm_submit-proposal_instantiate-contract-2.md index 50a585da..4dbc55bf 100644 --- a/docs/command/okp4d_tx_wasm_submit-proposal_instantiate-contract-2.md +++ b/docs/command/okp4d_tx_wasm_submit-proposal_instantiate-contract-2.md @@ -32,7 +32,7 @@ okp4d tx wasm submit-proposal instantiate-contract-2 [code_id_int64] [json_encod --label string A human-readable name for this contract in lists --ledger Use a connected Ledger device --no-admin You must set this explicitly if you don't want an admin - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_wasm_submit-proposal_instantiate-contract.md b/docs/command/okp4d_tx_wasm_submit-proposal_instantiate-contract.md index 9d41e048..2b7fb0b6 100644 --- a/docs/command/okp4d_tx_wasm_submit-proposal_instantiate-contract.md +++ b/docs/command/okp4d_tx_wasm_submit-proposal_instantiate-contract.md @@ -32,7 +32,7 @@ okp4d tx wasm submit-proposal instantiate-contract [code_id_int64] [json_encoded --label string A human-readable name for this contract in lists --ledger Use a connected Ledger device --no-admin You must set this explicitly if you don't want an admin - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_wasm_submit-proposal_migrate-contract.md b/docs/command/okp4d_tx_wasm_submit-proposal_migrate-contract.md index 2b09a73e..8d2ff52a 100644 --- a/docs/command/okp4d_tx_wasm_submit-proposal_migrate-contract.md +++ b/docs/command/okp4d_tx_wasm_submit-proposal_migrate-contract.md @@ -28,7 +28,7 @@ okp4d tx wasm submit-proposal migrate-contract [contract_addr_bech32] [new_code_ --keyring-backend string Select keyring's backend (os|file|kwallet|pass|test|memory) (default "test") --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_wasm_submit-proposal_pin-codes.md b/docs/command/okp4d_tx_wasm_submit-proposal_pin-codes.md index dd022b8b..eaf98be6 100644 --- a/docs/command/okp4d_tx_wasm_submit-proposal_pin-codes.md +++ b/docs/command/okp4d_tx_wasm_submit-proposal_pin-codes.md @@ -28,7 +28,7 @@ okp4d tx wasm submit-proposal pin-codes [code-ids] --title [text] --summary [tex --keyring-backend string Select keyring's backend (os|file|kwallet|pass|test|memory) (default "test") --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_wasm_submit-proposal_set-contract-admin.md b/docs/command/okp4d_tx_wasm_submit-proposal_set-contract-admin.md index 10875d65..368620be 100644 --- a/docs/command/okp4d_tx_wasm_submit-proposal_set-contract-admin.md +++ b/docs/command/okp4d_tx_wasm_submit-proposal_set-contract-admin.md @@ -28,7 +28,7 @@ okp4d tx wasm submit-proposal set-contract-admin [contract_addr_bech32] [new_adm --keyring-backend string Select keyring's backend (os|file|kwallet|pass|test|memory) (default "test") --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_wasm_submit-proposal_store-instantiate.md b/docs/command/okp4d_tx_wasm_submit-proposal_store-instantiate.md index fe676a4b..dc1ec346 100644 --- a/docs/command/okp4d_tx_wasm_submit-proposal_store-instantiate.md +++ b/docs/command/okp4d_tx_wasm_submit-proposal_store-instantiate.md @@ -39,7 +39,7 @@ okp4d tx wasm submit-proposal store-instantiate [wasm file] [json_encoded_init_a --label string A human-readable name for this contract in lists --ledger Use a connected Ledger device --no-admin You must set this explicitly if you don't want an admin - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_wasm_submit-proposal_sudo-contract.md b/docs/command/okp4d_tx_wasm_submit-proposal_sudo-contract.md index 83baa9dc..2e73bdbc 100644 --- a/docs/command/okp4d_tx_wasm_submit-proposal_sudo-contract.md +++ b/docs/command/okp4d_tx_wasm_submit-proposal_sudo-contract.md @@ -28,7 +28,7 @@ okp4d tx wasm submit-proposal sudo-contract [contract_addr_bech32] [json_encoded --keyring-backend string Select keyring's backend (os|file|kwallet|pass|test|memory) (default "test") --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_wasm_submit-proposal_unpin-codes.md b/docs/command/okp4d_tx_wasm_submit-proposal_unpin-codes.md index 2e583f17..dfc667aa 100644 --- a/docs/command/okp4d_tx_wasm_submit-proposal_unpin-codes.md +++ b/docs/command/okp4d_tx_wasm_submit-proposal_unpin-codes.md @@ -28,7 +28,7 @@ okp4d tx wasm submit-proposal unpin-codes [code-ids] --title [text] --summary [t --keyring-backend string Select keyring's backend (os|file|kwallet|pass|test|memory) (default "test") --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_wasm_submit-proposal_update-instantiate-config.md b/docs/command/okp4d_tx_wasm_submit-proposal_update-instantiate-config.md index 9289ed17..f36d907d 100644 --- a/docs/command/okp4d_tx_wasm_submit-proposal_update-instantiate-config.md +++ b/docs/command/okp4d_tx_wasm_submit-proposal_update-instantiate-config.md @@ -35,7 +35,7 @@ okp4d tx wasm submit-proposal update-instantiate-config [code-id:permission] --t --keyring-backend string Select keyring's backend (os|file|kwallet|pass|test|memory) (default "test") --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_wasm_submit-proposal_wasm-store.md b/docs/command/okp4d_tx_wasm_submit-proposal_wasm-store.md index 20527159..35674a52 100644 --- a/docs/command/okp4d_tx_wasm_submit-proposal_wasm-store.md +++ b/docs/command/okp4d_tx_wasm_submit-proposal_wasm-store.md @@ -32,7 +32,7 @@ okp4d tx wasm submit-proposal wasm-store [wasm file] --title [text] --summary [t --keyring-backend string Select keyring's backend (os|file|kwallet|pass|test|memory) (default "test") --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") diff --git a/docs/command/okp4d_tx_wasm_update-instantiate-config.md b/docs/command/okp4d_tx_wasm_update-instantiate-config.md index 6cf3fa3d..9e60b27f 100644 --- a/docs/command/okp4d_tx_wasm_update-instantiate-config.md +++ b/docs/command/okp4d_tx_wasm_update-instantiate-config.md @@ -30,7 +30,7 @@ okp4d tx wasm update-instantiate-config [code_id_int64] [flags] --keyring-backend string Select keyring's backend (os|file|kwallet|pass|test|memory) (default "test") --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used --ledger Use a connected Ledger device - --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") + --node string : to tendermint rpc interface for this chain (default "tcp://localhost:26657") --note string Note to add a description to the transaction (previously --memo) --offline Offline mode (does not allow any online functionality) -o, --output string Output format (text|json) (default "json") From 69351f24a4d9ceffcf190c4040beeaadfebb71cb Mon Sep 17 00:00:00 2001 From: ccamel Date: Tue, 2 Jan 2024 16:59:04 +0100 Subject: [PATCH 3/3] build: relax markdown lint rules --- docs/.markdownlint.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/.markdownlint.yaml b/docs/.markdownlint.yaml index 292bdd38..e3c8832d 100644 --- a/docs/.markdownlint.yaml +++ b/docs/.markdownlint.yaml @@ -5,3 +5,4 @@ no-inline-html: false fenced-code-language: false code-block-style: false link-fragments: false +commands-show-output: false