From a3aafd8bc638e9380666da1871889bc4ff2f1634 Mon Sep 17 00:00:00 2001 From: John Ky Date: Fri, 15 Sep 2023 11:05:28 +1000 Subject: [PATCH] Use command descriptions from legacy --- .../Cardano/CLI/EraBased/Options/Address.hs | 2 +- .../Cardano/CLI/EraBased/Options/Genesis.hs | 2 +- .../src/Cardano/CLI/EraBased/Options/Key.hs | 2 +- .../src/Cardano/CLI/EraBased/Options/Node.hs | 2 +- .../src/Cardano/CLI/EraBased/Options/Query.hs | 3 +- .../Cardano/CLI/EraBased/Options/TextView.hs | 3 +- .../cardano-cli-golden/files/golden/help.cli | 98 +++++++++++-------- .../files/golden/help/allegra.cli | 16 +-- .../files/golden/help/allegra_address.cli | 2 +- .../files/golden/help/allegra_genesis.cli | 2 +- .../files/golden/help/allegra_key.cli | 2 +- .../files/golden/help/allegra_node.cli | 2 +- .../files/golden/help/allegra_query.cli | 3 +- .../files/golden/help/alonzo.cli | 16 +-- .../files/golden/help/alonzo_address.cli | 2 +- .../files/golden/help/alonzo_genesis.cli | 2 +- .../files/golden/help/alonzo_key.cli | 2 +- .../files/golden/help/alonzo_node.cli | 2 +- .../files/golden/help/alonzo_query.cli | 3 +- .../files/golden/help/babbage.cli | 16 +-- .../files/golden/help/babbage_address.cli | 2 +- .../files/golden/help/babbage_genesis.cli | 2 +- .../files/golden/help/babbage_key.cli | 2 +- .../files/golden/help/babbage_node.cli | 2 +- .../files/golden/help/babbage_query.cli | 3 +- .../files/golden/help/conway.cli | 16 +-- .../files/golden/help/conway_address.cli | 2 +- .../files/golden/help/conway_genesis.cli | 2 +- .../files/golden/help/conway_key.cli | 2 +- .../files/golden/help/conway_node.cli | 2 +- .../files/golden/help/conway_query.cli | 3 +- .../files/golden/help/latest.cli | 16 +-- .../files/golden/help/latest_address.cli | 2 +- .../files/golden/help/latest_genesis.cli | 2 +- .../files/golden/help/latest_key.cli | 2 +- .../files/golden/help/latest_node.cli | 2 +- .../files/golden/help/latest_query.cli | 3 +- .../files/golden/help/mary.cli | 16 +-- .../files/golden/help/mary_address.cli | 2 +- .../files/golden/help/mary_genesis.cli | 2 +- .../files/golden/help/mary_key.cli | 2 +- .../files/golden/help/mary_node.cli | 2 +- .../files/golden/help/mary_query.cli | 3 +- .../files/golden/help/shelley.cli | 16 +-- .../files/golden/help/shelley_address.cli | 2 +- .../files/golden/help/shelley_genesis.cli | 2 +- .../files/golden/help/shelley_key.cli | 2 +- .../files/golden/help/shelley_node.cli | 2 +- .../files/golden/help/shelley_query.cli | 3 +- 49 files changed, 176 insertions(+), 125 deletions(-) diff --git a/cardano-cli/src/Cardano/CLI/EraBased/Options/Address.hs b/cardano-cli/src/Cardano/CLI/EraBased/Options/Address.hs index 2afd4bab8f..c4922732fe 100644 --- a/cardano-cli/src/Cardano/CLI/EraBased/Options/Address.hs +++ b/cardano-cli/src/Cardano/CLI/EraBased/Options/Address.hs @@ -24,7 +24,7 @@ pAddressCmds _ envCli = subInfoParser "address" ( Opt.progDesc $ mconcat - [ "Address commands." + [ "Payment address commands." ] ) [ Just diff --git a/cardano-cli/src/Cardano/CLI/EraBased/Options/Genesis.hs b/cardano-cli/src/Cardano/CLI/EraBased/Options/Genesis.hs index 92fe9bfc92..a3686ccd9a 100644 --- a/cardano-cli/src/Cardano/CLI/EraBased/Options/Genesis.hs +++ b/cardano-cli/src/Cardano/CLI/EraBased/Options/Genesis.hs @@ -31,7 +31,7 @@ pGenesisCmds envCli = subInfoParser "genesis" ( Opt.progDesc $ mconcat - [ "Genesis commands." + [ "Genesis block commands." ] ) [ Just diff --git a/cardano-cli/src/Cardano/CLI/EraBased/Options/Key.hs b/cardano-cli/src/Cardano/CLI/EraBased/Options/Key.hs index 5136683131..306e46d23b 100644 --- a/cardano-cli/src/Cardano/CLI/EraBased/Options/Key.hs +++ b/cardano-cli/src/Cardano/CLI/EraBased/Options/Key.hs @@ -26,7 +26,7 @@ pKeyCmds = subInfoParser "key" ( Opt.progDesc $ mconcat - [ "Key commands." + [ "Key utility commands." ] ) [ Just diff --git a/cardano-cli/src/Cardano/CLI/EraBased/Options/Node.hs b/cardano-cli/src/Cardano/CLI/EraBased/Options/Node.hs index 07b6b4f311..b691b5d89b 100644 --- a/cardano-cli/src/Cardano/CLI/EraBased/Options/Node.hs +++ b/cardano-cli/src/Cardano/CLI/EraBased/Options/Node.hs @@ -23,7 +23,7 @@ pNodeCmds = subInfoParser "node" ( Opt.progDesc $ mconcat - [ "Node commands." + [ "Node operation commands." ] ) [ Just diff --git a/cardano-cli/src/Cardano/CLI/EraBased/Options/Query.hs b/cardano-cli/src/Cardano/CLI/EraBased/Options/Query.hs index 895ed75fb3..e556f26843 100644 --- a/cardano-cli/src/Cardano/CLI/EraBased/Options/Query.hs +++ b/cardano-cli/src/Cardano/CLI/EraBased/Options/Query.hs @@ -29,7 +29,8 @@ pQueryCmds envCli = subInfoParser "query" ( Opt.progDesc $ mconcat - [ "Query commands." + [ "Node query commands. Will query the local node whose Unix domain socket is " + , "obtained from the CARDANO_NODE_SOCKET_PATH environment variable." ] ) [ Just diff --git a/cardano-cli/src/Cardano/CLI/EraBased/Options/TextView.hs b/cardano-cli/src/Cardano/CLI/EraBased/Options/TextView.hs index 6808f075b3..386ad63819 100644 --- a/cardano-cli/src/Cardano/CLI/EraBased/Options/TextView.hs +++ b/cardano-cli/src/Cardano/CLI/EraBased/Options/TextView.hs @@ -21,7 +21,8 @@ pTextViewCmds = subInfoParser "text-view" ( Opt.progDesc $ mconcat - [ "text-view commands." + [ "Commands for dealing with Shelley TextView files. Transactions, addresses etc " + , "are stored on disk as TextView files." ] ) [ Just diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help.cli index f1c9bd82cd..3ac26141bb 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help.cli @@ -30,7 +30,7 @@ Usage: cardano-cli shelley Usage: cardano-cli shelley address (key-gen | key-hash | build | info) - Address commands. + Payment address commands. Usage: cardano-cli shelley address key-gen [--key-output-format STRING] [ --normal-key @@ -80,7 +80,7 @@ Usage: cardano-cli shelley key | convert-cardano-address-key ) - Key commands. + Key utility commands. Usage: cardano-cli shelley key verification-key --signing-key-file FILE --verification-key-file FILE @@ -162,7 +162,7 @@ Usage: cardano-cli shelley genesis | hash ) - Genesis commands. + Genesis block commands. Usage: cardano-cli shelley genesis key-gen-genesis --verification-key-file FILE --signing-key-file FILE @@ -382,7 +382,7 @@ Usage: cardano-cli shelley node | issue-op-cert ) - Node commands. + Node operation commands. Usage: cardano-cli shelley node key-gen [--key-output-format STRING] --cold-verification-key-file FILE @@ -451,7 +451,8 @@ Usage: cardano-cli shelley query | slot-number ) - Query commands. + Node query commands. Will query the local node whose Unix domain socket is + obtained from the CARDANO_NODE_SOCKET_PATH environment variable. Usage: cardano-cli shelley query protocol-parameters --socket-path SOCKET_PATH [ --shelley-mode @@ -845,7 +846,8 @@ Usage: cardano-cli shelley stake-pool metadata-hash --pool-metadata-file FILE Usage: cardano-cli shelley text-view decode-cbor - text-view commands. + Commands for dealing with Shelley TextView files. Transactions, addresses etc + are stored on disk as TextView files. Usage: cardano-cli shelley text-view decode-cbor --in-file FILE [--out-file FILE] @@ -1252,7 +1254,7 @@ Usage: cardano-cli allegra Usage: cardano-cli allegra address (key-gen | key-hash | build | info) - Address commands. + Payment address commands. Usage: cardano-cli allegra address key-gen [--key-output-format STRING] [ --normal-key @@ -1302,7 +1304,7 @@ Usage: cardano-cli allegra key | convert-cardano-address-key ) - Key commands. + Key utility commands. Usage: cardano-cli allegra key verification-key --signing-key-file FILE --verification-key-file FILE @@ -1384,7 +1386,7 @@ Usage: cardano-cli allegra genesis | hash ) - Genesis commands. + Genesis block commands. Usage: cardano-cli allegra genesis key-gen-genesis --verification-key-file FILE --signing-key-file FILE @@ -1604,7 +1606,7 @@ Usage: cardano-cli allegra node | issue-op-cert ) - Node commands. + Node operation commands. Usage: cardano-cli allegra node key-gen [--key-output-format STRING] --cold-verification-key-file FILE @@ -1673,7 +1675,8 @@ Usage: cardano-cli allegra query | slot-number ) - Query commands. + Node query commands. Will query the local node whose Unix domain socket is + obtained from the CARDANO_NODE_SOCKET_PATH environment variable. Usage: cardano-cli allegra query protocol-parameters --socket-path SOCKET_PATH [ --shelley-mode @@ -2067,7 +2070,8 @@ Usage: cardano-cli allegra stake-pool metadata-hash --pool-metadata-file FILE Usage: cardano-cli allegra text-view decode-cbor - text-view commands. + Commands for dealing with Shelley TextView files. Transactions, addresses etc + are stored on disk as TextView files. Usage: cardano-cli allegra text-view decode-cbor --in-file FILE [--out-file FILE] @@ -2474,7 +2478,7 @@ Usage: cardano-cli mary Usage: cardano-cli mary address (key-gen | key-hash | build | info) - Address commands. + Payment address commands. Usage: cardano-cli mary address key-gen [--key-output-format STRING] [ --normal-key @@ -2524,7 +2528,7 @@ Usage: cardano-cli mary key | convert-cardano-address-key ) - Key commands. + Key utility commands. Usage: cardano-cli mary key verification-key --signing-key-file FILE --verification-key-file FILE @@ -2606,7 +2610,7 @@ Usage: cardano-cli mary genesis | hash ) - Genesis commands. + Genesis block commands. Usage: cardano-cli mary genesis key-gen-genesis --verification-key-file FILE --signing-key-file FILE @@ -2824,7 +2828,7 @@ Usage: cardano-cli mary node | issue-op-cert ) - Node commands. + Node operation commands. Usage: cardano-cli mary node key-gen [--key-output-format STRING] --cold-verification-key-file FILE @@ -2893,7 +2897,8 @@ Usage: cardano-cli mary query | slot-number ) - Query commands. + Node query commands. Will query the local node whose Unix domain socket is + obtained from the CARDANO_NODE_SOCKET_PATH environment variable. Usage: cardano-cli mary query protocol-parameters --socket-path SOCKET_PATH [ --shelley-mode @@ -3277,7 +3282,8 @@ Usage: cardano-cli mary stake-pool metadata-hash --pool-metadata-file FILE Usage: cardano-cli mary text-view decode-cbor - text-view commands. + Commands for dealing with Shelley TextView files. Transactions, addresses etc + are stored on disk as TextView files. Usage: cardano-cli mary text-view decode-cbor --in-file FILE [--out-file FILE] @@ -3668,7 +3674,7 @@ Usage: cardano-cli alonzo Usage: cardano-cli alonzo address (key-gen | key-hash | build | info) - Address commands. + Payment address commands. Usage: cardano-cli alonzo address key-gen [--key-output-format STRING] [ --normal-key @@ -3718,7 +3724,7 @@ Usage: cardano-cli alonzo key | convert-cardano-address-key ) - Key commands. + Key utility commands. Usage: cardano-cli alonzo key verification-key --signing-key-file FILE --verification-key-file FILE @@ -3800,7 +3806,7 @@ Usage: cardano-cli alonzo genesis | hash ) - Genesis commands. + Genesis block commands. Usage: cardano-cli alonzo genesis key-gen-genesis --verification-key-file FILE --signing-key-file FILE @@ -4025,7 +4031,7 @@ Usage: cardano-cli alonzo node | issue-op-cert ) - Node commands. + Node operation commands. Usage: cardano-cli alonzo node key-gen [--key-output-format STRING] --cold-verification-key-file FILE @@ -4094,7 +4100,8 @@ Usage: cardano-cli alonzo query | slot-number ) - Query commands. + Node query commands. Will query the local node whose Unix domain socket is + obtained from the CARDANO_NODE_SOCKET_PATH environment variable. Usage: cardano-cli alonzo query protocol-parameters --socket-path SOCKET_PATH [ --shelley-mode @@ -4488,7 +4495,8 @@ Usage: cardano-cli alonzo stake-pool metadata-hash --pool-metadata-file FILE Usage: cardano-cli alonzo text-view decode-cbor - text-view commands. + Commands for dealing with Shelley TextView files. Transactions, addresses etc + are stored on disk as TextView files. Usage: cardano-cli alonzo text-view decode-cbor --in-file FILE [--out-file FILE] @@ -4894,7 +4902,7 @@ Usage: cardano-cli babbage Usage: cardano-cli babbage address (key-gen | key-hash | build | info) - Address commands. + Payment address commands. Usage: cardano-cli babbage address key-gen [--key-output-format STRING] [ --normal-key @@ -4944,7 +4952,7 @@ Usage: cardano-cli babbage key | convert-cardano-address-key ) - Key commands. + Key utility commands. Usage: cardano-cli babbage key verification-key --signing-key-file FILE --verification-key-file FILE @@ -5026,7 +5034,7 @@ Usage: cardano-cli babbage genesis | hash ) - Genesis commands. + Genesis block commands. Usage: cardano-cli babbage genesis key-gen-genesis --verification-key-file FILE --signing-key-file FILE @@ -5249,7 +5257,7 @@ Usage: cardano-cli babbage node | issue-op-cert ) - Node commands. + Node operation commands. Usage: cardano-cli babbage node key-gen [--key-output-format STRING] --cold-verification-key-file FILE @@ -5318,7 +5326,8 @@ Usage: cardano-cli babbage query | slot-number ) - Query commands. + Node query commands. Will query the local node whose Unix domain socket is + obtained from the CARDANO_NODE_SOCKET_PATH environment variable. Usage: cardano-cli babbage query protocol-parameters --socket-path SOCKET_PATH [ --shelley-mode @@ -5712,7 +5721,8 @@ Usage: cardano-cli babbage stake-pool metadata-hash --pool-metadata-file FILE Usage: cardano-cli babbage text-view decode-cbor - text-view commands. + Commands for dealing with Shelley TextView files. Transactions, addresses etc + are stored on disk as TextView files. Usage: cardano-cli babbage text-view decode-cbor --in-file FILE [--out-file FILE] @@ -6119,7 +6129,7 @@ Usage: cardano-cli conway Usage: cardano-cli conway address (key-gen | key-hash | build | info) - Address commands. + Payment address commands. Usage: cardano-cli conway address key-gen [--key-output-format STRING] [ --normal-key @@ -6169,7 +6179,7 @@ Usage: cardano-cli conway key | convert-cardano-address-key ) - Key commands. + Key utility commands. Usage: cardano-cli conway key verification-key --signing-key-file FILE --verification-key-file FILE @@ -6251,7 +6261,7 @@ Usage: cardano-cli conway genesis | hash ) - Genesis commands. + Genesis block commands. Usage: cardano-cli conway genesis key-gen-genesis --verification-key-file FILE --signing-key-file FILE @@ -6767,7 +6777,7 @@ Usage: cardano-cli conway node | issue-op-cert ) - Node commands. + Node operation commands. Usage: cardano-cli conway node key-gen [--key-output-format STRING] --cold-verification-key-file FILE @@ -6836,7 +6846,8 @@ Usage: cardano-cli conway query | slot-number ) - Query commands. + Node query commands. Will query the local node whose Unix domain socket is + obtained from the CARDANO_NODE_SOCKET_PATH environment variable. Usage: cardano-cli conway query protocol-parameters --socket-path SOCKET_PATH [ --shelley-mode @@ -7272,7 +7283,8 @@ Usage: cardano-cli conway stake-pool metadata-hash --pool-metadata-file FILE Usage: cardano-cli conway text-view decode-cbor - text-view commands. + Commands for dealing with Shelley TextView files. Transactions, addresses etc + are stored on disk as TextView files. Usage: cardano-cli conway text-view decode-cbor --in-file FILE [--out-file FILE] @@ -7678,7 +7690,7 @@ Usage: cardano-cli latest Usage: cardano-cli latest address (key-gen | key-hash | build | info) - Address commands. + Payment address commands. Usage: cardano-cli latest address key-gen [--key-output-format STRING] [ --normal-key @@ -7728,7 +7740,7 @@ Usage: cardano-cli latest key | convert-cardano-address-key ) - Key commands. + Key utility commands. Usage: cardano-cli latest key verification-key --signing-key-file FILE --verification-key-file FILE @@ -7810,7 +7822,7 @@ Usage: cardano-cli latest genesis | hash ) - Genesis commands. + Genesis block commands. Usage: cardano-cli latest genesis key-gen-genesis --verification-key-file FILE --signing-key-file FILE @@ -8031,7 +8043,7 @@ Usage: cardano-cli latest node | issue-op-cert ) - Node commands. + Node operation commands. Usage: cardano-cli latest node key-gen [--key-output-format STRING] --cold-verification-key-file FILE @@ -8100,7 +8112,8 @@ Usage: cardano-cli latest query | slot-number ) - Query commands. + Node query commands. Will query the local node whose Unix domain socket is + obtained from the CARDANO_NODE_SOCKET_PATH environment variable. Usage: cardano-cli latest query protocol-parameters --socket-path SOCKET_PATH [ --shelley-mode @@ -8494,7 +8507,8 @@ Usage: cardano-cli latest stake-pool metadata-hash --pool-metadata-file FILE Usage: cardano-cli latest text-view decode-cbor - text-view commands. + Commands for dealing with Shelley TextView files. Transactions, addresses etc + are stored on disk as TextView files. Usage: cardano-cli latest text-view decode-cbor --in-file FILE [--out-file FILE] diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/allegra.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/allegra.cli index e508942e8f..a3c6f7e817 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/allegra.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/allegra.cli @@ -17,13 +17,17 @@ Available options: -h,--help Show this help text Available commands: - address Address commands. - key Key commands. - genesis Genesis commands. + address Payment address commands. + key Key utility commands. + genesis Genesis block commands. governance Governance commands. - node Node commands. - query Query commands. + node Node operation commands. + query Node query commands. Will query the local node whose + Unix domain socket is obtained from the + CARDANO_NODE_SOCKET_PATH environment variable. stake-address Stake address commands. stake-pool Stake pool commands. - text-view text-view commands. + text-view Commands for dealing with Shelley TextView files. + Transactions, addresses etc are stored on disk as + TextView files. transaction Transaction commands. diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/allegra_address.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/allegra_address.cli index 7edde5c264..939c58bc17 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/allegra_address.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/allegra_address.cli @@ -1,6 +1,6 @@ Usage: cardano-cli allegra address (key-gen | key-hash | build | info) - Address commands. + Payment address commands. Available options: -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/allegra_genesis.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/allegra_genesis.cli index e4e87743cb..8b10843c12 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/allegra_genesis.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/allegra_genesis.cli @@ -12,7 +12,7 @@ Usage: cardano-cli allegra genesis | hash ) - Genesis commands. + Genesis block commands. Available options: -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/allegra_key.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/allegra_key.cli index 8dd6e5ca53..8b423751c7 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/allegra_key.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/allegra_key.cli @@ -9,7 +9,7 @@ Usage: cardano-cli allegra key | convert-cardano-address-key ) - Key commands. + Key utility commands. Available options: -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/allegra_node.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/allegra_node.cli index 727c24497c..f06c5fd9ff 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/allegra_node.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/allegra_node.cli @@ -7,7 +7,7 @@ Usage: cardano-cli allegra node | issue-op-cert ) - Node commands. + Node operation commands. Available options: -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/allegra_query.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/allegra_query.cli index fdb1b80173..f30407b44d 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/allegra_query.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/allegra_query.cli @@ -16,7 +16,8 @@ Usage: cardano-cli allegra query | slot-number ) - Query commands. + Node query commands. Will query the local node whose Unix domain socket is + obtained from the CARDANO_NODE_SOCKET_PATH environment variable. Available options: -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/alonzo.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/alonzo.cli index d1b5008957..a07934300d 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/alonzo.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/alonzo.cli @@ -17,13 +17,17 @@ Available options: -h,--help Show this help text Available commands: - address Address commands. - key Key commands. - genesis Genesis commands. + address Payment address commands. + key Key utility commands. + genesis Genesis block commands. governance Governance commands. - node Node commands. - query Query commands. + node Node operation commands. + query Node query commands. Will query the local node whose + Unix domain socket is obtained from the + CARDANO_NODE_SOCKET_PATH environment variable. stake-address Stake address commands. stake-pool Stake pool commands. - text-view text-view commands. + text-view Commands for dealing with Shelley TextView files. + Transactions, addresses etc are stored on disk as + TextView files. transaction Transaction commands. diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/alonzo_address.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/alonzo_address.cli index 82f5a1f0fe..d041822276 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/alonzo_address.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/alonzo_address.cli @@ -1,6 +1,6 @@ Usage: cardano-cli alonzo address (key-gen | key-hash | build | info) - Address commands. + Payment address commands. Available options: -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/alonzo_genesis.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/alonzo_genesis.cli index 93411371a4..a1d6c67f4e 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/alonzo_genesis.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/alonzo_genesis.cli @@ -12,7 +12,7 @@ Usage: cardano-cli alonzo genesis | hash ) - Genesis commands. + Genesis block commands. Available options: -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/alonzo_key.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/alonzo_key.cli index 35749440fe..92dcd0d399 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/alonzo_key.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/alonzo_key.cli @@ -9,7 +9,7 @@ Usage: cardano-cli alonzo key | convert-cardano-address-key ) - Key commands. + Key utility commands. Available options: -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/alonzo_node.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/alonzo_node.cli index 809b9f337a..6900b63c33 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/alonzo_node.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/alonzo_node.cli @@ -7,7 +7,7 @@ Usage: cardano-cli alonzo node | issue-op-cert ) - Node commands. + Node operation commands. Available options: -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/alonzo_query.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/alonzo_query.cli index d06b97a091..8529dfe818 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/alonzo_query.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/alonzo_query.cli @@ -16,7 +16,8 @@ Usage: cardano-cli alonzo query | slot-number ) - Query commands. + Node query commands. Will query the local node whose Unix domain socket is + obtained from the CARDANO_NODE_SOCKET_PATH environment variable. Available options: -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/babbage.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/babbage.cli index 99fb92f913..d936e0ea4f 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/babbage.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/babbage.cli @@ -17,13 +17,17 @@ Available options: -h,--help Show this help text Available commands: - address Address commands. - key Key commands. - genesis Genesis commands. + address Payment address commands. + key Key utility commands. + genesis Genesis block commands. governance Governance commands. - node Node commands. - query Query commands. + node Node operation commands. + query Node query commands. Will query the local node whose + Unix domain socket is obtained from the + CARDANO_NODE_SOCKET_PATH environment variable. stake-address Stake address commands. stake-pool Stake pool commands. - text-view text-view commands. + text-view Commands for dealing with Shelley TextView files. + Transactions, addresses etc are stored on disk as + TextView files. transaction Transaction commands. diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/babbage_address.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/babbage_address.cli index ff4ca20f74..24ee3a7020 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/babbage_address.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/babbage_address.cli @@ -1,6 +1,6 @@ Usage: cardano-cli babbage address (key-gen | key-hash | build | info) - Address commands. + Payment address commands. Available options: -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/babbage_genesis.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/babbage_genesis.cli index 3fb50934e0..66ff95e5a9 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/babbage_genesis.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/babbage_genesis.cli @@ -12,7 +12,7 @@ Usage: cardano-cli babbage genesis | hash ) - Genesis commands. + Genesis block commands. Available options: -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/babbage_key.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/babbage_key.cli index 0a69ab6388..05984ddb8b 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/babbage_key.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/babbage_key.cli @@ -9,7 +9,7 @@ Usage: cardano-cli babbage key | convert-cardano-address-key ) - Key commands. + Key utility commands. Available options: -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/babbage_node.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/babbage_node.cli index 00c2371adb..81bc9be704 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/babbage_node.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/babbage_node.cli @@ -7,7 +7,7 @@ Usage: cardano-cli babbage node | issue-op-cert ) - Node commands. + Node operation commands. Available options: -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/babbage_query.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/babbage_query.cli index fbf564f3fa..727ab884a0 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/babbage_query.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/babbage_query.cli @@ -16,7 +16,8 @@ Usage: cardano-cli babbage query | slot-number ) - Query commands. + Node query commands. Will query the local node whose Unix domain socket is + obtained from the CARDANO_NODE_SOCKET_PATH environment variable. Available options: -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/conway.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/conway.cli index e4f95ad266..f648d0311c 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/conway.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/conway.cli @@ -17,13 +17,17 @@ Available options: -h,--help Show this help text Available commands: - address Address commands. - key Key commands. - genesis Genesis commands. + address Payment address commands. + key Key utility commands. + genesis Genesis block commands. governance Governance commands. - node Node commands. - query Query commands. + node Node operation commands. + query Node query commands. Will query the local node whose + Unix domain socket is obtained from the + CARDANO_NODE_SOCKET_PATH environment variable. stake-address Stake address commands. stake-pool Stake pool commands. - text-view text-view commands. + text-view Commands for dealing with Shelley TextView files. + Transactions, addresses etc are stored on disk as + TextView files. transaction Transaction commands. diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/conway_address.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/conway_address.cli index 91535c3dee..b67a36891f 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/conway_address.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/conway_address.cli @@ -1,6 +1,6 @@ Usage: cardano-cli conway address (key-gen | key-hash | build | info) - Address commands. + Payment address commands. Available options: -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/conway_genesis.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/conway_genesis.cli index 4f543875db..768e24f913 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/conway_genesis.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/conway_genesis.cli @@ -12,7 +12,7 @@ Usage: cardano-cli conway genesis | hash ) - Genesis commands. + Genesis block commands. Available options: -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/conway_key.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/conway_key.cli index 251acbfa13..4f277404ee 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/conway_key.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/conway_key.cli @@ -9,7 +9,7 @@ Usage: cardano-cli conway key | convert-cardano-address-key ) - Key commands. + Key utility commands. Available options: -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/conway_node.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/conway_node.cli index 5d38e35c3f..3fe36322cb 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/conway_node.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/conway_node.cli @@ -7,7 +7,7 @@ Usage: cardano-cli conway node | issue-op-cert ) - Node commands. + Node operation commands. Available options: -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/conway_query.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/conway_query.cli index 4c1fc96c41..c9e2932703 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/conway_query.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/conway_query.cli @@ -16,7 +16,8 @@ Usage: cardano-cli conway query | slot-number ) - Query commands. + Node query commands. Will query the local node whose Unix domain socket is + obtained from the CARDANO_NODE_SOCKET_PATH environment variable. Available options: -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/latest.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/latest.cli index 67ededcea3..59ff0a091e 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/latest.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/latest.cli @@ -17,13 +17,17 @@ Available options: -h,--help Show this help text Available commands: - address Address commands. - key Key commands. - genesis Genesis commands. + address Payment address commands. + key Key utility commands. + genesis Genesis block commands. governance Governance commands. - node Node commands. - query Query commands. + node Node operation commands. + query Node query commands. Will query the local node whose + Unix domain socket is obtained from the + CARDANO_NODE_SOCKET_PATH environment variable. stake-address Stake address commands. stake-pool Stake pool commands. - text-view text-view commands. + text-view Commands for dealing with Shelley TextView files. + Transactions, addresses etc are stored on disk as + TextView files. transaction Transaction commands. diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_address.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_address.cli index 3920c8d60a..f3cf7e0afa 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_address.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_address.cli @@ -1,6 +1,6 @@ Usage: cardano-cli latest address (key-gen | key-hash | build | info) - Address commands. + Payment address commands. Available options: -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_genesis.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_genesis.cli index 343afb0984..d877b256b0 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_genesis.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_genesis.cli @@ -12,7 +12,7 @@ Usage: cardano-cli latest genesis | hash ) - Genesis commands. + Genesis block commands. Available options: -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_key.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_key.cli index ab8a6def6d..aae3d2309b 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_key.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_key.cli @@ -9,7 +9,7 @@ Usage: cardano-cli latest key | convert-cardano-address-key ) - Key commands. + Key utility commands. Available options: -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_node.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_node.cli index fe84797ee1..babb45a768 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_node.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_node.cli @@ -7,7 +7,7 @@ Usage: cardano-cli latest node | issue-op-cert ) - Node commands. + Node operation commands. Available options: -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_query.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_query.cli index e3626a531c..d311792456 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_query.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_query.cli @@ -16,7 +16,8 @@ Usage: cardano-cli latest query | slot-number ) - Query commands. + Node query commands. Will query the local node whose Unix domain socket is + obtained from the CARDANO_NODE_SOCKET_PATH environment variable. Available options: -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/mary.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/mary.cli index a8f61aa5ee..b9331aba22 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/mary.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/mary.cli @@ -17,13 +17,17 @@ Available options: -h,--help Show this help text Available commands: - address Address commands. - key Key commands. - genesis Genesis commands. + address Payment address commands. + key Key utility commands. + genesis Genesis block commands. governance Governance commands. - node Node commands. - query Query commands. + node Node operation commands. + query Node query commands. Will query the local node whose + Unix domain socket is obtained from the + CARDANO_NODE_SOCKET_PATH environment variable. stake-address Stake address commands. stake-pool Stake pool commands. - text-view text-view commands. + text-view Commands for dealing with Shelley TextView files. + Transactions, addresses etc are stored on disk as + TextView files. transaction Transaction commands. diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/mary_address.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/mary_address.cli index 20085797af..242527d838 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/mary_address.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/mary_address.cli @@ -1,6 +1,6 @@ Usage: cardano-cli mary address (key-gen | key-hash | build | info) - Address commands. + Payment address commands. Available options: -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/mary_genesis.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/mary_genesis.cli index 11e1acb679..95034b1ccf 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/mary_genesis.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/mary_genesis.cli @@ -12,7 +12,7 @@ Usage: cardano-cli mary genesis | hash ) - Genesis commands. + Genesis block commands. Available options: -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/mary_key.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/mary_key.cli index 672edc1bce..8dc24ca138 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/mary_key.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/mary_key.cli @@ -9,7 +9,7 @@ Usage: cardano-cli mary key | convert-cardano-address-key ) - Key commands. + Key utility commands. Available options: -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/mary_node.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/mary_node.cli index 8f4186dc62..71af7ae727 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/mary_node.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/mary_node.cli @@ -7,7 +7,7 @@ Usage: cardano-cli mary node | issue-op-cert ) - Node commands. + Node operation commands. Available options: -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/mary_query.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/mary_query.cli index d13e794c5e..0faa10a768 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/mary_query.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/mary_query.cli @@ -16,7 +16,8 @@ Usage: cardano-cli mary query | slot-number ) - Query commands. + Node query commands. Will query the local node whose Unix domain socket is + obtained from the CARDANO_NODE_SOCKET_PATH environment variable. Available options: -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/shelley.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/shelley.cli index 7f3b1adef2..c20ad10b29 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/shelley.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/shelley.cli @@ -17,13 +17,17 @@ Available options: -h,--help Show this help text Available commands: - address Address commands. - key Key commands. - genesis Genesis commands. + address Payment address commands. + key Key utility commands. + genesis Genesis block commands. governance Governance commands. - node Node commands. - query Query commands. + node Node operation commands. + query Node query commands. Will query the local node whose + Unix domain socket is obtained from the + CARDANO_NODE_SOCKET_PATH environment variable. stake-address Stake address commands. stake-pool Stake pool commands. - text-view text-view commands. + text-view Commands for dealing with Shelley TextView files. + Transactions, addresses etc are stored on disk as + TextView files. transaction Transaction commands. diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/shelley_address.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/shelley_address.cli index 28b3d42ea9..9f092336e2 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/shelley_address.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/shelley_address.cli @@ -1,6 +1,6 @@ Usage: cardano-cli shelley address (key-gen | key-hash | build | info) - Address commands. + Payment address commands. Available options: -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/shelley_genesis.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/shelley_genesis.cli index 9996f82d3b..65ff660ac0 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/shelley_genesis.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/shelley_genesis.cli @@ -12,7 +12,7 @@ Usage: cardano-cli shelley genesis | hash ) - Genesis commands. + Genesis block commands. Available options: -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/shelley_key.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/shelley_key.cli index 0c74f26b6a..1f6999a624 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/shelley_key.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/shelley_key.cli @@ -9,7 +9,7 @@ Usage: cardano-cli shelley key | convert-cardano-address-key ) - Key commands. + Key utility commands. Available options: -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/shelley_node.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/shelley_node.cli index a1607bfe3a..46d05378d7 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/shelley_node.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/shelley_node.cli @@ -7,7 +7,7 @@ Usage: cardano-cli shelley node | issue-op-cert ) - Node commands. + Node operation commands. Available options: -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/shelley_query.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/shelley_query.cli index e2f8c1f443..aee2335c58 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/shelley_query.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/shelley_query.cli @@ -16,7 +16,8 @@ Usage: cardano-cli shelley query | slot-number ) - Query commands. + Node query commands. Will query the local node whose Unix domain socket is + obtained from the CARDANO_NODE_SOCKET_PATH environment variable. Available options: -h,--help Show this help text