diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/address.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/address.cli deleted file mode 100644 index 42a485463..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/address.cli +++ /dev/null @@ -1,13 +0,0 @@ -Usage: cardano-cli address (key-gen | key-hash | build | info) - - Payment address commands. - -Available options: - -h,--help Show this help text - -Available commands: - key-gen Create an address key pair. - key-hash Print the hash of an address key. - build Build a Shelley payment address, with optional - delegation to a stake address. - info Print information about an address. diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/address_build.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/address_build.cli deleted file mode 100644 index 82f6a7f34..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/address_build.cli +++ /dev/null @@ -1,37 +0,0 @@ -Usage: cardano-cli address build - ( --payment-verification-key STRING - | --payment-verification-key-file FILEPATH - | --payment-script-file FILEPATH - ) - [ --stake-verification-key STRING - | --stake-verification-key-file FILEPATH - | --stake-key-hash HASH - | --stake-script-file FILEPATH - | --stake-address ADDRESS - ] - (--mainnet | --testnet-magic NATURAL) - [--out-file FILEPATH] - - Build a Shelley payment address, with optional delegation to a stake address. - -Available options: - --payment-verification-key STRING - Payment verification key (Bech32-encoded) - --payment-verification-key-file FILEPATH - Filepath of the payment verification key. - --payment-script-file FILEPATH - Filepath of the payment script. - --stake-verification-key STRING - Stake verification key (Bech32 or hex-encoded). - --stake-verification-key-file FILEPATH - Filepath of the staking verification key. - --stake-key-hash HASH Stake verification key hash (hex-encoded). - --stake-script-file FILEPATH - Filepath of the staking script. - --stake-address ADDRESS Target stake address (bech32 format). - --mainnet Use the mainnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --testnet-magic NATURAL Specify a testnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --out-file FILEPATH Optional output file. Default is to write to stdout. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/address_info.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/address_info.cli deleted file mode 100644 index 3367ff824..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/address_info.cli +++ /dev/null @@ -1,8 +0,0 @@ -Usage: cardano-cli address info --address ADDRESS [--out-file FILEPATH] - - Print information about an address. - -Available options: - --address ADDRESS A Cardano address - --out-file FILEPATH Optional output file. Default is to write to stdout. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/address_key-gen.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/address_key-gen.cli deleted file mode 100644 index b29878f8b..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/address_key-gen.cli +++ /dev/null @@ -1,23 +0,0 @@ -Usage: cardano-cli address key-gen [--key-output-format STRING] - [ --normal-key - | --extended-key - | --byron-key - ] - --verification-key-file FILEPATH - --signing-key-file FILEPATH - - Create an address key pair. - -Available options: - --key-output-format STRING - Optional key output format. Accepted output formats - are "text-envelope" and "bech32" (default is - "text-envelope"). - --normal-key Use a normal Shelley-era key (default). - --extended-key Use an extended ed25519 Shelley-era key. - --byron-key Use a Byron-era key. - --verification-key-file FILEPATH - Output filepath of the verification key. - --signing-key-file FILEPATH - Output filepath of the signing key. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/address_key-hash.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/address_key-hash.cli deleted file mode 100644 index c5de318e9..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/address_key-hash.cli +++ /dev/null @@ -1,15 +0,0 @@ -Usage: cardano-cli address key-hash - ( --payment-verification-key STRING - | --payment-verification-key-file FILEPATH - ) - [--out-file FILEPATH] - - Print the hash of an address key. - -Available options: - --payment-verification-key STRING - Payment verification key (Bech32-encoded) - --payment-verification-key-file FILEPATH - Filepath of the payment verification key. - --out-file FILEPATH Optional output file. Default is to write to stdout. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/genesis_create-cardano.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/genesis_create-cardano.cli deleted file mode 100644 index d630a99e9..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/genesis_create-cardano.cli +++ /dev/null @@ -1,51 +0,0 @@ -Usage: cardano-cli genesis create-cardano --genesis-dir DIR - [--gen-genesis-keys INT] - [--gen-utxo-keys INT] - [--start-time UTC-TIME] - [--supply LOVELACE] - [--security-param INT] - [--slot-length INT] - [--slot-coefficient RATIONAL] - ( --mainnet - | --testnet-magic NATURAL - ) - --byron-template FILEPATH - --shelley-template FILEPATH - --alonzo-template FILEPATH - --conway-template FILEPATH - [--node-config-template FILEPATH] - - Create a Byron and Shelley genesis file from a genesis template and - genesis/delegation/spending keys. - -Available options: - --genesis-dir DIR The genesis directory containing the genesis template - and required genesis/delegation/spending keys. - --gen-genesis-keys INT The number of genesis keys to make [default is 3]. - --gen-utxo-keys INT The number of UTxO keys to make [default is 0]. - --start-time UTC-TIME The genesis start time in YYYY-MM-DDThh:mm:ssZ - format. If unspecified, will be the current time +30 - seconds. - --supply LOVELACE The initial coin supply in Lovelace which will be - evenly distributed across initial, non-delegating - stake holders. - --security-param INT Security parameter for genesis file [default is 108]. - --slot-length INT slot length (ms) parameter for genesis file [default - is 1000]. - --slot-coefficient RATIONAL - Slot Coefficient for genesis file [default is .05]. - --mainnet Use the mainnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --testnet-magic NATURAL Specify a testnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --byron-template FILEPATH - JSON file with genesis defaults for each byron. - --shelley-template FILEPATH - JSON file with genesis defaults for each shelley. - --alonzo-template FILEPATH - JSON file with genesis defaults for alonzo. - --conway-template FILEPATH - JSON file with genesis defaults for conway. - --node-config-template FILEPATH - the node config template - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/genesis_create-staked.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/genesis_create-staked.cli deleted file mode 100644 index 65977af41..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/genesis_create-staked.cli +++ /dev/null @@ -1,56 +0,0 @@ -Usage: cardano-cli genesis create-staked [--key-output-format STRING] - --genesis-dir DIR - [--gen-genesis-keys INT] - [--gen-utxo-keys INT] - [--gen-pools INT] - [--gen-stake-delegs INT] - [--start-time UTC-TIME] - [--supply LOVELACE] - [--supply-delegated LOVELACE] - (--mainnet | --testnet-magic NATURAL) - [--bulk-pool-cred-files INT] - [--bulk-pools-per-file INT] - [--num-stuffed-utxo INT] - [--relay-specification-file FILEPATH] - - Create a staked Shelley genesis file from a genesis template and - genesis/delegation/spending keys. - -Available options: - --key-output-format STRING - Optional key output format. Accepted output formats - are "text-envelope" and "bech32" (default is - "text-envelope"). - --genesis-dir DIR The genesis directory containing the genesis template - and required genesis/delegation/spending keys. - --gen-genesis-keys INT The number of genesis keys to make [default is 3]. - --gen-utxo-keys INT The number of UTxO keys to make [default is 0]. - --gen-pools INT The number of stake pool credential sets to make - [default is 0]. - --gen-stake-delegs INT The number of stake delegator credential sets to make - [default is 0]. - --start-time UTC-TIME The genesis start time in YYYY-MM-DDThh:mm:ssZ - format. If unspecified, will be the current time +30 - seconds. - --supply LOVELACE The initial coin supply in Lovelace which will be - evenly distributed across initial, non-delegating - stake holders. - --supply-delegated LOVELACE - The initial coin supply in Lovelace which will be - evenly distributed across initial, delegating stake - holders. - --mainnet Use the mainnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --testnet-magic NATURAL Specify a testnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --bulk-pool-cred-files INT - Generate bulk pool credential files [default is 0]. - --bulk-pools-per-file INT - Each bulk pool to contain this many pool credential - sets [default is 0]. - --num-stuffed-utxo INT The number of fake UTxO entries to generate [default - is 0]. - --relay-specification-file FILEPATH - JSON file that specifies the relays of each stake - pool. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/genesis_create-testnet-data.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/genesis_create-testnet-data.cli deleted file mode 100644 index f9377f8b5..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/genesis_create-testnet-data.cli +++ /dev/null @@ -1,66 +0,0 @@ -Usage: cardano-cli genesis create-testnet-data [--spec-shelley FILEPATH] - [--spec-alonzo FILEPATH] - [--spec-conway FILEPATH] - [--genesis-keys INT] - [--pools INT] - [ --stake-delegators INT - | --transient-stake-delegators INT - ] - [ --drep-keys INT - | --transient-drep-keys INT - ] - [--stuffed-utxo INT] - [--utxo-keys INT] - [--total-supply LOVELACE] - [--delegated-supply LOVELACE] - [--testnet-magic NATURAL] - [--relays FILEPATH] - [--start-time UTC-TIME] - --out-dir DIR - - Create data to use for starting a testnet. - -Available options: - --spec-shelley FILEPATH The shelley specification file to use as input. A - default one is generated if omitted. - --spec-alonzo FILEPATH The alonzo specification file to use as input. A - default one is generated if omitted. - --spec-conway FILEPATH The conway specification file to use as input. A - default one is generated if omitted. - --genesis-keys INT The number of genesis keys to make (default is 3). - --pools INT The number of stake pool credential sets to make - (default is 0). - --stake-delegators INT The number of stake delegator credential sets to make - (default is 0). Credentials are written to disk. - --transient-stake-delegators INT - The number of stake delegator credential sets to make - (default is 0). The credentials are NOT written to - disk. - --drep-keys INT The number of DRep credentials to make (default is - 0). Credentials are written to disk. - --transient-drep-keys INT - The number of DRep credentials to make (default is - 0). The credentials are NOT written to disk. - --stuffed-utxo INT The number of fake UTxO entries to generate (default - is 0). - --utxo-keys INT The number of UTxO keys to make (default is 0). - --total-supply LOVELACE The maximum possible amount of Lovelace, which is - evenly distributed across stake holders. Overrides - the value from the shelley genesis. If - --delegated-supply is specified, a part of this - amount will be delegated. - --delegated-supply LOVELACE - The amount of the total supply which is evenly - delegated. Defaulted to half of the total supply. - Cannot be more than the amount specified with - --total-supply. - --testnet-magic NATURAL Specify a testnet magic id for the cluster. This - overrides both the network magic from the spec file - and CARDANO_NODE_NETWORK_ID environment variable. - --relays FILEPATH JSON file specifying the relays of each stake pool. - --start-time UTC-TIME The genesis start time in YYYY-MM-DDThh:mm:ssZ - format. If unspecified, will be the current time +30 - seconds. - --out-dir DIR The directory where to generate the data. Created if - not existing. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/genesis_create.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/genesis_create.cli deleted file mode 100644 index 9b7e8bf66..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/genesis_create.cli +++ /dev/null @@ -1,31 +0,0 @@ -Usage: cardano-cli genesis create [--key-output-format STRING] - --genesis-dir DIR - [--gen-genesis-keys INT] - [--gen-utxo-keys INT] - [--start-time UTC-TIME] - [--supply LOVELACE] - (--mainnet | --testnet-magic NATURAL) - - Create a Shelley genesis file from a genesis template and - genesis/delegation/spending keys. - -Available options: - --key-output-format STRING - Optional key output format. Accepted output formats - are "text-envelope" and "bech32" (default is - "text-envelope"). - --genesis-dir DIR The genesis directory containing the genesis template - and required genesis/delegation/spending keys. - --gen-genesis-keys INT The number of genesis keys to make [default is 3]. - --gen-utxo-keys INT The number of UTxO keys to make [default is 0]. - --start-time UTC-TIME The genesis start time in YYYY-MM-DDThh:mm:ssZ - format. If unspecified, will be the current time +30 - seconds. - --supply LOVELACE The initial coin supply in Lovelace which will be - evenly distributed across initial, non-delegating - stake holders. - --mainnet Use the mainnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --testnet-magic NATURAL Specify a testnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/genesis_get-ver-key.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/genesis_get-ver-key.cli deleted file mode 100644 index f4384f266..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/genesis_get-ver-key.cli +++ /dev/null @@ -1,11 +0,0 @@ -Usage: cardano-cli genesis get-ver-key --verification-key-file FILEPATH - --signing-key-file FILEPATH - - Derive the verification key from a signing key - -Available options: - --verification-key-file FILEPATH - Output filepath of the verification key. - --signing-key-file FILEPATH - Input filepath of the signing key. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/genesis_hash.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/genesis_hash.cli deleted file mode 100644 index 71d1f5099..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/genesis_hash.cli +++ /dev/null @@ -1,7 +0,0 @@ -Usage: cardano-cli genesis hash --genesis FILEPATH - - Compute the hash of a genesis file - -Available options: - --genesis FILEPATH The genesis file. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/genesis_initial-addr.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/genesis_initial-addr.cli deleted file mode 100644 index 2d4149d00..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/genesis_initial-addr.cli +++ /dev/null @@ -1,15 +0,0 @@ -Usage: cardano-cli genesis initial-addr --verification-key-file FILEPATH - (--mainnet | --testnet-magic NATURAL) - [--out-file FILEPATH] - - Get the address for an initial UTxO based on the verification key - -Available options: - --verification-key-file FILEPATH - Input filepath of the verification key. - --mainnet Use the mainnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --testnet-magic NATURAL Specify a testnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --out-file FILEPATH Optional output file. Default is to write to stdout. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/genesis_initial-txin.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/genesis_initial-txin.cli deleted file mode 100644 index 51d6d8774..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/genesis_initial-txin.cli +++ /dev/null @@ -1,15 +0,0 @@ -Usage: cardano-cli genesis initial-txin --verification-key-file FILEPATH - (--mainnet | --testnet-magic NATURAL) - [--out-file FILEPATH] - - Get the TxIn for an initial UTxO based on the verification key - -Available options: - --verification-key-file FILEPATH - Input filepath of the verification key. - --mainnet Use the mainnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --testnet-magic NATURAL Specify a testnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --out-file FILEPATH Optional output file. Default is to write to stdout. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/genesis_key-gen-delegate.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/genesis_key-gen-delegate.cli deleted file mode 100644 index 576628abe..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/genesis_key-gen-delegate.cli +++ /dev/null @@ -1,15 +0,0 @@ -Usage: cardano-cli genesis key-gen-delegate --verification-key-file FILEPATH - --signing-key-file FILEPATH - --operational-certificate-issue-counter-file FILEPATH - - Create a Shelley genesis delegate key pair - -Available options: - --verification-key-file FILEPATH - Output filepath of the verification key. - --signing-key-file FILEPATH - Output filepath of the signing key. - --operational-certificate-issue-counter-file FILEPATH - The file with the issue counter for the operational - certificate. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/genesis_key-gen-genesis.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/genesis_key-gen-genesis.cli deleted file mode 100644 index b055e3516..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/genesis_key-gen-genesis.cli +++ /dev/null @@ -1,11 +0,0 @@ -Usage: cardano-cli genesis key-gen-genesis --verification-key-file FILEPATH - --signing-key-file FILEPATH - - Create a Shelley genesis key pair - -Available options: - --verification-key-file FILEPATH - Output filepath of the verification key. - --signing-key-file FILEPATH - Output filepath of the signing key. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/genesis_key-gen-utxo.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/genesis_key-gen-utxo.cli deleted file mode 100644 index 836b5ffe3..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/genesis_key-gen-utxo.cli +++ /dev/null @@ -1,11 +0,0 @@ -Usage: cardano-cli genesis key-gen-utxo --verification-key-file FILEPATH - --signing-key-file FILEPATH - - Create a Shelley genesis UTxO key pair - -Available options: - --verification-key-file FILEPATH - Output filepath of the verification key. - --signing-key-file FILEPATH - Output filepath of the signing key. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/genesis_key-hash.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/genesis_key-hash.cli deleted file mode 100644 index 8a8170c24..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/genesis_key-hash.cli +++ /dev/null @@ -1,8 +0,0 @@ -Usage: cardano-cli genesis key-hash --verification-key-file FILEPATH - - Print the identifier (hash) of a public key - -Available options: - --verification-key-file FILEPATH - Input filepath of the verification key. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/governance.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/governance.cli deleted file mode 100644 index 25a25b5f9..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/governance.cli +++ /dev/null @@ -1,12 +0,0 @@ -Usage: cardano-cli governance (action | committee | drep | vote) - - Governance commands. - -Available options: - -h,--help Show this help text - -Available commands: - action Governance action commands. - committee Committee member commands. - drep DRep member commands. - vote Vote commands. diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_action.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_action.cli deleted file mode 100644 index 889507f2c..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_action.cli +++ /dev/null @@ -1,27 +0,0 @@ -Usage: cardano-cli governance action - ( create-constitution - | update-committee - | create-info - | create-no-confidence - | create-protocol-parameters-update - | create-treasury-withdrawal - | create-hardfork - | view - ) - - Governance action commands. - -Available options: - -h,--help Show this help text - -Available commands: - create-constitution Create a constitution. - update-committee Create or update a new committee proposal. - create-info Create an info action. - create-no-confidence Create a no confidence proposal. - create-protocol-parameters-update - Create a protocol parameters update. - create-treasury-withdrawal - Create a treasury withdrawal. - create-hardfork Create a hardfork initiation proposal. - view View a governance action. diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_action_create-constitution.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_action_create-constitution.cli deleted file mode 100644 index 021220e10..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_action_create-constitution.cli +++ /dev/null @@ -1,49 +0,0 @@ -Usage: cardano-cli governance action create-constitution (--mainnet | --testnet) - --governance-action-deposit NATURAL - ( --deposit-return-stake-verification-key STRING - | --deposit-return-stake-verification-key-file FILEPATH - | --deposit-return-stake-key-hash HASH - | --deposit-return-stake-script-file FILEPATH - | --deposit-return-stake-address ADDRESS - ) - [--prev-governance-action-tx-id TXID - --prev-governance-action-index WORD16] - --anchor-url TEXT - --anchor-data-hash HASH - --constitution-url TEXT - --constitution-hash HASH - [--constitution-script-hash HASH] - --out-file FILEPATH - - Create a constitution. - -Available options: - --mainnet Use the mainnet magic id. - --testnet Use the testnet magic id. - --governance-action-deposit NATURAL - Deposit required to submit a governance action. - --deposit-return-stake-verification-key STRING - Stake verification key (Bech32 or hex-encoded). - --deposit-return-stake-verification-key-file FILEPATH - Filepath of the staking verification key. - --deposit-return-stake-key-hash HASH - Stake verification key hash (hex-encoded). - --deposit-return-stake-script-file FILEPATH - Filepath of the staking script. - --deposit-return-stake-address ADDRESS - Target stake address (bech32 format). - --prev-governance-action-tx-id TXID - Txid of the previous governance action. - --prev-governance-action-index WORD16 - Action index of the previous governance action. - --anchor-url TEXT Anchor URL - --anchor-data-hash HASH Proposal anchor data hash (obtain it with - "cardano-cli hash anchor-data ...") - --constitution-url TEXT Constitution URL. - --constitution-hash HASH Hash of the constitution data (obtain it with - "cardano-cli hash anchor-data ..."). - --constitution-script-hash HASH - Constitution script hash (hex-encoded). Obtain it - with "cardano-cli hash script ...". - --out-file FILEPATH Output filepath of the constitution. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_action_create-hardfork.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_action_create-hardfork.cli deleted file mode 100644 index 2a4ff0807..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_action_create-hardfork.cli +++ /dev/null @@ -1,52 +0,0 @@ -Usage: cardano-cli governance action create-hardfork (--mainnet | --testnet) - --governance-action-deposit NATURAL - ( --deposit-return-stake-verification-key STRING - | --deposit-return-stake-verification-key-file FILEPATH - | --deposit-return-stake-key-hash HASH - | --deposit-return-stake-script-file FILEPATH - | --deposit-return-stake-address ADDRESS - ) - [--prev-governance-action-tx-id TXID - --prev-governance-action-index WORD16] - --anchor-url TEXT - --anchor-data-hash HASH - --protocol-major-version MAJOR - --protocol-minor-version MINOR - --out-file FILEPATH - - Create a hardfork initiation proposal. - -Available options: - --mainnet Use the mainnet magic id. - --testnet Use the testnet magic id. - --governance-action-deposit NATURAL - Deposit required to submit a governance action. - --deposit-return-stake-verification-key STRING - Stake verification key (Bech32 or hex-encoded). - --deposit-return-stake-verification-key-file FILEPATH - Filepath of the staking verification key. - --deposit-return-stake-key-hash HASH - Stake verification key hash (hex-encoded). - --deposit-return-stake-script-file FILEPATH - Filepath of the staking script. - --deposit-return-stake-address ADDRESS - Target stake address (bech32 format). - --prev-governance-action-tx-id TXID - Txid of the previous governance action. - --prev-governance-action-index WORD16 - Action index of the previous governance action. - --anchor-url TEXT Anchor URL - --anchor-data-hash HASH Proposal anchor data hash (obtain it with - "cardano-cli hash anchor-data ...") - --protocol-major-version MAJOR - Specify the major protocol version to fork into. An - increase indicates a hard fork. It must be the next - natural number after the current version and must be - supported by the node. - --protocol-minor-version MINOR - Minor protocol version. An increase indicates a soft - fork (old software can validate but not produce new - blocks). Must be zero when the major protocol version - is increased. - --out-file FILEPATH Output filepath of the hardfork proposal. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_action_create-info.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_action_create-info.cli deleted file mode 100644 index f1be625db..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_action_create-info.cli +++ /dev/null @@ -1,35 +0,0 @@ -Usage: cardano-cli governance action create-info (--mainnet | --testnet) - --governance-action-deposit NATURAL - ( --deposit-return-stake-verification-key STRING - | --deposit-return-stake-verification-key-file FILEPATH - | --deposit-return-stake-key-hash HASH - | --deposit-return-stake-script-file FILEPATH - | --deposit-return-stake-address ADDRESS - ) - --anchor-url TEXT - --anchor-data-hash HASH - --out-file FILEPATH - - Create an info action. - -Available options: - --mainnet Use the mainnet magic id. - --testnet Use the testnet magic id. - --governance-action-deposit NATURAL - Deposit required to submit a governance action. - --deposit-return-stake-verification-key STRING - Stake verification key (Bech32 or hex-encoded). - --deposit-return-stake-verification-key-file FILEPATH - Filepath of the staking verification key. - --deposit-return-stake-key-hash HASH - Stake verification key hash (hex-encoded). - --deposit-return-stake-script-file FILEPATH - Filepath of the staking script. - --deposit-return-stake-address ADDRESS - Target stake address (bech32 format). - --anchor-url TEXT Anchor URL - --anchor-data-hash HASH Proposal anchor data hash (obtain it with - "cardano-cli hash anchor-data ...") - --out-file FILEPATH Path to action file to be used later on with build or - build-raw - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_action_create-no-confidence.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_action_create-no-confidence.cli deleted file mode 100644 index ec863a77e..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_action_create-no-confidence.cli +++ /dev/null @@ -1,43 +0,0 @@ -Usage: cardano-cli governance action create-no-confidence - ( --mainnet - | --testnet - ) - --governance-action-deposit NATURAL - ( --deposit-return-stake-verification-key STRING - | --deposit-return-stake-verification-key-file FILEPATH - | --deposit-return-stake-key-hash HASH - | --deposit-return-stake-script-file FILEPATH - | --deposit-return-stake-address ADDRESS - ) - --anchor-url TEXT - --anchor-data-hash HASH - [--prev-governance-action-tx-id TXID - --prev-governance-action-index WORD16] - --out-file FILEPATH - - Create a no confidence proposal. - -Available options: - --mainnet Use the mainnet magic id. - --testnet Use the testnet magic id. - --governance-action-deposit NATURAL - Deposit required to submit a governance action. - --deposit-return-stake-verification-key STRING - Stake verification key (Bech32 or hex-encoded). - --deposit-return-stake-verification-key-file FILEPATH - Filepath of the staking verification key. - --deposit-return-stake-key-hash HASH - Stake verification key hash (hex-encoded). - --deposit-return-stake-script-file FILEPATH - Filepath of the staking script. - --deposit-return-stake-address ADDRESS - Target stake address (bech32 format). - --anchor-url TEXT Anchor URL - --anchor-data-hash HASH Proposal anchor data hash (obtain it with - "cardano-cli hash anchor-data ...") - --prev-governance-action-tx-id TXID - Txid of the previous governance action. - --prev-governance-action-index WORD16 - Action index of the previous governance action. - --out-file FILEPATH Output filepath of the no confidence proposal. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_action_create-protocol-parameters-update.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_action_create-protocol-parameters-update.cli deleted file mode 100644 index 73157f1f4..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_action_create-protocol-parameters-update.cli +++ /dev/null @@ -1,205 +0,0 @@ -Usage: cardano-cli governance action create-protocol-parameters-update - ( --mainnet - | --testnet - ) - --governance-action-deposit NATURAL - ( --deposit-return-stake-verification-key STRING - | --deposit-return-stake-verification-key-file FILEPATH - | --deposit-return-stake-key-hash HASH - | --deposit-return-stake-script-file FILEPATH - | --deposit-return-stake-address ADDRESS - ) - --anchor-url TEXT - --anchor-data-hash HASH - [--prev-governance-action-tx-id TXID - --prev-governance-action-index WORD16] - [--constitution-script-hash HASH] - [--min-fee-linear LOVELACE] - [--min-fee-constant LOVELACE] - [--max-block-body-size WORD32] - [--max-tx-size WORD32] - [--max-block-header-size WORD16] - [--key-reg-deposit-amt NATURAL] - [--pool-reg-deposit NATURAL] - [--pool-retirement-epoch-interval WORD32] - [--number-of-pools NATURAL] - [--pool-influence RATIONAL] - [--treasury-expansion RATIONAL] - [--monetary-expansion RATIONAL] - [--min-pool-cost NATURAL] - [--price-execution-steps RATIONAL - --price-execution-memory RATIONAL] - [--max-tx-execution-units (INT, INT)] - [--max-block-execution-units (INT, INT)] - [--max-value-size INT] - [--collateral-percent INT] - [--max-collateral-inputs INT] - [--utxo-cost-per-byte LOVELACE] - [--pool-voting-threshold-motion-no-confidence RATIONAL - --pool-voting-threshold-committee-normal RATIONAL - --pool-voting-threshold-committee-no-confidence RATIONAL - --pool-voting-threshold-hard-fork-initiation RATIONAL - --pool-voting-threshold-pp-security-group RATIONAL] - [--drep-voting-threshold-motion-no-confidence RATIONAL - --drep-voting-threshold-committee-normal RATIONAL - --drep-voting-threshold-committee-no-confidence RATIONAL - --drep-voting-threshold-update-to-constitution RATIONAL - --drep-voting-threshold-hard-fork-initiation RATIONAL - --drep-voting-threshold-pp-network-group RATIONAL - --drep-voting-threshold-pp-economic-group RATIONAL - --drep-voting-threshold-pp-technical-group RATIONAL - --drep-voting-threshold-pp-governance-group RATIONAL - --drep-voting-threshold-treasury-withdrawal RATIONAL] - [--min-committee-size INT] - [--committee-term-length WORD32] - [--governance-action-lifetime WORD32] - [--new-governance-action-deposit NATURAL] - [--drep-deposit LOVELACE] - [--drep-activity WORD32] - [--ref-script-cost-per-byte RATIONAL] - [--cost-model-file FILE] - --out-file FILEPATH - - Create a protocol parameters update. - -Available options: - --mainnet Use the mainnet magic id. - --testnet Use the testnet magic id. - --governance-action-deposit NATURAL - Deposit required to submit a governance action. - --deposit-return-stake-verification-key STRING - Stake verification key (Bech32 or hex-encoded). - --deposit-return-stake-verification-key-file FILEPATH - Filepath of the staking verification key. - --deposit-return-stake-key-hash HASH - Stake verification key hash (hex-encoded). - --deposit-return-stake-script-file FILEPATH - Filepath of the staking script. - --deposit-return-stake-address ADDRESS - Target stake address (bech32 format). - --anchor-url TEXT Anchor URL - --anchor-data-hash HASH Proposal anchor data hash (obtain it with - "cardano-cli hash anchor-data ...") - --prev-governance-action-tx-id TXID - Txid of the previous governance action. - --prev-governance-action-index WORD16 - Action index of the previous governance action. - --constitution-script-hash HASH - Constitution script hash (hex-encoded). Obtain it - with "cardano-cli hash script ...". - --min-fee-linear LOVELACE - The linear factor per byte for the minimum fee - calculation. - --min-fee-constant LOVELACE - The constant factor for the minimum fee calculation. - --max-block-body-size WORD32 - Maximal block body size. - --max-tx-size WORD32 Maximum transaction size. - --max-block-header-size WORD16 - Maximum block header size. - --key-reg-deposit-amt NATURAL - Key registration deposit amount. - --pool-reg-deposit NATURAL - The amount of a pool registration deposit. - --pool-retirement-epoch-interval WORD32 - Epoch interval of pool retirement. - --number-of-pools NATURAL - Desired number of pools. - --pool-influence RATIONAL - Pool influence. - --treasury-expansion RATIONAL - Treasury expansion. - --monetary-expansion RATIONAL - Monetary expansion. - --min-pool-cost NATURAL The minimum allowed cost parameter for stake pools. - --price-execution-steps RATIONAL - Step price of execution units for script languages - that use them (from Alonzo era). (Examples: '1.1', - '11/10') - --price-execution-memory RATIONAL - Memory price of execution units for script languages - that use them (from Alonzo era). (Examples: '1.1', - '11/10') - --max-tx-execution-units (INT, INT) - Max total script execution resources units allowed - per tx (from Alonzo era). They are denominated as - follows (steps, memory). - --max-block-execution-units (INT, INT) - Max total script execution resources units allowed - per block (from Alonzo era). They are denominated as - follows (steps, memory). - --max-value-size INT Max size of a multi-asset value in a tx output (from - Alonzo era). - --collateral-percent INT The percentage of the script contribution to the - txfee that must be provided as collateral inputs when - including Plutus scripts (from Alonzo era). - --max-collateral-inputs INT - The maximum number of collateral inputs allowed in a - transaction (from Alonzo era). - --utxo-cost-per-byte LOVELACE - Cost in lovelace per unit of UTxO storage (from - Babbage era). - --pool-voting-threshold-motion-no-confidence RATIONAL - Acceptance threshold for stake pool votes on motions - no confidence. - --pool-voting-threshold-committee-normal RATIONAL - Acceptance threshold for stake pool votes on normal - committee updates. - --pool-voting-threshold-committee-no-confidence RATIONAL - Acceptance threshold for stake pool votes on - committee updates when the committee is in a state of - no confidence. - --pool-voting-threshold-hard-fork-initiation RATIONAL - Acceptance threshold for stake pool votes on hard - fork initiations. - --pool-voting-threshold-pp-security-group RATIONAL - Acceptance threshold for stake pool votes on protocol - parameters for parameters in the 'security' group. - --drep-voting-threshold-motion-no-confidence RATIONAL - Acceptance threshold for DRep votes on motions of no - confidence. - --drep-voting-threshold-committee-normal RATIONAL - Acceptance threshold for DRep votes on normal - committee updates. - --drep-voting-threshold-committee-no-confidence RATIONAL - Acceptance threshold for DRep votes on committee - updates when the committee is in a state of no - confidence. - --drep-voting-threshold-update-to-constitution RATIONAL - Acceptance threshold for DRep votes on constitution - updates. - --drep-voting-threshold-hard-fork-initiation RATIONAL - Acceptance threshold for DRep votes on hard fork - initiations. - --drep-voting-threshold-pp-network-group RATIONAL - Acceptance threshold for DRep votes on protocol - parameters for parameters in the 'network' group. - --drep-voting-threshold-pp-economic-group RATIONAL - Acceptance threshold for DRep votes on protocol - parameters for parameters in the 'economic' group. - --drep-voting-threshold-pp-technical-group RATIONAL - Acceptance threshold for DRep votes on protocol - parameters for parameters in the 'technical' group. - --drep-voting-threshold-pp-governance-group RATIONAL - Acceptance threshold for DRep votes on protocol - parameters for parameters in the 'governance' group. - --drep-voting-threshold-treasury-withdrawal RATIONAL - Acceptance threshold for DRep votes on treasury - withdrawals. - --min-committee-size INT Minimal size of the constitutional committee. - --committee-term-length WORD32 - Maximal term length for members of the constitutional - committee, in epochs. - --governance-action-lifetime WORD32 - Maximal lifetime of governance actions, in epochs. - --new-governance-action-deposit NATURAL - Proposed new value of the deposit required to submit - a governance action. - --drep-deposit LOVELACE DRep deposit amount. - --drep-activity WORD32 DRep activity period, in epochs. - --ref-script-cost-per-byte RATIONAL - Reference script cost per byte for the minimum fee - calculation. - --cost-model-file FILE Filepath of the JSON formatted cost model - --out-file FILEPATH The output file. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_action_create-treasury-withdrawal.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_action_create-treasury-withdrawal.cli deleted file mode 100644 index 238119081..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_action_create-treasury-withdrawal.cli +++ /dev/null @@ -1,54 +0,0 @@ -Usage: cardano-cli governance action create-treasury-withdrawal - ( --mainnet - | --testnet - ) - --governance-action-deposit NATURAL - ( --deposit-return-stake-verification-key STRING - | --deposit-return-stake-verification-key-file FILEPATH - | --deposit-return-stake-key-hash HASH - | --deposit-return-stake-script-file FILEPATH - | --deposit-return-stake-address ADDRESS - ) - --anchor-url TEXT - --anchor-data-hash HASH - ( - ( --funds-receiving-stake-verification-key STRING - | --funds-receiving-stake-verification-key-file FILEPATH - | --funds-receiving-stake-key-hash HASH - ) - --transfer LOVELACE) - [--constitution-script-hash HASH] - --out-file FILEPATH - - Create a treasury withdrawal. - -Available options: - --mainnet Use the mainnet magic id. - --testnet Use the testnet magic id. - --governance-action-deposit NATURAL - Deposit required to submit a governance action. - --deposit-return-stake-verification-key STRING - Stake verification key (Bech32 or hex-encoded). - --deposit-return-stake-verification-key-file FILEPATH - Filepath of the staking verification key. - --deposit-return-stake-key-hash HASH - Stake verification key hash (hex-encoded). - --deposit-return-stake-script-file FILEPATH - Filepath of the staking script. - --deposit-return-stake-address ADDRESS - Target stake address (bech32 format). - --anchor-url TEXT Anchor URL - --anchor-data-hash HASH Proposal anchor data hash (obtain it with - "cardano-cli hash anchor-data ...") - --funds-receiving-stake-verification-key STRING - Stake verification key (Bech32 or hex-encoded). - --funds-receiving-stake-verification-key-file FILEPATH - Filepath of the staking verification key. - --funds-receiving-stake-key-hash HASH - Stake verification key hash (hex-encoded). - --transfer LOVELACE The amount to transfer. - --constitution-script-hash HASH - Constitution script hash (hex-encoded). Obtain it - with "cardano-cli hash script ...". - --out-file FILEPATH Output filepath of the treasury withdrawal. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_action_update-committee.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_action_update-committee.cli deleted file mode 100644 index 9802f96bf..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_action_update-committee.cli +++ /dev/null @@ -1,74 +0,0 @@ -Usage: cardano-cli governance action update-committee (--mainnet | --testnet) - --governance-action-deposit NATURAL - ( --deposit-return-stake-verification-key STRING - | --deposit-return-stake-verification-key-file FILEPATH - | --deposit-return-stake-key-hash HASH - | --deposit-return-stake-script-file FILEPATH - | --deposit-return-stake-address ADDRESS - ) - --anchor-url TEXT - --anchor-data-hash HASH - [ --remove-cc-cold-verification-key STRING - | --remove-cc-cold-verification-key-file FILEPATH - | --remove-cc-cold-verification-key-hash STRING - | --remove-cc-cold-script-hash HASH - ] - [ - ( --add-cc-cold-verification-key STRING - | --add-cc-cold-verification-key-file FILEPATH - | --add-cc-cold-verification-key-hash STRING - | --add-cc-cold-script-hash HASH - ) - --epoch NATURAL] - --threshold RATIONAL - [--prev-governance-action-tx-id TXID - --prev-governance-action-index WORD16] - --out-file FILEPATH - - Create or update a new committee proposal. - -Available options: - --mainnet Use the mainnet magic id. - --testnet Use the testnet magic id. - --governance-action-deposit NATURAL - Deposit required to submit a governance action. - --deposit-return-stake-verification-key STRING - Stake verification key (Bech32 or hex-encoded). - --deposit-return-stake-verification-key-file FILEPATH - Filepath of the staking verification key. - --deposit-return-stake-key-hash HASH - Stake verification key hash (hex-encoded). - --deposit-return-stake-script-file FILEPATH - Filepath of the staking script. - --deposit-return-stake-address ADDRESS - Target stake address (bech32 format). - --anchor-url TEXT Anchor URL - --anchor-data-hash HASH Proposal anchor data hash (obtain it with - "cardano-cli hash anchor-data ...") - --remove-cc-cold-verification-key STRING - Constitutional Committee cold key (hex-encoded). - --remove-cc-cold-verification-key-file FILEPATH - Filepath of the Constitutional Committee cold key. - --remove-cc-cold-verification-key-hash STRING - Constitutional Committee key hash (hex-encoded). - --remove-cc-cold-script-hash HASH - Cold Native or Plutus script file hash (hex-encoded). - Obtain it with "cardano-cli hash script ...". - --add-cc-cold-verification-key STRING - Constitutional Committee cold key (hex-encoded). - --add-cc-cold-verification-key-file FILEPATH - Filepath of the Constitutional Committee cold key. - --add-cc-cold-verification-key-hash STRING - Constitutional Committee key hash (hex-encoded). - --add-cc-cold-script-hash HASH - Cold Native or Plutus script file hash (hex-encoded). - Obtain it with "cardano-cli hash script ...". - --epoch NATURAL Committee member expiry epoch - --threshold RATIONAL Threshold of YES votes that are necessary for - approving a governance action. - --prev-governance-action-tx-id TXID - Txid of the previous governance action. - --prev-governance-action-index WORD16 - Action index of the previous governance action. - --out-file FILEPATH The output file. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_action_view.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_action_view.cli deleted file mode 100644 index 3ca009504..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_action_view.cli +++ /dev/null @@ -1,13 +0,0 @@ -Usage: cardano-cli governance action view --action-file FILEPATH - [--output-json | --output-yaml] - [--out-file FILEPATH] - - View a governance action. - -Available options: - --action-file FILEPATH Path to action file. - --output-json Format governance action view output to JSON. - --output-yaml Format governance action view output to YAML. - Defaults to JSON if unspecified. - --out-file FILEPATH Optional output file. Default is to write to stdout. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_answer-poll.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_answer-poll.cli deleted file mode 100644 index 2116c3254..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_answer-poll.cli +++ /dev/null @@ -1,12 +0,0 @@ -Usage: cardano-cli governance answer-poll --poll-file FILEPATH - [--answer INT] - [--out-file FILEPATH] - - Answer an SPO poll - -Available options: - --poll-file FILEPATH Filepath to the ongoing poll. - --answer INT The index of the chosen answer in the poll. Optional. - Asked interactively if omitted. - --out-file FILEPATH The output file. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_committee.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_committee.cli deleted file mode 100644 index 4a567f16f..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_committee.cli +++ /dev/null @@ -1,25 +0,0 @@ -Usage: cardano-cli governance committee - ( key-gen-cold - | key-gen-hot - | key-hash - | create-hot-key-authorization-certificate - | create-cold-key-resignation-certificate - ) - - Committee member commands. - -Available options: - -h,--help Show this help text - -Available commands: - key-gen-cold Create a cold key pair for a Constitutional Committee - Member - key-gen-hot Create a hot key pair for a Constitutional Committee - Member - key-hash Print the identifier (hash) of a public key - create-hot-key-authorization-certificate - Create hot key authorization certificate for a - Constitutional Committee Member - create-cold-key-resignation-certificate - Create cold key resignation certificate for a - Constitutional Committee Member diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_committee_create-cold-key-resignation-certificate.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_committee_create-cold-key-resignation-certificate.cli deleted file mode 100644 index 5fd140f60..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_committee_create-cold-key-resignation-certificate.cli +++ /dev/null @@ -1,33 +0,0 @@ -Usage: cardano-cli governance committee create-cold-key-resignation-certificate - ( --cold-verification-key STRING - | --cold-verification-key-file FILEPATH - | --cold-verification-key-hash STRING - | --cold-script-hash HASH - | --cold-script-file FILEPATH - ) - [--resignation-metadata-url TEXT - --resignation-metadata-hash HASH] - --out-file FILEPATH - - Create cold key resignation certificate for a Constitutional Committee Member - -Available options: - --cold-verification-key STRING - Constitutional Committee cold key (hex-encoded). - --cold-verification-key-file FILEPATH - Filepath of the Constitutional Committee cold key. - --cold-verification-key-hash STRING - Constitutional Committee key hash (hex-encoded). - --cold-script-hash HASH Committee cold Native or Plutus script file hash - (hex-encoded). Obtain it with "cardano-cli hash - script ...". - --cold-script-file FILEPATH - Cold Native or Plutus script file - --resignation-metadata-url TEXT - Constitutional Committee cold key resignation - certificate URL - --resignation-metadata-hash HASH - Constitutional Committee cold key resignation - certificate metadata hash - --out-file FILEPATH The output file. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_committee_create-hot-key-authorization-certificate.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_committee_create-hot-key-authorization-certificate.cli deleted file mode 100644 index e9736da84..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_committee_create-hot-key-authorization-certificate.cli +++ /dev/null @@ -1,42 +0,0 @@ -Usage: cardano-cli governance committee create-hot-key-authorization-certificate - ( --cold-verification-key STRING - | --cold-verification-key-file FILEPATH - | --cold-verification-key-hash STRING - | --cold-script-hash HASH - | --cold-script-file FILEPATH - ) - ( --hot-verification-key STRING - | --hot-verification-key-file FILEPATH - | --hot-verification-key-hash STRING - | --hot-script-hash HASH - | --hot-script-file FILEPATH - ) - --out-file FILEPATH - - Create hot key authorization certificate for a Constitutional Committee Member - -Available options: - --cold-verification-key STRING - Constitutional Committee cold key (hex-encoded). - --cold-verification-key-file FILEPATH - Filepath of the Constitutional Committee cold key. - --cold-verification-key-hash STRING - Constitutional Committee key hash (hex-encoded). - --cold-script-hash HASH Committee cold Native or Plutus script file hash - (hex-encoded). Obtain it with "cardano-cli hash - script ...". - --cold-script-file FILEPATH - Cold Native or Plutus script file - --hot-verification-key STRING - Constitutional Committee hot key (hex-encoded). - --hot-verification-key-file FILEPATH - Filepath of the Constitutional Committee hot key. - --hot-verification-key-hash STRING - Constitutional Committee key hash (hex-encoded). - --hot-script-hash HASH Committee hot Native or Plutus script file hash - (hex-encoded). Obtain it with "cardano-cli hash - script ...". - --hot-script-file FILEPATH - Hot Native or Plutus script file - --out-file FILEPATH The output file. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_committee_key-gen-cold.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_committee_key-gen-cold.cli deleted file mode 100644 index 0bdeea194..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_committee_key-gen-cold.cli +++ /dev/null @@ -1,12 +0,0 @@ -Usage: cardano-cli governance committee key-gen-cold - --cold-verification-key-file FILEPATH - --cold-signing-key-file FILEPATH - - Create a cold key pair for a Constitutional Committee Member - -Available options: - --cold-verification-key-file FILEPATH - Filepath of the cold verification key. - --cold-signing-key-file FILEPATH - Filepath of the cold signing key. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_committee_key-gen-hot.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_committee_key-gen-hot.cli deleted file mode 100644 index 345170965..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_committee_key-gen-hot.cli +++ /dev/null @@ -1,11 +0,0 @@ -Usage: cardano-cli governance committee key-gen-hot --verification-key-file FILEPATH - --signing-key-file FILEPATH - - Create a hot key pair for a Constitutional Committee Member - -Available options: - --verification-key-file FILEPATH - Output filepath of the verification key. - --signing-key-file FILEPATH - Output filepath of the signing key. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_committee_key-hash.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_committee_key-hash.cli deleted file mode 100644 index 996ad90b4..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_committee_key-hash.cli +++ /dev/null @@ -1,15 +0,0 @@ -Usage: cardano-cli governance committee key-hash - ( --verification-key STRING - | --verification-key-file FILEPATH - ) - - Print the identifier (hash) of a public key - -Available options: - --verification-key STRING - Constitutional Committee Member key (hot or cold) - (Bech32-encoded) - --verification-key-file FILEPATH - Input filepath of the Constitutional Committee Member - key (hot or cold). - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_create-genesis-key-delegation-certificate.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_create-genesis-key-delegation-certificate.cli deleted file mode 100644 index d3d8d60b1..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_create-genesis-key-delegation-certificate.cli +++ /dev/null @@ -1,54 +0,0 @@ -Usage: cardano-cli governance create-genesis-key-delegation-certificate - [ --shelley-era - | --allegra-era - | --mary-era - | --alonzo-era - | --babbage-era - ] - ( --genesis-verification-key STRING - | --genesis-verification-key-file FILEPATH - | --genesis-verification-key-hash STRING - ) - ( --genesis-delegate-verification-key STRING - | --genesis-delegate-verification-key-file FILEPATH - | --genesis-delegate-verification-key-hash STRING - ) - ( --vrf-verification-key STRING - | --vrf-verification-key-file FILEPATH - | --vrf-verification-key-hash STRING - ) - --out-file FILEPATH - - Create a genesis key delegation certificate - -Available options: - --shelley-era Specify the Shelley era - DEPRECATED - will be - removed in the future - --allegra-era Specify the Allegra era - DEPRECATED - will be - removed in the future - --mary-era Specify the Mary era - DEPRECATED - will be removed - in the future - --alonzo-era Specify the Alonzo era - DEPRECATED - will be removed - in the future - --babbage-era Specify the Babbage era (default) - DEPRECATED - will - be removed in the future - --genesis-verification-key STRING - Genesis verification key (hex-encoded). - --genesis-verification-key-file FILEPATH - Filepath of the genesis verification key. - --genesis-verification-key-hash STRING - Genesis verification key hash (hex-encoded). - --genesis-delegate-verification-key STRING - Genesis delegate verification key (hex-encoded). - --genesis-delegate-verification-key-file FILEPATH - Filepath of the genesis delegate verification key. - --genesis-delegate-verification-key-hash STRING - Genesis delegate verification key hash (hex-encoded). - --vrf-verification-key STRING - VRF verification key (Bech32 or hex-encoded). - --vrf-verification-key-file FILEPATH - Filepath of the VRF verification key. - --vrf-verification-key-hash STRING - VRF verification key hash (hex-encoded). - --out-file FILEPATH The output file. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_create-mir-certificate.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_create-mir-certificate.cli deleted file mode 100644 index 5b06ced44..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_create-mir-certificate.cli +++ /dev/null @@ -1,44 +0,0 @@ -Usage: cardano-cli governance create-mir-certificate - ( [ --shelley-era - | --allegra-era - | --mary-era - | --alonzo-era - | --babbage-era - ] - ( --reserves - | --treasury - ) - (--stake-address ADDRESS) - (--reward LOVELACE) - --out-file FILEPATH - | stake-addresses - | transfer-to-treasury - | transfer-to-rewards - ) - - Create an MIR (Move Instantaneous Rewards) certificate - -Available options: - --shelley-era Specify the Shelley era - DEPRECATED - will be - removed in the future - --allegra-era Specify the Allegra era - DEPRECATED - will be - removed in the future - --mary-era Specify the Mary era - DEPRECATED - will be removed - in the future - --alonzo-era Specify the Alonzo era - DEPRECATED - will be removed - in the future - --babbage-era Specify the Babbage era (default) - DEPRECATED - will - be removed in the future - --reserves Use the reserves pot. - --treasury Use the treasury pot. - --stake-address ADDRESS Target stake address (bech32 format). - --reward LOVELACE The reward for the relevant reward account. - --out-file FILEPATH The output file. - -h,--help Show this help text - -Available commands: - stake-addresses Create an MIR certificate to pay stake addresses - transfer-to-treasury Create an MIR certificate to transfer from the - reserves pot to the treasury pot - transfer-to-rewards Create an MIR certificate to transfer from the - treasury pot to the reserves pot diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_create-mir-certificate_stake-addresses.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_create-mir-certificate_stake-addresses.cli deleted file mode 100644 index d86d15f6b..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_create-mir-certificate_stake-addresses.cli +++ /dev/null @@ -1,33 +0,0 @@ -Usage: cardano-cli governance create-mir-certificate stake-addresses - [ --shelley-era - | --allegra-era - | --mary-era - | --alonzo-era - | --babbage-era - ] - ( --reserves - | --treasury - ) - (--stake-address ADDRESS) - (--reward LOVELACE) - --out-file FILEPATH - - Create an MIR certificate to pay stake addresses - -Available options: - --shelley-era Specify the Shelley era - DEPRECATED - will be - removed in the future - --allegra-era Specify the Allegra era - DEPRECATED - will be - removed in the future - --mary-era Specify the Mary era - DEPRECATED - will be removed - in the future - --alonzo-era Specify the Alonzo era - DEPRECATED - will be removed - in the future - --babbage-era Specify the Babbage era (default) - DEPRECATED - will - be removed in the future - --reserves Use the reserves pot. - --treasury Use the treasury pot. - --stake-address ADDRESS Target stake address (bech32 format). - --reward LOVELACE The reward for the relevant reward account. - --out-file FILEPATH The output file. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_create-mir-certificate_transfer-to-rewards.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_create-mir-certificate_transfer-to-rewards.cli deleted file mode 100644 index bcc0244a5..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_create-mir-certificate_transfer-to-rewards.cli +++ /dev/null @@ -1,27 +0,0 @@ -Usage: cardano-cli governance create-mir-certificate transfer-to-rewards - [ --shelley-era - | --allegra-era - | --mary-era - | --alonzo-era - | --babbage-era - ] - --transfer LOVELACE - --out-file FILEPATH - - Create an MIR certificate to transfer from the treasury pot to the reserves - pot - -Available options: - --shelley-era Specify the Shelley era - DEPRECATED - will be - removed in the future - --allegra-era Specify the Allegra era - DEPRECATED - will be - removed in the future - --mary-era Specify the Mary era - DEPRECATED - will be removed - in the future - --alonzo-era Specify the Alonzo era - DEPRECATED - will be removed - in the future - --babbage-era Specify the Babbage era (default) - DEPRECATED - will - be removed in the future - --transfer LOVELACE The amount to transfer. - --out-file FILEPATH The output file. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_create-mir-certificate_transfer-to-treasury.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_create-mir-certificate_transfer-to-treasury.cli deleted file mode 100644 index 3e1cf6cbf..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_create-mir-certificate_transfer-to-treasury.cli +++ /dev/null @@ -1,27 +0,0 @@ -Usage: cardano-cli governance create-mir-certificate transfer-to-treasury - [ --shelley-era - | --allegra-era - | --mary-era - | --alonzo-era - | --babbage-era - ] - --transfer LOVELACE - --out-file FILEPATH - - Create an MIR certificate to transfer from the reserves pot to the treasury - pot - -Available options: - --shelley-era Specify the Shelley era - DEPRECATED - will be - removed in the future - --allegra-era Specify the Allegra era - DEPRECATED - will be - removed in the future - --mary-era Specify the Mary era - DEPRECATED - will be removed - in the future - --alonzo-era Specify the Alonzo era - DEPRECATED - will be removed - in the future - --babbage-era Specify the Babbage era (default) - DEPRECATED - will - be removed in the future - --transfer LOVELACE The amount to transfer. - --out-file FILEPATH The output file. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_create-poll.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_create-poll.cli deleted file mode 100644 index 3cc9ea2ed..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_create-poll.cli +++ /dev/null @@ -1,14 +0,0 @@ -Usage: cardano-cli governance create-poll --question STRING - (--answer STRING) - [--nonce UINT] - --out-file FILEPATH - - Create an SPO poll - -Available options: - --question STRING The question for the poll. - --answer STRING A possible choice for the poll. The option is - repeatable. - --nonce UINT An (optional) nonce for non-replayability. - --out-file FILEPATH The output file. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_create-update-proposal.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_create-update-proposal.cli deleted file mode 100644 index 1fcef2c20..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_create-update-proposal.cli +++ /dev/null @@ -1,111 +0,0 @@ -Usage: cardano-cli governance create-update-proposal --out-file FILEPATH - --epoch NATURAL - (--genesis-verification-key-file FILEPATH) - [--protocol-major-version MAJOR - --protocol-minor-version MINOR] - [--decentralization-parameter RATIONAL] - [ --extra-entropy HEX - | --reset-extra-entropy - ] - [--max-block-header-size WORD16] - [--max-block-body-size WORD32] - [--max-tx-size WORD32] - [--min-fee-constant LOVELACE] - [--min-fee-linear LOVELACE] - [--min-utxo-value NATURAL] - [--key-reg-deposit-amt NATURAL] - [--pool-reg-deposit NATURAL] - [--min-pool-cost NATURAL] - [--pool-retirement-epoch-interval WORD32] - [--number-of-pools NATURAL] - [--pool-influence RATIONAL] - [--monetary-expansion RATIONAL] - [--treasury-expansion RATIONAL] - [--price-execution-steps RATIONAL - --price-execution-memory RATIONAL] - [--max-tx-execution-units (INT, INT)] - [--max-block-execution-units (INT, INT)] - [--max-value-size INT] - [--collateral-percent INT] - [--max-collateral-inputs INT] - [--utxo-cost-per-byte LOVELACE] - [--cost-model-file FILE] - - Create an update proposal - -Available options: - --out-file FILEPATH The output file. - --epoch NATURAL The epoch number in which the update proposal is - valid. - --genesis-verification-key-file FILEPATH - Filepath of the genesis verification key. - --protocol-major-version MAJOR - Specify the major protocol version to fork into. An - increase indicates a hard fork. It must be the next - natural number after the current version and must be - supported by the node. - --protocol-minor-version MINOR - Minor protocol version. An increase indicates a soft - fork (old software can validate but not produce new - blocks). Must be zero when the major protocol version - is increased. - --decentralization-parameter RATIONAL - Decentralization parameter. - --extra-entropy HEX Praos extra entropy seed, as a hex byte string. - --reset-extra-entropy Reset the Praos extra entropy to none. - --max-block-header-size WORD16 - Maximum block header size. - --max-block-body-size WORD32 - Maximal block body size. - --max-tx-size WORD32 Maximum transaction size. - --min-fee-constant LOVELACE - The constant factor for the minimum fee calculation. - --min-fee-linear LOVELACE - The linear factor per byte for the minimum fee - calculation. - --min-utxo-value NATURAL The minimum allowed UTxO value (Shelley to Mary - eras). - --key-reg-deposit-amt NATURAL - Key registration deposit amount. - --pool-reg-deposit NATURAL - The amount of a pool registration deposit. - --min-pool-cost NATURAL The minimum allowed cost parameter for stake pools. - --pool-retirement-epoch-interval WORD32 - Epoch interval of pool retirement. - --number-of-pools NATURAL - Desired number of pools. - --pool-influence RATIONAL - Pool influence. - --monetary-expansion RATIONAL - Monetary expansion. - --treasury-expansion RATIONAL - Treasury expansion. - --price-execution-steps RATIONAL - Step price of execution units for script languages - that use them (from Alonzo era). (Examples: '1.1', - '11/10') - --price-execution-memory RATIONAL - Memory price of execution units for script languages - that use them (from Alonzo era). (Examples: '1.1', - '11/10') - --max-tx-execution-units (INT, INT) - Max total script execution resources units allowed - per tx (from Alonzo era). They are denominated as - follows (steps, memory). - --max-block-execution-units (INT, INT) - Max total script execution resources units allowed - per block (from Alonzo era). They are denominated as - follows (steps, memory). - --max-value-size INT Max size of a multi-asset value in a tx output (from - Alonzo era). - --collateral-percent INT The percentage of the script contribution to the - txfee that must be provided as collateral inputs when - including Plutus scripts (from Alonzo era). - --max-collateral-inputs INT - The maximum number of collateral inputs allowed in a - transaction (from Alonzo era). - --utxo-cost-per-byte LOVELACE - Cost in lovelace per unit of UTxO storage (from - Babbage era). - --cost-model-file FILE Filepath of the JSON formatted cost model - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_drep.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_drep.cli deleted file mode 100644 index 1ce17209f..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_drep.cli +++ /dev/null @@ -1,22 +0,0 @@ -Usage: cardano-cli governance drep - ( key-gen - | id - | registration-certificate - | retirement-certificate - | update-certificate - | metadata-hash - ) - - DRep member commands. - -Available options: - -h,--help Show this help text - -Available commands: - key-gen Generate Delegated Representative verification and - signing keys. - id Generate a drep id. - registration-certificate Create a registration certificate. - retirement-certificate Create a DRep retirement certificate. - update-certificate Create a DRep update certificate. - metadata-hash Calculate the hash of a metadata file. diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_drep_id.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_drep_id.cli deleted file mode 100644 index 7138c4f77..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_drep_id.cli +++ /dev/null @@ -1,18 +0,0 @@ -Usage: cardano-cli governance drep id - ( --drep-verification-key STRING - | --drep-verification-key-file FILEPATH - ) - [--output-format STRING] - [--out-file FILEPATH] - - Generate a drep id. - -Available options: - --drep-verification-key STRING - DRep verification key (Bech32 or hex-encoded). - --drep-verification-key-file FILEPATH - Filepath of the DRep verification key. - --output-format STRING Optional drep id output format. Accepted output - formats are "hex" and "bech32" (default is "bech32"). - --out-file FILEPATH The output file. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_drep_key-gen.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_drep_key-gen.cli deleted file mode 100644 index 0a1e6dc66..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_drep_key-gen.cli +++ /dev/null @@ -1,11 +0,0 @@ -Usage: cardano-cli governance drep key-gen --verification-key-file FILEPATH - --signing-key-file FILEPATH - - Generate Delegated Representative verification and signing keys. - -Available options: - --verification-key-file FILEPATH - Output filepath of the verification key. - --signing-key-file FILEPATH - Output filepath of the signing key. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_drep_metadata-hash.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_drep_metadata-hash.cli deleted file mode 100644 index 457f2504d..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_drep_metadata-hash.cli +++ /dev/null @@ -1,10 +0,0 @@ -Usage: cardano-cli governance drep metadata-hash --drep-metadata-file FILEPATH - [--out-file FILEPATH] - - Calculate the hash of a metadata file. - -Available options: - --drep-metadata-file FILEPATH - JSON Metadata file to hash. - --out-file FILEPATH Optional output file. Default is to write to stdout. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_drep_registration-certificate.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_drep_registration-certificate.cli deleted file mode 100644 index 400eaf0fa..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_drep_registration-certificate.cli +++ /dev/null @@ -1,29 +0,0 @@ -Usage: cardano-cli governance drep registration-certificate - ( --drep-script-hash HASH - | --drep-verification-key STRING - | --drep-verification-key-file FILEPATH - | --drep-key-hash HASH - ) - --key-reg-deposit-amt NATURAL - [--drep-metadata-url TEXT - --drep-metadata-hash HASH] - --out-file FILEPATH - - Create a registration certificate. - -Available options: - --drep-script-hash HASH DRep script hash (hex-encoded). Obtain it with - "cardano-cli hash script ...". - --drep-verification-key STRING - DRep verification key (Bech32 or hex-encoded). - --drep-verification-key-file FILEPATH - Filepath of the DRep verification key. - --drep-key-hash HASH DRep verification key hash (either Bech32-encoded or - hex-encoded). - --key-reg-deposit-amt NATURAL - Key registration deposit amount. - --drep-metadata-url TEXT DRep anchor URL - --drep-metadata-hash HASH - DRep anchor data hash. - --out-file FILEPATH The output file. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_drep_retirement-certificate.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_drep_retirement-certificate.cli deleted file mode 100644 index 5f3422b83..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_drep_retirement-certificate.cli +++ /dev/null @@ -1,24 +0,0 @@ -Usage: cardano-cli governance drep retirement-certificate - ( --drep-script-hash HASH - | --drep-verification-key STRING - | --drep-verification-key-file FILEPATH - | --drep-key-hash HASH - ) - --deposit-amt LOVELACE - --out-file FILEPATH - - Create a DRep retirement certificate. - -Available options: - --drep-script-hash HASH DRep script hash (hex-encoded). Obtain it with - "cardano-cli hash script ...". - --drep-verification-key STRING - DRep verification key (Bech32 or hex-encoded). - --drep-verification-key-file FILEPATH - Filepath of the DRep verification key. - --drep-key-hash HASH DRep verification key hash (either Bech32-encoded or - hex-encoded). - --deposit-amt LOVELACE DRep deposit amount (same at registration and - retirement). - --out-file FILEPATH The output file. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_drep_update-certificate.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_drep_update-certificate.cli deleted file mode 100644 index c94633159..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_drep_update-certificate.cli +++ /dev/null @@ -1,26 +0,0 @@ -Usage: cardano-cli governance drep update-certificate - ( --drep-script-hash HASH - | --drep-verification-key STRING - | --drep-verification-key-file FILEPATH - | --drep-key-hash HASH - ) - [--drep-metadata-url TEXT - --drep-metadata-hash HASH] - --out-file FILEPATH - - Create a DRep update certificate. - -Available options: - --drep-script-hash HASH DRep script hash (hex-encoded). Obtain it with - "cardano-cli hash script ...". - --drep-verification-key STRING - DRep verification key (Bech32 or hex-encoded). - --drep-verification-key-file FILEPATH - Filepath of the DRep verification key. - --drep-key-hash HASH DRep verification key hash (either Bech32-encoded or - hex-encoded). - --drep-metadata-url TEXT DRep anchor URL - --drep-metadata-hash HASH - DRep anchor data hash. - --out-file FILEPATH The output file. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_verify-poll.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_verify-poll.cli deleted file mode 100644 index d41b54659..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_verify-poll.cli +++ /dev/null @@ -1,12 +0,0 @@ -Usage: cardano-cli governance verify-poll --poll-file FILEPATH - --tx-file FILEPATH - [--out-file FILEPATH] - - Verify an answer to a given SPO poll - -Available options: - --poll-file FILEPATH Filepath to the ongoing poll. - --tx-file FILEPATH Filepath to the JSON TxBody or JSON Tx carrying a - valid poll answer. - --out-file FILEPATH The output file. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_vote.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_vote.cli deleted file mode 100644 index 79455568a..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_vote.cli +++ /dev/null @@ -1,10 +0,0 @@ -Usage: cardano-cli governance vote (create | view) - - Vote commands. - -Available options: - -h,--help Show this help text - -Available commands: - create Vote creation. - view Vote viewing. diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_vote_create.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_vote_create.cli deleted file mode 100644 index 8853da8cb..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_vote_create.cli +++ /dev/null @@ -1,54 +0,0 @@ -Usage: cardano-cli governance vote create (--yes | --no | --abstain) - --governance-action-tx-id TXID - --governance-action-index WORD16 - ( --drep-verification-key STRING - | --drep-verification-key-file FILEPATH - | --drep-key-hash HASH - | --drep-script-hash HASH - | --stake-pool-verification-key STRING - | --cold-verification-key-file FILEPATH - | --stake-pool-id STAKE_POOL_ID - | --cc-hot-verification-key STRING - | --cc-hot-verification-key-file FILEPATH - | --cc-hot-key-hash STRING - | --cc-hot-script-hash HASH - ) - [--anchor-url TEXT - --anchor-data-hash HASH] - --out-file FILEPATH - - Vote creation. - -Available options: - --governance-action-tx-id TXID - Txid of the governance action. - --governance-action-index WORD16 - Tx's governance action index. - --drep-verification-key STRING - DRep verification key (Bech32 or hex-encoded). - --drep-verification-key-file FILEPATH - Filepath of the DRep verification key. - --drep-key-hash HASH DRep verification key hash (either Bech32-encoded or - hex-encoded). - --drep-script-hash HASH Cold Native or Plutus script file hash (hex-encoded). - Obtain it with "cardano-cli hash script ...". - --stake-pool-verification-key STRING - Stake pool verification key (Bech32 or hex-encoded). - --cold-verification-key-file FILEPATH - Filepath of the stake pool verification key. - --stake-pool-id STAKE_POOL_ID - Stake pool ID/verification key hash (either - Bech32-encoded or hex-encoded). - --cc-hot-verification-key STRING - Constitutional Committee hot key (hex-encoded). - --cc-hot-verification-key-file FILEPATH - Filepath of the Constitutional Committee hot key. - --cc-hot-key-hash STRING Constitutional Committee key hash (hex-encoded). - --cc-hot-script-hash HASH - Cold Native or Plutus script file hash (hex-encoded). - Obtain it with "cardano-cli hash script ...". - --anchor-url TEXT Vote anchor URL - --anchor-data-hash HASH Hash of the vote anchor data (obtain it with - "cardano-cli hash anchor-data ..."). - --out-file FILEPATH Output filepath of the vote. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_vote_view.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_vote_view.cli deleted file mode 100644 index 67ca3054d..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/governance_vote_view.cli +++ /dev/null @@ -1,13 +0,0 @@ -Usage: cardano-cli governance vote view [--output-json | --output-yaml] - --vote-file FILEPATH - [--out-file FILEPATH] - - Vote viewing. - -Available options: - --output-json Format governance vote view output to JSON. - --output-yaml Format governance vote view output to YAML. Defaults - to JSON if unspecified. - --vote-file FILEPATH Input filepath of the vote. - --out-file FILEPATH Optional output file. Default is to write to stdout. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/key.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/key.cli deleted file mode 100644 index c47902f06..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/key.cli +++ /dev/null @@ -1,40 +0,0 @@ -Usage: cardano-cli key - ( verification-key - | non-extended-key - | convert-byron-key - | convert-byron-genesis-vkey - | convert-itn-key - | convert-itn-extended-key - | convert-itn-bip32-key - | convert-cardano-address-key - ) - - Key utility commands. - -Available options: - -h,--help Show this help text - -Available commands: - verification-key Get a verification key from a signing key. This - supports all key types. - non-extended-key Get a non-extended verification key from an extended - verification key. This supports all extended key - types. - convert-byron-key Convert a Byron payment, genesis or genesis delegate - key (signing or verification) to a corresponding - Shelley-format key. - convert-byron-genesis-vkey - Convert a Base64-encoded Byron genesis verification - key to a Shelley genesis verification key - convert-itn-key Convert an Incentivized Testnet (ITN) non-extended - (Ed25519) signing or verification key to a - corresponding Shelley stake key - convert-itn-extended-key Convert an Incentivized Testnet (ITN) extended - (Ed25519Extended) signing key to a corresponding - Shelley stake signing key - convert-itn-bip32-key Convert an Incentivized Testnet (ITN) BIP32 - (Ed25519Bip32) signing key to a corresponding Shelley - stake signing key - convert-cardano-address-key - Convert a cardano-address extended signing key to a - corresponding Shelley-format key. diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/key_convert-byron-genesis-vkey.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/key_convert-byron-genesis-vkey.cli deleted file mode 100644 index dc80c4e3e..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/key_convert-byron-genesis-vkey.cli +++ /dev/null @@ -1,11 +0,0 @@ -Usage: cardano-cli key convert-byron-genesis-vkey --byron-genesis-verification-key BASE64 - --out-file FILEPATH - - Convert a Base64-encoded Byron genesis verification key to a Shelley genesis - verification key - -Available options: - --byron-genesis-verification-key BASE64 - Base64 string for the Byron genesis verification key. - --out-file FILEPATH The output file. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/key_convert-byron-key.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/key_convert-byron-key.cli deleted file mode 100644 index 5103818e2..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/key_convert-byron-key.cli +++ /dev/null @@ -1,35 +0,0 @@ -Usage: cardano-cli key convert-byron-key [--password TEXT] - ( --byron-payment-key-type - | --legacy-byron-payment-key-type - | --byron-genesis-key-type - | --legacy-byron-genesis-key-type - | --byron-genesis-delegate-key-type - | --legacy-byron-genesis-delegate-key-type - ) - ( --byron-signing-key-file FILEPATH - | --byron-verification-key-file FILEPATH - ) - --out-file FILEPATH - - Convert a Byron payment, genesis or genesis delegate key (signing or - verification) to a corresponding Shelley-format key. - -Available options: - --password TEXT Password for signing key (if applicable). - --byron-payment-key-type Use a Byron-era payment key. - --legacy-byron-payment-key-type - Use a Byron-era payment key, in legacy SL format. - --byron-genesis-key-type Use a Byron-era genesis key. - --legacy-byron-genesis-key-type - Use a Byron-era genesis key, in legacy SL format. - --byron-genesis-delegate-key-type - Use a Byron-era genesis delegate key. - --legacy-byron-genesis-delegate-key-type - Use a Byron-era genesis delegate key, in legacy SL - format. - --byron-signing-key-file FILEPATH - Input filepath of the Byron-format signing key. - --byron-verification-key-file FILEPATH - Input filepath of the Byron-format verification key. - --out-file FILEPATH The output file. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/key_convert-cardano-address-key.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/key_convert-cardano-address-key.cli deleted file mode 100644 index 20829714e..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/key_convert-cardano-address-key.cli +++ /dev/null @@ -1,29 +0,0 @@ -Usage: cardano-cli key convert-cardano-address-key - ( --cc-cold-key - | --cc-hot-key - | --drep-key - | --shelley-payment-key - | --shelley-stake-key - | --icarus-payment-key - | --byron-payment-key - ) - --signing-key-file FILEPATH - --out-file FILEPATH - - Convert a cardano-address extended signing key to a corresponding - Shelley-format key. - -Available options: - --cc-cold-key Use a committee cold key. - --cc-hot-key Use a committee hot key. - --drep-key Use a DRep key. - --shelley-payment-key Use a Shelley-era extended payment key. - --shelley-stake-key Use a Shelley-era extended stake key. - --icarus-payment-key Use a Byron-era extended payment key formatted in the - Icarus style. - --byron-payment-key Use a Byron-era extended payment key formatted in the - deprecated Byron style. - --signing-key-file FILEPATH - Input filepath of the signing key. - --out-file FILEPATH The output file. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/key_convert-itn-bip32-key.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/key_convert-itn-bip32-key.cli deleted file mode 100644 index cc2fb482b..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/key_convert-itn-bip32-key.cli +++ /dev/null @@ -1,11 +0,0 @@ -Usage: cardano-cli key convert-itn-bip32-key --itn-signing-key-file FILEPATH - --out-file FILEPATH - - Convert an Incentivized Testnet (ITN) BIP32 (Ed25519Bip32) signing key to a - corresponding Shelley stake signing key - -Available options: - --itn-signing-key-file FILEPATH - Filepath of the ITN signing key. - --out-file FILEPATH The output file. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/key_convert-itn-extended-key.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/key_convert-itn-extended-key.cli deleted file mode 100644 index bc21c345c..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/key_convert-itn-extended-key.cli +++ /dev/null @@ -1,11 +0,0 @@ -Usage: cardano-cli key convert-itn-extended-key --itn-signing-key-file FILEPATH - --out-file FILEPATH - - Convert an Incentivized Testnet (ITN) extended (Ed25519Extended) signing key - to a corresponding Shelley stake signing key - -Available options: - --itn-signing-key-file FILEPATH - Filepath of the ITN signing key. - --out-file FILEPATH The output file. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/key_convert-itn-key.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/key_convert-itn-key.cli deleted file mode 100644 index fa5d03634..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/key_convert-itn-key.cli +++ /dev/null @@ -1,16 +0,0 @@ -Usage: cardano-cli key convert-itn-key - ( --itn-signing-key-file FILEPATH - | --itn-verification-key-file FILEPATH - ) - --out-file FILEPATH - - Convert an Incentivized Testnet (ITN) non-extended (Ed25519) signing or - verification key to a corresponding Shelley stake key - -Available options: - --itn-signing-key-file FILEPATH - Filepath of the ITN signing key. - --itn-verification-key-file FILEPATH - Filepath of the ITN verification key. - --out-file FILEPATH The output file. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/key_non-extended-key.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/key_non-extended-key.cli deleted file mode 100644 index d30e9aa90..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/key_non-extended-key.cli +++ /dev/null @@ -1,12 +0,0 @@ -Usage: cardano-cli key non-extended-key --extended-verification-key-file FILEPATH - --verification-key-file FILEPATH - - Get a non-extended verification key from an extended verification key. This - supports all extended key types. - -Available options: - --extended-verification-key-file FILEPATH - Input filepath of the ed25519-bip32 verification key. - --verification-key-file FILEPATH - Output filepath of the verification key. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/key_verification-key.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/key_verification-key.cli deleted file mode 100644 index 69e7ff42e..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/key_verification-key.cli +++ /dev/null @@ -1,11 +0,0 @@ -Usage: cardano-cli key verification-key --signing-key-file FILEPATH - --verification-key-file FILEPATH - - Get a verification key from a signing key. This supports all key types. - -Available options: - --signing-key-file FILEPATH - Input filepath of the signing key. - --verification-key-file FILEPATH - Output filepath of the verification key. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_governance_answer-poll.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_governance_answer-poll.cli deleted file mode 100644 index 5531f7916..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_governance_answer-poll.cli +++ /dev/null @@ -1,12 +0,0 @@ -Usage: cardano-cli latest governance answer-poll --poll-file FILEPATH - [--answer INT] - [--out-file FILEPATH] - - Answer an SPO poll - -Available options: - --poll-file FILEPATH Filepath to the ongoing poll. - --answer INT The index of the chosen answer in the poll. Optional. - Asked interactively if omitted. - --out-file FILEPATH The output file. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_governance_create-genesis-key-delegation-certificate.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_governance_create-genesis-key-delegation-certificate.cli deleted file mode 100644 index 845e52066..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_governance_create-genesis-key-delegation-certificate.cli +++ /dev/null @@ -1,38 +0,0 @@ -Usage: cardano-cli latest governance create-genesis-key-delegation-certificate - ( --genesis-verification-key STRING - | --genesis-verification-key-file FILEPATH - | --genesis-verification-key-hash STRING - ) - ( --genesis-delegate-verification-key STRING - | --genesis-delegate-verification-key-file FILEPATH - | --genesis-delegate-verification-key-hash STRING - ) - ( --vrf-verification-key STRING - | --vrf-verification-key-file FILEPATH - | --vrf-verification-key-hash STRING - ) - --out-file FILEPATH - - Create a genesis key delegation certificate - -Available options: - --genesis-verification-key STRING - Genesis verification key (hex-encoded). - --genesis-verification-key-file FILEPATH - Filepath of the genesis verification key. - --genesis-verification-key-hash STRING - Genesis verification key hash (hex-encoded). - --genesis-delegate-verification-key STRING - Genesis delegate verification key (hex-encoded). - --genesis-delegate-verification-key-file FILEPATH - Filepath of the genesis delegate verification key. - --genesis-delegate-verification-key-hash STRING - Genesis delegate verification key hash (hex-encoded). - --vrf-verification-key STRING - VRF verification key (Bech32 or hex-encoded). - --vrf-verification-key-file FILEPATH - Filepath of the VRF verification key. - --vrf-verification-key-hash STRING - VRF verification key hash (hex-encoded). - --out-file FILEPATH The output file. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_governance_create-mir-certificate.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_governance_create-mir-certificate.cli deleted file mode 100644 index feebace60..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_governance_create-mir-certificate.cli +++ /dev/null @@ -1,28 +0,0 @@ -Usage: cardano-cli latest governance create-mir-certificate - ( ( --reserves - | --treasury - ) - (--stake-address ADDRESS) - (--reward LOVELACE) - --out-file FILEPATH - | stake-addresses - | transfer-to-treasury - | transfer-to-rewards - ) - - Create an MIR (Move Instantaneous Rewards) certificate - -Available options: - --reserves Use the reserves pot. - --treasury Use the treasury pot. - --stake-address ADDRESS Target stake address (bech32 format). - --reward LOVELACE The reward for the relevant reward account. - --out-file FILEPATH The output file. - -h,--help Show this help text - -Available commands: - stake-addresses Create an MIR certificate to pay stake addresses - transfer-to-treasury Create an MIR certificate to transfer from the - reserves pot to the treasury pot - transfer-to-rewards Create an MIR certificate to transfer from the - treasury pot to the reserves pot diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_governance_create-mir-certificate_stake-addresses.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_governance_create-mir-certificate_stake-addresses.cli deleted file mode 100644 index e8f0dd41d..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_governance_create-mir-certificate_stake-addresses.cli +++ /dev/null @@ -1,17 +0,0 @@ -Usage: cardano-cli latest governance create-mir-certificate stake-addresses - ( --reserves - | --treasury - ) - (--stake-address ADDRESS) - (--reward LOVELACE) - --out-file FILEPATH - - Create an MIR certificate to pay stake addresses - -Available options: - --reserves Use the reserves pot. - --treasury Use the treasury pot. - --stake-address ADDRESS Target stake address (bech32 format). - --reward LOVELACE The reward for the relevant reward account. - --out-file FILEPATH The output file. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_governance_create-mir-certificate_transfer-to-rewards.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_governance_create-mir-certificate_transfer-to-rewards.cli deleted file mode 100644 index d0d43121f..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_governance_create-mir-certificate_transfer-to-rewards.cli +++ /dev/null @@ -1,10 +0,0 @@ -Usage: cardano-cli latest governance create-mir-certificate transfer-to-rewards --transfer LOVELACE - --out-file FILEPATH - - Create an MIR certificate to transfer from the treasury pot to the reserves - pot - -Available options: - --transfer LOVELACE The amount to transfer. - --out-file FILEPATH The output file. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_governance_create-mir-certificate_transfer-to-treasury.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_governance_create-mir-certificate_transfer-to-treasury.cli deleted file mode 100644 index 9dad1f21e..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_governance_create-mir-certificate_transfer-to-treasury.cli +++ /dev/null @@ -1,10 +0,0 @@ -Usage: cardano-cli latest governance create-mir-certificate transfer-to-treasury --transfer LOVELACE - --out-file FILEPATH - - Create an MIR certificate to transfer from the reserves pot to the treasury - pot - -Available options: - --transfer LOVELACE The amount to transfer. - --out-file FILEPATH The output file. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_governance_create-poll.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_governance_create-poll.cli deleted file mode 100644 index 9e8bda810..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_governance_create-poll.cli +++ /dev/null @@ -1,14 +0,0 @@ -Usage: cardano-cli latest governance create-poll --question STRING - (--answer STRING) - [--nonce UINT] - --out-file FILEPATH - - Create an SPO poll - -Available options: - --question STRING The question for the poll. - --answer STRING A possible choice for the poll. The option is - repeatable. - --nonce UINT An (optional) nonce for non-replayability. - --out-file FILEPATH The output file. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_governance_verify-poll.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_governance_verify-poll.cli deleted file mode 100644 index 8e535e017..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_governance_verify-poll.cli +++ /dev/null @@ -1,12 +0,0 @@ -Usage: cardano-cli latest governance verify-poll --poll-file FILEPATH - --tx-file FILEPATH - [--out-file FILEPATH] - - Verify an answer to a given SPO poll - -Available options: - --poll-file FILEPATH Filepath to the ongoing poll. - --tx-file FILEPATH Filepath to the JSON TxBody or JSON Tx carrying a - valid poll answer. - --out-file FILEPATH The output file. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_transaction_view.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_transaction_view.cli deleted file mode 100644 index 9f804c4d6..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_transaction_view.cli +++ /dev/null @@ -1 +0,0 @@ -Command "era transaction view" has been removed. Please use "debug transaction view" instead. diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_address.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_address.cli deleted file mode 100644 index e4032f1df..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_address.cli +++ /dev/null @@ -1,13 +0,0 @@ -Usage: cardano-cli legacy address (key-gen | key-hash | build | info) - - Payment address commands - -Available options: - -h,--help Show this help text - -Available commands: - key-gen Create an address key pair. - key-hash Print the hash of an address key. - build Build a Shelley payment address, with optional - delegation to a stake address. - info Print information about an address. diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_address_build.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_address_build.cli deleted file mode 100644 index 6d04249bd..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_address_build.cli +++ /dev/null @@ -1,37 +0,0 @@ -Usage: cardano-cli legacy address build - ( --payment-verification-key STRING - | --payment-verification-key-file FILEPATH - | --payment-script-file FILEPATH - ) - [ --stake-verification-key STRING - | --stake-verification-key-file FILEPATH - | --stake-key-hash HASH - | --stake-script-file FILEPATH - | --stake-address ADDRESS - ] - (--mainnet | --testnet-magic NATURAL) - [--out-file FILEPATH] - - Build a Shelley payment address, with optional delegation to a stake address. - -Available options: - --payment-verification-key STRING - Payment verification key (Bech32-encoded) - --payment-verification-key-file FILEPATH - Filepath of the payment verification key. - --payment-script-file FILEPATH - Filepath of the payment script. - --stake-verification-key STRING - Stake verification key (Bech32 or hex-encoded). - --stake-verification-key-file FILEPATH - Filepath of the staking verification key. - --stake-key-hash HASH Stake verification key hash (hex-encoded). - --stake-script-file FILEPATH - Filepath of the staking script. - --stake-address ADDRESS Target stake address (bech32 format). - --mainnet Use the mainnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --testnet-magic NATURAL Specify a testnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --out-file FILEPATH Optional output file. Default is to write to stdout. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_address_info.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_address_info.cli deleted file mode 100644 index 33407a597..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_address_info.cli +++ /dev/null @@ -1,8 +0,0 @@ -Usage: cardano-cli legacy address info --address ADDRESS [--out-file FILEPATH] - - Print information about an address. - -Available options: - --address ADDRESS A Cardano address - --out-file FILEPATH Optional output file. Default is to write to stdout. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_address_key-gen.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_address_key-gen.cli deleted file mode 100644 index 5e2382090..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_address_key-gen.cli +++ /dev/null @@ -1,23 +0,0 @@ -Usage: cardano-cli legacy address key-gen [--key-output-format STRING] - [ --normal-key - | --extended-key - | --byron-key - ] - --verification-key-file FILEPATH - --signing-key-file FILEPATH - - Create an address key pair. - -Available options: - --key-output-format STRING - Optional key output format. Accepted output formats - are "text-envelope" and "bech32" (default is - "text-envelope"). - --normal-key Use a normal Shelley-era key (default). - --extended-key Use an extended ed25519 Shelley-era key. - --byron-key Use a Byron-era key. - --verification-key-file FILEPATH - Output filepath of the verification key. - --signing-key-file FILEPATH - Output filepath of the signing key. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_address_key-hash.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_address_key-hash.cli deleted file mode 100644 index e7f1945a7..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_address_key-hash.cli +++ /dev/null @@ -1,15 +0,0 @@ -Usage: cardano-cli legacy address key-hash - ( --payment-verification-key STRING - | --payment-verification-key-file FILEPATH - ) - [--out-file FILEPATH] - - Print the hash of an address key. - -Available options: - --payment-verification-key STRING - Payment verification key (Bech32-encoded) - --payment-verification-key-file FILEPATH - Filepath of the payment verification key. - --out-file FILEPATH Optional output file. Default is to write to stdout. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_governance_answer-poll.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_governance_answer-poll.cli deleted file mode 100644 index 3e7921918..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_governance_answer-poll.cli +++ /dev/null @@ -1,12 +0,0 @@ -Usage: cardano-cli legacy governance answer-poll --poll-file FILEPATH - [--answer INT] - [--out-file FILEPATH] - - Answer an SPO poll - -Available options: - --poll-file FILEPATH Filepath to the ongoing poll. - --answer INT The index of the chosen answer in the poll. Optional. - Asked interactively if omitted. - --out-file FILEPATH The output file. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_governance_create-poll.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_governance_create-poll.cli deleted file mode 100644 index 2bacb2004..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_governance_create-poll.cli +++ /dev/null @@ -1,14 +0,0 @@ -Usage: cardano-cli legacy governance create-poll --question STRING - (--answer STRING) - [--nonce UINT] - --out-file FILEPATH - - Create an SPO poll - -Available options: - --question STRING The question for the poll. - --answer STRING A possible choice for the poll. The option is - repeatable. - --nonce UINT An (optional) nonce for non-replayability. - --out-file FILEPATH The output file. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_governance_verify-poll.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_governance_verify-poll.cli deleted file mode 100644 index a51c694ce..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_governance_verify-poll.cli +++ /dev/null @@ -1,12 +0,0 @@ -Usage: cardano-cli legacy governance verify-poll --poll-file FILEPATH - --tx-file FILEPATH - [--out-file FILEPATH] - - Verify an answer to a given SPO poll - -Available options: - --poll-file FILEPATH Filepath to the ongoing poll. - --tx-file FILEPATH Filepath to the JSON TxBody or JSON Tx carrying a - valid poll answer. - --out-file FILEPATH The output file. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_key.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_key.cli deleted file mode 100644 index 8e519236b..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_key.cli +++ /dev/null @@ -1,40 +0,0 @@ -Usage: cardano-cli legacy key - ( verification-key - | non-extended-key - | convert-byron-key - | convert-byron-genesis-vkey - | convert-itn-key - | convert-itn-extended-key - | convert-itn-bip32-key - | convert-cardano-address-key - ) - - Key utility commands - -Available options: - -h,--help Show this help text - -Available commands: - verification-key Get a verification key from a signing key. This - supports all key types. - non-extended-key Get a non-extended verification key from an extended - verification key. This supports all extended key - types. - convert-byron-key Convert a Byron payment, genesis or genesis delegate - key (signing or verification) to a corresponding - Shelley-format key. - convert-byron-genesis-vkey - Convert a Base64-encoded Byron genesis verification - key to a Shelley genesis verification key - convert-itn-key Convert an Incentivized Testnet (ITN) non-extended - (Ed25519) signing or verification key to a - corresponding Shelley stake key - convert-itn-extended-key Convert an Incentivized Testnet (ITN) extended - (Ed25519Extended) signing key to a corresponding - Shelley stake signing key - convert-itn-bip32-key Convert an Incentivized Testnet (ITN) BIP32 - (Ed25519Bip32) signing key to a corresponding Shelley - stake signing key - convert-cardano-address-key - Convert a cardano-address extended signing key to a - corresponding Shelley-format key. diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_key_convert-byron-genesis-vkey.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_key_convert-byron-genesis-vkey.cli deleted file mode 100644 index ebda60903..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_key_convert-byron-genesis-vkey.cli +++ /dev/null @@ -1,11 +0,0 @@ -Usage: cardano-cli legacy key convert-byron-genesis-vkey --byron-genesis-verification-key BASE64 - --out-file FILEPATH - - Convert a Base64-encoded Byron genesis verification key to a Shelley genesis - verification key - -Available options: - --byron-genesis-verification-key BASE64 - Base64 string for the Byron genesis verification key. - --out-file FILEPATH The output file. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_key_convert-byron-key.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_key_convert-byron-key.cli deleted file mode 100644 index 3d35c1799..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_key_convert-byron-key.cli +++ /dev/null @@ -1,35 +0,0 @@ -Usage: cardano-cli legacy key convert-byron-key [--password TEXT] - ( --byron-payment-key-type - | --legacy-byron-payment-key-type - | --byron-genesis-key-type - | --legacy-byron-genesis-key-type - | --byron-genesis-delegate-key-type - | --legacy-byron-genesis-delegate-key-type - ) - ( --byron-signing-key-file FILEPATH - | --byron-verification-key-file FILEPATH - ) - --out-file FILEPATH - - Convert a Byron payment, genesis or genesis delegate key (signing or - verification) to a corresponding Shelley-format key. - -Available options: - --password TEXT Password for signing key (if applicable). - --byron-payment-key-type Use a Byron-era payment key. - --legacy-byron-payment-key-type - Use a Byron-era payment key, in legacy SL format. - --byron-genesis-key-type Use a Byron-era genesis key. - --legacy-byron-genesis-key-type - Use a Byron-era genesis key, in legacy SL format. - --byron-genesis-delegate-key-type - Use a Byron-era genesis delegate key. - --legacy-byron-genesis-delegate-key-type - Use a Byron-era genesis delegate key, in legacy SL - format. - --byron-signing-key-file FILEPATH - Input filepath of the Byron-format signing key. - --byron-verification-key-file FILEPATH - Input filepath of the Byron-format verification key. - --out-file FILEPATH The output file. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_key_convert-cardano-address-key.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_key_convert-cardano-address-key.cli deleted file mode 100644 index 577bb69fd..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_key_convert-cardano-address-key.cli +++ /dev/null @@ -1,29 +0,0 @@ -Usage: cardano-cli legacy key convert-cardano-address-key - ( --cc-cold-key - | --cc-hot-key - | --drep-key - | --shelley-payment-key - | --shelley-stake-key - | --icarus-payment-key - | --byron-payment-key - ) - --signing-key-file FILEPATH - --out-file FILEPATH - - Convert a cardano-address extended signing key to a corresponding - Shelley-format key. - -Available options: - --cc-cold-key Use a committee cold key. - --cc-hot-key Use a committee hot key. - --drep-key Use a DRep key. - --shelley-payment-key Use a Shelley-era extended payment key. - --shelley-stake-key Use a Shelley-era extended stake key. - --icarus-payment-key Use a Byron-era extended payment key formatted in the - Icarus style. - --byron-payment-key Use a Byron-era extended payment key formatted in the - deprecated Byron style. - --signing-key-file FILEPATH - Input filepath of the signing key. - --out-file FILEPATH The output file. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_key_convert-itn-bip32-key.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_key_convert-itn-bip32-key.cli deleted file mode 100644 index dba7fb4da..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_key_convert-itn-bip32-key.cli +++ /dev/null @@ -1,11 +0,0 @@ -Usage: cardano-cli legacy key convert-itn-bip32-key --itn-signing-key-file FILEPATH - --out-file FILEPATH - - Convert an Incentivized Testnet (ITN) BIP32 (Ed25519Bip32) signing key to a - corresponding Shelley stake signing key - -Available options: - --itn-signing-key-file FILEPATH - Filepath of the ITN signing key. - --out-file FILEPATH The output file. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_key_convert-itn-extended-key.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_key_convert-itn-extended-key.cli deleted file mode 100644 index 42fde31a5..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_key_convert-itn-extended-key.cli +++ /dev/null @@ -1,11 +0,0 @@ -Usage: cardano-cli legacy key convert-itn-extended-key --itn-signing-key-file FILEPATH - --out-file FILEPATH - - Convert an Incentivized Testnet (ITN) extended (Ed25519Extended) signing key - to a corresponding Shelley stake signing key - -Available options: - --itn-signing-key-file FILEPATH - Filepath of the ITN signing key. - --out-file FILEPATH The output file. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_key_convert-itn-key.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_key_convert-itn-key.cli deleted file mode 100644 index d9e02ece5..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_key_convert-itn-key.cli +++ /dev/null @@ -1,16 +0,0 @@ -Usage: cardano-cli legacy key convert-itn-key - ( --itn-signing-key-file FILEPATH - | --itn-verification-key-file FILEPATH - ) - --out-file FILEPATH - - Convert an Incentivized Testnet (ITN) non-extended (Ed25519) signing or - verification key to a corresponding Shelley stake key - -Available options: - --itn-signing-key-file FILEPATH - Filepath of the ITN signing key. - --itn-verification-key-file FILEPATH - Filepath of the ITN verification key. - --out-file FILEPATH The output file. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_key_non-extended-key.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_key_non-extended-key.cli deleted file mode 100644 index f437456af..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_key_non-extended-key.cli +++ /dev/null @@ -1,12 +0,0 @@ -Usage: cardano-cli legacy key non-extended-key --extended-verification-key-file FILEPATH - --verification-key-file FILEPATH - - Get a non-extended verification key from an extended verification key. This - supports all extended key types. - -Available options: - --extended-verification-key-file FILEPATH - Input filepath of the ed25519-bip32 verification key. - --verification-key-file FILEPATH - Output filepath of the verification key. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_key_verification-key.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_key_verification-key.cli deleted file mode 100644 index 74f543a91..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_key_verification-key.cli +++ /dev/null @@ -1,11 +0,0 @@ -Usage: cardano-cli legacy key verification-key --signing-key-file FILEPATH - --verification-key-file FILEPATH - - Get a verification key from a signing key. This supports all key types. - -Available options: - --signing-key-file FILEPATH - Input filepath of the signing key. - --verification-key-file FILEPATH - Output filepath of the verification key. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_node.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_node.cli deleted file mode 100644 index dc7de4587..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_node.cli +++ /dev/null @@ -1,22 +0,0 @@ -Usage: cardano-cli legacy node - ( key-gen - | key-gen-KES - | key-gen-VRF - | key-hash-VRF - | new-counter - | issue-op-cert - ) - - Node operation commands - -Available options: - -h,--help Show this help text - -Available commands: - key-gen Create a key pair for a node operator's offline key - and a new certificate issue counter - key-gen-KES Create a key pair for a node KES operational key - key-gen-VRF Create a key pair for a node VRF operational key - key-hash-VRF Print hash of a node's operational VRF key. - new-counter Create a new certificate issue counter - issue-op-cert Issue a node operational certificate diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_node_issue-op-cert.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_node_issue-op-cert.cli deleted file mode 100644 index 409fc720d..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_node_issue-op-cert.cli +++ /dev/null @@ -1,24 +0,0 @@ -Usage: cardano-cli legacy node issue-op-cert - ( --kes-verification-key STRING - | --kes-verification-key-file FILEPATH - ) - --cold-signing-key-file FILEPATH - --operational-certificate-issue-counter-file FILEPATH - --kes-period NATURAL - --out-file FILEPATH - - Issue a node operational certificate - -Available options: - --kes-verification-key STRING - A Bech32 or hex-encoded hot KES verification key. - --kes-verification-key-file FILEPATH - Filepath of the hot KES verification key. - --cold-signing-key-file FILEPATH - Filepath of the cold signing key. - --operational-certificate-issue-counter-file FILEPATH - The file with the issue counter for the operational - certificate. - --kes-period NATURAL The start of the KES key validity period. - --out-file FILEPATH The output file. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_node_key-gen-KES.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_node_key-gen-KES.cli deleted file mode 100644 index e3ab3b3fb..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_node_key-gen-KES.cli +++ /dev/null @@ -1,16 +0,0 @@ -Usage: cardano-cli legacy node key-gen-KES [--key-output-format STRING] - --verification-key-file FILEPATH - --signing-key-file FILEPATH - - Create a key pair for a node KES operational key - -Available options: - --key-output-format STRING - Optional key output format. Accepted output formats - are "text-envelope" and "bech32" (default is - "text-envelope"). - --verification-key-file FILEPATH - Output filepath of the verification key. - --signing-key-file FILEPATH - Output filepath of the signing key. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_node_key-gen-VRF.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_node_key-gen-VRF.cli deleted file mode 100644 index bceaa379e..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_node_key-gen-VRF.cli +++ /dev/null @@ -1,16 +0,0 @@ -Usage: cardano-cli legacy node key-gen-VRF [--key-output-format STRING] - --verification-key-file FILEPATH - --signing-key-file FILEPATH - - Create a key pair for a node VRF operational key - -Available options: - --key-output-format STRING - Optional key output format. Accepted output formats - are "text-envelope" and "bech32" (default is - "text-envelope"). - --verification-key-file FILEPATH - Output filepath of the verification key. - --signing-key-file FILEPATH - Output filepath of the signing key. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_node_key-gen.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_node_key-gen.cli deleted file mode 100644 index 7d9c53612..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_node_key-gen.cli +++ /dev/null @@ -1,21 +0,0 @@ -Usage: cardano-cli legacy node key-gen [--key-output-format STRING] - --cold-verification-key-file FILEPATH - --cold-signing-key-file FILEPATH - --operational-certificate-issue-counter-file FILEPATH - - Create a key pair for a node operator's offline key and a new certificate - issue counter - -Available options: - --key-output-format STRING - Optional key output format. Accepted output formats - are "text-envelope" and "bech32" (default is - "text-envelope"). - --cold-verification-key-file FILEPATH - Filepath of the cold verification key. - --cold-signing-key-file FILEPATH - Filepath of the cold signing key. - --operational-certificate-issue-counter-file FILEPATH - The file with the issue counter for the operational - certificate. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_node_key-hash-VRF.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_node_key-hash-VRF.cli deleted file mode 100644 index 74c2bf089..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_node_key-hash-VRF.cli +++ /dev/null @@ -1,15 +0,0 @@ -Usage: cardano-cli legacy node key-hash-VRF - ( --verification-key STRING - | --verification-key-file FILEPATH - ) - [--out-file FILEPATH] - - Print hash of a node's operational VRF key. - -Available options: - --verification-key STRING - Verification key (Bech32 or hex-encoded). - --verification-key-file FILEPATH - Input filepath of the verification key. - --out-file FILEPATH Optional output file. Default is to write to stdout. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_node_new-counter.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_node_new-counter.cli deleted file mode 100644 index c55646fa4..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_node_new-counter.cli +++ /dev/null @@ -1,22 +0,0 @@ -Usage: cardano-cli legacy node new-counter - ( --stake-pool-verification-key STRING - | --genesis-delegate-verification-key STRING - | --cold-verification-key-file FILEPATH - ) - --counter-value INT - --operational-certificate-issue-counter-file FILEPATH - - Create a new certificate issue counter - -Available options: - --stake-pool-verification-key STRING - Stake pool verification key (Bech32 or hex-encoded). - --genesis-delegate-verification-key STRING - Genesis delegate verification key (hex-encoded). - --cold-verification-key-file FILEPATH - Filepath of the cold verification key. - --counter-value INT The next certificate issue counter value to use. - --operational-certificate-issue-counter-file FILEPATH - The file with the issue counter for the operational - certificate. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_query.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_query.cli deleted file mode 100644 index 20cf8c21f..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_query.cli +++ /dev/null @@ -1,49 +0,0 @@ -Usage: cardano-cli legacy query - ( protocol-parameters - | tip - | stake-pools - | stake-distribution - | stake-address-info - | utxo - | ledger-state - | protocol-state - | stake-snapshot - | leadership-schedule - | kes-period-info - | pool-state - | tx-mempool - | slot-number - ) - - 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 - -Available commands: - protocol-parameters Get the node's current protocol parameters - tip Get the node's current tip (slot no, hash, block no) - stake-pools Get the node's current set of stake pool ids - stake-distribution Get the node's current aggregated stake distribution - stake-address-info Get the current delegations and reward accounts - filtered by stake address. - utxo Get a portion of the current UTxO: by tx in, by - address or the whole. - ledger-state Dump the current ledger state of the node - (Ledger.NewEpochState -- advanced command) - protocol-state Dump the current protocol state of the node - (Ledger.ChainDepState -- advanced command) - stake-snapshot Obtain the three stake snapshots for a pool, plus the - total active stake (advanced command) - pool-params DEPRECATED. Use query pool-state instead. Dump the - pool parameters - (Ledger.NewEpochState.esLState._delegationState._pState._pParams - -- advanced command) - leadership-schedule Get the slots the node is expected to mint a block in - (advanced command) - kes-period-info Get information about the current KES period and your - node's operational certificate. - pool-state Dump the pool state - tx-mempool Local Mempool info - slot-number Query slot number for UTC timestamp diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_query_kes-period-info.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_query_kes-period-info.cli deleted file mode 100644 index 5e7a19ef3..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_query_kes-period-info.cli +++ /dev/null @@ -1,29 +0,0 @@ -Usage: cardano-cli legacy query kes-period-info --socket-path SOCKET_PATH - [--cardano-mode - [--epoch-slots SLOTS]] - ( --mainnet - | --testnet-magic NATURAL - ) - --op-cert-file FILEPATH - [--out-file FILEPATH] - - Get information about the current KES period and your node's operational - certificate. - -Available options: - --socket-path SOCKET_PATH - Path to the node socket. This overrides the - CARDANO_NODE_SOCKET_PATH environment variable. The - argument is optional if CARDANO_NODE_SOCKET_PATH is - defined and mandatory otherwise. - --cardano-mode For talking to a node running in full Cardano mode - (default). - --epoch-slots SLOTS The number of slots per epoch for the Byron era. - (default: 21600) - --mainnet Use the mainnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --testnet-magic NATURAL Specify a testnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --op-cert-file FILEPATH Filepath of the node's operational certificate. - --out-file FILEPATH Optional output file. Default is to write to stdout. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_query_leadership-schedule.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_query_leadership-schedule.cli deleted file mode 100644 index b86509ab0..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_query_leadership-schedule.cli +++ /dev/null @@ -1,52 +0,0 @@ -Usage: cardano-cli legacy query leadership-schedule --socket-path SOCKET_PATH - [--cardano-mode - [--epoch-slots SLOTS]] - ( --mainnet - | --testnet-magic NATURAL - ) - --genesis FILEPATH - ( --stake-pool-verification-key STRING - | --cold-verification-key-file FILEPATH - | --stake-pool-id STAKE_POOL_ID - ) - --vrf-signing-key-file FILEPATH - (--current | --next) - [ --output-json - | --output-text - ] - [--out-file FILEPATH] - - Get the slots the node is expected to mint a block in (advanced command) - -Available options: - --socket-path SOCKET_PATH - Path to the node socket. This overrides the - CARDANO_NODE_SOCKET_PATH environment variable. The - argument is optional if CARDANO_NODE_SOCKET_PATH is - defined and mandatory otherwise. - --cardano-mode For talking to a node running in full Cardano mode - (default). - --epoch-slots SLOTS The number of slots per epoch for the Byron era. - (default: 21600) - --mainnet Use the mainnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --testnet-magic NATURAL Specify a testnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --genesis FILEPATH Shelley genesis filepath - --stake-pool-verification-key STRING - Stake pool verification key (Bech32 or hex-encoded). - --cold-verification-key-file FILEPATH - Filepath of the stake pool verification key. - --stake-pool-id STAKE_POOL_ID - Stake pool ID/verification key hash (either - Bech32-encoded or hex-encoded). - --vrf-signing-key-file FILEPATH - Input filepath of the VRF signing key. - --current Get the leadership schedule for the current epoch. - --next Get the leadership schedule for the following epoch. - --output-json Format leadership-schedule query output to JSON. - Default format when writing to a file - --output-text Format leadership-schedule query output to TEXT. - Default format when writing to stdout - --out-file FILEPATH Optional output file. Default is to write to stdout. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_query_ledger-state.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_query_ledger-state.cli deleted file mode 100644 index 7c6cdeffa..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_query_ledger-state.cli +++ /dev/null @@ -1,27 +0,0 @@ -Usage: cardano-cli legacy query ledger-state --socket-path SOCKET_PATH - [--cardano-mode - [--epoch-slots SLOTS]] - ( --mainnet - | --testnet-magic NATURAL - ) - [--out-file FILEPATH] - - Dump the current ledger state of the node (Ledger.NewEpochState -- advanced - command) - -Available options: - --socket-path SOCKET_PATH - Path to the node socket. This overrides the - CARDANO_NODE_SOCKET_PATH environment variable. The - argument is optional if CARDANO_NODE_SOCKET_PATH is - defined and mandatory otherwise. - --cardano-mode For talking to a node running in full Cardano mode - (default). - --epoch-slots SLOTS The number of slots per epoch for the Byron era. - (default: 21600) - --mainnet Use the mainnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --testnet-magic NATURAL Specify a testnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --out-file FILEPATH Optional output file. Default is to write to stdout. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_query_pool-params.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_query_pool-params.cli deleted file mode 100644 index 8c0bde6e6..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_query_pool-params.cli +++ /dev/null @@ -1,35 +0,0 @@ -Usage: cardano-cli legacy query pool-params --socket-path SOCKET_PATH - [--cardano-mode - [--epoch-slots SLOTS]] - ( --mainnet - | --testnet-magic NATURAL - ) - ( --all-stake-pools - | (--stake-pool-id STAKE_POOL_ID) - ) - [--out-file FILEPATH] - - DEPRECATED. Use query pool-state instead. Dump the pool parameters - (Ledger.NewEpochState.esLState._delegationState._pState._pParams -- advanced - command) - -Available options: - --socket-path SOCKET_PATH - Path to the node socket. This overrides the - CARDANO_NODE_SOCKET_PATH environment variable. The - argument is optional if CARDANO_NODE_SOCKET_PATH is - defined and mandatory otherwise. - --cardano-mode For talking to a node running in full Cardano mode - (default). - --epoch-slots SLOTS The number of slots per epoch for the Byron era. - (default: 21600) - --mainnet Use the mainnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --testnet-magic NATURAL Specify a testnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --all-stake-pools Query for all stake pools - --stake-pool-id STAKE_POOL_ID - Stake pool ID/verification key hash (either - Bech32-encoded or hex-encoded). - --out-file FILEPATH Optional output file. Default is to write to stdout. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_query_pool-state.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_query_pool-state.cli deleted file mode 100644 index a2620751c..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_query_pool-state.cli +++ /dev/null @@ -1,33 +0,0 @@ -Usage: cardano-cli legacy query pool-state --socket-path SOCKET_PATH - [--cardano-mode - [--epoch-slots SLOTS]] - ( --mainnet - | --testnet-magic NATURAL - ) - ( --all-stake-pools - | (--stake-pool-id STAKE_POOL_ID) - ) - [--out-file FILEPATH] - - Dump the pool state - -Available options: - --socket-path SOCKET_PATH - Path to the node socket. This overrides the - CARDANO_NODE_SOCKET_PATH environment variable. The - argument is optional if CARDANO_NODE_SOCKET_PATH is - defined and mandatory otherwise. - --cardano-mode For talking to a node running in full Cardano mode - (default). - --epoch-slots SLOTS The number of slots per epoch for the Byron era. - (default: 21600) - --mainnet Use the mainnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --testnet-magic NATURAL Specify a testnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --all-stake-pools Query for all stake pools - --stake-pool-id STAKE_POOL_ID - Stake pool ID/verification key hash (either - Bech32-encoded or hex-encoded). - --out-file FILEPATH Optional output file. Default is to write to stdout. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_query_protocol-parameters.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_query_protocol-parameters.cli deleted file mode 100644 index 0fa4bf6b1..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_query_protocol-parameters.cli +++ /dev/null @@ -1,26 +0,0 @@ -Usage: cardano-cli legacy query protocol-parameters --socket-path SOCKET_PATH - [--cardano-mode - [--epoch-slots SLOTS]] - ( --mainnet - | --testnet-magic NATURAL - ) - [--out-file FILEPATH] - - Get the node's current protocol parameters - -Available options: - --socket-path SOCKET_PATH - Path to the node socket. This overrides the - CARDANO_NODE_SOCKET_PATH environment variable. The - argument is optional if CARDANO_NODE_SOCKET_PATH is - defined and mandatory otherwise. - --cardano-mode For talking to a node running in full Cardano mode - (default). - --epoch-slots SLOTS The number of slots per epoch for the Byron era. - (default: 21600) - --mainnet Use the mainnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --testnet-magic NATURAL Specify a testnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --out-file FILEPATH Optional output file. Default is to write to stdout. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_query_protocol-state.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_query_protocol-state.cli deleted file mode 100644 index 141d187a6..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_query_protocol-state.cli +++ /dev/null @@ -1,27 +0,0 @@ -Usage: cardano-cli legacy query protocol-state --socket-path SOCKET_PATH - [--cardano-mode - [--epoch-slots SLOTS]] - ( --mainnet - | --testnet-magic NATURAL - ) - [--out-file FILEPATH] - - Dump the current protocol state of the node (Ledger.ChainDepState -- advanced - command) - -Available options: - --socket-path SOCKET_PATH - Path to the node socket. This overrides the - CARDANO_NODE_SOCKET_PATH environment variable. The - argument is optional if CARDANO_NODE_SOCKET_PATH is - defined and mandatory otherwise. - --cardano-mode For talking to a node running in full Cardano mode - (default). - --epoch-slots SLOTS The number of slots per epoch for the Byron era. - (default: 21600) - --mainnet Use the mainnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --testnet-magic NATURAL Specify a testnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --out-file FILEPATH Optional output file. Default is to write to stdout. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_query_slot-number.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_query_slot-number.cli deleted file mode 100644 index 35ceb97fb..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_query_slot-number.cli +++ /dev/null @@ -1,26 +0,0 @@ -Usage: cardano-cli legacy query slot-number --socket-path SOCKET_PATH - [--cardano-mode - [--epoch-slots SLOTS]] - ( --mainnet - | --testnet-magic NATURAL - ) - TIMESTAMP - - Query slot number for UTC timestamp - -Available options: - --socket-path SOCKET_PATH - Path to the node socket. This overrides the - CARDANO_NODE_SOCKET_PATH environment variable. The - argument is optional if CARDANO_NODE_SOCKET_PATH is - defined and mandatory otherwise. - --cardano-mode For talking to a node running in full Cardano mode - (default). - --epoch-slots SLOTS The number of slots per epoch for the Byron era. - (default: 21600) - --mainnet Use the mainnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --testnet-magic NATURAL Specify a testnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - TIMESTAMP UTC timestamp in YYYY-MM-DDThh:mm:ssZ format - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_query_stake-address-info.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_query_stake-address-info.cli deleted file mode 100644 index af4befd91..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_query_stake-address-info.cli +++ /dev/null @@ -1,28 +0,0 @@ -Usage: cardano-cli legacy query stake-address-info --socket-path SOCKET_PATH - [--cardano-mode - [--epoch-slots SLOTS]] - --address ADDRESS - ( --mainnet - | --testnet-magic NATURAL - ) - [--out-file FILEPATH] - - Get the current delegations and reward accounts filtered by stake address. - -Available options: - --socket-path SOCKET_PATH - Path to the node socket. This overrides the - CARDANO_NODE_SOCKET_PATH environment variable. The - argument is optional if CARDANO_NODE_SOCKET_PATH is - defined and mandatory otherwise. - --cardano-mode For talking to a node running in full Cardano mode - (default). - --epoch-slots SLOTS The number of slots per epoch for the Byron era. - (default: 21600) - --address ADDRESS Filter by Cardano stake address (Bech32-encoded). - --mainnet Use the mainnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --testnet-magic NATURAL Specify a testnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --out-file FILEPATH Optional output file. Default is to write to stdout. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_query_stake-distribution.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_query_stake-distribution.cli deleted file mode 100644 index 2494482cc..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_query_stake-distribution.cli +++ /dev/null @@ -1,33 +0,0 @@ -Usage: cardano-cli legacy query stake-distribution --socket-path SOCKET_PATH - [--cardano-mode - [--epoch-slots SLOTS]] - ( --mainnet - | --testnet-magic NATURAL - ) - [ --output-json - | --output-text - ] - [--out-file FILEPATH] - - Get the node's current aggregated stake distribution - -Available options: - --socket-path SOCKET_PATH - Path to the node socket. This overrides the - CARDANO_NODE_SOCKET_PATH environment variable. The - argument is optional if CARDANO_NODE_SOCKET_PATH is - defined and mandatory otherwise. - --cardano-mode For talking to a node running in full Cardano mode - (default). - --epoch-slots SLOTS The number of slots per epoch for the Byron era. - (default: 21600) - --mainnet Use the mainnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --testnet-magic NATURAL Specify a testnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --output-json Format stake-distribution query output to JSON. - Default format when writing to a file - --output-text Format stake-distribution query output to TEXT. - Default format when writing to stdout - --out-file FILEPATH Optional output file. Default is to write to stdout. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_query_stake-pools.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_query_stake-pools.cli deleted file mode 100644 index f874bb252..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_query_stake-pools.cli +++ /dev/null @@ -1,31 +0,0 @@ -Usage: cardano-cli legacy query stake-pools --socket-path SOCKET_PATH - [--cardano-mode - [--epoch-slots SLOTS]] - ( --mainnet - | --testnet-magic NATURAL - ) - [--output-json | --output-text] - [--out-file FILEPATH] - - Get the node's current set of stake pool ids - -Available options: - --socket-path SOCKET_PATH - Path to the node socket. This overrides the - CARDANO_NODE_SOCKET_PATH environment variable. The - argument is optional if CARDANO_NODE_SOCKET_PATH is - defined and mandatory otherwise. - --cardano-mode For talking to a node running in full Cardano mode - (default). - --epoch-slots SLOTS The number of slots per epoch for the Byron era. - (default: 21600) - --mainnet Use the mainnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --testnet-magic NATURAL Specify a testnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --output-json Format stake-pools query output to JSON. Default - format when writing to a file - --output-text Format stake-pools query output to TEXT. Default - format when writing to stdout - --out-file FILEPATH Optional output file. Default is to write to stdout. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_query_stake-snapshot.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_query_stake-snapshot.cli deleted file mode 100644 index 4920c20ff..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_query_stake-snapshot.cli +++ /dev/null @@ -1,34 +0,0 @@ -Usage: cardano-cli legacy query stake-snapshot --socket-path SOCKET_PATH - [--cardano-mode - [--epoch-slots SLOTS]] - ( --mainnet - | --testnet-magic NATURAL - ) - ( --all-stake-pools - | (--stake-pool-id STAKE_POOL_ID) - ) - [--out-file FILEPATH] - - Obtain the three stake snapshots for a pool, plus the total active stake - (advanced command) - -Available options: - --socket-path SOCKET_PATH - Path to the node socket. This overrides the - CARDANO_NODE_SOCKET_PATH environment variable. The - argument is optional if CARDANO_NODE_SOCKET_PATH is - defined and mandatory otherwise. - --cardano-mode For talking to a node running in full Cardano mode - (default). - --epoch-slots SLOTS The number of slots per epoch for the Byron era. - (default: 21600) - --mainnet Use the mainnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --testnet-magic NATURAL Specify a testnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --all-stake-pools Query for all stake pools - --stake-pool-id STAKE_POOL_ID - Stake pool ID/verification key hash (either - Bech32-encoded or hex-encoded). - --out-file FILEPATH Optional output file. Default is to write to stdout. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_query_tip.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_query_tip.cli deleted file mode 100644 index 05528afd3..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_query_tip.cli +++ /dev/null @@ -1,23 +0,0 @@ -Usage: cardano-cli legacy query tip --socket-path SOCKET_PATH - [--cardano-mode [--epoch-slots SLOTS]] - (--mainnet | --testnet-magic NATURAL) - [--out-file FILEPATH] - - Get the node's current tip (slot no, hash, block no) - -Available options: - --socket-path SOCKET_PATH - Path to the node socket. This overrides the - CARDANO_NODE_SOCKET_PATH environment variable. The - argument is optional if CARDANO_NODE_SOCKET_PATH is - defined and mandatory otherwise. - --cardano-mode For talking to a node running in full Cardano mode - (default). - --epoch-slots SLOTS The number of slots per epoch for the Byron era. - (default: 21600) - --mainnet Use the mainnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --testnet-magic NATURAL Specify a testnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --out-file FILEPATH Optional output file. Default is to write to stdout. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_query_tx-mempool.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_query_tx-mempool.cli deleted file mode 100644 index 2fc954e14..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_query_tx-mempool.cli +++ /dev/null @@ -1,35 +0,0 @@ -Usage: cardano-cli legacy query tx-mempool --socket-path SOCKET_PATH - [--cardano-mode - [--epoch-slots SLOTS]] - ( --mainnet - | --testnet-magic NATURAL - ) - (info | next-tx | tx-exists) - [--out-file FILEPATH] - - Local Mempool info - -Available options: - --socket-path SOCKET_PATH - Path to the node socket. This overrides the - CARDANO_NODE_SOCKET_PATH environment variable. The - argument is optional if CARDANO_NODE_SOCKET_PATH is - defined and mandatory otherwise. - --cardano-mode For talking to a node running in full Cardano mode - (default). - --epoch-slots SLOTS The number of slots per epoch for the Byron era. - (default: 21600) - --mainnet Use the mainnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --testnet-magic NATURAL Specify a testnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --out-file FILEPATH Optional output file. Default is to write to stdout. - -h,--help Show this help text - -Available commands: - info Ask the node about the current mempool's capacity and - sizes - next-tx Requests the next transaction from the mempool's - current list - tx-exists Query if a particular transaction exists in the - mempool diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_query_tx-mempool_info.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_query_tx-mempool_info.cli deleted file mode 100644 index 416fddead..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_query_tx-mempool_info.cli +++ /dev/null @@ -1,12 +0,0 @@ -Missing: --socket-path SOCKET_PATH (--mainnet | --testnet-magic NATURAL) - -Usage: cardano-cli legacy query tx-mempool --socket-path SOCKET_PATH - [--cardano-mode - [--epoch-slots SLOTS]] - ( --mainnet - | --testnet-magic NATURAL - ) - (info | next-tx | tx-exists) - [--out-file FILEPATH] - - Local Mempool info diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_query_tx-mempool_next-tx.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_query_tx-mempool_next-tx.cli deleted file mode 100644 index 416fddead..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_query_tx-mempool_next-tx.cli +++ /dev/null @@ -1,12 +0,0 @@ -Missing: --socket-path SOCKET_PATH (--mainnet | --testnet-magic NATURAL) - -Usage: cardano-cli legacy query tx-mempool --socket-path SOCKET_PATH - [--cardano-mode - [--epoch-slots SLOTS]] - ( --mainnet - | --testnet-magic NATURAL - ) - (info | next-tx | tx-exists) - [--out-file FILEPATH] - - Local Mempool info diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_query_tx-mempool_tx-exists_TX_ID.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_query_tx-mempool_tx-exists_TX_ID.cli deleted file mode 100644 index 416fddead..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_query_tx-mempool_tx-exists_TX_ID.cli +++ /dev/null @@ -1,12 +0,0 @@ -Missing: --socket-path SOCKET_PATH (--mainnet | --testnet-magic NATURAL) - -Usage: cardano-cli legacy query tx-mempool --socket-path SOCKET_PATH - [--cardano-mode - [--epoch-slots SLOTS]] - ( --mainnet - | --testnet-magic NATURAL - ) - (info | next-tx | tx-exists) - [--out-file FILEPATH] - - Local Mempool info diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_query_utxo.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_query_utxo.cli deleted file mode 100644 index 5646a5b4e..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_query_utxo.cli +++ /dev/null @@ -1,36 +0,0 @@ -Usage: cardano-cli legacy query utxo --socket-path SOCKET_PATH - [--cardano-mode [--epoch-slots SLOTS]] - ( --whole-utxo - | (--address ADDRESS) - | (--tx-in TX-IN) - ) - (--mainnet | --testnet-magic NATURAL) - [--output-json | --output-text] - [--out-file FILEPATH] - - Get a portion of the current UTxO: by tx in, by address or the whole. - -Available options: - --socket-path SOCKET_PATH - Path to the node socket. This overrides the - CARDANO_NODE_SOCKET_PATH environment variable. The - argument is optional if CARDANO_NODE_SOCKET_PATH is - defined and mandatory otherwise. - --cardano-mode For talking to a node running in full Cardano mode - (default). - --epoch-slots SLOTS The number of slots per epoch for the Byron era. - (default: 21600) - --whole-utxo Return the whole UTxO (only appropriate on small - testnets). - --address ADDRESS Filter by Cardano address(es) (Bech32-encoded). - --tx-in TX-IN Filter by transaction input (TxId#TxIx). - --mainnet Use the mainnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --testnet-magic NATURAL Specify a testnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --output-json Format utxo query output to JSON. Default format when - writing to a file - --output-text Format utxo query output to TEXT. Default format when - writing to stdout - --out-file FILEPATH Optional output file. Default is to write to stdout. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_stake-address.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_stake-address.cli deleted file mode 100644 index 4ffe5092c..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_stake-address.cli +++ /dev/null @@ -1,22 +0,0 @@ -Usage: cardano-cli legacy stake-address - ( key-gen - | build - | key-hash - | registration-certificate - | deregistration-certificate - | delegation-certificate - ) - - Stake address commands - -Available options: - -h,--help Show this help text - -Available commands: - key-gen Create a stake address key pair - build Build a stake address - key-hash Print the hash of a stake address key. - registration-certificate Create a stake address registration certificate - deregistration-certificate - Create a stake address deregistration certificate - delegation-certificate Create a stake address pool delegation certificate diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_stake-address_build.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_stake-address_build.cli deleted file mode 100644 index 616343120..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_stake-address_build.cli +++ /dev/null @@ -1,27 +0,0 @@ -Usage: cardano-cli legacy stake-address build - ( --stake-verification-key STRING - | --stake-verification-key-file FILEPATH - | --stake-key-hash HASH - | --stake-script-file FILEPATH - ) - ( --mainnet - | --testnet-magic NATURAL - ) - [--out-file FILEPATH] - - Build a stake address - -Available options: - --stake-verification-key STRING - Stake verification key (Bech32 or hex-encoded). - --stake-verification-key-file FILEPATH - Filepath of the staking verification key. - --stake-key-hash HASH Stake verification key hash (hex-encoded). - --stake-script-file FILEPATH - Filepath of the staking script. - --mainnet Use the mainnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --testnet-magic NATURAL Specify a testnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --out-file FILEPATH Optional output file. Default is to write to stdout. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_stake-address_delegation-certificate.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_stake-address_delegation-certificate.cli deleted file mode 100644 index 9a4cc7ced..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_stake-address_delegation-certificate.cli +++ /dev/null @@ -1,51 +0,0 @@ -Usage: cardano-cli legacy stake-address delegation-certificate - [ --shelley-era - | --allegra-era - | --mary-era - | --alonzo-era - | --babbage-era - | --conway-era - ] - ( --stake-verification-key STRING - | --stake-verification-key-file FILEPATH - | --stake-key-hash HASH - | --stake-script-file FILEPATH - | --stake-address ADDRESS - ) - ( --stake-pool-verification-key STRING - | --cold-verification-key-file FILEPATH - | --stake-pool-id STAKE_POOL_ID - ) - --out-file FILEPATH - - Create a stake address pool delegation certificate - -Available options: - --shelley-era Specify the Shelley era - DEPRECATED - will be - removed in the future - --allegra-era Specify the Allegra era - DEPRECATED - will be - removed in the future - --mary-era Specify the Mary era - DEPRECATED - will be removed - in the future - --alonzo-era Specify the Alonzo era - DEPRECATED - will be removed - in the future - --babbage-era Specify the Babbage era (default) - DEPRECATED - will - be removed in the future - --conway-era Specify the Conway era - --stake-verification-key STRING - Stake verification key (Bech32 or hex-encoded). - --stake-verification-key-file FILEPATH - Filepath of the staking verification key. - --stake-key-hash HASH Stake verification key hash (hex-encoded). - --stake-script-file FILEPATH - Filepath of the staking script. - --stake-address ADDRESS Target stake address (bech32 format). - --stake-pool-verification-key STRING - Stake pool verification key (Bech32 or hex-encoded). - --cold-verification-key-file FILEPATH - Filepath of the stake pool verification key. - --stake-pool-id STAKE_POOL_ID - Stake pool ID/verification key hash (either - Bech32-encoded or hex-encoded). - --out-file FILEPATH The output file. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_stake-address_deregistration-certificate.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_stake-address_deregistration-certificate.cli deleted file mode 100644 index b2d603ee7..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_stake-address_deregistration-certificate.cli +++ /dev/null @@ -1,43 +0,0 @@ -Usage: cardano-cli legacy stake-address deregistration-certificate - [ --shelley-era - | --allegra-era - | --mary-era - | --alonzo-era - | --babbage-era - | --conway-era - ] - ( --stake-verification-key STRING - | --stake-verification-key-file FILEPATH - | --stake-key-hash HASH - | --stake-script-file FILEPATH - | --stake-address ADDRESS - ) - [--key-reg-deposit-amt NATURAL] - --out-file FILEPATH - - Create a stake address deregistration certificate - -Available options: - --shelley-era Specify the Shelley era - DEPRECATED - will be - removed in the future - --allegra-era Specify the Allegra era - DEPRECATED - will be - removed in the future - --mary-era Specify the Mary era - DEPRECATED - will be removed - in the future - --alonzo-era Specify the Alonzo era - DEPRECATED - will be removed - in the future - --babbage-era Specify the Babbage era (default) - DEPRECATED - will - be removed in the future - --conway-era Specify the Conway era - --stake-verification-key STRING - Stake verification key (Bech32 or hex-encoded). - --stake-verification-key-file FILEPATH - Filepath of the staking verification key. - --stake-key-hash HASH Stake verification key hash (hex-encoded). - --stake-script-file FILEPATH - Filepath of the staking script. - --stake-address ADDRESS Target stake address (bech32 format). - --key-reg-deposit-amt NATURAL - Key registration deposit amount. - --out-file FILEPATH The output file. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_stake-address_key-gen.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_stake-address_key-gen.cli deleted file mode 100644 index 71e3b8aee..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_stake-address_key-gen.cli +++ /dev/null @@ -1,16 +0,0 @@ -Usage: cardano-cli legacy stake-address key-gen [--key-output-format STRING] - --verification-key-file FILEPATH - --signing-key-file FILEPATH - - Create a stake address key pair - -Available options: - --key-output-format STRING - Optional key output format. Accepted output formats - are "text-envelope" and "bech32" (default is - "text-envelope"). - --verification-key-file FILEPATH - Output filepath of the verification key. - --signing-key-file FILEPATH - Output filepath of the signing key. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_stake-address_key-hash.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_stake-address_key-hash.cli deleted file mode 100644 index ef22bafe5..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_stake-address_key-hash.cli +++ /dev/null @@ -1,15 +0,0 @@ -Usage: cardano-cli legacy stake-address key-hash - ( --stake-verification-key STRING - | --stake-verification-key-file FILEPATH - ) - [--out-file FILEPATH] - - Print the hash of a stake address key. - -Available options: - --stake-verification-key STRING - Stake verification key (Bech32 or hex-encoded). - --stake-verification-key-file FILEPATH - Filepath of the staking verification key. - --out-file FILEPATH Optional output file. Default is to write to stdout. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_stake-address_registration-certificate.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_stake-address_registration-certificate.cli deleted file mode 100644 index 717af0958..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_stake-address_registration-certificate.cli +++ /dev/null @@ -1,43 +0,0 @@ -Usage: cardano-cli legacy stake-address registration-certificate - [ --shelley-era - | --allegra-era - | --mary-era - | --alonzo-era - | --babbage-era - | --conway-era - ] - ( --stake-verification-key STRING - | --stake-verification-key-file FILEPATH - | --stake-key-hash HASH - | --stake-script-file FILEPATH - | --stake-address ADDRESS - ) - [--key-reg-deposit-amt NATURAL] - --out-file FILEPATH - - Create a stake address registration certificate - -Available options: - --shelley-era Specify the Shelley era - DEPRECATED - will be - removed in the future - --allegra-era Specify the Allegra era - DEPRECATED - will be - removed in the future - --mary-era Specify the Mary era - DEPRECATED - will be removed - in the future - --alonzo-era Specify the Alonzo era - DEPRECATED - will be removed - in the future - --babbage-era Specify the Babbage era (default) - DEPRECATED - will - be removed in the future - --conway-era Specify the Conway era - --stake-verification-key STRING - Stake verification key (Bech32 or hex-encoded). - --stake-verification-key-file FILEPATH - Filepath of the staking verification key. - --stake-key-hash HASH Stake verification key hash (hex-encoded). - --stake-script-file FILEPATH - Filepath of the staking script. - --stake-address ADDRESS Target stake address (bech32 format). - --key-reg-deposit-amt NATURAL - Key registration deposit amount. - --out-file FILEPATH The output file. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_stake-pool.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_stake-pool.cli deleted file mode 100644 index 26e7d76bb..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_stake-pool.cli +++ /dev/null @@ -1,18 +0,0 @@ -Usage: cardano-cli legacy stake-pool - ( registration-certificate - | deregistration-certificate - | id - | metadata-hash - ) - - Stake pool commands - -Available options: - -h,--help Show this help text - -Available commands: - registration-certificate Create a stake pool registration certificate - deregistration-certificate - Create a stake pool deregistration certificate - id Build pool id from the offline key - metadata-hash Print the hash of pool metadata. diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_stake-pool_deregistration-certificate.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_stake-pool_deregistration-certificate.cli deleted file mode 100644 index 6e33b843f..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_stake-pool_deregistration-certificate.cli +++ /dev/null @@ -1,35 +0,0 @@ -Usage: cardano-cli legacy stake-pool deregistration-certificate - [ --shelley-era - | --allegra-era - | --mary-era - | --alonzo-era - | --babbage-era - | --conway-era - ] - ( --stake-pool-verification-key STRING - | --cold-verification-key-file FILEPATH - ) - --epoch NATURAL - --out-file FILEPATH - - Create a stake pool deregistration certificate - -Available options: - --shelley-era Specify the Shelley era - DEPRECATED - will be - removed in the future - --allegra-era Specify the Allegra era - DEPRECATED - will be - removed in the future - --mary-era Specify the Mary era - DEPRECATED - will be removed - in the future - --alonzo-era Specify the Alonzo era - DEPRECATED - will be removed - in the future - --babbage-era Specify the Babbage era (default) - DEPRECATED - will - be removed in the future - --conway-era Specify the Conway era - --stake-pool-verification-key STRING - Stake pool verification key (Bech32 or hex-encoded). - --cold-verification-key-file FILEPATH - Filepath of the stake pool verification key. - --epoch NATURAL The epoch number. - --out-file FILEPATH The output file. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_stake-pool_id.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_stake-pool_id.cli deleted file mode 100644 index 6d3929c93..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_stake-pool_id.cli +++ /dev/null @@ -1,18 +0,0 @@ -Usage: cardano-cli legacy stake-pool id - ( --stake-pool-verification-key STRING - | --cold-verification-key-file FILEPATH - ) - [--output-format STRING] - [--out-file FILEPATH] - - Build pool id from the offline key - -Available options: - --stake-pool-verification-key STRING - Stake pool verification key (Bech32 or hex-encoded). - --cold-verification-key-file FILEPATH - Filepath of the stake pool verification key. - --output-format STRING Optional pool id output format. Accepted output - formats are "hex" and "bech32" (default is "bech32"). - --out-file FILEPATH Optional output file. Default is to write to stdout. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_stake-pool_metadata-hash.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_stake-pool_metadata-hash.cli deleted file mode 100644 index 8a215aeb5..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_stake-pool_metadata-hash.cli +++ /dev/null @@ -1,10 +0,0 @@ -Usage: cardano-cli legacy stake-pool metadata-hash --pool-metadata-file FILEPATH - [--out-file FILEPATH] - - Print the hash of pool metadata. - -Available options: - --pool-metadata-file FILEPATH - Filepath of the pool metadata. - --out-file FILEPATH Optional output file. Default is to write to stdout. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_stake-pool_registration-certificate.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_stake-pool_registration-certificate.cli deleted file mode 100644 index 2353b60ec..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_stake-pool_registration-certificate.cli +++ /dev/null @@ -1,91 +0,0 @@ -Usage: cardano-cli legacy stake-pool registration-certificate - [ --shelley-era - | --allegra-era - | --mary-era - | --alonzo-era - | --babbage-era - | --conway-era - ] - ( --stake-pool-verification-key STRING - | --cold-verification-key-file FILEPATH - ) - ( --vrf-verification-key STRING - | --vrf-verification-key-file FILEPATH - ) - --pool-pledge LOVELACE - --pool-cost LOVELACE - --pool-margin RATIONAL - ( --pool-reward-account-verification-key STRING - | --pool-reward-account-verification-key-file FILEPATH - ) - ( --pool-owner-verification-key STRING - | --pool-owner-stake-verification-key-file FILEPATH - ) - [ [--pool-relay-ipv4 STRING] - [--pool-relay-ipv6 STRING] - --pool-relay-port INT - | --single-host-pool-relay STRING - [--pool-relay-port INT] - | --multi-host-pool-relay STRING - ] - [--metadata-url URL - --metadata-hash HASH] - ( --mainnet - | --testnet-magic NATURAL - ) - --out-file FILEPATH - - Create a stake pool registration certificate - -Available options: - --shelley-era Specify the Shelley era - DEPRECATED - will be - removed in the future - --allegra-era Specify the Allegra era - DEPRECATED - will be - removed in the future - --mary-era Specify the Mary era - DEPRECATED - will be removed - in the future - --alonzo-era Specify the Alonzo era - DEPRECATED - will be removed - in the future - --babbage-era Specify the Babbage era (default) - DEPRECATED - will - be removed in the future - --conway-era Specify the Conway era - --stake-pool-verification-key STRING - Stake pool verification key (Bech32 or hex-encoded). - --cold-verification-key-file FILEPATH - Filepath of the stake pool verification key. - --vrf-verification-key STRING - VRF verification key (Bech32 or hex-encoded). - --vrf-verification-key-file FILEPATH - Filepath of the VRF verification key. - --pool-pledge LOVELACE The stake pool's pledge. - --pool-cost LOVELACE The stake pool's cost. - --pool-margin RATIONAL The stake pool's margin. - --pool-reward-account-verification-key STRING - Reward account stake verification key (Bech32 or - hex-encoded). - --pool-reward-account-verification-key-file FILEPATH - Filepath of the reward account stake verification - key. - --pool-owner-verification-key STRING - Pool owner stake verification key (Bech32 or - hex-encoded). - --pool-owner-stake-verification-key-file FILEPATH - Filepath of the pool owner stake verification key. - --pool-relay-ipv4 STRING The stake pool relay's IPv4 address - --pool-relay-ipv6 STRING The stake pool relay's IPv6 address - --pool-relay-port INT The stake pool relay's port - --single-host-pool-relay STRING - The stake pool relay's DNS name that corresponds to - an A or AAAA DNS record - --pool-relay-port INT The stake pool relay's port - --multi-host-pool-relay STRING - The stake pool relay's DNS name that corresponds to - an SRV DNS record - --metadata-url URL Pool metadata URL (maximum length of 64 characters). - --metadata-hash HASH Pool metadata hash. - --mainnet Use the mainnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --testnet-magic NATURAL Specify a testnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --out-file FILEPATH The output file. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_text-view_decode-cbor.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_text-view_decode-cbor.cli deleted file mode 100644 index fe0f5a162..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_text-view_decode-cbor.cli +++ /dev/null @@ -1,9 +0,0 @@ -Usage: cardano-cli legacy text-view decode-cbor --in-file FILEPATH - [--out-file FILEPATH] - - Print a TextView file as decoded CBOR. - -Available options: - --in-file FILEPATH CBOR input file. - --out-file FILEPATH Optional output file. Default is to write to stdout. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_transaction.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_transaction.cli deleted file mode 100644 index 5b37f152d..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_transaction.cli +++ /dev/null @@ -1,41 +0,0 @@ -Usage: cardano-cli legacy transaction - ( build-raw - | build - | sign - | witness - | assemble - | submit - | policyid - | calculate-min-fee - | calculate-min-required-utxo - | hash-script-data - | txid - ) - - Transaction commands - -Available options: - -h,--help Show this help text - -Available commands: - build-raw Build a transaction (low-level, inconvenient) - - Please note the order[93;22;23;24m of some cmd options is crucial. If used incorrectly may produce undesired tx body. See nested [] notation above for details.[0;22;23;24m - build Build a balanced transaction (automatically calculates fees) - - Please note the order[93;22;23;24m of some cmd options is crucial. If used incorrectly may produce undesired tx body. See nested [] notation above for details.[0;22;23;24m - sign Sign a transaction - witness Create a transaction witness - assemble Assemble a tx body and witness(es) to form a - transaction - submit Submit a transaction to the local node whose Unix - domain socket is obtained from the - CARDANO_NODE_SOCKET_PATH environment variable. - policyid Calculate the PolicyId from the monetary policy - script. - calculate-min-fee Calculate the minimum fee for a transaction. - calculate-min-required-utxo - Calculate the minimum required UTxO for a transaction - output. - hash-script-data Calculate the hash of script data. - txid Print a transaction identifier. diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_transaction_assemble.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_transaction_assemble.cli deleted file mode 100644 index 33e3cf92e..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_transaction_assemble.cli +++ /dev/null @@ -1,11 +0,0 @@ -Usage: cardano-cli legacy transaction assemble --tx-body-file FILEPATH - [--witness-file FILEPATH] - --out-file FILEPATH - - Assemble a tx body and witness(es) to form a transaction - -Available options: - --tx-body-file FILEPATH Input filepath of the JSON TxBody. - --witness-file FILEPATH Filepath of the witness - --out-file FILEPATH The output file. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_transaction_build-raw.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_transaction_build-raw.cli deleted file mode 100644 index 8327729c7..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_transaction_build-raw.cli +++ /dev/null @@ -1,420 +0,0 @@ -Usage: cardano-cli legacy transaction build-raw - [ --byron-era - | --shelley-era - | --allegra-era - | --mary-era - | --alonzo-era - | --babbage-era - ] - [ --script-valid - | --script-invalid - ] - (--tx-in TX-IN - [ --spending-tx-in-reference TX-IN - ( --spending-plutus-script-v2 - | --spending-plutus-script-v3 - ) - [ --spending-reference-tx-in-datum-cbor-file CBOR_FILE - | --spending-reference-tx-in-datum-file JSON_FILE - | --spending-reference-tx-in-datum-value JSON_VALUE - | --spending-reference-tx-in-inline-datum-present - ] - ( --spending-reference-tx-in-redeemer-cbor-file CBOR_FILE - | --spending-reference-tx-in-redeemer-file JSON_FILE - | --spending-reference-tx-in-redeemer-value JSON_VALUE - ) - --spending-reference-tx-in-execution-units (INT, INT) - | --simple-script-tx-in-reference TX-IN - | --tx-in-script-file FILEPATH - [ - [ --tx-in-datum-cbor-file CBOR_FILE - | --tx-in-datum-file JSON_FILE - | --tx-in-datum-value JSON_VALUE - | --tx-in-inline-datum-present - ] - ( --tx-in-redeemer-cbor-file CBOR_FILE - | --tx-in-redeemer-file JSON_FILE - | --tx-in-redeemer-value JSON_VALUE - ) - --tx-in-execution-units (INT, INT)] - ]) - [--read-only-tx-in-reference TX-IN] - [--tx-in-collateral TX-IN] - [--tx-out-return-collateral ADDRESS VALUE] - [--tx-total-collateral INTEGER] - [ --required-signer FILEPATH - | --required-signer-hash HASH - ] - [--tx-out ADDRESS VALUE - [ --tx-out-datum-hash HASH - | --tx-out-datum-hash-cbor-file CBOR_FILE - | --tx-out-datum-hash-file JSON_FILE - | --tx-out-datum-hash-value JSON_VALUE - | --tx-out-datum-embed-cbor-file CBOR_FILE - | --tx-out-datum-embed-file JSON_FILE - | --tx-out-datum-embed-value JSON_VALUE - | --tx-out-inline-datum-cbor-file CBOR_FILE - | --tx-out-inline-datum-file JSON_FILE - | --tx-out-inline-datum-value JSON_VALUE - ] - [--tx-out-reference-script-file FILEPATH]] - [--mint VALUE - ( --mint-script-file FILEPATH - [ - ( --mint-redeemer-cbor-file CBOR_FILE - | --mint-redeemer-file JSON_FILE - | --mint-redeemer-value JSON_VALUE - ) - --mint-execution-units (INT, INT)] - | --simple-minting-script-tx-in-reference TX-IN - --policy-id HASH - | --mint-tx-in-reference TX-IN - ( --mint-plutus-script-v2 - | --mint-plutus-script-v3 - ) - ( --mint-reference-tx-in-redeemer-cbor-file CBOR_FILE - | --mint-reference-tx-in-redeemer-file JSON_FILE - | --mint-reference-tx-in-redeemer-value JSON_VALUE - ) - --mint-reference-tx-in-execution-units (INT, INT) - --policy-id HASH - )] - [--invalid-before SLOT] - [--invalid-hereafter SLOT] - --fee LOVELACE - [--certificate-file FILEPATH - [ --certificate-script-file FILEPATH - [ - ( --certificate-redeemer-cbor-file CBOR_FILE - | --certificate-redeemer-file JSON_FILE - | --certificate-redeemer-value JSON_VALUE - ) - --certificate-execution-units (INT, INT)] - | --certificate-tx-in-reference TX-IN - ( --certificate-plutus-script-v2 - | --certificate-plutus-script-v3 - ) - ( --certificate-reference-tx-in-redeemer-cbor-file CBOR_FILE - | --certificate-reference-tx-in-redeemer-file JSON_FILE - | --certificate-reference-tx-in-redeemer-value JSON_VALUE - ) - --certificate-reference-tx-in-execution-units (INT, INT) - ]] - [--withdrawal WITHDRAWAL - [ --withdrawal-script-file FILEPATH - [ - ( --withdrawal-redeemer-cbor-file CBOR_FILE - | --withdrawal-redeemer-file JSON_FILE - | --withdrawal-redeemer-value JSON_VALUE - ) - --withdrawal-execution-units (INT, INT)] - | --withdrawal-tx-in-reference TX-IN - ( --withdrawal-plutus-script-v2 - | --withdrawal-plutus-script-v3 - ) - ( --withdrawal-reference-tx-in-redeemer-cbor-file CBOR_FILE - | --withdrawal-reference-tx-in-redeemer-file JSON_FILE - | --withdrawal-reference-tx-in-redeemer-value JSON_VALUE - ) - --withdrawal-reference-tx-in-execution-units (INT, INT) - ]] - [ --json-metadata-no-schema - | --json-metadata-detailed-schema - ] - [--auxiliary-script-file FILEPATH] - [ --metadata-json-file FILEPATH - | --metadata-cbor-file FILEPATH - ] - [--protocol-params-file FILEPATH] - [--update-proposal-file FILEPATH] - --out-file FILEPATH - - Build a transaction (low-level, inconvenient) - - Please note the order[93;22;23;24m of some cmd options is crucial. If used incorrectly may produce undesired tx body. See nested [] notation above for details.[0;22;23;24m - -Available options: - --byron-era Specify the Byron era - DEPRECATED - will be removed - in the future - --shelley-era Specify the Shelley era - DEPRECATED - will be - removed in the future - --allegra-era Specify the Allegra era - DEPRECATED - will be - removed in the future - --mary-era Specify the Mary era - DEPRECATED - will be removed - in the future - --alonzo-era Specify the Alonzo era - DEPRECATED - will be removed - in the future - --babbage-era Specify the Babbage era (default) - DEPRECATED - will - be removed in the future - --script-valid Assertion that the script is valid. (default) - --script-invalid Assertion that the script is invalid. If a - transaction is submitted with such a script, the - script will fail and the collateral will be taken. - --tx-in TX-IN TxId#TxIx - --spending-tx-in-reference TX-IN - TxId#TxIx - Specify a reference input. The reference - input must have a plutus reference script attached. - --spending-plutus-script-v2 - Specify a plutus script v2 reference script. - --spending-plutus-script-v3 - Specify a plutus script v3 reference script. - --spending-reference-tx-in-datum-cbor-file CBOR_FILE - The script datum file. The file has to be in CBOR - format. - --spending-reference-tx-in-datum-file JSON_FILE - The script datum file. The file must follow the - detailed JSON schema for script data. - --spending-reference-tx-in-datum-value JSON_VALUE - The script datum. There is no schema: (almost) any - JSON value is supported, including top-level strings - and numbers. - --spending-reference-tx-in-inline-datum-present - Inline datum present at transaction input. - --spending-reference-tx-in-redeemer-cbor-file CBOR_FILE - The script redeemer file. The file has to be in CBOR - format. - --spending-reference-tx-in-redeemer-file JSON_FILE - The script redeemer file. The file must follow the - detailed JSON schema for script data. - --spending-reference-tx-in-redeemer-value JSON_VALUE - The script redeemer value. There is no schema: - (almost) any JSON value is supported, including - top-level strings and numbers. - --spending-reference-tx-in-execution-units (INT, INT) - The time and space units needed by the script. - --simple-script-tx-in-reference TX-IN - TxId#TxIx - Specify a reference input. The reference - input must have a simple reference script attached. - --tx-in-script-file FILEPATH - The file containing the script to witness the - spending of the transaction input. - --tx-in-datum-cbor-file CBOR_FILE - The script datum file. The file has to be in CBOR - format. - --tx-in-datum-file JSON_FILE - The script datum file. The file must follow the - detailed JSON schema for script data. - --tx-in-datum-value JSON_VALUE - The script datum. There is no schema: (almost) any - JSON value is supported, including top-level strings - and numbers. - --tx-in-inline-datum-present - Inline datum present at transaction input. - --tx-in-redeemer-cbor-file CBOR_FILE - The script redeemer file. The file has to be in CBOR - format. - --tx-in-redeemer-file JSON_FILE - The script redeemer file. The file must follow the - detailed JSON schema for script data. - --tx-in-redeemer-value JSON_VALUE - The script redeemer value. There is no schema: - (almost) any JSON value is supported, including - top-level strings and numbers. - --tx-in-execution-units (INT, INT) - The time and space units needed by the script. - --read-only-tx-in-reference TX-IN - Specify a read only reference input. This reference - input is not witnessing anything it is simply - provided in the plutus script context. - --tx-in-collateral TX-IN TxId#TxIx - --tx-out-return-collateral ADDRESS VALUE - The transaction output as ADDRESS VALUE where ADDRESS - is the Bech32-encoded address followed by the value - in Lovelace. In the situation where your collateral - txin over collateralizes the transaction, you can - optionally specify a tx out of your choosing to - return the excess Lovelace. - --tx-total-collateral INTEGER - The total amount of collateral that will be collected - as fees in the event of a Plutus script failure. Must - be used in conjuction with - "--tx-out-return-collateral". - --required-signer FILEPATH - Input filepath of the signing key (zero or more) - whose signature is required. - --required-signer-hash HASH - Hash of the verification key (zero or more) whose - signature is required. - --tx-out ADDRESS VALUE The transaction output as ADDRESS VALUE where ADDRESS - is the Bech32-encoded address followed by the value - in the multi-asset syntax (including simply - Lovelace). - --tx-out-datum-hash HASH The script datum hash for this tx output, as the raw - datum hash (in hex). - --tx-out-datum-hash-cbor-file CBOR_FILE - The script datum hash for this tx output, by hashing - the script datum in the file. The file has to be in - CBOR format. - --tx-out-datum-hash-file JSON_FILE - The script datum hash for this tx output, by hashing - the script datum in the file. The file must follow - the detailed JSON schema for script data. - --tx-out-datum-hash-value JSON_VALUE - The script datum hash for this tx output, by hashing - the script datum given here. There is no schema: - (almost) any JSON value is supported, including - top-level strings and numbers. - --tx-out-datum-embed-cbor-file CBOR_FILE - The script datum to embed in the tx for this output, - in the given file. The file has to be in CBOR format. - --tx-out-datum-embed-file JSON_FILE - The script datum to embed in the tx for this output, - in the given file. The file must follow the detailed - JSON schema for script data. - --tx-out-datum-embed-value JSON_VALUE - The script datum to embed in the tx for this output, - given here. There is no schema: (almost) any JSON - value is supported, including top-level strings and - numbers. - --tx-out-inline-datum-cbor-file CBOR_FILE - The script datum to embed in the tx output as an - inline datum, in the given file. The file has to be - in CBOR format. - --tx-out-inline-datum-file JSON_FILE - The script datum to embed in the tx output as an - inline datum, in the given file. The file must follow - the detailed JSON schema for script data. - --tx-out-inline-datum-value JSON_VALUE - The script datum to embed in the tx output as an - inline datum, given here. There is no schema: - (almost) any JSON value is supported, including - top-level strings and numbers. - --tx-out-reference-script-file FILEPATH - Reference script input file. - --mint VALUE Mint multi-asset value(s) with the multi-asset cli - syntax. You must specify a script witness. - --mint-script-file FILEPATH - The file containing the script to witness the minting - of assets for a particular policy Id. - --mint-redeemer-cbor-file CBOR_FILE - The script redeemer file. The file has to be in CBOR - format. - --mint-redeemer-file JSON_FILE - The script redeemer file. The file must follow the - detailed JSON schema for script data. - --mint-redeemer-value JSON_VALUE - The script redeemer value. There is no schema: - (almost) any JSON value is supported, including - top-level strings and numbers. - --mint-execution-units (INT, INT) - The time and space units needed by the script. - --simple-minting-script-tx-in-reference TX-IN - TxId#TxIx - Specify a reference input. The reference - input must have a simple reference script attached. - --policy-id HASH Policy id of minting script. - --mint-tx-in-reference TX-IN - TxId#TxIx - Specify a reference input. The reference - input must have a plutus reference script attached. - --mint-plutus-script-v2 Specify a plutus script v2 reference script. - --mint-plutus-script-v3 Specify a plutus script v3 reference script. - --mint-reference-tx-in-redeemer-cbor-file CBOR_FILE - The script redeemer file. The file has to be in CBOR - format. - --mint-reference-tx-in-redeemer-file JSON_FILE - The script redeemer file. The file must follow the - detailed JSON schema for script data. - --mint-reference-tx-in-redeemer-value JSON_VALUE - The script redeemer value. There is no schema: - (almost) any JSON value is supported, including - top-level strings and numbers. - --mint-reference-tx-in-execution-units (INT, INT) - The time and space units needed by the script. - --policy-id HASH Policy id of minting script. - --invalid-before SLOT Time that transaction is valid from (in slots). - --invalid-hereafter SLOT Time that transaction is valid until (in slots). - --fee LOVELACE The fee amount in Lovelace. - --certificate-file FILEPATH - Filepath of the certificate. This encompasses all - types of certificates (stake pool certificates, stake - key certificates etc). Optionally specify a script - witness. - --certificate-script-file FILEPATH - The file containing the script to witness the use of - the certificate. - --certificate-redeemer-cbor-file CBOR_FILE - The script redeemer file. The file has to be in CBOR - format. - --certificate-redeemer-file JSON_FILE - The script redeemer file. The file must follow the - detailed JSON schema for script data. - --certificate-redeemer-value JSON_VALUE - The script redeemer value. There is no schema: - (almost) any JSON value is supported, including - top-level strings and numbers. - --certificate-execution-units (INT, INT) - The time and space units needed by the script. - --certificate-tx-in-reference TX-IN - TxId#TxIx - Specify a reference input. The reference - input must have a plutus reference script attached. - --certificate-plutus-script-v2 - Specify a plutus script v2 reference script. - --certificate-plutus-script-v3 - Specify a plutus script v3 reference script. - --certificate-reference-tx-in-redeemer-cbor-file CBOR_FILE - The script redeemer file. The file has to be in CBOR - format. - --certificate-reference-tx-in-redeemer-file JSON_FILE - The script redeemer file. The file must follow the - detailed JSON schema for script data. - --certificate-reference-tx-in-redeemer-value JSON_VALUE - The script redeemer value. There is no schema: - (almost) any JSON value is supported, including - top-level strings and numbers. - --certificate-reference-tx-in-execution-units (INT, INT) - The time and space units needed by the script. - --withdrawal WITHDRAWAL The reward withdrawal as StakeAddress+Lovelace where - StakeAddress is the Bech32-encoded stake address - followed by the amount in Lovelace. Optionally - specify a script witness. - --withdrawal-script-file FILEPATH - The file containing the script to witness the - withdrawal of rewards. - --withdrawal-redeemer-cbor-file CBOR_FILE - The script redeemer file. The file has to be in CBOR - format. - --withdrawal-redeemer-file JSON_FILE - The script redeemer file. The file must follow the - detailed JSON schema for script data. - --withdrawal-redeemer-value JSON_VALUE - The script redeemer value. There is no schema: - (almost) any JSON value is supported, including - top-level strings and numbers. - --withdrawal-execution-units (INT, INT) - The time and space units needed by the script. - --withdrawal-tx-in-reference TX-IN - TxId#TxIx - Specify a reference input. The reference - input must have a plutus reference script attached. - --withdrawal-plutus-script-v2 - Specify a plutus script v2 reference script. - --withdrawal-plutus-script-v3 - Specify a plutus script v3 reference script. - --withdrawal-reference-tx-in-redeemer-cbor-file CBOR_FILE - The script redeemer file. The file has to be in CBOR - format. - --withdrawal-reference-tx-in-redeemer-file JSON_FILE - The script redeemer file. The file must follow the - detailed JSON schema for script data. - --withdrawal-reference-tx-in-redeemer-value JSON_VALUE - The script redeemer value. There is no schema: - (almost) any JSON value is supported, including - top-level strings and numbers. - --withdrawal-reference-tx-in-execution-units (INT, INT) - The time and space units needed by the script. - --json-metadata-no-schema - Use the "no schema" conversion from JSON to tx - metadata (default). - --json-metadata-detailed-schema - Use the "detailed schema" conversion from JSON to tx - metadata. - --auxiliary-script-file FILEPATH - Filepath of auxiliary script(s) - --metadata-json-file FILEPATH - Filepath of the metadata file, in JSON format. - --metadata-cbor-file FILEPATH - Filepath of the metadata, in raw CBOR format. - --protocol-params-file FILEPATH - Filepath of the JSON-encoded protocol parameters file - --update-proposal-file FILEPATH - Filepath of the update proposal. - --out-file FILEPATH Output filepath of the JSON TxBody. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_transaction_build.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_transaction_build.cli deleted file mode 100644 index 59123febb..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_transaction_build.cli +++ /dev/null @@ -1,483 +0,0 @@ -Usage: cardano-cli legacy transaction build --socket-path SOCKET_PATH - [--babbage-era | --conway-era] - [--cardano-mode - [--epoch-slots SLOTS]] - ( --mainnet - | --testnet-magic NATURAL - ) - [ --script-valid - | --script-invalid - ] - [--witness-override WORD] - (--tx-in TX-IN - [ --spending-tx-in-reference TX-IN - ( --spending-plutus-script-v2 - | --spending-plutus-script-v3 - ) - [ --spending-reference-tx-in-datum-cbor-file CBOR_FILE - | --spending-reference-tx-in-datum-file JSON_FILE - | --spending-reference-tx-in-datum-value JSON_VALUE - | --spending-reference-tx-in-inline-datum-present - ] - ( --spending-reference-tx-in-redeemer-cbor-file CBOR_FILE - | --spending-reference-tx-in-redeemer-file JSON_FILE - | --spending-reference-tx-in-redeemer-value JSON_VALUE - ) - | --simple-script-tx-in-reference TX-IN - | --tx-in-script-file FILEPATH - [ - [ --tx-in-datum-cbor-file CBOR_FILE - | --tx-in-datum-file JSON_FILE - | --tx-in-datum-value JSON_VALUE - | --tx-in-inline-datum-present - ] - ( --tx-in-redeemer-cbor-file CBOR_FILE - | --tx-in-redeemer-file JSON_FILE - | --tx-in-redeemer-value JSON_VALUE - )] - ]) - [--read-only-tx-in-reference TX-IN] - [ --required-signer FILEPATH - | --required-signer-hash HASH - ] - [--tx-in-collateral TX-IN] - [--tx-out-return-collateral ADDRESS VALUE] - [--tx-total-collateral INTEGER] - [--tx-out ADDRESS VALUE - [ --tx-out-datum-hash HASH - | --tx-out-datum-hash-cbor-file CBOR_FILE - | --tx-out-datum-hash-file JSON_FILE - | --tx-out-datum-hash-value JSON_VALUE - | --tx-out-datum-embed-cbor-file CBOR_FILE - | --tx-out-datum-embed-file JSON_FILE - | --tx-out-datum-embed-value JSON_VALUE - | --tx-out-inline-datum-cbor-file CBOR_FILE - | --tx-out-inline-datum-file JSON_FILE - | --tx-out-inline-datum-value JSON_VALUE - ] - [--tx-out-reference-script-file FILEPATH]] - --change-address ADDRESS - [--mint VALUE - ( --mint-script-file FILEPATH - [ --mint-redeemer-cbor-file CBOR_FILE - | --mint-redeemer-file JSON_FILE - | --mint-redeemer-value JSON_VALUE - ] - | --simple-minting-script-tx-in-reference TX-IN - --policy-id HASH - | --mint-tx-in-reference TX-IN - ( --mint-plutus-script-v2 - | --mint-plutus-script-v3 - ) - ( --mint-reference-tx-in-redeemer-cbor-file CBOR_FILE - | --mint-reference-tx-in-redeemer-file JSON_FILE - | --mint-reference-tx-in-redeemer-value JSON_VALUE - ) - --policy-id HASH - )] - [--invalid-before SLOT] - [--invalid-hereafter SLOT] - [--certificate-file FILEPATH - [ --certificate-script-file FILEPATH - [ --certificate-redeemer-cbor-file CBOR_FILE - | --certificate-redeemer-file JSON_FILE - | --certificate-redeemer-value JSON_VALUE - ] - | --certificate-tx-in-reference TX-IN - ( --certificate-plutus-script-v2 - | --certificate-plutus-script-v3 - ) - ( --certificate-reference-tx-in-redeemer-cbor-file CBOR_FILE - | --certificate-reference-tx-in-redeemer-file JSON_FILE - | --certificate-reference-tx-in-redeemer-value JSON_VALUE - ) - ]] - [--withdrawal WITHDRAWAL - [ --withdrawal-script-file FILEPATH - [ --withdrawal-redeemer-cbor-file CBOR_FILE - | --withdrawal-redeemer-file JSON_FILE - | --withdrawal-redeemer-value JSON_VALUE - ] - | --withdrawal-tx-in-reference TX-IN - ( --withdrawal-plutus-script-v2 - | --withdrawal-plutus-script-v3 - ) - ( --withdrawal-reference-tx-in-redeemer-cbor-file CBOR_FILE - | --withdrawal-reference-tx-in-redeemer-file JSON_FILE - | --withdrawal-reference-tx-in-redeemer-value JSON_VALUE - ) - ]] - [ --json-metadata-no-schema - | --json-metadata-detailed-schema - ] - [--auxiliary-script-file FILEPATH] - [ --metadata-json-file FILEPATH - | --metadata-cbor-file FILEPATH - ] - [--update-proposal-file FILEPATH] - [--vote-file FILEPATH - [ --vote-script-file FILEPATH - [ --vote-redeemer-cbor-file CBOR_FILE - | --vote-redeemer-file JSON_FILE - | --vote-redeemer-value JSON_VALUE - ] - | --vote-tx-in-reference TX-IN - --vote-plutus-script-v3 - ( --vote-reference-tx-in-redeemer-cbor-file CBOR_FILE - | --vote-reference-tx-in-redeemer-file JSON_FILE - | --vote-reference-tx-in-redeemer-value JSON_VALUE - ) - ]] - [--proposal-file FILEPATH - [ --proposal-script-file FILEPATH - [ --proposal-redeemer-cbor-file CBOR_FILE - | --proposal-redeemer-file JSON_FILE - | --proposal-redeemer-value JSON_VALUE - ] - | --proposal-tx-in-reference TX-IN - --proposal-plutus-script-v3 - ( --proposal-reference-tx-in-redeemer-cbor-file CBOR_FILE - | --proposal-reference-tx-in-redeemer-file JSON_FILE - | --proposal-reference-tx-in-redeemer-value JSON_VALUE - ) - ]] - [--treasury-donation LOVELACE] - ( --out-file FILEPATH - | --calculate-plutus-script-cost FILEPATH - ) - - Build a balanced transaction (automatically calculates fees) - - Please note the order[93;22;23;24m of some cmd options is crucial. If used incorrectly may produce undesired tx body. See nested [] notation above for details.[0;22;23;24m - -Available options: - --socket-path SOCKET_PATH - Path to the node socket. This overrides the - CARDANO_NODE_SOCKET_PATH environment variable. The - argument is optional if CARDANO_NODE_SOCKET_PATH is - defined and mandatory otherwise. - --babbage-era Specify the Babbage era (default) - --conway-era Specify the Conway era - --cardano-mode For talking to a node running in full Cardano mode - (default). - --epoch-slots SLOTS The number of slots per epoch for the Byron era. - (default: 21600) - --mainnet Use the mainnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --testnet-magic NATURAL Specify a testnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --script-valid Assertion that the script is valid. (default) - --script-invalid Assertion that the script is invalid. If a - transaction is submitted with such a script, the - script will fail and the collateral will be taken. - --witness-override WORD Specify and override the number of witnesses the - transaction requires. - --tx-in TX-IN TxId#TxIx - --spending-tx-in-reference TX-IN - TxId#TxIx - Specify a reference input. The reference - input must have a plutus reference script attached. - --spending-plutus-script-v2 - Specify a plutus script v2 reference script. - --spending-plutus-script-v3 - Specify a plutus script v3 reference script. - --spending-reference-tx-in-datum-cbor-file CBOR_FILE - The script datum file. The file has to be in CBOR - format. - --spending-reference-tx-in-datum-file JSON_FILE - The script datum file. The file must follow the - detailed JSON schema for script data. - --spending-reference-tx-in-datum-value JSON_VALUE - The script datum. There is no schema: (almost) any - JSON value is supported, including top-level strings - and numbers. - --spending-reference-tx-in-inline-datum-present - Inline datum present at transaction input. - --spending-reference-tx-in-redeemer-cbor-file CBOR_FILE - The script redeemer file. The file has to be in CBOR - format. - --spending-reference-tx-in-redeemer-file JSON_FILE - The script redeemer file. The file must follow the - detailed JSON schema for script data. - --spending-reference-tx-in-redeemer-value JSON_VALUE - The script redeemer value. There is no schema: - (almost) any JSON value is supported, including - top-level strings and numbers. - --simple-script-tx-in-reference TX-IN - TxId#TxIx - Specify a reference input. The reference - input must have a simple reference script attached. - --tx-in-script-file FILEPATH - The file containing the script to witness the - spending of the transaction input. - --tx-in-datum-cbor-file CBOR_FILE - The script datum file. The file has to be in CBOR - format. - --tx-in-datum-file JSON_FILE - The script datum file. The file must follow the - detailed JSON schema for script data. - --tx-in-datum-value JSON_VALUE - The script datum. There is no schema: (almost) any - JSON value is supported, including top-level strings - and numbers. - --tx-in-inline-datum-present - Inline datum present at transaction input. - --tx-in-redeemer-cbor-file CBOR_FILE - The script redeemer file. The file has to be in CBOR - format. - --tx-in-redeemer-file JSON_FILE - The script redeemer file. The file must follow the - detailed JSON schema for script data. - --tx-in-redeemer-value JSON_VALUE - The script redeemer value. There is no schema: - (almost) any JSON value is supported, including - top-level strings and numbers. - --read-only-tx-in-reference TX-IN - Specify a read only reference input. This reference - input is not witnessing anything it is simply - provided in the plutus script context. - --required-signer FILEPATH - Input filepath of the signing key (zero or more) - whose signature is required. - --required-signer-hash HASH - Hash of the verification key (zero or more) whose - signature is required. - --tx-in-collateral TX-IN TxId#TxIx - --tx-out-return-collateral ADDRESS VALUE - The transaction output as ADDRESS VALUE where ADDRESS - is the Bech32-encoded address followed by the value - in Lovelace. In the situation where your collateral - txin over collateralizes the transaction, you can - optionally specify a tx out of your choosing to - return the excess Lovelace. - --tx-total-collateral INTEGER - The total amount of collateral that will be collected - as fees in the event of a Plutus script failure. Must - be used in conjuction with - "--tx-out-return-collateral". - --tx-out ADDRESS VALUE The transaction output as ADDRESS VALUE where ADDRESS - is the Bech32-encoded address followed by the value - in the multi-asset syntax (including simply - Lovelace). - --tx-out-datum-hash HASH The script datum hash for this tx output, as the raw - datum hash (in hex). - --tx-out-datum-hash-cbor-file CBOR_FILE - The script datum hash for this tx output, by hashing - the script datum in the file. The file has to be in - CBOR format. - --tx-out-datum-hash-file JSON_FILE - The script datum hash for this tx output, by hashing - the script datum in the file. The file must follow - the detailed JSON schema for script data. - --tx-out-datum-hash-value JSON_VALUE - The script datum hash for this tx output, by hashing - the script datum given here. There is no schema: - (almost) any JSON value is supported, including - top-level strings and numbers. - --tx-out-datum-embed-cbor-file CBOR_FILE - The script datum to embed in the tx for this output, - in the given file. The file has to be in CBOR format. - --tx-out-datum-embed-file JSON_FILE - The script datum to embed in the tx for this output, - in the given file. The file must follow the detailed - JSON schema for script data. - --tx-out-datum-embed-value JSON_VALUE - The script datum to embed in the tx for this output, - given here. There is no schema: (almost) any JSON - value is supported, including top-level strings and - numbers. - --tx-out-inline-datum-cbor-file CBOR_FILE - The script datum to embed in the tx output as an - inline datum, in the given file. The file has to be - in CBOR format. - --tx-out-inline-datum-file JSON_FILE - The script datum to embed in the tx output as an - inline datum, in the given file. The file must follow - the detailed JSON schema for script data. - --tx-out-inline-datum-value JSON_VALUE - The script datum to embed in the tx output as an - inline datum, given here. There is no schema: - (almost) any JSON value is supported, including - top-level strings and numbers. - --tx-out-reference-script-file FILEPATH - Reference script input file. - --change-address ADDRESS Address where ADA in excess of the tx fee will go to. - --mint VALUE Mint multi-asset value(s) with the multi-asset cli - syntax. You must specify a script witness. - --mint-script-file FILEPATH - The file containing the script to witness the minting - of assets for a particular policy Id. - --mint-redeemer-cbor-file CBOR_FILE - The script redeemer file. The file has to be in CBOR - format. - --mint-redeemer-file JSON_FILE - The script redeemer file. The file must follow the - detailed JSON schema for script data. - --mint-redeemer-value JSON_VALUE - The script redeemer value. There is no schema: - (almost) any JSON value is supported, including - top-level strings and numbers. - --simple-minting-script-tx-in-reference TX-IN - TxId#TxIx - Specify a reference input. The reference - input must have a simple reference script attached. - --policy-id HASH Policy id of minting script. - --mint-tx-in-reference TX-IN - TxId#TxIx - Specify a reference input. The reference - input must have a plutus reference script attached. - --mint-plutus-script-v2 Specify a plutus script v2 reference script. - --mint-plutus-script-v3 Specify a plutus script v3 reference script. - --mint-reference-tx-in-redeemer-cbor-file CBOR_FILE - The script redeemer file. The file has to be in CBOR - format. - --mint-reference-tx-in-redeemer-file JSON_FILE - The script redeemer file. The file must follow the - detailed JSON schema for script data. - --mint-reference-tx-in-redeemer-value JSON_VALUE - The script redeemer value. There is no schema: - (almost) any JSON value is supported, including - top-level strings and numbers. - --policy-id HASH Policy id of minting script. - --invalid-before SLOT Time that transaction is valid from (in slots). - --invalid-hereafter SLOT Time that transaction is valid until (in slots). - --certificate-file FILEPATH - Filepath of the certificate. This encompasses all - types of certificates (stake pool certificates, stake - key certificates etc). Optionally specify a script - witness. - --certificate-script-file FILEPATH - The file containing the script to witness the use of - the certificate. - --certificate-redeemer-cbor-file CBOR_FILE - The script redeemer file. The file has to be in CBOR - format. - --certificate-redeemer-file JSON_FILE - The script redeemer file. The file must follow the - detailed JSON schema for script data. - --certificate-redeemer-value JSON_VALUE - The script redeemer value. There is no schema: - (almost) any JSON value is supported, including - top-level strings and numbers. - --certificate-tx-in-reference TX-IN - TxId#TxIx - Specify a reference input. The reference - input must have a plutus reference script attached. - --certificate-plutus-script-v2 - Specify a plutus script v2 reference script. - --certificate-plutus-script-v3 - Specify a plutus script v3 reference script. - --certificate-reference-tx-in-redeemer-cbor-file CBOR_FILE - The script redeemer file. The file has to be in CBOR - format. - --certificate-reference-tx-in-redeemer-file JSON_FILE - The script redeemer file. The file must follow the - detailed JSON schema for script data. - --certificate-reference-tx-in-redeemer-value JSON_VALUE - The script redeemer value. There is no schema: - (almost) any JSON value is supported, including - top-level strings and numbers. - --withdrawal WITHDRAWAL The reward withdrawal as StakeAddress+Lovelace where - StakeAddress is the Bech32-encoded stake address - followed by the amount in Lovelace. Optionally - specify a script witness. - --withdrawal-script-file FILEPATH - The file containing the script to witness the - withdrawal of rewards. - --withdrawal-redeemer-cbor-file CBOR_FILE - The script redeemer file. The file has to be in CBOR - format. - --withdrawal-redeemer-file JSON_FILE - The script redeemer file. The file must follow the - detailed JSON schema for script data. - --withdrawal-redeemer-value JSON_VALUE - The script redeemer value. There is no schema: - (almost) any JSON value is supported, including - top-level strings and numbers. - --withdrawal-tx-in-reference TX-IN - TxId#TxIx - Specify a reference input. The reference - input must have a plutus reference script attached. - --withdrawal-plutus-script-v2 - Specify a plutus script v2 reference script. - --withdrawal-plutus-script-v3 - Specify a plutus script v3 reference script. - --withdrawal-reference-tx-in-redeemer-cbor-file CBOR_FILE - The script redeemer file. The file has to be in CBOR - format. - --withdrawal-reference-tx-in-redeemer-file JSON_FILE - The script redeemer file. The file must follow the - detailed JSON schema for script data. - --withdrawal-reference-tx-in-redeemer-value JSON_VALUE - The script redeemer value. There is no schema: - (almost) any JSON value is supported, including - top-level strings and numbers. - --json-metadata-no-schema - Use the "no schema" conversion from JSON to tx - metadata (default). - --json-metadata-detailed-schema - Use the "detailed schema" conversion from JSON to tx - metadata. - --auxiliary-script-file FILEPATH - Filepath of auxiliary script(s) - --metadata-json-file FILEPATH - Filepath of the metadata file, in JSON format. - --metadata-cbor-file FILEPATH - Filepath of the metadata, in raw CBOR format. - --update-proposal-file FILEPATH - Filepath of the update proposal. - --vote-file FILEPATH Filepath of the vote. - --vote-script-file FILEPATH - The file containing the script to witness a vote - --vote-redeemer-cbor-file CBOR_FILE - The script redeemer file. The file has to be in CBOR - format. - --vote-redeemer-file JSON_FILE - The script redeemer file. The file must follow the - detailed JSON schema for script data. - --vote-redeemer-value JSON_VALUE - The script redeemer value. There is no schema: - (almost) any JSON value is supported, including - top-level strings and numbers. - --vote-tx-in-reference TX-IN - TxId#TxIx - Specify a reference input. The reference - input must have a plutus reference script attached. - --vote-plutus-script-v3 Specify a plutus script v3 reference script. - --vote-reference-tx-in-redeemer-cbor-file CBOR_FILE - The script redeemer file. The file has to be in CBOR - format. - --vote-reference-tx-in-redeemer-file JSON_FILE - The script redeemer file. The file must follow the - detailed JSON schema for script data. - --vote-reference-tx-in-redeemer-value JSON_VALUE - The script redeemer value. There is no schema: - (almost) any JSON value is supported, including - top-level strings and numbers. - --proposal-file FILEPATH Filepath of the proposal. - --proposal-script-file FILEPATH - The file containing the script to witness a proposal - --proposal-redeemer-cbor-file CBOR_FILE - The script redeemer file. The file has to be in CBOR - format. - --proposal-redeemer-file JSON_FILE - The script redeemer file. The file must follow the - detailed JSON schema for script data. - --proposal-redeemer-value JSON_VALUE - The script redeemer value. There is no schema: - (almost) any JSON value is supported, including - top-level strings and numbers. - --proposal-tx-in-reference TX-IN - TxId#TxIx - Specify a reference input. The reference - input must have a plutus reference script attached. - --proposal-plutus-script-v3 - Specify a plutus script v3 reference script. - --proposal-reference-tx-in-redeemer-cbor-file CBOR_FILE - The script redeemer file. The file has to be in CBOR - format. - --proposal-reference-tx-in-redeemer-file JSON_FILE - The script redeemer file. The file must follow the - detailed JSON schema for script data. - --proposal-reference-tx-in-redeemer-value JSON_VALUE - The script redeemer value. There is no schema: - (almost) any JSON value is supported, including - top-level strings and numbers. - --treasury-donation LOVELACE - The donation to the treasury to perform. - --out-file FILEPATH Output filepath of the JSON TxBody. - --calculate-plutus-script-cost FILEPATH - Where to write the script cost information. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_transaction_calculate-min-fee.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_transaction_calculate-min-fee.cli deleted file mode 100644 index df588c9f9..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_transaction_calculate-min-fee.cli +++ /dev/null @@ -1,37 +0,0 @@ -Usage: cardano-cli legacy transaction calculate-min-fee --tx-body-file FILEPATH - --protocol-params-file FILEPATH - --witness-count NATURAL - [--byron-witness-count NATURAL] - [--reference-script-size NATURAL] - [ --output-json - | --output-text - ] - [--out-file FILEPATH] - [ --mainnet - | --testnet-magic NATURAL - ] - [--tx-in-count NATURAL] - [--tx-out-count NATURAL] - - Calculate the minimum fee for a transaction. - -Available options: - --tx-body-file FILEPATH Input filepath of the JSON TxBody. - --protocol-params-file FILEPATH - Filepath of the JSON-encoded protocol parameters file - --witness-count NATURAL The number of Shelley key witnesses. - --byron-witness-count NATURAL - The number of Byron key witnesses (default is 0). - --reference-script-size NATURAL - Total size in bytes of transaction reference scripts - (default is 0). - --output-json Format calculate-min-fee query output to JSON. - Default format when writing to a file - --output-text Format calculate-min-fee query output to TEXT. - Default format when writing to stdout - --out-file FILEPATH The output file. - --mainnet DEPRECATED. This argument has no effect. - --testnet-magic NATURAL DEPRECATED. This argument has no effect. - --tx-in-count NATURAL DEPRECATED. This argument has no effect. - --tx-out-count NATURAL DEPRECATED. This argument has no effect. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_transaction_calculate-min-required-utxo.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_transaction_calculate-min-required-utxo.cli deleted file mode 100644 index 4dd014c39..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_transaction_calculate-min-required-utxo.cli +++ /dev/null @@ -1,86 +0,0 @@ -Usage: cardano-cli legacy transaction calculate-min-required-utxo - [ --shelley-era - | --allegra-era - | --mary-era - | --alonzo-era - | --babbage-era - | --conway-era - ] - --protocol-params-file FILEPATH - --tx-out ADDRESS VALUE - [ --tx-out-datum-hash HASH - | --tx-out-datum-hash-cbor-file CBOR_FILE - | --tx-out-datum-hash-file JSON_FILE - | --tx-out-datum-hash-value JSON_VALUE - | --tx-out-datum-embed-cbor-file CBOR_FILE - | --tx-out-datum-embed-file JSON_FILE - | --tx-out-datum-embed-value JSON_VALUE - | --tx-out-inline-datum-cbor-file CBOR_FILE - | --tx-out-inline-datum-file JSON_FILE - | --tx-out-inline-datum-value JSON_VALUE - ] - [--tx-out-reference-script-file FILEPATH] - - Calculate the minimum required UTxO for a transaction output. - -Available options: - --shelley-era Specify the Shelley era - DEPRECATED - will be - removed in the future - --allegra-era Specify the Allegra era - DEPRECATED - will be - removed in the future - --mary-era Specify the Mary era - DEPRECATED - will be removed - in the future - --alonzo-era Specify the Alonzo era - DEPRECATED - will be removed - in the future - --babbage-era Specify the Babbage era (default) - DEPRECATED - will - be removed in the future - --conway-era Specify the Conway era - --protocol-params-file FILEPATH - Filepath of the JSON-encoded protocol parameters file - --tx-out ADDRESS VALUE The transaction output as ADDRESS VALUE where ADDRESS - is the Bech32-encoded address followed by the value - in the multi-asset syntax (including simply - Lovelace). - --tx-out-datum-hash HASH The script datum hash for this tx output, as the raw - datum hash (in hex). - --tx-out-datum-hash-cbor-file CBOR_FILE - The script datum hash for this tx output, by hashing - the script datum in the file. The file has to be in - CBOR format. - --tx-out-datum-hash-file JSON_FILE - The script datum hash for this tx output, by hashing - the script datum in the file. The file must follow - the detailed JSON schema for script data. - --tx-out-datum-hash-value JSON_VALUE - The script datum hash for this tx output, by hashing - the script datum given here. There is no schema: - (almost) any JSON value is supported, including - top-level strings and numbers. - --tx-out-datum-embed-cbor-file CBOR_FILE - The script datum to embed in the tx for this output, - in the given file. The file has to be in CBOR format. - --tx-out-datum-embed-file JSON_FILE - The script datum to embed in the tx for this output, - in the given file. The file must follow the detailed - JSON schema for script data. - --tx-out-datum-embed-value JSON_VALUE - The script datum to embed in the tx for this output, - given here. There is no schema: (almost) any JSON - value is supported, including top-level strings and - numbers. - --tx-out-inline-datum-cbor-file CBOR_FILE - The script datum to embed in the tx output as an - inline datum, in the given file. The file has to be - in CBOR format. - --tx-out-inline-datum-file JSON_FILE - The script datum to embed in the tx output as an - inline datum, in the given file. The file must follow - the detailed JSON schema for script data. - --tx-out-inline-datum-value JSON_VALUE - The script datum to embed in the tx output as an - inline datum, given here. There is no schema: - (almost) any JSON value is supported, including - top-level strings and numbers. - --tx-out-reference-script-file FILEPATH - Reference script input file. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_transaction_calculate-min-value.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_transaction_calculate-min-value.cli deleted file mode 100644 index e75c8bea1..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_transaction_calculate-min-value.cli +++ /dev/null @@ -1,85 +0,0 @@ -Usage: cardano-cli legacy transaction calculate-min-value - [ --shelley-era - | --allegra-era - | --mary-era - | --alonzo-era - | --babbage-era - | --conway-era - ] - --protocol-params-file FILEPATH - --tx-out ADDRESS VALUE - [ --tx-out-datum-hash HASH - | --tx-out-datum-hash-cbor-file CBOR_FILE - | --tx-out-datum-hash-file JSON_FILE - | --tx-out-datum-hash-value JSON_VALUE - | --tx-out-datum-embed-cbor-file CBOR_FILE - | --tx-out-datum-embed-file JSON_FILE - | --tx-out-datum-embed-value JSON_VALUE - | --tx-out-inline-datum-cbor-file CBOR_FILE - | --tx-out-inline-datum-file JSON_FILE - | --tx-out-inline-datum-value JSON_VALUE - ] - [--tx-out-reference-script-file FILEPATH] - - DEPRECATED: Use 'calculate-min-required-utxo' instead. - -Available options: - --shelley-era Specify the Shelley era - DEPRECATED - will be - removed in the future - --allegra-era Specify the Allegra era - DEPRECATED - will be - removed in the future - --mary-era Specify the Mary era - DEPRECATED - will be removed - in the future - --alonzo-era Specify the Alonzo era - DEPRECATED - will be removed - in the future - --babbage-era Specify the Babbage era (default) - DEPRECATED - will - be removed in the future - --conway-era Specify the Conway era - --protocol-params-file FILEPATH - Filepath of the JSON-encoded protocol parameters file - --tx-out ADDRESS VALUE The transaction output as ADDRESS VALUE where ADDRESS - is the Bech32-encoded address followed by the value - in the multi-asset syntax (including simply - Lovelace). - --tx-out-datum-hash HASH The script datum hash for this tx output, as the raw - datum hash (in hex). - --tx-out-datum-hash-cbor-file CBOR_FILE - The script datum hash for this tx output, by hashing - the script datum in the file. The file has to be in - CBOR format. - --tx-out-datum-hash-file JSON_FILE - The script datum hash for this tx output, by hashing - the script datum in the file. The file must follow - the detailed JSON schema for script data. - --tx-out-datum-hash-value JSON_VALUE - The script datum hash for this tx output, by hashing - the script datum given here. There is no schema: - (almost) any JSON value is supported, including - top-level strings and numbers. - --tx-out-datum-embed-cbor-file CBOR_FILE - The script datum to embed in the tx for this output, - in the given file. The file has to be in CBOR format. - --tx-out-datum-embed-file JSON_FILE - The script datum to embed in the tx for this output, - in the given file. The file must follow the detailed - JSON schema for script data. - --tx-out-datum-embed-value JSON_VALUE - The script datum to embed in the tx for this output, - given here. There is no schema: (almost) any JSON - value is supported, including top-level strings and - numbers. - --tx-out-inline-datum-cbor-file CBOR_FILE - The script datum to embed in the tx output as an - inline datum, in the given file. The file has to be - in CBOR format. - --tx-out-inline-datum-file JSON_FILE - The script datum to embed in the tx output as an - inline datum, in the given file. The file must follow - the detailed JSON schema for script data. - --tx-out-inline-datum-value JSON_VALUE - The script datum to embed in the tx output as an - inline datum, given here. There is no schema: - (almost) any JSON value is supported, including - top-level strings and numbers. - --tx-out-reference-script-file FILEPATH - Reference script input file. diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_transaction_hash-script-data.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_transaction_hash-script-data.cli deleted file mode 100644 index 24b4007fe..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_transaction_hash-script-data.cli +++ /dev/null @@ -1,20 +0,0 @@ -Usage: cardano-cli legacy transaction hash-script-data - ( --script-data-cbor-file CBOR_FILE - | --script-data-file JSON_FILE - | --script-data-value JSON_VALUE - ) - - Calculate the hash of script data. - -Available options: - --script-data-cbor-file CBOR_FILE - The script data file. The file has to be in CBOR - format. - --script-data-file JSON_FILE - The script data file. The file must follow the - detailed JSON schema for script data. - --script-data-value JSON_VALUE - The script data. There is no schema: (almost) any - JSON value is supported, including top-level strings - and numbers. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_transaction_policyid.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_transaction_policyid.cli deleted file mode 100644 index b1112aff8..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_transaction_policyid.cli +++ /dev/null @@ -1,7 +0,0 @@ -Usage: cardano-cli legacy transaction policyid --script-file FILEPATH - - Calculate the PolicyId from the monetary policy script. - -Available options: - --script-file FILEPATH Filepath of the script. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_transaction_sign-witness.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_transaction_sign-witness.cli deleted file mode 100644 index 27ca62226..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_transaction_sign-witness.cli +++ /dev/null @@ -1,10 +0,0 @@ -Usage: cardano-cli legacy transaction sign-witness --tx-body-file FILEPATH - [--witness-file FILEPATH] - --out-file FILEPATH - - Assemble a tx body and witness(es) to form a transaction - -Available options: - --tx-body-file FILEPATH Input filepath of the JSON TxBody. - --witness-file FILEPATH Filepath of the witness - --out-file FILEPATH The output file. diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_transaction_sign.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_transaction_sign.cli deleted file mode 100644 index a0519e641..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_transaction_sign.cli +++ /dev/null @@ -1,25 +0,0 @@ -Usage: cardano-cli legacy transaction sign - ( --tx-body-file FILEPATH - | --tx-file FILEPATH - ) - [--signing-key-file FILEPATH - [--address STRING]] - [ --mainnet - | --testnet-magic NATURAL - ] - --out-file FILEPATH - - Sign a transaction - -Available options: - --tx-body-file FILEPATH Input filepath of the JSON TxBody. - --tx-file FILEPATH Input filepath of the JSON Tx. - --signing-key-file FILEPATH - Input filepath of the signing key (one or more). - --address STRING Byron address (Base58-encoded). - --mainnet Use the mainnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --testnet-magic NATURAL Specify a testnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --out-file FILEPATH Output filepath of the JSON Tx. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_transaction_submit.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_transaction_submit.cli deleted file mode 100644 index a68eb10b9..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_transaction_submit.cli +++ /dev/null @@ -1,27 +0,0 @@ -Usage: cardano-cli legacy transaction submit --socket-path SOCKET_PATH - [--cardano-mode - [--epoch-slots SLOTS]] - ( --mainnet - | --testnet-magic NATURAL - ) - --tx-file FILEPATH - - Submit a transaction to the local node whose Unix domain socket is obtained - from the CARDANO_NODE_SOCKET_PATH environment variable. - -Available options: - --socket-path SOCKET_PATH - Path to the node socket. This overrides the - CARDANO_NODE_SOCKET_PATH environment variable. The - argument is optional if CARDANO_NODE_SOCKET_PATH is - defined and mandatory otherwise. - --cardano-mode For talking to a node running in full Cardano mode - (default). - --epoch-slots SLOTS The number of slots per epoch for the Byron era. - (default: 21600) - --mainnet Use the mainnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --testnet-magic NATURAL Specify a testnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --tx-file FILEPATH Filepath of the transaction you intend to submit. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_transaction_txid.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_transaction_txid.cli deleted file mode 100644 index bd8a8c7e0..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_transaction_txid.cli +++ /dev/null @@ -1,11 +0,0 @@ -Usage: cardano-cli legacy transaction txid - ( --tx-body-file FILEPATH - | --tx-file FILEPATH - ) - - Print a transaction identifier. - -Available options: - --tx-body-file FILEPATH Input filepath of the JSON TxBody. - --tx-file FILEPATH Input filepath of the JSON Tx. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_transaction_witness.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_transaction_witness.cli deleted file mode 100644 index dd0742444..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_transaction_witness.cli +++ /dev/null @@ -1,21 +0,0 @@ -Usage: cardano-cli legacy transaction witness --tx-body-file FILEPATH - --signing-key-file FILEPATH - [--address STRING] - [ --mainnet - | --testnet-magic NATURAL - ] - --out-file FILEPATH - - Create a transaction witness - -Available options: - --tx-body-file FILEPATH Input filepath of the JSON TxBody. - --signing-key-file FILEPATH - Input filepath of the signing key (one or more). - --address STRING Byron address (Base58-encoded). - --mainnet Use the mainnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --testnet-magic NATURAL Specify a testnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --out-file FILEPATH The output file. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/node.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/node.cli deleted file mode 100644 index f133ab4c3..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/node.cli +++ /dev/null @@ -1,22 +0,0 @@ -Usage: cardano-cli node - ( key-gen - | key-gen-KES - | key-gen-VRF - | key-hash-VRF - | new-counter - | issue-op-cert - ) - - Node operation commands. - -Available options: - -h,--help Show this help text - -Available commands: - key-gen Create a key pair for a node operator's offline key - and a new certificate issue counter - key-gen-KES Create a key pair for a node KES operational key - key-gen-VRF Create a key pair for a node VRF operational key - key-hash-VRF Print hash of a node's operational VRF key. - new-counter Create a new certificate issue counter - issue-op-cert Issue a node operational certificate diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/node_issue-op-cert.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/node_issue-op-cert.cli deleted file mode 100644 index 919c7c4ca..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/node_issue-op-cert.cli +++ /dev/null @@ -1,24 +0,0 @@ -Usage: cardano-cli node issue-op-cert - ( --kes-verification-key STRING - | --kes-verification-key-file FILEPATH - ) - --cold-signing-key-file FILEPATH - --operational-certificate-issue-counter-file FILEPATH - --kes-period NATURAL - --out-file FILEPATH - - Issue a node operational certificate - -Available options: - --kes-verification-key STRING - A Bech32 or hex-encoded hot KES verification key. - --kes-verification-key-file FILEPATH - Filepath of the hot KES verification key. - --cold-signing-key-file FILEPATH - Filepath of the cold signing key. - --operational-certificate-issue-counter-file FILEPATH - The file with the issue counter for the operational - certificate. - --kes-period NATURAL The start of the KES key validity period. - --out-file FILEPATH The output file. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/node_key-gen-KES.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/node_key-gen-KES.cli deleted file mode 100644 index 5db2037a0..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/node_key-gen-KES.cli +++ /dev/null @@ -1,16 +0,0 @@ -Usage: cardano-cli node key-gen-KES [--key-output-format STRING] - --verification-key-file FILEPATH - --signing-key-file FILEPATH - - Create a key pair for a node KES operational key - -Available options: - --key-output-format STRING - Optional key output format. Accepted output formats - are "text-envelope" and "bech32" (default is - "text-envelope"). - --verification-key-file FILEPATH - Output filepath of the verification key. - --signing-key-file FILEPATH - Output filepath of the signing key. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/node_key-gen-VRF.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/node_key-gen-VRF.cli deleted file mode 100644 index 8f182f1dd..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/node_key-gen-VRF.cli +++ /dev/null @@ -1,16 +0,0 @@ -Usage: cardano-cli node key-gen-VRF [--key-output-format STRING] - --verification-key-file FILEPATH - --signing-key-file FILEPATH - - Create a key pair for a node VRF operational key - -Available options: - --key-output-format STRING - Optional key output format. Accepted output formats - are "text-envelope" and "bech32" (default is - "text-envelope"). - --verification-key-file FILEPATH - Output filepath of the verification key. - --signing-key-file FILEPATH - Output filepath of the signing key. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/node_key-gen.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/node_key-gen.cli deleted file mode 100644 index e0bf2224f..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/node_key-gen.cli +++ /dev/null @@ -1,21 +0,0 @@ -Usage: cardano-cli node key-gen [--key-output-format STRING] - --cold-verification-key-file FILEPATH - --cold-signing-key-file FILEPATH - --operational-certificate-issue-counter-file FILEPATH - - Create a key pair for a node operator's offline key and a new certificate - issue counter - -Available options: - --key-output-format STRING - Optional key output format. Accepted output formats - are "text-envelope" and "bech32" (default is - "text-envelope"). - --cold-verification-key-file FILEPATH - Filepath of the cold verification key. - --cold-signing-key-file FILEPATH - Filepath of the cold signing key. - --operational-certificate-issue-counter-file FILEPATH - The file with the issue counter for the operational - certificate. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/node_key-hash-VRF.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/node_key-hash-VRF.cli deleted file mode 100644 index 7d2302c23..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/node_key-hash-VRF.cli +++ /dev/null @@ -1,15 +0,0 @@ -Usage: cardano-cli node key-hash-VRF - ( --verification-key STRING - | --verification-key-file FILEPATH - ) - [--out-file FILEPATH] - - Print hash of a node's operational VRF key. - -Available options: - --verification-key STRING - Verification key (Bech32 or hex-encoded). - --verification-key-file FILEPATH - Input filepath of the verification key. - --out-file FILEPATH Optional output file. Default is to write to stdout. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/node_new-counter.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/node_new-counter.cli deleted file mode 100644 index 460e70be5..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/node_new-counter.cli +++ /dev/null @@ -1,22 +0,0 @@ -Usage: cardano-cli node new-counter - ( --stake-pool-verification-key STRING - | --genesis-delegate-verification-key STRING - | --cold-verification-key-file FILEPATH - ) - --counter-value INT - --operational-certificate-issue-counter-file FILEPATH - - Create a new certificate issue counter - -Available options: - --stake-pool-verification-key STRING - Stake pool verification key (Bech32 or hex-encoded). - --genesis-delegate-verification-key STRING - Genesis delegate verification key (hex-encoded). - --cold-verification-key-file FILEPATH - Filepath of the cold verification key. - --counter-value INT The next certificate issue counter value to use. - --operational-certificate-issue-counter-file FILEPATH - The file with the issue counter for the operational - certificate. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/query.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/query.cli deleted file mode 100644 index 743a3dcfb..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/query.cli +++ /dev/null @@ -1,66 +0,0 @@ -Usage: cardano-cli query - ( protocol-parameters - | tip - | stake-pools - | stake-distribution - | stake-address-info - | utxo - | ledger-state - | protocol-state - | stake-snapshot - | leadership-schedule - | kes-period-info - | pool-state - | tx-mempool - | slot-number - | ref-script-size - | constitution - | gov-state - | drep-state - | drep-stake-distribution - | spo-stake-distribution - | committee-state - | treasury - ) - - 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 - -Available commands: - protocol-parameters Get the node's current protocol parameters - tip Get the node's current tip (slot no, hash, block no) - stake-pools Get the node's current set of stake pool ids - stake-distribution Get the node's current aggregated stake distribution - stake-address-info Get the current delegations and reward accounts - filtered by stake address. - utxo Get a portion of the current UTxO: by tx in, by - address or the whole. - ledger-state Dump the current ledger state of the node - (Ledger.NewEpochState -- advanced command) - protocol-state Dump the current protocol state of the node - (Ledger.ChainDepState -- advanced command) - stake-snapshot Obtain the three stake snapshots for a pool, plus the - total active stake (advanced command) - pool-params DEPRECATED. Use query pool-state instead. Dump the - pool parameters - (Ledger.NewEpochState.esLState._delegationState._pState._pParams - -- advanced command) - leadership-schedule Get the slots the node is expected to mint a block in - (advanced command) - kes-period-info Get information about the current KES period and your - node's operational certificate. - pool-state Dump the pool state - tx-mempool Local Mempool info - slot-number Query slot number for UTC timestamp - ref-script-size Calculate the reference input scripts size in bytes - for provided transaction inputs. - constitution Get the constitution - gov-state Get the governance state - drep-state Get the DRep state. - drep-stake-distribution Get the DRep stake distribution. - spo-stake-distribution Get the SPO stake distribution. - committee-state Get the committee state - treasury Get the treasury value diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/query_committee-state.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/query_committee-state.cli deleted file mode 100644 index e12c6b60b..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/query_committee-state.cli +++ /dev/null @@ -1,60 +0,0 @@ -Usage: cardano-cli query committee-state --socket-path SOCKET_PATH - [--cardano-mode - [--epoch-slots SLOTS]] - (--mainnet | --testnet-magic NATURAL) - [ --cold-verification-key STRING - | --cold-verification-key-file FILEPATH - | --cold-verification-key-hash STRING - | --cold-script-hash HASH - ] - [ --hot-key STRING - | --hot-key-file FILEPATH - | --hot-key-hash STRING - | --hot-script-hash HASH - ] - [ --active - | --expired - | --unrecognized - ] - [--volatile-tip | --immutable-tip] - [--out-file FILEPATH] - - Get the committee state - -Available options: - --socket-path SOCKET_PATH - Path to the node socket. This overrides the - CARDANO_NODE_SOCKET_PATH environment variable. The - argument is optional if CARDANO_NODE_SOCKET_PATH is - defined and mandatory otherwise. - --cardano-mode For talking to a node running in full Cardano mode - (default). - --epoch-slots SLOTS The number of slots per epoch for the Byron era. - (default: 21600) - --mainnet Use the mainnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --testnet-magic NATURAL Specify a testnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --cold-verification-key STRING - Constitutional Committee cold key (hex-encoded). - --cold-verification-key-file FILEPATH - Filepath of the Constitutional Committee cold key. - --cold-verification-key-hash STRING - Constitutional Committee key hash (hex-encoded). - --cold-script-hash HASH Cold Native or Plutus script file hash (hex-encoded). - Obtain it with "cardano-cli hash script ...". - --hot-key STRING Constitutional Committee hot key (hex-encoded). - --hot-key-file FILEPATH Filepath of the Constitutional Committee hot key. - --hot-key-hash STRING Constitutional Committee key hash (hex-encoded). - --hot-script-hash HASH Hot Native or Plutus script file hash (hex-encoded). - Obtain it with "cardano-cli hash script ...". - --active Active committee members (members whose vote will - count during ratification) - --expired Expired committee members - --unrecognized Unrecognized committe members: a hot credential for - an unknown cold credential - --volatile-tip Use the volatile tip as a target. (This is the - default) - --immutable-tip Use the immutable tip as a target. - --out-file FILEPATH The output file. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/query_constitution.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/query_constitution.cli deleted file mode 100644 index 25c8b17cb..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/query_constitution.cli +++ /dev/null @@ -1,27 +0,0 @@ -Usage: cardano-cli query constitution --socket-path SOCKET_PATH - [--cardano-mode [--epoch-slots SLOTS]] - (--mainnet | --testnet-magic NATURAL) - [--volatile-tip | --immutable-tip] - [--out-file FILEPATH] - - Get the constitution - -Available options: - --socket-path SOCKET_PATH - Path to the node socket. This overrides the - CARDANO_NODE_SOCKET_PATH environment variable. The - argument is optional if CARDANO_NODE_SOCKET_PATH is - defined and mandatory otherwise. - --cardano-mode For talking to a node running in full Cardano mode - (default). - --epoch-slots SLOTS The number of slots per epoch for the Byron era. - (default: 21600) - --mainnet Use the mainnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --testnet-magic NATURAL Specify a testnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --volatile-tip Use the volatile tip as a target. (This is the - default) - --immutable-tip Use the immutable tip as a target. - --out-file FILEPATH The output file. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/query_drep-stake-distribution.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/query_drep-stake-distribution.cli deleted file mode 100644 index d3e30bf01..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/query_drep-stake-distribution.cli +++ /dev/null @@ -1,49 +0,0 @@ -Usage: cardano-cli query drep-stake-distribution --socket-path SOCKET_PATH - [--cardano-mode - [--epoch-slots SLOTS]] - ( --mainnet - | --testnet-magic NATURAL - ) - ( --all-dreps - | - ( --drep-script-hash HASH - | --drep-verification-key STRING - | --drep-verification-key-file FILEPATH - | --drep-key-hash HASH - ) - ) - [ --volatile-tip - | --immutable-tip - ] - [--out-file FILEPATH] - - Get the DRep stake distribution. - -Available options: - --socket-path SOCKET_PATH - Path to the node socket. This overrides the - CARDANO_NODE_SOCKET_PATH environment variable. The - argument is optional if CARDANO_NODE_SOCKET_PATH is - defined and mandatory otherwise. - --cardano-mode For talking to a node running in full Cardano mode - (default). - --epoch-slots SLOTS The number of slots per epoch for the Byron era. - (default: 21600) - --mainnet Use the mainnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --testnet-magic NATURAL Specify a testnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --all-dreps Query for all DReps. - --drep-script-hash HASH DRep script hash (hex-encoded). Obtain it with - "cardano-cli hash script ...". - --drep-verification-key STRING - DRep verification key (Bech32 or hex-encoded). - --drep-verification-key-file FILEPATH - Filepath of the DRep verification key. - --drep-key-hash HASH DRep verification key hash (either Bech32-encoded or - hex-encoded). - --volatile-tip Use the volatile tip as a target. (This is the - default) - --immutable-tip Use the immutable tip as a target. - --out-file FILEPATH The output file. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/query_drep-state.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/query_drep-state.cli deleted file mode 100644 index aabba3133..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/query_drep-state.cli +++ /dev/null @@ -1,50 +0,0 @@ -Usage: cardano-cli query drep-state --socket-path SOCKET_PATH - [--cardano-mode [--epoch-slots SLOTS]] - (--mainnet | --testnet-magic NATURAL) - ( --all-dreps - | - ( --drep-script-hash HASH - | --drep-verification-key STRING - | --drep-verification-key-file FILEPATH - | --drep-key-hash HASH - ) - ) - [--include-stake] - [--volatile-tip | --immutable-tip] - [--out-file FILEPATH] - - Get the DRep state. - -Available options: - --socket-path SOCKET_PATH - Path to the node socket. This overrides the - CARDANO_NODE_SOCKET_PATH environment variable. The - argument is optional if CARDANO_NODE_SOCKET_PATH is - defined and mandatory otherwise. - --cardano-mode For talking to a node running in full Cardano mode - (default). - --epoch-slots SLOTS The number of slots per epoch for the Byron era. - (default: 21600) - --mainnet Use the mainnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --testnet-magic NATURAL Specify a testnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --all-dreps Query for all DReps. - --drep-script-hash HASH DRep script hash (hex-encoded). Obtain it with - "cardano-cli hash script ...". - --drep-verification-key STRING - DRep verification key (Bech32 or hex-encoded). - --drep-verification-key-file FILEPATH - Filepath of the DRep verification key. - --drep-key-hash HASH DRep verification key hash (either Bech32-encoded or - hex-encoded). - --include-stake Also return the stake associated with each DRep. The - result is the same as with "drep-stake-distribution"; - this is a convenience option to obtain all - information concerning a DRep at once. This is a - potentially expensive query, so it's OFF by default. - --volatile-tip Use the volatile tip as a target. (This is the - default) - --immutable-tip Use the immutable tip as a target. - --out-file FILEPATH The output file. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/query_gov-state.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/query_gov-state.cli deleted file mode 100644 index 9eac0da96..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/query_gov-state.cli +++ /dev/null @@ -1,27 +0,0 @@ -Usage: cardano-cli query gov-state --socket-path SOCKET_PATH - [--cardano-mode [--epoch-slots SLOTS]] - (--mainnet | --testnet-magic NATURAL) - [--volatile-tip | --immutable-tip] - [--out-file FILEPATH] - - Get the governance state - -Available options: - --socket-path SOCKET_PATH - Path to the node socket. This overrides the - CARDANO_NODE_SOCKET_PATH environment variable. The - argument is optional if CARDANO_NODE_SOCKET_PATH is - defined and mandatory otherwise. - --cardano-mode For talking to a node running in full Cardano mode - (default). - --epoch-slots SLOTS The number of slots per epoch for the Byron era. - (default: 21600) - --mainnet Use the mainnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --testnet-magic NATURAL Specify a testnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --volatile-tip Use the volatile tip as a target. (This is the - default) - --immutable-tip Use the immutable tip as a target. - --out-file FILEPATH The output file. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/query_kes-period-info.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/query_kes-period-info.cli deleted file mode 100644 index 6c5976792..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/query_kes-period-info.cli +++ /dev/null @@ -1,31 +0,0 @@ -Usage: cardano-cli query kes-period-info --socket-path SOCKET_PATH - [--cardano-mode - [--epoch-slots SLOTS]] - (--mainnet | --testnet-magic NATURAL) - --op-cert-file FILEPATH - [--volatile-tip | --immutable-tip] - [--out-file FILEPATH] - - Get information about the current KES period and your node's operational - certificate. - -Available options: - --socket-path SOCKET_PATH - Path to the node socket. This overrides the - CARDANO_NODE_SOCKET_PATH environment variable. The - argument is optional if CARDANO_NODE_SOCKET_PATH is - defined and mandatory otherwise. - --cardano-mode For talking to a node running in full Cardano mode - (default). - --epoch-slots SLOTS The number of slots per epoch for the Byron era. - (default: 21600) - --mainnet Use the mainnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --testnet-magic NATURAL Specify a testnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --op-cert-file FILEPATH Filepath of the node's operational certificate. - --volatile-tip Use the volatile tip as a target. (This is the - default) - --immutable-tip Use the immutable tip as a target. - --out-file FILEPATH Optional output file. Default is to write to stdout. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/query_leadership-schedule.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/query_leadership-schedule.cli deleted file mode 100644 index ea7b3db9b..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/query_leadership-schedule.cli +++ /dev/null @@ -1,56 +0,0 @@ -Usage: cardano-cli query leadership-schedule --socket-path SOCKET_PATH - [--cardano-mode - [--epoch-slots SLOTS]] - ( --mainnet - | --testnet-magic NATURAL - ) - --genesis FILEPATH - ( --stake-pool-verification-key STRING - | --cold-verification-key-file FILEPATH - | --stake-pool-id STAKE_POOL_ID - ) - --vrf-signing-key-file FILEPATH - (--current | --next) - [ --volatile-tip - | --immutable-tip - ] - [--output-json | --output-text] - [--out-file FILEPATH] - - Get the slots the node is expected to mint a block in (advanced command) - -Available options: - --socket-path SOCKET_PATH - Path to the node socket. This overrides the - CARDANO_NODE_SOCKET_PATH environment variable. The - argument is optional if CARDANO_NODE_SOCKET_PATH is - defined and mandatory otherwise. - --cardano-mode For talking to a node running in full Cardano mode - (default). - --epoch-slots SLOTS The number of slots per epoch for the Byron era. - (default: 21600) - --mainnet Use the mainnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --testnet-magic NATURAL Specify a testnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --genesis FILEPATH Shelley genesis filepath - --stake-pool-verification-key STRING - Stake pool verification key (Bech32 or hex-encoded). - --cold-verification-key-file FILEPATH - Filepath of the stake pool verification key. - --stake-pool-id STAKE_POOL_ID - Stake pool ID/verification key hash (either - Bech32-encoded or hex-encoded). - --vrf-signing-key-file FILEPATH - Input filepath of the VRF signing key. - --current Get the leadership schedule for the current epoch. - --next Get the leadership schedule for the following epoch. - --volatile-tip Use the volatile tip as a target. (This is the - default) - --immutable-tip Use the immutable tip as a target. - --output-json Format leadership-schedule query output to JSON. - Default format when writing to a file - --output-text Format leadership-schedule query output to TEXT. - Default format when writing to stdout - --out-file FILEPATH Optional output file. Default is to write to stdout. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/query_ledger-state.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/query_ledger-state.cli deleted file mode 100644 index 5dada14b2..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/query_ledger-state.cli +++ /dev/null @@ -1,28 +0,0 @@ -Usage: cardano-cli query ledger-state --socket-path SOCKET_PATH - [--cardano-mode [--epoch-slots SLOTS]] - (--mainnet | --testnet-magic NATURAL) - [--volatile-tip | --immutable-tip] - [--out-file FILEPATH] - - Dump the current ledger state of the node (Ledger.NewEpochState -- advanced - command) - -Available options: - --socket-path SOCKET_PATH - Path to the node socket. This overrides the - CARDANO_NODE_SOCKET_PATH environment variable. The - argument is optional if CARDANO_NODE_SOCKET_PATH is - defined and mandatory otherwise. - --cardano-mode For talking to a node running in full Cardano mode - (default). - --epoch-slots SLOTS The number of slots per epoch for the Byron era. - (default: 21600) - --mainnet Use the mainnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --testnet-magic NATURAL Specify a testnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --volatile-tip Use the volatile tip as a target. (This is the - default) - --immutable-tip Use the immutable tip as a target. - --out-file FILEPATH Optional output file. Default is to write to stdout. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/query_pool-params.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/query_pool-params.cli deleted file mode 100644 index 5aa0f0c42..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/query_pool-params.cli +++ /dev/null @@ -1,36 +0,0 @@ -Usage: cardano-cli query pool-params --socket-path SOCKET_PATH - [--cardano-mode [--epoch-slots SLOTS]] - (--mainnet | --testnet-magic NATURAL) - ( --all-stake-pools - | (--stake-pool-id STAKE_POOL_ID) - ) - [--volatile-tip | --immutable-tip] - [--out-file FILEPATH] - - DEPRECATED. Use query pool-state instead. Dump the pool parameters - (Ledger.NewEpochState.esLState._delegationState._pState._pParams -- advanced - command) - -Available options: - --socket-path SOCKET_PATH - Path to the node socket. This overrides the - CARDANO_NODE_SOCKET_PATH environment variable. The - argument is optional if CARDANO_NODE_SOCKET_PATH is - defined and mandatory otherwise. - --cardano-mode For talking to a node running in full Cardano mode - (default). - --epoch-slots SLOTS The number of slots per epoch for the Byron era. - (default: 21600) - --mainnet Use the mainnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --testnet-magic NATURAL Specify a testnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --all-stake-pools Query for all stake pools - --stake-pool-id STAKE_POOL_ID - Stake pool ID/verification key hash (either - Bech32-encoded or hex-encoded). - --volatile-tip Use the volatile tip as a target. (This is the - default) - --immutable-tip Use the immutable tip as a target. - --out-file FILEPATH Optional output file. Default is to write to stdout. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/query_pool-state.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/query_pool-state.cli deleted file mode 100644 index be6641d6b..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/query_pool-state.cli +++ /dev/null @@ -1,34 +0,0 @@ -Usage: cardano-cli query pool-state --socket-path SOCKET_PATH - [--cardano-mode [--epoch-slots SLOTS]] - (--mainnet | --testnet-magic NATURAL) - ( --all-stake-pools - | (--stake-pool-id STAKE_POOL_ID) - ) - [--volatile-tip | --immutable-tip] - [--out-file FILEPATH] - - Dump the pool state - -Available options: - --socket-path SOCKET_PATH - Path to the node socket. This overrides the - CARDANO_NODE_SOCKET_PATH environment variable. The - argument is optional if CARDANO_NODE_SOCKET_PATH is - defined and mandatory otherwise. - --cardano-mode For talking to a node running in full Cardano mode - (default). - --epoch-slots SLOTS The number of slots per epoch for the Byron era. - (default: 21600) - --mainnet Use the mainnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --testnet-magic NATURAL Specify a testnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --all-stake-pools Query for all stake pools - --stake-pool-id STAKE_POOL_ID - Stake pool ID/verification key hash (either - Bech32-encoded or hex-encoded). - --volatile-tip Use the volatile tip as a target. (This is the - default) - --immutable-tip Use the immutable tip as a target. - --out-file FILEPATH Optional output file. Default is to write to stdout. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/query_protocol-parameters.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/query_protocol-parameters.cli deleted file mode 100644 index 5ae60269c..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/query_protocol-parameters.cli +++ /dev/null @@ -1,26 +0,0 @@ -Usage: cardano-cli query protocol-parameters --socket-path SOCKET_PATH - [--cardano-mode - [--epoch-slots SLOTS]] - ( --mainnet - | --testnet-magic NATURAL - ) - [--out-file FILEPATH] - - Get the node's current protocol parameters - -Available options: - --socket-path SOCKET_PATH - Path to the node socket. This overrides the - CARDANO_NODE_SOCKET_PATH environment variable. The - argument is optional if CARDANO_NODE_SOCKET_PATH is - defined and mandatory otherwise. - --cardano-mode For talking to a node running in full Cardano mode - (default). - --epoch-slots SLOTS The number of slots per epoch for the Byron era. - (default: 21600) - --mainnet Use the mainnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --testnet-magic NATURAL Specify a testnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --out-file FILEPATH Optional output file. Default is to write to stdout. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/query_protocol-state.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/query_protocol-state.cli deleted file mode 100644 index 4b8247c6f..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/query_protocol-state.cli +++ /dev/null @@ -1,28 +0,0 @@ -Usage: cardano-cli query protocol-state --socket-path SOCKET_PATH - [--cardano-mode [--epoch-slots SLOTS]] - (--mainnet | --testnet-magic NATURAL) - [--volatile-tip | --immutable-tip] - [--out-file FILEPATH] - - Dump the current protocol state of the node (Ledger.ChainDepState -- advanced - command) - -Available options: - --socket-path SOCKET_PATH - Path to the node socket. This overrides the - CARDANO_NODE_SOCKET_PATH environment variable. The - argument is optional if CARDANO_NODE_SOCKET_PATH is - defined and mandatory otherwise. - --cardano-mode For talking to a node running in full Cardano mode - (default). - --epoch-slots SLOTS The number of slots per epoch for the Byron era. - (default: 21600) - --mainnet Use the mainnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --testnet-magic NATURAL Specify a testnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --volatile-tip Use the volatile tip as a target. (This is the - default) - --immutable-tip Use the immutable tip as a target. - --out-file FILEPATH Optional output file. Default is to write to stdout. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/query_ref-script-size.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/query_ref-script-size.cli deleted file mode 100644 index bb99625fb..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/query_ref-script-size.cli +++ /dev/null @@ -1,36 +0,0 @@ -Usage: cardano-cli query ref-script-size --socket-path SOCKET_PATH - [--cardano-mode - [--epoch-slots SLOTS]] - (--tx-in TX-IN) - (--mainnet | --testnet-magic NATURAL) - [--volatile-tip | --immutable-tip] - [--output-json | --output-text] - [--out-file FILEPATH] - - Calculate the reference input scripts size in bytes for provided transaction - inputs. - -Available options: - --socket-path SOCKET_PATH - Path to the node socket. This overrides the - CARDANO_NODE_SOCKET_PATH environment variable. The - argument is optional if CARDANO_NODE_SOCKET_PATH is - defined and mandatory otherwise. - --cardano-mode For talking to a node running in full Cardano mode - (default). - --epoch-slots SLOTS The number of slots per epoch for the Byron era. - (default: 21600) - --tx-in TX-IN Transaction input (TxId#TxIx). - --mainnet Use the mainnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --testnet-magic NATURAL Specify a testnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --volatile-tip Use the volatile tip as a target. (This is the - default) - --immutable-tip Use the immutable tip as a target. - --output-json Format reference inputs query output to JSON. Default - format when writing to a file - --output-text Format reference inputs query output to TEXT. Default - format when writing to stdout - --out-file FILEPATH Optional output file. Default is to write to stdout. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/query_slot-number.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/query_slot-number.cli deleted file mode 100644 index 6a77e406b..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/query_slot-number.cli +++ /dev/null @@ -1,27 +0,0 @@ -Usage: cardano-cli query slot-number --socket-path SOCKET_PATH - [--cardano-mode [--epoch-slots SLOTS]] - (--mainnet | --testnet-magic NATURAL) - [--volatile-tip | --immutable-tip] - TIMESTAMP - - Query slot number for UTC timestamp - -Available options: - --socket-path SOCKET_PATH - Path to the node socket. This overrides the - CARDANO_NODE_SOCKET_PATH environment variable. The - argument is optional if CARDANO_NODE_SOCKET_PATH is - defined and mandatory otherwise. - --cardano-mode For talking to a node running in full Cardano mode - (default). - --epoch-slots SLOTS The number of slots per epoch for the Byron era. - (default: 21600) - --mainnet Use the mainnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --testnet-magic NATURAL Specify a testnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --volatile-tip Use the volatile tip as a target. (This is the - default) - --immutable-tip Use the immutable tip as a target. - TIMESTAMP UTC timestamp in YYYY-MM-DDThh:mm:ssZ format - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/query_spo-stake-distribution.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/query_spo-stake-distribution.cli deleted file mode 100644 index fb3065a43..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/query_spo-stake-distribution.cli +++ /dev/null @@ -1,46 +0,0 @@ -Usage: cardano-cli query spo-stake-distribution --socket-path SOCKET_PATH - [--cardano-mode - [--epoch-slots SLOTS]] - ( --mainnet - | --testnet-magic NATURAL - ) - ( --all-spos - | - ( --spo-verification-key STRING - | --spo-verification-key-file FILEPATH - | --spo-key-hash HASH - ) - ) - [ --volatile-tip - | --immutable-tip - ] - [--out-file FILEPATH] - - Get the SPO stake distribution. - -Available options: - --socket-path SOCKET_PATH - Path to the node socket. This overrides the - CARDANO_NODE_SOCKET_PATH environment variable. The - argument is optional if CARDANO_NODE_SOCKET_PATH is - defined and mandatory otherwise. - --cardano-mode For talking to a node running in full Cardano mode - (default). - --epoch-slots SLOTS The number of slots per epoch for the Byron era. - (default: 21600) - --mainnet Use the mainnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --testnet-magic NATURAL Specify a testnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --all-spos Query for all DReps. - --spo-verification-key STRING - SPO verification key (Bech32 or hex-encoded). - --spo-verification-key-file FILEPATH - Filepath of the SPO verification key. - --spo-key-hash HASH SPO verification key hash (either Bech32-encoded or - hex-encoded). - --volatile-tip Use the volatile tip as a target. (This is the - default) - --immutable-tip Use the immutable tip as a target. - --out-file FILEPATH The output file. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/query_stake-address-info.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/query_stake-address-info.cli deleted file mode 100644 index e1dba2c35..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/query_stake-address-info.cli +++ /dev/null @@ -1,32 +0,0 @@ -Usage: cardano-cli query stake-address-info --socket-path SOCKET_PATH - [--cardano-mode - [--epoch-slots SLOTS]] - --address ADDRESS - ( --mainnet - | --testnet-magic NATURAL - ) - [--volatile-tip | --immutable-tip] - [--out-file FILEPATH] - - Get the current delegations and reward accounts filtered by stake address. - -Available options: - --socket-path SOCKET_PATH - Path to the node socket. This overrides the - CARDANO_NODE_SOCKET_PATH environment variable. The - argument is optional if CARDANO_NODE_SOCKET_PATH is - defined and mandatory otherwise. - --cardano-mode For talking to a node running in full Cardano mode - (default). - --epoch-slots SLOTS The number of slots per epoch for the Byron era. - (default: 21600) - --address ADDRESS Filter by Cardano stake address (Bech32-encoded). - --mainnet Use the mainnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --testnet-magic NATURAL Specify a testnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --volatile-tip Use the volatile tip as a target. (This is the - default) - --immutable-tip Use the immutable tip as a target. - --out-file FILEPATH Optional output file. Default is to write to stdout. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/query_stake-distribution.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/query_stake-distribution.cli deleted file mode 100644 index 7c33ecc72..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/query_stake-distribution.cli +++ /dev/null @@ -1,35 +0,0 @@ -Usage: cardano-cli query stake-distribution --socket-path SOCKET_PATH - [--cardano-mode - [--epoch-slots SLOTS]] - ( --mainnet - | --testnet-magic NATURAL - ) - [--volatile-tip | --immutable-tip] - [--output-json | --output-text] - [--out-file FILEPATH] - - Get the node's current aggregated stake distribution - -Available options: - --socket-path SOCKET_PATH - Path to the node socket. This overrides the - CARDANO_NODE_SOCKET_PATH environment variable. The - argument is optional if CARDANO_NODE_SOCKET_PATH is - defined and mandatory otherwise. - --cardano-mode For talking to a node running in full Cardano mode - (default). - --epoch-slots SLOTS The number of slots per epoch for the Byron era. - (default: 21600) - --mainnet Use the mainnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --testnet-magic NATURAL Specify a testnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --volatile-tip Use the volatile tip as a target. (This is the - default) - --immutable-tip Use the immutable tip as a target. - --output-json Format stake-distribution query output to JSON. - Default format when writing to a file - --output-text Format stake-distribution query output to TEXT. - Default format when writing to stdout - --out-file FILEPATH Optional output file. Default is to write to stdout. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/query_stake-pools.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/query_stake-pools.cli deleted file mode 100644 index 2bf8095b2..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/query_stake-pools.cli +++ /dev/null @@ -1,32 +0,0 @@ -Usage: cardano-cli query stake-pools --socket-path SOCKET_PATH - [--cardano-mode [--epoch-slots SLOTS]] - (--mainnet | --testnet-magic NATURAL) - [--volatile-tip | --immutable-tip] - [--output-json | --output-text] - [--out-file FILEPATH] - - Get the node's current set of stake pool ids - -Available options: - --socket-path SOCKET_PATH - Path to the node socket. This overrides the - CARDANO_NODE_SOCKET_PATH environment variable. The - argument is optional if CARDANO_NODE_SOCKET_PATH is - defined and mandatory otherwise. - --cardano-mode For talking to a node running in full Cardano mode - (default). - --epoch-slots SLOTS The number of slots per epoch for the Byron era. - (default: 21600) - --mainnet Use the mainnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --testnet-magic NATURAL Specify a testnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --volatile-tip Use the volatile tip as a target. (This is the - default) - --immutable-tip Use the immutable tip as a target. - --output-json Format stake-pools query output to JSON. Default - format when writing to a file - --output-text Format stake-pools query output to TEXT. Default - format when writing to stdout - --out-file FILEPATH Optional output file. Default is to write to stdout. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/query_stake-snapshot.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/query_stake-snapshot.cli deleted file mode 100644 index f6cd33921..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/query_stake-snapshot.cli +++ /dev/null @@ -1,35 +0,0 @@ -Usage: cardano-cli query stake-snapshot --socket-path SOCKET_PATH - [--cardano-mode [--epoch-slots SLOTS]] - (--mainnet | --testnet-magic NATURAL) - ( --all-stake-pools - | (--stake-pool-id STAKE_POOL_ID) - ) - [--volatile-tip | --immutable-tip] - [--out-file FILEPATH] - - Obtain the three stake snapshots for a pool, plus the total active stake - (advanced command) - -Available options: - --socket-path SOCKET_PATH - Path to the node socket. This overrides the - CARDANO_NODE_SOCKET_PATH environment variable. The - argument is optional if CARDANO_NODE_SOCKET_PATH is - defined and mandatory otherwise. - --cardano-mode For talking to a node running in full Cardano mode - (default). - --epoch-slots SLOTS The number of slots per epoch for the Byron era. - (default: 21600) - --mainnet Use the mainnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --testnet-magic NATURAL Specify a testnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --all-stake-pools Query for all stake pools - --stake-pool-id STAKE_POOL_ID - Stake pool ID/verification key hash (either - Bech32-encoded or hex-encoded). - --volatile-tip Use the volatile tip as a target. (This is the - default) - --immutable-tip Use the immutable tip as a target. - --out-file FILEPATH Optional output file. Default is to write to stdout. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/query_tip.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/query_tip.cli deleted file mode 100644 index 647e9e2c5..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/query_tip.cli +++ /dev/null @@ -1,27 +0,0 @@ -Usage: cardano-cli query tip --socket-path SOCKET_PATH - [--cardano-mode [--epoch-slots SLOTS]] - (--mainnet | --testnet-magic NATURAL) - [--volatile-tip | --immutable-tip] - [--out-file FILEPATH] - - Get the node's current tip (slot no, hash, block no) - -Available options: - --socket-path SOCKET_PATH - Path to the node socket. This overrides the - CARDANO_NODE_SOCKET_PATH environment variable. The - argument is optional if CARDANO_NODE_SOCKET_PATH is - defined and mandatory otherwise. - --cardano-mode For talking to a node running in full Cardano mode - (default). - --epoch-slots SLOTS The number of slots per epoch for the Byron era. - (default: 21600) - --mainnet Use the mainnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --testnet-magic NATURAL Specify a testnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --volatile-tip Use the volatile tip as a target. (This is the - default) - --immutable-tip Use the immutable tip as a target. - --out-file FILEPATH Optional output file. Default is to write to stdout. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/query_treasury.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/query_treasury.cli deleted file mode 100644 index d20a1d8ef..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/query_treasury.cli +++ /dev/null @@ -1,27 +0,0 @@ -Usage: cardano-cli query treasury --socket-path SOCKET_PATH - [--cardano-mode [--epoch-slots SLOTS]] - (--mainnet | --testnet-magic NATURAL) - [--volatile-tip | --immutable-tip] - [--out-file FILEPATH] - - Get the treasury value - -Available options: - --socket-path SOCKET_PATH - Path to the node socket. This overrides the - CARDANO_NODE_SOCKET_PATH environment variable. The - argument is optional if CARDANO_NODE_SOCKET_PATH is - defined and mandatory otherwise. - --cardano-mode For talking to a node running in full Cardano mode - (default). - --epoch-slots SLOTS The number of slots per epoch for the Byron era. - (default: 21600) - --mainnet Use the mainnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --testnet-magic NATURAL Specify a testnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --volatile-tip Use the volatile tip as a target. (This is the - default) - --immutable-tip Use the immutable tip as a target. - --out-file FILEPATH The output file. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/query_tx-mempool.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/query_tx-mempool.cli deleted file mode 100644 index 2390c51e4..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/query_tx-mempool.cli +++ /dev/null @@ -1,32 +0,0 @@ -Usage: cardano-cli query tx-mempool --socket-path SOCKET_PATH - [--cardano-mode [--epoch-slots SLOTS]] - (--mainnet | --testnet-magic NATURAL) - (info | next-tx | tx-exists) - [--out-file FILEPATH] - - Local Mempool info - -Available options: - --socket-path SOCKET_PATH - Path to the node socket. This overrides the - CARDANO_NODE_SOCKET_PATH environment variable. The - argument is optional if CARDANO_NODE_SOCKET_PATH is - defined and mandatory otherwise. - --cardano-mode For talking to a node running in full Cardano mode - (default). - --epoch-slots SLOTS The number of slots per epoch for the Byron era. - (default: 21600) - --mainnet Use the mainnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --testnet-magic NATURAL Specify a testnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --out-file FILEPATH Optional output file. Default is to write to stdout. - -h,--help Show this help text - -Available commands: - info Ask the node about the current mempool's capacity and - sizes - next-tx Requests the next transaction from the mempool's - current list - tx-exists Query if a particular transaction exists in the - mempool diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/query_tx-mempool_info.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/query_tx-mempool_info.cli deleted file mode 100644 index 81aad66dd..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/query_tx-mempool_info.cli +++ /dev/null @@ -1,9 +0,0 @@ -Missing: --socket-path SOCKET_PATH (--mainnet | --testnet-magic NATURAL) - -Usage: cardano-cli query tx-mempool --socket-path SOCKET_PATH - [--cardano-mode [--epoch-slots SLOTS]] - (--mainnet | --testnet-magic NATURAL) - (info | next-tx | tx-exists) - [--out-file FILEPATH] - - Local Mempool info diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/query_tx-mempool_next-tx.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/query_tx-mempool_next-tx.cli deleted file mode 100644 index 81aad66dd..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/query_tx-mempool_next-tx.cli +++ /dev/null @@ -1,9 +0,0 @@ -Missing: --socket-path SOCKET_PATH (--mainnet | --testnet-magic NATURAL) - -Usage: cardano-cli query tx-mempool --socket-path SOCKET_PATH - [--cardano-mode [--epoch-slots SLOTS]] - (--mainnet | --testnet-magic NATURAL) - (info | next-tx | tx-exists) - [--out-file FILEPATH] - - Local Mempool info diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/query_tx-mempool_tx-exists_TX_ID.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/query_tx-mempool_tx-exists_TX_ID.cli deleted file mode 100644 index 81aad66dd..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/query_tx-mempool_tx-exists_TX_ID.cli +++ /dev/null @@ -1,9 +0,0 @@ -Missing: --socket-path SOCKET_PATH (--mainnet | --testnet-magic NATURAL) - -Usage: cardano-cli query tx-mempool --socket-path SOCKET_PATH - [--cardano-mode [--epoch-slots SLOTS]] - (--mainnet | --testnet-magic NATURAL) - (info | next-tx | tx-exists) - [--out-file FILEPATH] - - Local Mempool info diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/query_utxo.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/query_utxo.cli deleted file mode 100644 index f0ecd043a..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/query_utxo.cli +++ /dev/null @@ -1,40 +0,0 @@ -Usage: cardano-cli query utxo --socket-path SOCKET_PATH - [--cardano-mode [--epoch-slots SLOTS]] - ( --whole-utxo - | (--address ADDRESS) - | (--tx-in TX-IN) - ) - (--mainnet | --testnet-magic NATURAL) - [--volatile-tip | --immutable-tip] - [--output-json | --output-text] - [--out-file FILEPATH] - - Get a portion of the current UTxO: by tx in, by address or the whole. - -Available options: - --socket-path SOCKET_PATH - Path to the node socket. This overrides the - CARDANO_NODE_SOCKET_PATH environment variable. The - argument is optional if CARDANO_NODE_SOCKET_PATH is - defined and mandatory otherwise. - --cardano-mode For talking to a node running in full Cardano mode - (default). - --epoch-slots SLOTS The number of slots per epoch for the Byron era. - (default: 21600) - --whole-utxo Return the whole UTxO (only appropriate on small - testnets). - --address ADDRESS Filter by Cardano address(es) (Bech32-encoded). - --tx-in TX-IN Filter by transaction input (TxId#TxIx). - --mainnet Use the mainnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --testnet-magic NATURAL Specify a testnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --volatile-tip Use the volatile tip as a target. (This is the - default) - --immutable-tip Use the immutable tip as a target. - --output-json Format utxo query output to JSON. Default format when - writing to a file - --output-text Format utxo query output to TEXT. Default format when - writing to stdout - --out-file FILEPATH Optional output file. Default is to write to stdout. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/stake-address.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/stake-address.cli deleted file mode 100644 index 0260544a2..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/stake-address.cli +++ /dev/null @@ -1,35 +0,0 @@ -Usage: cardano-cli stake-address - ( key-gen - | key-hash - | build - | registration-certificate - | deregistration-certificate - | stake-delegation-certificate - | stake-and-vote-delegation-certificate - | vote-delegation-certificate - ) - - Stake address commands. - -Available options: - -h,--help Show this help text - -Available commands: - key-gen Create a stake address key pair - key-hash Print the hash of a stake address key - build Build a stake address - registration-certificate Create a stake address registration certificate - deregistration-certificate - Create a stake address deregistration certificate - stake-delegation-certificate - Create a stake address stake delegation certificate, - which when submitted in a transaction delegates stake - to a stake pool. - stake-and-vote-delegation-certificate - Create a stake address stake and vote delegation - certificate, which when submitted in a transaction - delegates stake to a stake pool and a DRep. - vote-delegation-certificate - Create a stake address vote delegation certificate, - which when submitted in a transaction delegates stake - to a DRep. diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/stake-address_build.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/stake-address_build.cli deleted file mode 100644 index add833260..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/stake-address_build.cli +++ /dev/null @@ -1,25 +0,0 @@ -Usage: cardano-cli stake-address build - ( --stake-verification-key STRING - | --stake-verification-key-file FILEPATH - | --stake-key-hash HASH - | --stake-script-file FILEPATH - ) - (--mainnet | --testnet-magic NATURAL) - [--out-file FILEPATH] - - Build a stake address - -Available options: - --stake-verification-key STRING - Stake verification key (Bech32 or hex-encoded). - --stake-verification-key-file FILEPATH - Filepath of the staking verification key. - --stake-key-hash HASH Stake verification key hash (hex-encoded). - --stake-script-file FILEPATH - Filepath of the staking script. - --mainnet Use the mainnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --testnet-magic NATURAL Specify a testnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --out-file FILEPATH Optional output file. Default is to write to stdout. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/stake-address_delegation-certificate.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/stake-address_delegation-certificate.cli deleted file mode 100644 index 8289ae9ce..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/stake-address_delegation-certificate.cli +++ /dev/null @@ -1,51 +0,0 @@ -Usage: cardano-cli stake-address delegation-certificate - [ --shelley-era - | --allegra-era - | --mary-era - | --alonzo-era - | --babbage-era - | --conway-era - ] - ( --stake-verification-key STRING - | --stake-verification-key-file FILEPATH - | --stake-key-hash HASH - | --stake-script-file FILEPATH - | --stake-address ADDRESS - ) - ( --stake-pool-verification-key STRING - | --cold-verification-key-file FILEPATH - | --stake-pool-id STAKE_POOL_ID - ) - --out-file FILEPATH - - Create a stake address pool delegation certificate - -Available options: - --shelley-era Specify the Shelley era - DEPRECATED - will be - removed in the future - --allegra-era Specify the Allegra era - DEPRECATED - will be - removed in the future - --mary-era Specify the Mary era - DEPRECATED - will be removed - in the future - --alonzo-era Specify the Alonzo era - DEPRECATED - will be removed - in the future - --babbage-era Specify the Babbage era (default) - DEPRECATED - will - be removed in the future - --conway-era Specify the Conway era - --stake-verification-key STRING - Stake verification key (Bech32 or hex-encoded). - --stake-verification-key-file FILEPATH - Filepath of the staking verification key. - --stake-key-hash HASH Stake verification key hash (hex-encoded). - --stake-script-file FILEPATH - Filepath of the staking script. - --stake-address ADDRESS Target stake address (bech32 format). - --stake-pool-verification-key STRING - Stake pool verification key (Bech32 or hex-encoded). - --cold-verification-key-file FILEPATH - Filepath of the stake pool verification key. - --stake-pool-id STAKE_POOL_ID - Stake pool ID/verification key hash (either - Bech32-encoded or hex-encoded). - --out-file FILEPATH The output file. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/stake-address_deregistration-certificate.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/stake-address_deregistration-certificate.cli deleted file mode 100644 index 642aed6c1..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/stake-address_deregistration-certificate.cli +++ /dev/null @@ -1,25 +0,0 @@ -Usage: cardano-cli stake-address deregistration-certificate - ( --stake-verification-key STRING - | --stake-verification-key-file FILEPATH - | --stake-key-hash HASH - | --stake-script-file FILEPATH - | --stake-address ADDRESS - ) - --key-reg-deposit-amt NATURAL - --out-file FILEPATH - - Create a stake address deregistration certificate - -Available options: - --stake-verification-key STRING - Stake verification key (Bech32 or hex-encoded). - --stake-verification-key-file FILEPATH - Filepath of the staking verification key. - --stake-key-hash HASH Stake verification key hash (hex-encoded). - --stake-script-file FILEPATH - Filepath of the staking script. - --stake-address ADDRESS Target stake address (bech32 format). - --key-reg-deposit-amt NATURAL - Key registration deposit amount. - --out-file FILEPATH The output file. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/stake-address_key-gen.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/stake-address_key-gen.cli deleted file mode 100644 index f6cf343b1..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/stake-address_key-gen.cli +++ /dev/null @@ -1,16 +0,0 @@ -Usage: cardano-cli stake-address key-gen [--key-output-format STRING] - --verification-key-file FILEPATH - --signing-key-file FILEPATH - - Create a stake address key pair - -Available options: - --key-output-format STRING - Optional key output format. Accepted output formats - are "text-envelope" and "bech32" (default is - "text-envelope"). - --verification-key-file FILEPATH - Output filepath of the verification key. - --signing-key-file FILEPATH - Output filepath of the signing key. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/stake-address_key-hash.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/stake-address_key-hash.cli deleted file mode 100644 index b15ffc192..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/stake-address_key-hash.cli +++ /dev/null @@ -1,15 +0,0 @@ -Usage: cardano-cli stake-address key-hash - ( --stake-verification-key STRING - | --stake-verification-key-file FILEPATH - ) - [--out-file FILEPATH] - - Print the hash of a stake address key - -Available options: - --stake-verification-key STRING - Stake verification key (Bech32 or hex-encoded). - --stake-verification-key-file FILEPATH - Filepath of the staking verification key. - --out-file FILEPATH Optional output file. Default is to write to stdout. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/stake-address_registration-certificate.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/stake-address_registration-certificate.cli deleted file mode 100644 index ae34eb235..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/stake-address_registration-certificate.cli +++ /dev/null @@ -1,25 +0,0 @@ -Usage: cardano-cli stake-address registration-certificate - ( --stake-verification-key STRING - | --stake-verification-key-file FILEPATH - | --stake-key-hash HASH - | --stake-script-file FILEPATH - | --stake-address ADDRESS - ) - --key-reg-deposit-amt NATURAL - --out-file FILEPATH - - Create a stake address registration certificate - -Available options: - --stake-verification-key STRING - Stake verification key (Bech32 or hex-encoded). - --stake-verification-key-file FILEPATH - Filepath of the staking verification key. - --stake-key-hash HASH Stake verification key hash (hex-encoded). - --stake-script-file FILEPATH - Filepath of the staking script. - --stake-address ADDRESS Target stake address (bech32 format). - --key-reg-deposit-amt NATURAL - Key registration deposit amount. - --out-file FILEPATH The output file. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/stake-address_stake-and-vote-delegation-certificate.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/stake-address_stake-and-vote-delegation-certificate.cli deleted file mode 100644 index 81b8ed73b..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/stake-address_stake-and-vote-delegation-certificate.cli +++ /dev/null @@ -1,51 +0,0 @@ -Usage: cardano-cli stake-address stake-and-vote-delegation-certificate - ( --stake-verification-key STRING - | --stake-verification-key-file FILEPATH - | --stake-key-hash HASH - | --stake-script-file FILEPATH - | --stake-address ADDRESS - ) - ( --stake-pool-verification-key STRING - | --cold-verification-key-file FILEPATH - | --stake-pool-id STAKE_POOL_ID - ) - ( --drep-script-hash HASH - | --drep-verification-key STRING - | --drep-verification-key-file FILEPATH - | --drep-key-hash HASH - | --always-abstain - | --always-no-confidence - ) - --out-file FILEPATH - - Create a stake address stake and vote delegation certificate, which when - submitted in a transaction delegates stake to a stake pool and a DRep. - -Available options: - --stake-verification-key STRING - Stake verification key (Bech32 or hex-encoded). - --stake-verification-key-file FILEPATH - Filepath of the staking verification key. - --stake-key-hash HASH Stake verification key hash (hex-encoded). - --stake-script-file FILEPATH - Filepath of the staking script. - --stake-address ADDRESS Target stake address (bech32 format). - --stake-pool-verification-key STRING - Stake pool verification key (Bech32 or hex-encoded). - --cold-verification-key-file FILEPATH - Filepath of the stake pool verification key. - --stake-pool-id STAKE_POOL_ID - Stake pool ID/verification key hash (either - Bech32-encoded or hex-encoded). - --drep-script-hash HASH DRep script hash (hex-encoded). Obtain it with - "cardano-cli hash script ...". - --drep-verification-key STRING - DRep verification key (Bech32 or hex-encoded). - --drep-verification-key-file FILEPATH - Filepath of the DRep verification key. - --drep-key-hash HASH DRep verification key hash (either Bech32-encoded or - hex-encoded). - --always-abstain Abstain from voting on all proposals. - --always-no-confidence Always vote no confidence - --out-file FILEPATH The output file. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/stake-address_stake-delegation-certificate.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/stake-address_stake-delegation-certificate.cli deleted file mode 100644 index d439099c8..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/stake-address_stake-delegation-certificate.cli +++ /dev/null @@ -1,34 +0,0 @@ -Usage: cardano-cli stake-address stake-delegation-certificate - ( --stake-verification-key STRING - | --stake-verification-key-file FILEPATH - | --stake-key-hash HASH - | --stake-script-file FILEPATH - | --stake-address ADDRESS - ) - ( --stake-pool-verification-key STRING - | --cold-verification-key-file FILEPATH - | --stake-pool-id STAKE_POOL_ID - ) - --out-file FILEPATH - - Create a stake address stake delegation certificate, which when submitted in a - transaction delegates stake to a stake pool. - -Available options: - --stake-verification-key STRING - Stake verification key (Bech32 or hex-encoded). - --stake-verification-key-file FILEPATH - Filepath of the staking verification key. - --stake-key-hash HASH Stake verification key hash (hex-encoded). - --stake-script-file FILEPATH - Filepath of the staking script. - --stake-address ADDRESS Target stake address (bech32 format). - --stake-pool-verification-key STRING - Stake pool verification key (Bech32 or hex-encoded). - --cold-verification-key-file FILEPATH - Filepath of the stake pool verification key. - --stake-pool-id STAKE_POOL_ID - Stake pool ID/verification key hash (either - Bech32-encoded or hex-encoded). - --out-file FILEPATH The output file. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/stake-address_vote-delegation-certificate.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/stake-address_vote-delegation-certificate.cli deleted file mode 100644 index 8f6d5de2a..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/stake-address_vote-delegation-certificate.cli +++ /dev/null @@ -1,40 +0,0 @@ -Usage: cardano-cli stake-address vote-delegation-certificate - ( --stake-verification-key STRING - | --stake-verification-key-file FILEPATH - | --stake-key-hash HASH - | --stake-script-file FILEPATH - | --stake-address ADDRESS - ) - ( --drep-script-hash HASH - | --drep-verification-key STRING - | --drep-verification-key-file FILEPATH - | --drep-key-hash HASH - | --always-abstain - | --always-no-confidence - ) - --out-file FILEPATH - - Create a stake address vote delegation certificate, which when submitted in a - transaction delegates stake to a DRep. - -Available options: - --stake-verification-key STRING - Stake verification key (Bech32 or hex-encoded). - --stake-verification-key-file FILEPATH - Filepath of the staking verification key. - --stake-key-hash HASH Stake verification key hash (hex-encoded). - --stake-script-file FILEPATH - Filepath of the staking script. - --stake-address ADDRESS Target stake address (bech32 format). - --drep-script-hash HASH DRep script hash (hex-encoded). Obtain it with - "cardano-cli hash script ...". - --drep-verification-key STRING - DRep verification key (Bech32 or hex-encoded). - --drep-verification-key-file FILEPATH - Filepath of the DRep verification key. - --drep-key-hash HASH DRep verification key hash (either Bech32-encoded or - hex-encoded). - --always-abstain Abstain from voting on all proposals. - --always-no-confidence Always vote no confidence - --out-file FILEPATH The output file. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/stake-pool.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/stake-pool.cli deleted file mode 100644 index bcb59ea08..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/stake-pool.cli +++ /dev/null @@ -1,18 +0,0 @@ -Usage: cardano-cli stake-pool - ( registration-certificate - | deregistration-certificate - | id - | metadata-hash - ) - - Stake pool commands. - -Available options: - -h,--help Show this help text - -Available commands: - registration-certificate Create a stake pool registration certificate - deregistration-certificate - Create a stake pool deregistration certificate - id Build pool id from the offline key - metadata-hash Print the hash of pool metadata. diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/stake-pool_deregistration-certificate.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/stake-pool_deregistration-certificate.cli deleted file mode 100644 index 2f7a9c9fd..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/stake-pool_deregistration-certificate.cli +++ /dev/null @@ -1,17 +0,0 @@ -Usage: cardano-cli stake-pool deregistration-certificate - ( --stake-pool-verification-key STRING - | --cold-verification-key-file FILEPATH - ) - --epoch NATURAL - --out-file FILEPATH - - Create a stake pool deregistration certificate - -Available options: - --stake-pool-verification-key STRING - Stake pool verification key (Bech32 or hex-encoded). - --cold-verification-key-file FILEPATH - Filepath of the stake pool verification key. - --epoch NATURAL The epoch number. - --out-file FILEPATH The output file. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/stake-pool_id.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/stake-pool_id.cli deleted file mode 100644 index 331a58c53..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/stake-pool_id.cli +++ /dev/null @@ -1,18 +0,0 @@ -Usage: cardano-cli stake-pool id - ( --stake-pool-verification-key STRING - | --cold-verification-key-file FILEPATH - ) - [--output-format STRING] - [--out-file FILEPATH] - - Build pool id from the offline key - -Available options: - --stake-pool-verification-key STRING - Stake pool verification key (Bech32 or hex-encoded). - --cold-verification-key-file FILEPATH - Filepath of the stake pool verification key. - --output-format STRING Optional pool id output format. Accepted output - formats are "hex" and "bech32" (default is "bech32"). - --out-file FILEPATH Optional output file. Default is to write to stdout. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/stake-pool_metadata-hash.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/stake-pool_metadata-hash.cli deleted file mode 100644 index 17cd810fd..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/stake-pool_metadata-hash.cli +++ /dev/null @@ -1,10 +0,0 @@ -Usage: cardano-cli stake-pool metadata-hash --pool-metadata-file FILEPATH - [--out-file FILEPATH] - - Print the hash of pool metadata. - -Available options: - --pool-metadata-file FILEPATH - Filepath of the pool metadata. - --out-file FILEPATH Optional output file. Default is to write to stdout. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/stake-pool_registration-certificate.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/stake-pool_registration-certificate.cli deleted file mode 100644 index 2565f4178..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/stake-pool_registration-certificate.cli +++ /dev/null @@ -1,73 +0,0 @@ -Usage: cardano-cli stake-pool registration-certificate - ( --stake-pool-verification-key STRING - | --cold-verification-key-file FILEPATH - ) - ( --vrf-verification-key STRING - | --vrf-verification-key-file FILEPATH - ) - --pool-pledge LOVELACE - --pool-cost LOVELACE - --pool-margin RATIONAL - ( --pool-reward-account-verification-key STRING - | --pool-reward-account-verification-key-file FILEPATH - ) - ( --pool-owner-verification-key STRING - | --pool-owner-stake-verification-key-file FILEPATH - ) - [ [--pool-relay-ipv4 STRING] - [--pool-relay-ipv6 STRING] - --pool-relay-port INT - | --single-host-pool-relay STRING - [--pool-relay-port INT] - | --multi-host-pool-relay STRING - ] - [--metadata-url URL - --metadata-hash HASH] - ( --mainnet - | --testnet-magic NATURAL - ) - --out-file FILEPATH - - Create a stake pool registration certificate - -Available options: - --stake-pool-verification-key STRING - Stake pool verification key (Bech32 or hex-encoded). - --cold-verification-key-file FILEPATH - Filepath of the stake pool verification key. - --vrf-verification-key STRING - VRF verification key (Bech32 or hex-encoded). - --vrf-verification-key-file FILEPATH - Filepath of the VRF verification key. - --pool-pledge LOVELACE The stake pool's pledge. - --pool-cost LOVELACE The stake pool's cost. - --pool-margin RATIONAL The stake pool's margin. - --pool-reward-account-verification-key STRING - Reward account stake verification key (Bech32 or - hex-encoded). - --pool-reward-account-verification-key-file FILEPATH - Filepath of the reward account stake verification - key. - --pool-owner-verification-key STRING - Pool owner stake verification key (Bech32 or - hex-encoded). - --pool-owner-stake-verification-key-file FILEPATH - Filepath of the pool owner stake verification key. - --pool-relay-ipv4 STRING The stake pool relay's IPv4 address - --pool-relay-ipv6 STRING The stake pool relay's IPv6 address - --pool-relay-port INT The stake pool relay's port - --single-host-pool-relay STRING - The stake pool relay's DNS name that corresponds to - an A or AAAA DNS record - --pool-relay-port INT The stake pool relay's port - --multi-host-pool-relay STRING - The stake pool relay's DNS name that corresponds to - an SRV DNS record - --metadata-url URL Pool metadata URL (maximum length of 64 characters). - --metadata-hash HASH Pool metadata hash. - --mainnet Use the mainnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --testnet-magic NATURAL Specify a testnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --out-file FILEPATH The output file. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/text-view_decode-cbor.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/text-view_decode-cbor.cli deleted file mode 100644 index 6f7572555..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/text-view_decode-cbor.cli +++ /dev/null @@ -1,9 +0,0 @@ -Usage: cardano-cli text-view decode-cbor --in-file FILEPATH - [--out-file FILEPATH] - - Print a TextView file as decoded CBOR. - -Available options: - --in-file FILEPATH CBOR input file. - --out-file FILEPATH Optional output file. Default is to write to stdout. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/transaction.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/transaction.cli deleted file mode 100644 index d7f540cd4..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/transaction.cli +++ /dev/null @@ -1,45 +0,0 @@ -Usage: cardano-cli transaction - ( build-raw - | build - | build-estimate - | sign - | witness - | assemble - | submit - | policyid - | calculate-min-fee - | calculate-min-required-utxo - | hash-script-data - | txid - ) - - Transaction commands. - -Available options: - -h,--help Show this help text - -Available commands: - build-raw Build a transaction (low-level, inconvenient) - - Please note the order[93;22;23;24m of some cmd options is crucial. If used incorrectly may produce undesired tx body. See nested [] notation above for details.[0;22;23;24m - build Build a balanced transaction (automatically calculates fees) - - Please note the order[93;22;23;24m of some cmd options is crucial. If used incorrectly may produce undesired tx body. See nested [] notation above for details.[0;22;23;24m - build-estimate Build a balanced transaction without access to a live node (automatically estimates fees) - - Please note the order[93;22;23;24m of some cmd options is crucial. If used incorrectly may produce undesired tx body. See nested [] notation above for details.[0;22;23;24m - sign Sign a transaction - witness Create a transaction witness - assemble Assemble a tx body and witness(es) to form a - transaction - submit Submit a transaction to the local node whose Unix - domain socket is obtained from the - CARDANO_NODE_SOCKET_PATH environment variable. - policyid Calculate the PolicyId from the monetary policy - script. - calculate-min-fee Calculate the minimum fee for a transaction. - calculate-min-required-utxo - Calculate the minimum required UTxO for a transaction - output. - hash-script-data Calculate the hash of script data. - txid Print a transaction identifier. diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/transaction_assemble.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/transaction_assemble.cli deleted file mode 100644 index 0100e4f5b..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/transaction_assemble.cli +++ /dev/null @@ -1,11 +0,0 @@ -Usage: cardano-cli transaction assemble --tx-body-file FILEPATH - [--witness-file FILEPATH] - --out-file FILEPATH - - Assemble a tx body and witness(es) to form a transaction - -Available options: - --tx-body-file FILEPATH Input filepath of the JSON TxBody. - --witness-file FILEPATH Filepath of the witness - --out-file FILEPATH The output file. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/transaction_build-estimate.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/transaction_build-estimate.cli deleted file mode 100644 index ad2d068c0..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/transaction_build-estimate.cli +++ /dev/null @@ -1,514 +0,0 @@ -Usage: cardano-cli transaction build-estimate - [ --script-valid - | --script-invalid - ] - --shelley-key-witnesses INT - [--byron-key-witnesses Int] - --protocol-params-file FILEPATH - --total-utxo-value VALUE - (--tx-in TX-IN - [ --spending-tx-in-reference TX-IN - ( --spending-plutus-script-v2 - | --spending-plutus-script-v3 - ) - [ --spending-reference-tx-in-datum-cbor-file CBOR_FILE - | --spending-reference-tx-in-datum-file JSON_FILE - | --spending-reference-tx-in-datum-value JSON_VALUE - | --spending-reference-tx-in-inline-datum-present - ] - ( --spending-reference-tx-in-redeemer-cbor-file CBOR_FILE - | --spending-reference-tx-in-redeemer-file JSON_FILE - | --spending-reference-tx-in-redeemer-value JSON_VALUE - ) - --spending-reference-tx-in-execution-units (INT, INT) - | --simple-script-tx-in-reference TX-IN - | --tx-in-script-file FILEPATH - [ - [ --tx-in-datum-cbor-file CBOR_FILE - | --tx-in-datum-file JSON_FILE - | --tx-in-datum-value JSON_VALUE - | --tx-in-inline-datum-present - ] - ( --tx-in-redeemer-cbor-file CBOR_FILE - | --tx-in-redeemer-file JSON_FILE - | --tx-in-redeemer-value JSON_VALUE - ) - --tx-in-execution-units (INT, INT)] - ]) - [--read-only-tx-in-reference TX-IN] - [ --required-signer FILEPATH - | --required-signer-hash HASH - ] - [--tx-in-collateral TX-IN] - [--tx-out-return-collateral ADDRESS VALUE] - [--tx-out ADDRESS VALUE - [ --tx-out-datum-hash HASH - | --tx-out-datum-hash-cbor-file CBOR_FILE - | --tx-out-datum-hash-file JSON_FILE - | --tx-out-datum-hash-value JSON_VALUE - | --tx-out-datum-embed-cbor-file CBOR_FILE - | --tx-out-datum-embed-file JSON_FILE - | --tx-out-datum-embed-value JSON_VALUE - | --tx-out-inline-datum-cbor-file CBOR_FILE - | --tx-out-inline-datum-file JSON_FILE - | --tx-out-inline-datum-value JSON_VALUE - ] - [--tx-out-reference-script-file FILEPATH]] - --change-address ADDRESS - [--mint VALUE - ( --mint-script-file FILEPATH - [ - ( --mint-redeemer-cbor-file CBOR_FILE - | --mint-redeemer-file JSON_FILE - | --mint-redeemer-value JSON_VALUE - ) - --mint-execution-units (INT, INT)] - | --simple-minting-script-tx-in-reference TX-IN - --policy-id HASH - | --mint-tx-in-reference TX-IN - ( --mint-plutus-script-v2 - | --mint-plutus-script-v3 - ) - ( --mint-reference-tx-in-redeemer-cbor-file CBOR_FILE - | --mint-reference-tx-in-redeemer-file JSON_FILE - | --mint-reference-tx-in-redeemer-value JSON_VALUE - ) - --mint-reference-tx-in-execution-units (INT, INT) - --policy-id HASH - )] - [--invalid-before SLOT] - [--invalid-hereafter SLOT] - [--certificate-file FILEPATH - [ --certificate-script-file FILEPATH - [ - ( --certificate-redeemer-cbor-file CBOR_FILE - | --certificate-redeemer-file JSON_FILE - | --certificate-redeemer-value JSON_VALUE - ) - --certificate-execution-units (INT, INT)] - | --certificate-tx-in-reference TX-IN - ( --certificate-plutus-script-v2 - | --certificate-plutus-script-v3 - ) - ( --certificate-reference-tx-in-redeemer-cbor-file CBOR_FILE - | --certificate-reference-tx-in-redeemer-file JSON_FILE - | --certificate-reference-tx-in-redeemer-value JSON_VALUE - ) - --certificate-reference-tx-in-execution-units (INT, INT) - ]] - [--withdrawal WITHDRAWAL - [ --withdrawal-script-file FILEPATH - [ - ( --withdrawal-redeemer-cbor-file CBOR_FILE - | --withdrawal-redeemer-file JSON_FILE - | --withdrawal-redeemer-value JSON_VALUE - ) - --withdrawal-execution-units (INT, INT)] - | --withdrawal-tx-in-reference TX-IN - ( --withdrawal-plutus-script-v2 - | --withdrawal-plutus-script-v3 - ) - ( --withdrawal-reference-tx-in-redeemer-cbor-file CBOR_FILE - | --withdrawal-reference-tx-in-redeemer-file JSON_FILE - | --withdrawal-reference-tx-in-redeemer-value JSON_VALUE - ) - --withdrawal-reference-tx-in-execution-units (INT, INT) - ]] - [--tx-total-collateral INTEGER] - [--reference-script-size NATURAL] - [ --json-metadata-no-schema - | --json-metadata-detailed-schema - ] - [--auxiliary-script-file FILEPATH] - [ --metadata-json-file FILEPATH - | --metadata-cbor-file FILEPATH - ] - [--vote-file FILEPATH - [ --vote-script-file FILEPATH - [ - ( --vote-redeemer-cbor-file CBOR_FILE - | --vote-redeemer-file JSON_FILE - | --vote-redeemer-value JSON_VALUE - ) - --vote-execution-units (INT, INT)] - | --vote-tx-in-reference TX-IN - --vote-plutus-script-v3 - ( --vote-reference-tx-in-redeemer-cbor-file CBOR_FILE - | --vote-reference-tx-in-redeemer-file JSON_FILE - | --vote-reference-tx-in-redeemer-value JSON_VALUE - ) - --vote-reference-tx-in-execution-units (INT, INT) - ]] - [--proposal-file FILEPATH - [ --proposal-script-file FILEPATH - [ - ( --proposal-redeemer-cbor-file CBOR_FILE - | --proposal-redeemer-file JSON_FILE - | --proposal-redeemer-value JSON_VALUE - ) - --proposal-execution-units (INT, INT)] - | --proposal-tx-in-reference TX-IN - --proposal-plutus-script-v3 - ( --proposal-reference-tx-in-redeemer-cbor-file CBOR_FILE - | --proposal-reference-tx-in-redeemer-file JSON_FILE - | --proposal-reference-tx-in-redeemer-value JSON_VALUE - ) - --proposal-reference-tx-in-execution-units (INT, INT) - ]] - [--current-treasury-value LOVELACE - --treasury-donation LOVELACE] - --out-file FILEPATH - - Build a balanced transaction without access to a live node (automatically estimates fees) - - Please note the order[93;22;23;24m of some cmd options is crucial. If used incorrectly may produce undesired tx body. See nested [] notation above for details.[0;22;23;24m - -Available options: - --script-valid Assertion that the script is valid. (default) - --script-invalid Assertion that the script is invalid. If a - transaction is submitted with such a script, the - script will fail and the collateral will be taken. - --shelley-key-witnesses INT - Specify the number of Shelley key witnesses the - transaction requires. - --byron-key-witnesses Int - Specify the number of Byron key witnesses the - transaction requires. - --protocol-params-file FILEPATH - Filepath of the JSON-encoded protocol parameters file - --total-utxo-value VALUE The total value of the UTxO that exists at the tx - inputs being spent. - --tx-in TX-IN TxId#TxIx - --spending-tx-in-reference TX-IN - TxId#TxIx - Specify a reference input. The reference - input must have a plutus reference script attached. - --spending-plutus-script-v2 - Specify a plutus script v2 reference script. - --spending-plutus-script-v3 - Specify a plutus script v3 reference script. - --spending-reference-tx-in-datum-cbor-file CBOR_FILE - The script datum file. The file has to be in CBOR - format. - --spending-reference-tx-in-datum-file JSON_FILE - The script datum file. The file must follow the - detailed JSON schema for script data. - --spending-reference-tx-in-datum-value JSON_VALUE - The script datum. There is no schema: (almost) any - JSON value is supported, including top-level strings - and numbers. - --spending-reference-tx-in-inline-datum-present - Inline datum present at transaction input. - --spending-reference-tx-in-redeemer-cbor-file CBOR_FILE - The script redeemer file. The file has to be in CBOR - format. - --spending-reference-tx-in-redeemer-file JSON_FILE - The script redeemer file. The file must follow the - detailed JSON schema for script data. - --spending-reference-tx-in-redeemer-value JSON_VALUE - The script redeemer value. There is no schema: - (almost) any JSON value is supported, including - top-level strings and numbers. - --spending-reference-tx-in-execution-units (INT, INT) - The time and space units needed by the script. - --simple-script-tx-in-reference TX-IN - TxId#TxIx - Specify a reference input. The reference - input must have a simple reference script attached. - --tx-in-script-file FILEPATH - The file containing the script to witness the - spending of the transaction input. - --tx-in-datum-cbor-file CBOR_FILE - The script datum file. The file has to be in CBOR - format. - --tx-in-datum-file JSON_FILE - The script datum file. The file must follow the - detailed JSON schema for script data. - --tx-in-datum-value JSON_VALUE - The script datum. There is no schema: (almost) any - JSON value is supported, including top-level strings - and numbers. - --tx-in-inline-datum-present - Inline datum present at transaction input. - --tx-in-redeemer-cbor-file CBOR_FILE - The script redeemer file. The file has to be in CBOR - format. - --tx-in-redeemer-file JSON_FILE - The script redeemer file. The file must follow the - detailed JSON schema for script data. - --tx-in-redeemer-value JSON_VALUE - The script redeemer value. There is no schema: - (almost) any JSON value is supported, including - top-level strings and numbers. - --tx-in-execution-units (INT, INT) - The time and space units needed by the script. - --read-only-tx-in-reference TX-IN - Specify a read only reference input. This reference - input is not witnessing anything it is simply - provided in the plutus script context. - --required-signer FILEPATH - Input filepath of the signing key (zero or more) - whose signature is required. - --required-signer-hash HASH - Hash of the verification key (zero or more) whose - signature is required. - --tx-in-collateral TX-IN TxId#TxIx - --tx-out-return-collateral ADDRESS VALUE - The transaction output as ADDRESS VALUE where ADDRESS - is the Bech32-encoded address followed by the value - in Lovelace. In the situation where your collateral - txin over collateralizes the transaction, you can - optionally specify a tx out of your choosing to - return the excess Lovelace. - --tx-out ADDRESS VALUE The transaction output as ADDRESS VALUE where ADDRESS - is the Bech32-encoded address followed by the value - in the multi-asset syntax (including simply - Lovelace). - --tx-out-datum-hash HASH The script datum hash for this tx output, as the raw - datum hash (in hex). - --tx-out-datum-hash-cbor-file CBOR_FILE - The script datum hash for this tx output, by hashing - the script datum in the file. The file has to be in - CBOR format. - --tx-out-datum-hash-file JSON_FILE - The script datum hash for this tx output, by hashing - the script datum in the file. The file must follow - the detailed JSON schema for script data. - --tx-out-datum-hash-value JSON_VALUE - The script datum hash for this tx output, by hashing - the script datum given here. There is no schema: - (almost) any JSON value is supported, including - top-level strings and numbers. - --tx-out-datum-embed-cbor-file CBOR_FILE - The script datum to embed in the tx for this output, - in the given file. The file has to be in CBOR format. - --tx-out-datum-embed-file JSON_FILE - The script datum to embed in the tx for this output, - in the given file. The file must follow the detailed - JSON schema for script data. - --tx-out-datum-embed-value JSON_VALUE - The script datum to embed in the tx for this output, - given here. There is no schema: (almost) any JSON - value is supported, including top-level strings and - numbers. - --tx-out-inline-datum-cbor-file CBOR_FILE - The script datum to embed in the tx output as an - inline datum, in the given file. The file has to be - in CBOR format. - --tx-out-inline-datum-file JSON_FILE - The script datum to embed in the tx output as an - inline datum, in the given file. The file must follow - the detailed JSON schema for script data. - --tx-out-inline-datum-value JSON_VALUE - The script datum to embed in the tx output as an - inline datum, given here. There is no schema: - (almost) any JSON value is supported, including - top-level strings and numbers. - --tx-out-reference-script-file FILEPATH - Reference script input file. - --change-address ADDRESS Address where ADA in excess of the tx fee will go to. - --mint VALUE Mint multi-asset value(s) with the multi-asset cli - syntax. You must specify a script witness. - --mint-script-file FILEPATH - The file containing the script to witness the minting - of assets for a particular policy Id. - --mint-redeemer-cbor-file CBOR_FILE - The script redeemer file. The file has to be in CBOR - format. - --mint-redeemer-file JSON_FILE - The script redeemer file. The file must follow the - detailed JSON schema for script data. - --mint-redeemer-value JSON_VALUE - The script redeemer value. There is no schema: - (almost) any JSON value is supported, including - top-level strings and numbers. - --mint-execution-units (INT, INT) - The time and space units needed by the script. - --simple-minting-script-tx-in-reference TX-IN - TxId#TxIx - Specify a reference input. The reference - input must have a simple reference script attached. - --policy-id HASH Policy id of minting script. - --mint-tx-in-reference TX-IN - TxId#TxIx - Specify a reference input. The reference - input must have a plutus reference script attached. - --mint-plutus-script-v2 Specify a plutus script v2 reference script. - --mint-plutus-script-v3 Specify a plutus script v3 reference script. - --mint-reference-tx-in-redeemer-cbor-file CBOR_FILE - The script redeemer file. The file has to be in CBOR - format. - --mint-reference-tx-in-redeemer-file JSON_FILE - The script redeemer file. The file must follow the - detailed JSON schema for script data. - --mint-reference-tx-in-redeemer-value JSON_VALUE - The script redeemer value. There is no schema: - (almost) any JSON value is supported, including - top-level strings and numbers. - --mint-reference-tx-in-execution-units (INT, INT) - The time and space units needed by the script. - --policy-id HASH Policy id of minting script. - --invalid-before SLOT Time that transaction is valid from (in slots). - --invalid-hereafter SLOT Time that transaction is valid until (in slots). - --certificate-file FILEPATH - Filepath of the certificate. This encompasses all - types of certificates (stake pool certificates, stake - key certificates etc). Optionally specify a script - witness. - --certificate-script-file FILEPATH - The file containing the script to witness the use of - the certificate. - --certificate-redeemer-cbor-file CBOR_FILE - The script redeemer file. The file has to be in CBOR - format. - --certificate-redeemer-file JSON_FILE - The script redeemer file. The file must follow the - detailed JSON schema for script data. - --certificate-redeemer-value JSON_VALUE - The script redeemer value. There is no schema: - (almost) any JSON value is supported, including - top-level strings and numbers. - --certificate-execution-units (INT, INT) - The time and space units needed by the script. - --certificate-tx-in-reference TX-IN - TxId#TxIx - Specify a reference input. The reference - input must have a plutus reference script attached. - --certificate-plutus-script-v2 - Specify a plutus script v2 reference script. - --certificate-plutus-script-v3 - Specify a plutus script v3 reference script. - --certificate-reference-tx-in-redeemer-cbor-file CBOR_FILE - The script redeemer file. The file has to be in CBOR - format. - --certificate-reference-tx-in-redeemer-file JSON_FILE - The script redeemer file. The file must follow the - detailed JSON schema for script data. - --certificate-reference-tx-in-redeemer-value JSON_VALUE - The script redeemer value. There is no schema: - (almost) any JSON value is supported, including - top-level strings and numbers. - --certificate-reference-tx-in-execution-units (INT, INT) - The time and space units needed by the script. - --withdrawal WITHDRAWAL The reward withdrawal as StakeAddress+Lovelace where - StakeAddress is the Bech32-encoded stake address - followed by the amount in Lovelace. Optionally - specify a script witness. - --withdrawal-script-file FILEPATH - The file containing the script to witness the - withdrawal of rewards. - --withdrawal-redeemer-cbor-file CBOR_FILE - The script redeemer file. The file has to be in CBOR - format. - --withdrawal-redeemer-file JSON_FILE - The script redeemer file. The file must follow the - detailed JSON schema for script data. - --withdrawal-redeemer-value JSON_VALUE - The script redeemer value. There is no schema: - (almost) any JSON value is supported, including - top-level strings and numbers. - --withdrawal-execution-units (INT, INT) - The time and space units needed by the script. - --withdrawal-tx-in-reference TX-IN - TxId#TxIx - Specify a reference input. The reference - input must have a plutus reference script attached. - --withdrawal-plutus-script-v2 - Specify a plutus script v2 reference script. - --withdrawal-plutus-script-v3 - Specify a plutus script v3 reference script. - --withdrawal-reference-tx-in-redeemer-cbor-file CBOR_FILE - The script redeemer file. The file has to be in CBOR - format. - --withdrawal-reference-tx-in-redeemer-file JSON_FILE - The script redeemer file. The file must follow the - detailed JSON schema for script data. - --withdrawal-reference-tx-in-redeemer-value JSON_VALUE - The script redeemer value. There is no schema: - (almost) any JSON value is supported, including - top-level strings and numbers. - --withdrawal-reference-tx-in-execution-units (INT, INT) - The time and space units needed by the script. - --tx-total-collateral INTEGER - The total amount of collateral that will be collected - as fees in the event of a Plutus script failure. Must - be used in conjuction with - "--tx-out-return-collateral". - --reference-script-size NATURAL - Total size in bytes of transaction reference scripts - (default is 0). - --json-metadata-no-schema - Use the "no schema" conversion from JSON to tx - metadata (default). - --json-metadata-detailed-schema - Use the "detailed schema" conversion from JSON to tx - metadata. - --auxiliary-script-file FILEPATH - Filepath of auxiliary script(s) - --metadata-json-file FILEPATH - Filepath of the metadata file, in JSON format. - --metadata-cbor-file FILEPATH - Filepath of the metadata, in raw CBOR format. - --vote-file FILEPATH Filepath of the vote. - --vote-script-file FILEPATH - The file containing the script to witness a vote - --vote-redeemer-cbor-file CBOR_FILE - The script redeemer file. The file has to be in CBOR - format. - --vote-redeemer-file JSON_FILE - The script redeemer file. The file must follow the - detailed JSON schema for script data. - --vote-redeemer-value JSON_VALUE - The script redeemer value. There is no schema: - (almost) any JSON value is supported, including - top-level strings and numbers. - --vote-execution-units (INT, INT) - The time and space units needed by the script. - --vote-tx-in-reference TX-IN - TxId#TxIx - Specify a reference input. The reference - input must have a plutus reference script attached. - --vote-plutus-script-v3 Specify a plutus script v3 reference script. - --vote-reference-tx-in-redeemer-cbor-file CBOR_FILE - The script redeemer file. The file has to be in CBOR - format. - --vote-reference-tx-in-redeemer-file JSON_FILE - The script redeemer file. The file must follow the - detailed JSON schema for script data. - --vote-reference-tx-in-redeemer-value JSON_VALUE - The script redeemer value. There is no schema: - (almost) any JSON value is supported, including - top-level strings and numbers. - --vote-reference-tx-in-execution-units (INT, INT) - The time and space units needed by the script. - --proposal-file FILEPATH Filepath of the proposal. - --proposal-script-file FILEPATH - The file containing the script to witness a proposal - --proposal-redeemer-cbor-file CBOR_FILE - The script redeemer file. The file has to be in CBOR - format. - --proposal-redeemer-file JSON_FILE - The script redeemer file. The file must follow the - detailed JSON schema for script data. - --proposal-redeemer-value JSON_VALUE - The script redeemer value. There is no schema: - (almost) any JSON value is supported, including - top-level strings and numbers. - --proposal-execution-units (INT, INT) - The time and space units needed by the script. - --proposal-tx-in-reference TX-IN - TxId#TxIx - Specify a reference input. The reference - input must have a plutus reference script attached. - --proposal-plutus-script-v3 - Specify a plutus script v3 reference script. - --proposal-reference-tx-in-redeemer-cbor-file CBOR_FILE - The script redeemer file. The file has to be in CBOR - format. - --proposal-reference-tx-in-redeemer-file JSON_FILE - The script redeemer file. The file must follow the - detailed JSON schema for script data. - --proposal-reference-tx-in-redeemer-value JSON_VALUE - The script redeemer value. There is no schema: - (almost) any JSON value is supported, including - top-level strings and numbers. - --proposal-reference-tx-in-execution-units (INT, INT) - The time and space units needed by the script. - --current-treasury-value LOVELACE - The current treasury value. - --treasury-donation LOVELACE - The donation to the treasury to perform. - --out-file FILEPATH Output filepath of the JSON TxBody. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/transaction_build-raw.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/transaction_build-raw.cli deleted file mode 100644 index b3bb631dd..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/transaction_build-raw.cli +++ /dev/null @@ -1,496 +0,0 @@ -Usage: cardano-cli transaction build-raw [--script-valid | --script-invalid] - (--tx-in TX-IN - [ --spending-tx-in-reference TX-IN - ( --spending-plutus-script-v2 - | --spending-plutus-script-v3 - ) - [ --spending-reference-tx-in-datum-cbor-file CBOR_FILE - | --spending-reference-tx-in-datum-file JSON_FILE - | --spending-reference-tx-in-datum-value JSON_VALUE - | --spending-reference-tx-in-inline-datum-present - ] - ( --spending-reference-tx-in-redeemer-cbor-file CBOR_FILE - | --spending-reference-tx-in-redeemer-file JSON_FILE - | --spending-reference-tx-in-redeemer-value JSON_VALUE - ) - --spending-reference-tx-in-execution-units (INT, INT) - | --simple-script-tx-in-reference TX-IN - | --tx-in-script-file FILEPATH - [ - [ --tx-in-datum-cbor-file CBOR_FILE - | --tx-in-datum-file JSON_FILE - | --tx-in-datum-value JSON_VALUE - | --tx-in-inline-datum-present - ] - ( --tx-in-redeemer-cbor-file CBOR_FILE - | --tx-in-redeemer-file JSON_FILE - | --tx-in-redeemer-value JSON_VALUE - ) - --tx-in-execution-units (INT, INT)] - ]) - [--read-only-tx-in-reference TX-IN] - [--tx-in-collateral TX-IN] - [--tx-out-return-collateral ADDRESS VALUE] - [--tx-total-collateral INTEGER] - [ --required-signer FILEPATH - | --required-signer-hash HASH - ] - [--tx-out ADDRESS VALUE - [ --tx-out-datum-hash HASH - | --tx-out-datum-hash-cbor-file CBOR_FILE - | --tx-out-datum-hash-file JSON_FILE - | --tx-out-datum-hash-value JSON_VALUE - | --tx-out-datum-embed-cbor-file CBOR_FILE - | --tx-out-datum-embed-file JSON_FILE - | --tx-out-datum-embed-value JSON_VALUE - | --tx-out-inline-datum-cbor-file CBOR_FILE - | --tx-out-inline-datum-file JSON_FILE - | --tx-out-inline-datum-value JSON_VALUE - ] - [--tx-out-reference-script-file FILEPATH]] - [--mint VALUE - ( --mint-script-file FILEPATH - [ - ( --mint-redeemer-cbor-file CBOR_FILE - | --mint-redeemer-file JSON_FILE - | --mint-redeemer-value JSON_VALUE - ) - --mint-execution-units (INT, INT)] - | --simple-minting-script-tx-in-reference TX-IN - --policy-id HASH - | --mint-tx-in-reference TX-IN - ( --mint-plutus-script-v2 - | --mint-plutus-script-v3 - ) - ( --mint-reference-tx-in-redeemer-cbor-file CBOR_FILE - | --mint-reference-tx-in-redeemer-file JSON_FILE - | --mint-reference-tx-in-redeemer-value JSON_VALUE - ) - --mint-reference-tx-in-execution-units (INT, INT) - --policy-id HASH - )] - [--invalid-before SLOT] - [--invalid-hereafter SLOT] - --fee LOVELACE - [--certificate-file FILEPATH - [ --certificate-script-file FILEPATH - [ - ( --certificate-redeemer-cbor-file CBOR_FILE - | --certificate-redeemer-file JSON_FILE - | --certificate-redeemer-value JSON_VALUE - ) - --certificate-execution-units (INT, INT)] - | --certificate-tx-in-reference TX-IN - ( --certificate-plutus-script-v2 - | --certificate-plutus-script-v3 - ) - ( --certificate-reference-tx-in-redeemer-cbor-file CBOR_FILE - | --certificate-reference-tx-in-redeemer-file JSON_FILE - | --certificate-reference-tx-in-redeemer-value JSON_VALUE - ) - --certificate-reference-tx-in-execution-units (INT, INT) - ]] - [--withdrawal WITHDRAWAL - [ --withdrawal-script-file FILEPATH - [ - ( --withdrawal-redeemer-cbor-file CBOR_FILE - | --withdrawal-redeemer-file JSON_FILE - | --withdrawal-redeemer-value JSON_VALUE - ) - --withdrawal-execution-units (INT, INT)] - | --withdrawal-tx-in-reference TX-IN - ( --withdrawal-plutus-script-v2 - | --withdrawal-plutus-script-v3 - ) - ( --withdrawal-reference-tx-in-redeemer-cbor-file CBOR_FILE - | --withdrawal-reference-tx-in-redeemer-file JSON_FILE - | --withdrawal-reference-tx-in-redeemer-value JSON_VALUE - ) - --withdrawal-reference-tx-in-execution-units (INT, INT) - ]] - [ --json-metadata-no-schema - | --json-metadata-detailed-schema - ] - [--auxiliary-script-file FILEPATH] - [ --metadata-json-file FILEPATH - | --metadata-cbor-file FILEPATH - ] - [--protocol-params-file FILEPATH] - [--vote-file FILEPATH - [ --vote-script-file FILEPATH - [ - ( --vote-redeemer-cbor-file CBOR_FILE - | --vote-redeemer-file JSON_FILE - | --vote-redeemer-value JSON_VALUE - ) - --vote-execution-units (INT, INT)] - | --vote-tx-in-reference TX-IN - --vote-plutus-script-v3 - ( --vote-reference-tx-in-redeemer-cbor-file CBOR_FILE - | --vote-reference-tx-in-redeemer-file JSON_FILE - | --vote-reference-tx-in-redeemer-value JSON_VALUE - ) - --vote-reference-tx-in-execution-units (INT, INT) - ]] - [--proposal-file FILEPATH - [ --proposal-script-file FILEPATH - [ - ( --proposal-redeemer-cbor-file CBOR_FILE - | --proposal-redeemer-file JSON_FILE - | --proposal-redeemer-value JSON_VALUE - ) - --proposal-execution-units (INT, INT)] - | --proposal-tx-in-reference TX-IN - --proposal-plutus-script-v3 - ( --proposal-reference-tx-in-redeemer-cbor-file CBOR_FILE - | --proposal-reference-tx-in-redeemer-file JSON_FILE - | --proposal-reference-tx-in-redeemer-value JSON_VALUE - ) - --proposal-reference-tx-in-execution-units (INT, INT) - ]] - [--current-treasury-value LOVELACE - --treasury-donation LOVELACE] - --out-file FILEPATH - - Build a transaction (low-level, inconvenient) - - Please note the order[93;22;23;24m of some cmd options is crucial. If used incorrectly may produce undesired tx body. See nested [] notation above for details.[0;22;23;24m - -Available options: - --script-valid Assertion that the script is valid. (default) - --script-invalid Assertion that the script is invalid. If a - transaction is submitted with such a script, the - script will fail and the collateral will be taken. - --tx-in TX-IN TxId#TxIx - --spending-tx-in-reference TX-IN - TxId#TxIx - Specify a reference input. The reference - input must have a plutus reference script attached. - --spending-plutus-script-v2 - Specify a plutus script v2 reference script. - --spending-plutus-script-v3 - Specify a plutus script v3 reference script. - --spending-reference-tx-in-datum-cbor-file CBOR_FILE - The script datum file. The file has to be in CBOR - format. - --spending-reference-tx-in-datum-file JSON_FILE - The script datum file. The file must follow the - detailed JSON schema for script data. - --spending-reference-tx-in-datum-value JSON_VALUE - The script datum. There is no schema: (almost) any - JSON value is supported, including top-level strings - and numbers. - --spending-reference-tx-in-inline-datum-present - Inline datum present at transaction input. - --spending-reference-tx-in-redeemer-cbor-file CBOR_FILE - The script redeemer file. The file has to be in CBOR - format. - --spending-reference-tx-in-redeemer-file JSON_FILE - The script redeemer file. The file must follow the - detailed JSON schema for script data. - --spending-reference-tx-in-redeemer-value JSON_VALUE - The script redeemer value. There is no schema: - (almost) any JSON value is supported, including - top-level strings and numbers. - --spending-reference-tx-in-execution-units (INT, INT) - The time and space units needed by the script. - --simple-script-tx-in-reference TX-IN - TxId#TxIx - Specify a reference input. The reference - input must have a simple reference script attached. - --tx-in-script-file FILEPATH - The file containing the script to witness the - spending of the transaction input. - --tx-in-datum-cbor-file CBOR_FILE - The script datum file. The file has to be in CBOR - format. - --tx-in-datum-file JSON_FILE - The script datum file. The file must follow the - detailed JSON schema for script data. - --tx-in-datum-value JSON_VALUE - The script datum. There is no schema: (almost) any - JSON value is supported, including top-level strings - and numbers. - --tx-in-inline-datum-present - Inline datum present at transaction input. - --tx-in-redeemer-cbor-file CBOR_FILE - The script redeemer file. The file has to be in CBOR - format. - --tx-in-redeemer-file JSON_FILE - The script redeemer file. The file must follow the - detailed JSON schema for script data. - --tx-in-redeemer-value JSON_VALUE - The script redeemer value. There is no schema: - (almost) any JSON value is supported, including - top-level strings and numbers. - --tx-in-execution-units (INT, INT) - The time and space units needed by the script. - --read-only-tx-in-reference TX-IN - Specify a read only reference input. This reference - input is not witnessing anything it is simply - provided in the plutus script context. - --tx-in-collateral TX-IN TxId#TxIx - --tx-out-return-collateral ADDRESS VALUE - The transaction output as ADDRESS VALUE where ADDRESS - is the Bech32-encoded address followed by the value - in Lovelace. In the situation where your collateral - txin over collateralizes the transaction, you can - optionally specify a tx out of your choosing to - return the excess Lovelace. - --tx-total-collateral INTEGER - The total amount of collateral that will be collected - as fees in the event of a Plutus script failure. Must - be used in conjuction with - "--tx-out-return-collateral". - --required-signer FILEPATH - Input filepath of the signing key (zero or more) - whose signature is required. - --required-signer-hash HASH - Hash of the verification key (zero or more) whose - signature is required. - --tx-out ADDRESS VALUE The transaction output as ADDRESS VALUE where ADDRESS - is the Bech32-encoded address followed by the value - in the multi-asset syntax (including simply - Lovelace). - --tx-out-datum-hash HASH The script datum hash for this tx output, as the raw - datum hash (in hex). - --tx-out-datum-hash-cbor-file CBOR_FILE - The script datum hash for this tx output, by hashing - the script datum in the file. The file has to be in - CBOR format. - --tx-out-datum-hash-file JSON_FILE - The script datum hash for this tx output, by hashing - the script datum in the file. The file must follow - the detailed JSON schema for script data. - --tx-out-datum-hash-value JSON_VALUE - The script datum hash for this tx output, by hashing - the script datum given here. There is no schema: - (almost) any JSON value is supported, including - top-level strings and numbers. - --tx-out-datum-embed-cbor-file CBOR_FILE - The script datum to embed in the tx for this output, - in the given file. The file has to be in CBOR format. - --tx-out-datum-embed-file JSON_FILE - The script datum to embed in the tx for this output, - in the given file. The file must follow the detailed - JSON schema for script data. - --tx-out-datum-embed-value JSON_VALUE - The script datum to embed in the tx for this output, - given here. There is no schema: (almost) any JSON - value is supported, including top-level strings and - numbers. - --tx-out-inline-datum-cbor-file CBOR_FILE - The script datum to embed in the tx output as an - inline datum, in the given file. The file has to be - in CBOR format. - --tx-out-inline-datum-file JSON_FILE - The script datum to embed in the tx output as an - inline datum, in the given file. The file must follow - the detailed JSON schema for script data. - --tx-out-inline-datum-value JSON_VALUE - The script datum to embed in the tx output as an - inline datum, given here. There is no schema: - (almost) any JSON value is supported, including - top-level strings and numbers. - --tx-out-reference-script-file FILEPATH - Reference script input file. - --mint VALUE Mint multi-asset value(s) with the multi-asset cli - syntax. You must specify a script witness. - --mint-script-file FILEPATH - The file containing the script to witness the minting - of assets for a particular policy Id. - --mint-redeemer-cbor-file CBOR_FILE - The script redeemer file. The file has to be in CBOR - format. - --mint-redeemer-file JSON_FILE - The script redeemer file. The file must follow the - detailed JSON schema for script data. - --mint-redeemer-value JSON_VALUE - The script redeemer value. There is no schema: - (almost) any JSON value is supported, including - top-level strings and numbers. - --mint-execution-units (INT, INT) - The time and space units needed by the script. - --simple-minting-script-tx-in-reference TX-IN - TxId#TxIx - Specify a reference input. The reference - input must have a simple reference script attached. - --policy-id HASH Policy id of minting script. - --mint-tx-in-reference TX-IN - TxId#TxIx - Specify a reference input. The reference - input must have a plutus reference script attached. - --mint-plutus-script-v2 Specify a plutus script v2 reference script. - --mint-plutus-script-v3 Specify a plutus script v3 reference script. - --mint-reference-tx-in-redeemer-cbor-file CBOR_FILE - The script redeemer file. The file has to be in CBOR - format. - --mint-reference-tx-in-redeemer-file JSON_FILE - The script redeemer file. The file must follow the - detailed JSON schema for script data. - --mint-reference-tx-in-redeemer-value JSON_VALUE - The script redeemer value. There is no schema: - (almost) any JSON value is supported, including - top-level strings and numbers. - --mint-reference-tx-in-execution-units (INT, INT) - The time and space units needed by the script. - --policy-id HASH Policy id of minting script. - --invalid-before SLOT Time that transaction is valid from (in slots). - --invalid-hereafter SLOT Time that transaction is valid until (in slots). - --fee LOVELACE The fee amount in Lovelace. - --certificate-file FILEPATH - Filepath of the certificate. This encompasses all - types of certificates (stake pool certificates, stake - key certificates etc). Optionally specify a script - witness. - --certificate-script-file FILEPATH - The file containing the script to witness the use of - the certificate. - --certificate-redeemer-cbor-file CBOR_FILE - The script redeemer file. The file has to be in CBOR - format. - --certificate-redeemer-file JSON_FILE - The script redeemer file. The file must follow the - detailed JSON schema for script data. - --certificate-redeemer-value JSON_VALUE - The script redeemer value. There is no schema: - (almost) any JSON value is supported, including - top-level strings and numbers. - --certificate-execution-units (INT, INT) - The time and space units needed by the script. - --certificate-tx-in-reference TX-IN - TxId#TxIx - Specify a reference input. The reference - input must have a plutus reference script attached. - --certificate-plutus-script-v2 - Specify a plutus script v2 reference script. - --certificate-plutus-script-v3 - Specify a plutus script v3 reference script. - --certificate-reference-tx-in-redeemer-cbor-file CBOR_FILE - The script redeemer file. The file has to be in CBOR - format. - --certificate-reference-tx-in-redeemer-file JSON_FILE - The script redeemer file. The file must follow the - detailed JSON schema for script data. - --certificate-reference-tx-in-redeemer-value JSON_VALUE - The script redeemer value. There is no schema: - (almost) any JSON value is supported, including - top-level strings and numbers. - --certificate-reference-tx-in-execution-units (INT, INT) - The time and space units needed by the script. - --withdrawal WITHDRAWAL The reward withdrawal as StakeAddress+Lovelace where - StakeAddress is the Bech32-encoded stake address - followed by the amount in Lovelace. Optionally - specify a script witness. - --withdrawal-script-file FILEPATH - The file containing the script to witness the - withdrawal of rewards. - --withdrawal-redeemer-cbor-file CBOR_FILE - The script redeemer file. The file has to be in CBOR - format. - --withdrawal-redeemer-file JSON_FILE - The script redeemer file. The file must follow the - detailed JSON schema for script data. - --withdrawal-redeemer-value JSON_VALUE - The script redeemer value. There is no schema: - (almost) any JSON value is supported, including - top-level strings and numbers. - --withdrawal-execution-units (INT, INT) - The time and space units needed by the script. - --withdrawal-tx-in-reference TX-IN - TxId#TxIx - Specify a reference input. The reference - input must have a plutus reference script attached. - --withdrawal-plutus-script-v2 - Specify a plutus script v2 reference script. - --withdrawal-plutus-script-v3 - Specify a plutus script v3 reference script. - --withdrawal-reference-tx-in-redeemer-cbor-file CBOR_FILE - The script redeemer file. The file has to be in CBOR - format. - --withdrawal-reference-tx-in-redeemer-file JSON_FILE - The script redeemer file. The file must follow the - detailed JSON schema for script data. - --withdrawal-reference-tx-in-redeemer-value JSON_VALUE - The script redeemer value. There is no schema: - (almost) any JSON value is supported, including - top-level strings and numbers. - --withdrawal-reference-tx-in-execution-units (INT, INT) - The time and space units needed by the script. - --json-metadata-no-schema - Use the "no schema" conversion from JSON to tx - metadata (default). - --json-metadata-detailed-schema - Use the "detailed schema" conversion from JSON to tx - metadata. - --auxiliary-script-file FILEPATH - Filepath of auxiliary script(s) - --metadata-json-file FILEPATH - Filepath of the metadata file, in JSON format. - --metadata-cbor-file FILEPATH - Filepath of the metadata, in raw CBOR format. - --protocol-params-file FILEPATH - Filepath of the JSON-encoded protocol parameters file - --vote-file FILEPATH Filepath of the vote. - --vote-script-file FILEPATH - The file containing the script to witness a vote - --vote-redeemer-cbor-file CBOR_FILE - The script redeemer file. The file has to be in CBOR - format. - --vote-redeemer-file JSON_FILE - The script redeemer file. The file must follow the - detailed JSON schema for script data. - --vote-redeemer-value JSON_VALUE - The script redeemer value. There is no schema: - (almost) any JSON value is supported, including - top-level strings and numbers. - --vote-execution-units (INT, INT) - The time and space units needed by the script. - --vote-tx-in-reference TX-IN - TxId#TxIx - Specify a reference input. The reference - input must have a plutus reference script attached. - --vote-plutus-script-v3 Specify a plutus script v3 reference script. - --vote-reference-tx-in-redeemer-cbor-file CBOR_FILE - The script redeemer file. The file has to be in CBOR - format. - --vote-reference-tx-in-redeemer-file JSON_FILE - The script redeemer file. The file must follow the - detailed JSON schema for script data. - --vote-reference-tx-in-redeemer-value JSON_VALUE - The script redeemer value. There is no schema: - (almost) any JSON value is supported, including - top-level strings and numbers. - --vote-reference-tx-in-execution-units (INT, INT) - The time and space units needed by the script. - --proposal-file FILEPATH Filepath of the proposal. - --proposal-script-file FILEPATH - The file containing the script to witness a proposal - --proposal-redeemer-cbor-file CBOR_FILE - The script redeemer file. The file has to be in CBOR - format. - --proposal-redeemer-file JSON_FILE - The script redeemer file. The file must follow the - detailed JSON schema for script data. - --proposal-redeemer-value JSON_VALUE - The script redeemer value. There is no schema: - (almost) any JSON value is supported, including - top-level strings and numbers. - --proposal-execution-units (INT, INT) - The time and space units needed by the script. - --proposal-tx-in-reference TX-IN - TxId#TxIx - Specify a reference input. The reference - input must have a plutus reference script attached. - --proposal-plutus-script-v3 - Specify a plutus script v3 reference script. - --proposal-reference-tx-in-redeemer-cbor-file CBOR_FILE - The script redeemer file. The file has to be in CBOR - format. - --proposal-reference-tx-in-redeemer-file JSON_FILE - The script redeemer file. The file must follow the - detailed JSON schema for script data. - --proposal-reference-tx-in-redeemer-value JSON_VALUE - The script redeemer value. There is no schema: - (almost) any JSON value is supported, including - top-level strings and numbers. - --proposal-reference-tx-in-execution-units (INT, INT) - The time and space units needed by the script. - --current-treasury-value LOVELACE - The current treasury value. - --treasury-donation LOVELACE - The donation to the treasury to perform. - --out-file FILEPATH Output filepath of the JSON TxBody. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/transaction_build.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/transaction_build.cli deleted file mode 100644 index ef8d5227f..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/transaction_build.cli +++ /dev/null @@ -1,477 +0,0 @@ -Usage: cardano-cli transaction build --socket-path SOCKET_PATH - [--cardano-mode [--epoch-slots SLOTS]] - (--mainnet | --testnet-magic NATURAL) - [--script-valid | --script-invalid] - [--witness-override WORD] - (--tx-in TX-IN - [ --spending-tx-in-reference TX-IN - ( --spending-plutus-script-v2 - | --spending-plutus-script-v3 - ) - [ --spending-reference-tx-in-datum-cbor-file CBOR_FILE - | --spending-reference-tx-in-datum-file JSON_FILE - | --spending-reference-tx-in-datum-value JSON_VALUE - | --spending-reference-tx-in-inline-datum-present - ] - ( --spending-reference-tx-in-redeemer-cbor-file CBOR_FILE - | --spending-reference-tx-in-redeemer-file JSON_FILE - | --spending-reference-tx-in-redeemer-value JSON_VALUE - ) - | --simple-script-tx-in-reference TX-IN - | --tx-in-script-file FILEPATH - [ - [ --tx-in-datum-cbor-file CBOR_FILE - | --tx-in-datum-file JSON_FILE - | --tx-in-datum-value JSON_VALUE - | --tx-in-inline-datum-present - ] - ( --tx-in-redeemer-cbor-file CBOR_FILE - | --tx-in-redeemer-file JSON_FILE - | --tx-in-redeemer-value JSON_VALUE - )] - ]) - [--read-only-tx-in-reference TX-IN] - [ --required-signer FILEPATH - | --required-signer-hash HASH - ] - [--tx-in-collateral TX-IN] - [--tx-out-return-collateral ADDRESS VALUE] - [--tx-total-collateral INTEGER] - [--tx-out ADDRESS VALUE - [ --tx-out-datum-hash HASH - | --tx-out-datum-hash-cbor-file CBOR_FILE - | --tx-out-datum-hash-file JSON_FILE - | --tx-out-datum-hash-value JSON_VALUE - | --tx-out-datum-embed-cbor-file CBOR_FILE - | --tx-out-datum-embed-file JSON_FILE - | --tx-out-datum-embed-value JSON_VALUE - | --tx-out-inline-datum-cbor-file CBOR_FILE - | --tx-out-inline-datum-file JSON_FILE - | --tx-out-inline-datum-value JSON_VALUE - ] - [--tx-out-reference-script-file FILEPATH]] - --change-address ADDRESS - [--mint VALUE - ( --mint-script-file FILEPATH - [ --mint-redeemer-cbor-file CBOR_FILE - | --mint-redeemer-file JSON_FILE - | --mint-redeemer-value JSON_VALUE - ] - | --simple-minting-script-tx-in-reference TX-IN - --policy-id HASH - | --mint-tx-in-reference TX-IN - ( --mint-plutus-script-v2 - | --mint-plutus-script-v3 - ) - ( --mint-reference-tx-in-redeemer-cbor-file CBOR_FILE - | --mint-reference-tx-in-redeemer-file JSON_FILE - | --mint-reference-tx-in-redeemer-value JSON_VALUE - ) - --policy-id HASH - )] - [--invalid-before SLOT] - [--invalid-hereafter SLOT] - [--certificate-file FILEPATH - [ --certificate-script-file FILEPATH - [ --certificate-redeemer-cbor-file CBOR_FILE - | --certificate-redeemer-file JSON_FILE - | --certificate-redeemer-value JSON_VALUE - ] - | --certificate-tx-in-reference TX-IN - ( --certificate-plutus-script-v2 - | --certificate-plutus-script-v3 - ) - ( --certificate-reference-tx-in-redeemer-cbor-file CBOR_FILE - | --certificate-reference-tx-in-redeemer-file JSON_FILE - | --certificate-reference-tx-in-redeemer-value JSON_VALUE - ) - ]] - [--withdrawal WITHDRAWAL - [ --withdrawal-script-file FILEPATH - [ --withdrawal-redeemer-cbor-file CBOR_FILE - | --withdrawal-redeemer-file JSON_FILE - | --withdrawal-redeemer-value JSON_VALUE - ] - | --withdrawal-tx-in-reference TX-IN - ( --withdrawal-plutus-script-v2 - | --withdrawal-plutus-script-v3 - ) - ( --withdrawal-reference-tx-in-redeemer-cbor-file CBOR_FILE - | --withdrawal-reference-tx-in-redeemer-file JSON_FILE - | --withdrawal-reference-tx-in-redeemer-value JSON_VALUE - ) - ]] - [ --json-metadata-no-schema - | --json-metadata-detailed-schema - ] - [--auxiliary-script-file FILEPATH] - [ --metadata-json-file FILEPATH - | --metadata-cbor-file FILEPATH - ] - [--vote-file FILEPATH - [ --vote-script-file FILEPATH - [ --vote-redeemer-cbor-file CBOR_FILE - | --vote-redeemer-file JSON_FILE - | --vote-redeemer-value JSON_VALUE - ] - | --vote-tx-in-reference TX-IN - --vote-plutus-script-v3 - ( --vote-reference-tx-in-redeemer-cbor-file CBOR_FILE - | --vote-reference-tx-in-redeemer-file JSON_FILE - | --vote-reference-tx-in-redeemer-value JSON_VALUE - ) - ]] - [--proposal-file FILEPATH - [ --proposal-script-file FILEPATH - [ --proposal-redeemer-cbor-file CBOR_FILE - | --proposal-redeemer-file JSON_FILE - | --proposal-redeemer-value JSON_VALUE - ] - | --proposal-tx-in-reference TX-IN - --proposal-plutus-script-v3 - ( --proposal-reference-tx-in-redeemer-cbor-file CBOR_FILE - | --proposal-reference-tx-in-redeemer-file JSON_FILE - | --proposal-reference-tx-in-redeemer-value JSON_VALUE - ) - ]] - [--treasury-donation LOVELACE] - ( --out-file FILEPATH - | --calculate-plutus-script-cost FILEPATH - ) - - Build a balanced transaction (automatically calculates fees) - - Please note the order[93;22;23;24m of some cmd options is crucial. If used incorrectly may produce undesired tx body. See nested [] notation above for details.[0;22;23;24m - -Available options: - --socket-path SOCKET_PATH - Path to the node socket. This overrides the - CARDANO_NODE_SOCKET_PATH environment variable. The - argument is optional if CARDANO_NODE_SOCKET_PATH is - defined and mandatory otherwise. -<<<<<<< HEAD - --babbage-era Specify the Babbage era (default) - --conway-era Specify the Conway era -======= ->>>>>>> 1a727cee4 (Update golden files) - --cardano-mode For talking to a node running in full Cardano mode - (default). - --epoch-slots SLOTS The number of slots per epoch for the Byron era. - (default: 21600) - --mainnet Use the mainnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --testnet-magic NATURAL Specify a testnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --script-valid Assertion that the script is valid. (default) - --script-invalid Assertion that the script is invalid. If a - transaction is submitted with such a script, the - script will fail and the collateral will be taken. - --witness-override WORD Specify and override the number of witnesses the - transaction requires. - --tx-in TX-IN TxId#TxIx - --spending-tx-in-reference TX-IN - TxId#TxIx - Specify a reference input. The reference - input must have a plutus reference script attached. - --spending-plutus-script-v2 - Specify a plutus script v2 reference script. - --spending-plutus-script-v3 - Specify a plutus script v3 reference script. - --spending-reference-tx-in-datum-cbor-file CBOR_FILE - The script datum file. The file has to be in CBOR - format. - --spending-reference-tx-in-datum-file JSON_FILE - The script datum file. The file must follow the - detailed JSON schema for script data. - --spending-reference-tx-in-datum-value JSON_VALUE - The script datum. There is no schema: (almost) any - JSON value is supported, including top-level strings - and numbers. - --spending-reference-tx-in-inline-datum-present - Inline datum present at transaction input. - --spending-reference-tx-in-redeemer-cbor-file CBOR_FILE - The script redeemer file. The file has to be in CBOR - format. - --spending-reference-tx-in-redeemer-file JSON_FILE - The script redeemer file. The file must follow the - detailed JSON schema for script data. - --spending-reference-tx-in-redeemer-value JSON_VALUE - The script redeemer value. There is no schema: - (almost) any JSON value is supported, including - top-level strings and numbers. - --simple-script-tx-in-reference TX-IN - TxId#TxIx - Specify a reference input. The reference - input must have a simple reference script attached. - --tx-in-script-file FILEPATH - The file containing the script to witness the - spending of the transaction input. - --tx-in-datum-cbor-file CBOR_FILE - The script datum file. The file has to be in CBOR - format. - --tx-in-datum-file JSON_FILE - The script datum file. The file must follow the - detailed JSON schema for script data. - --tx-in-datum-value JSON_VALUE - The script datum. There is no schema: (almost) any - JSON value is supported, including top-level strings - and numbers. - --tx-in-inline-datum-present - Inline datum present at transaction input. - --tx-in-redeemer-cbor-file CBOR_FILE - The script redeemer file. The file has to be in CBOR - format. - --tx-in-redeemer-file JSON_FILE - The script redeemer file. The file must follow the - detailed JSON schema for script data. - --tx-in-redeemer-value JSON_VALUE - The script redeemer value. There is no schema: - (almost) any JSON value is supported, including - top-level strings and numbers. - --read-only-tx-in-reference TX-IN - Specify a read only reference input. This reference - input is not witnessing anything it is simply - provided in the plutus script context. - --required-signer FILEPATH - Input filepath of the signing key (zero or more) - whose signature is required. - --required-signer-hash HASH - Hash of the verification key (zero or more) whose - signature is required. - --tx-in-collateral TX-IN TxId#TxIx - --tx-out-return-collateral ADDRESS VALUE - The transaction output as ADDRESS VALUE where ADDRESS - is the Bech32-encoded address followed by the value - in Lovelace. In the situation where your collateral - txin over collateralizes the transaction, you can - optionally specify a tx out of your choosing to - return the excess Lovelace. - --tx-total-collateral INTEGER - The total amount of collateral that will be collected - as fees in the event of a Plutus script failure. Must - be used in conjuction with - "--tx-out-return-collateral". - --tx-out ADDRESS VALUE The transaction output as ADDRESS VALUE where ADDRESS - is the Bech32-encoded address followed by the value - in the multi-asset syntax (including simply - Lovelace). - --tx-out-datum-hash HASH The script datum hash for this tx output, as the raw - datum hash (in hex). - --tx-out-datum-hash-cbor-file CBOR_FILE - The script datum hash for this tx output, by hashing - the script datum in the file. The file has to be in - CBOR format. - --tx-out-datum-hash-file JSON_FILE - The script datum hash for this tx output, by hashing - the script datum in the file. The file must follow - the detailed JSON schema for script data. - --tx-out-datum-hash-value JSON_VALUE - The script datum hash for this tx output, by hashing - the script datum given here. There is no schema: - (almost) any JSON value is supported, including - top-level strings and numbers. - --tx-out-datum-embed-cbor-file CBOR_FILE - The script datum to embed in the tx for this output, - in the given file. The file has to be in CBOR format. - --tx-out-datum-embed-file JSON_FILE - The script datum to embed in the tx for this output, - in the given file. The file must follow the detailed - JSON schema for script data. - --tx-out-datum-embed-value JSON_VALUE - The script datum to embed in the tx for this output, - given here. There is no schema: (almost) any JSON - value is supported, including top-level strings and - numbers. - --tx-out-inline-datum-cbor-file CBOR_FILE - The script datum to embed in the tx output as an - inline datum, in the given file. The file has to be - in CBOR format. - --tx-out-inline-datum-file JSON_FILE - The script datum to embed in the tx output as an - inline datum, in the given file. The file must follow - the detailed JSON schema for script data. - --tx-out-inline-datum-value JSON_VALUE - The script datum to embed in the tx output as an - inline datum, given here. There is no schema: - (almost) any JSON value is supported, including - top-level strings and numbers. - --tx-out-reference-script-file FILEPATH - Reference script input file. - --change-address ADDRESS Address where ADA in excess of the tx fee will go to. - --mint VALUE Mint multi-asset value(s) with the multi-asset cli - syntax. You must specify a script witness. - --mint-script-file FILEPATH - The file containing the script to witness the minting - of assets for a particular policy Id. - --mint-redeemer-cbor-file CBOR_FILE - The script redeemer file. The file has to be in CBOR - format. - --mint-redeemer-file JSON_FILE - The script redeemer file. The file must follow the - detailed JSON schema for script data. - --mint-redeemer-value JSON_VALUE - The script redeemer value. There is no schema: - (almost) any JSON value is supported, including - top-level strings and numbers. - --simple-minting-script-tx-in-reference TX-IN - TxId#TxIx - Specify a reference input. The reference - input must have a simple reference script attached. - --policy-id HASH Policy id of minting script. - --mint-tx-in-reference TX-IN - TxId#TxIx - Specify a reference input. The reference - input must have a plutus reference script attached. - --mint-plutus-script-v2 Specify a plutus script v2 reference script. - --mint-plutus-script-v3 Specify a plutus script v3 reference script. - --mint-reference-tx-in-redeemer-cbor-file CBOR_FILE - The script redeemer file. The file has to be in CBOR - format. - --mint-reference-tx-in-redeemer-file JSON_FILE - The script redeemer file. The file must follow the - detailed JSON schema for script data. - --mint-reference-tx-in-redeemer-value JSON_VALUE - The script redeemer value. There is no schema: - (almost) any JSON value is supported, including - top-level strings and numbers. - --policy-id HASH Policy id of minting script. - --invalid-before SLOT Time that transaction is valid from (in slots). - --invalid-hereafter SLOT Time that transaction is valid until (in slots). - --certificate-file FILEPATH - Filepath of the certificate. This encompasses all - types of certificates (stake pool certificates, stake - key certificates etc). Optionally specify a script - witness. - --certificate-script-file FILEPATH - The file containing the script to witness the use of - the certificate. - --certificate-redeemer-cbor-file CBOR_FILE - The script redeemer file. The file has to be in CBOR - format. - --certificate-redeemer-file JSON_FILE - The script redeemer file. The file must follow the - detailed JSON schema for script data. - --certificate-redeemer-value JSON_VALUE - The script redeemer value. There is no schema: - (almost) any JSON value is supported, including - top-level strings and numbers. - --certificate-tx-in-reference TX-IN - TxId#TxIx - Specify a reference input. The reference - input must have a plutus reference script attached. - --certificate-plutus-script-v2 - Specify a plutus script v2 reference script. - --certificate-plutus-script-v3 - Specify a plutus script v3 reference script. - --certificate-reference-tx-in-redeemer-cbor-file CBOR_FILE - The script redeemer file. The file has to be in CBOR - format. - --certificate-reference-tx-in-redeemer-file JSON_FILE - The script redeemer file. The file must follow the - detailed JSON schema for script data. - --certificate-reference-tx-in-redeemer-value JSON_VALUE - The script redeemer value. There is no schema: - (almost) any JSON value is supported, including - top-level strings and numbers. - --withdrawal WITHDRAWAL The reward withdrawal as StakeAddress+Lovelace where - StakeAddress is the Bech32-encoded stake address - followed by the amount in Lovelace. Optionally - specify a script witness. - --withdrawal-script-file FILEPATH - The file containing the script to witness the - withdrawal of rewards. - --withdrawal-redeemer-cbor-file CBOR_FILE - The script redeemer file. The file has to be in CBOR - format. - --withdrawal-redeemer-file JSON_FILE - The script redeemer file. The file must follow the - detailed JSON schema for script data. - --withdrawal-redeemer-value JSON_VALUE - The script redeemer value. There is no schema: - (almost) any JSON value is supported, including - top-level strings and numbers. - --withdrawal-tx-in-reference TX-IN - TxId#TxIx - Specify a reference input. The reference - input must have a plutus reference script attached. - --withdrawal-plutus-script-v2 - Specify a plutus script v2 reference script. - --withdrawal-plutus-script-v3 - Specify a plutus script v3 reference script. - --withdrawal-reference-tx-in-redeemer-cbor-file CBOR_FILE - The script redeemer file. The file has to be in CBOR - format. - --withdrawal-reference-tx-in-redeemer-file JSON_FILE - The script redeemer file. The file must follow the - detailed JSON schema for script data. - --withdrawal-reference-tx-in-redeemer-value JSON_VALUE - The script redeemer value. There is no schema: - (almost) any JSON value is supported, including - top-level strings and numbers. - --json-metadata-no-schema - Use the "no schema" conversion from JSON to tx - metadata (default). - --json-metadata-detailed-schema - Use the "detailed schema" conversion from JSON to tx - metadata. - --auxiliary-script-file FILEPATH - Filepath of auxiliary script(s) - --metadata-json-file FILEPATH - Filepath of the metadata file, in JSON format. - --metadata-cbor-file FILEPATH - Filepath of the metadata, in raw CBOR format. - --vote-file FILEPATH Filepath of the vote. - --vote-script-file FILEPATH - The file containing the script to witness a vote - --vote-redeemer-cbor-file CBOR_FILE - The script redeemer file. The file has to be in CBOR - format. - --vote-redeemer-file JSON_FILE - The script redeemer file. The file must follow the - detailed JSON schema for script data. - --vote-redeemer-value JSON_VALUE - The script redeemer value. There is no schema: - (almost) any JSON value is supported, including - top-level strings and numbers. - --vote-tx-in-reference TX-IN - TxId#TxIx - Specify a reference input. The reference - input must have a plutus reference script attached. - --vote-plutus-script-v3 Specify a plutus script v3 reference script. - --vote-reference-tx-in-redeemer-cbor-file CBOR_FILE - The script redeemer file. The file has to be in CBOR - format. - --vote-reference-tx-in-redeemer-file JSON_FILE - The script redeemer file. The file must follow the - detailed JSON schema for script data. - --vote-reference-tx-in-redeemer-value JSON_VALUE - The script redeemer value. There is no schema: - (almost) any JSON value is supported, including - top-level strings and numbers. - --proposal-file FILEPATH Filepath of the proposal. - --proposal-script-file FILEPATH - The file containing the script to witness a proposal - --proposal-redeemer-cbor-file CBOR_FILE - The script redeemer file. The file has to be in CBOR - format. - --proposal-redeemer-file JSON_FILE - The script redeemer file. The file must follow the - detailed JSON schema for script data. - --proposal-redeemer-value JSON_VALUE - The script redeemer value. There is no schema: - (almost) any JSON value is supported, including - top-level strings and numbers. - --proposal-tx-in-reference TX-IN - TxId#TxIx - Specify a reference input. The reference - input must have a plutus reference script attached. - --proposal-plutus-script-v3 - Specify a plutus script v3 reference script. - --proposal-reference-tx-in-redeemer-cbor-file CBOR_FILE - The script redeemer file. The file has to be in CBOR - format. - --proposal-reference-tx-in-redeemer-file JSON_FILE - The script redeemer file. The file must follow the - detailed JSON schema for script data. - --proposal-reference-tx-in-redeemer-value JSON_VALUE - The script redeemer value. There is no schema: - (almost) any JSON value is supported, including - top-level strings and numbers. - --treasury-donation LOVELACE - The donation to the treasury to perform. - --out-file FILEPATH Output filepath of the JSON TxBody. - --calculate-plutus-script-cost FILEPATH - Where to write the script cost information. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/transaction_calculate-min-fee.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/transaction_calculate-min-fee.cli deleted file mode 100644 index f8bf0f425..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/transaction_calculate-min-fee.cli +++ /dev/null @@ -1,37 +0,0 @@ -Usage: cardano-cli transaction calculate-min-fee --tx-body-file FILEPATH - --protocol-params-file FILEPATH - --witness-count NATURAL - [--byron-witness-count NATURAL] - [--reference-script-size NATURAL] - [ --output-json - | --output-text - ] - [--out-file FILEPATH] - [ --mainnet - | --testnet-magic NATURAL - ] - [--tx-in-count NATURAL] - [--tx-out-count NATURAL] - - Calculate the minimum fee for a transaction. - -Available options: - --tx-body-file FILEPATH Input filepath of the JSON TxBody. - --protocol-params-file FILEPATH - Filepath of the JSON-encoded protocol parameters file - --witness-count NATURAL The number of Shelley key witnesses. - --byron-witness-count NATURAL - The number of Byron key witnesses (default is 0). - --reference-script-size NATURAL - Total size in bytes of transaction reference scripts - (default is 0). - --output-json Format calculate-min-fee query output to JSON. - Default format when writing to a file - --output-text Format calculate-min-fee query output to TEXT. - Default format when writing to stdout - --out-file FILEPATH The output file. - --mainnet DEPRECATED. This argument has no effect. - --testnet-magic NATURAL DEPRECATED. This argument has no effect. - --tx-in-count NATURAL DEPRECATED. This argument has no effect. - --tx-out-count NATURAL DEPRECATED. This argument has no effect. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/transaction_calculate-min-required-utxo.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/transaction_calculate-min-required-utxo.cli deleted file mode 100644 index 6e6f04fa4..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/transaction_calculate-min-required-utxo.cli +++ /dev/null @@ -1,67 +0,0 @@ -Usage: cardano-cli transaction calculate-min-required-utxo --protocol-params-file FILEPATH - --tx-out ADDRESS VALUE - [ --tx-out-datum-hash HASH - | --tx-out-datum-hash-cbor-file CBOR_FILE - | --tx-out-datum-hash-file JSON_FILE - | --tx-out-datum-hash-value JSON_VALUE - | --tx-out-datum-embed-cbor-file CBOR_FILE - | --tx-out-datum-embed-file JSON_FILE - | --tx-out-datum-embed-value JSON_VALUE - | --tx-out-inline-datum-cbor-file CBOR_FILE - | --tx-out-inline-datum-file JSON_FILE - | --tx-out-inline-datum-value JSON_VALUE - ] - [--tx-out-reference-script-file FILEPATH] - - Calculate the minimum required UTxO for a transaction output. - -Available options: - --protocol-params-file FILEPATH - Filepath of the JSON-encoded protocol parameters file - --tx-out ADDRESS VALUE The transaction output as ADDRESS VALUE where ADDRESS - is the Bech32-encoded address followed by the value - in the multi-asset syntax (including simply - Lovelace). - --tx-out-datum-hash HASH The script datum hash for this tx output, as the raw - datum hash (in hex). - --tx-out-datum-hash-cbor-file CBOR_FILE - The script datum hash for this tx output, by hashing - the script datum in the file. The file has to be in - CBOR format. - --tx-out-datum-hash-file JSON_FILE - The script datum hash for this tx output, by hashing - the script datum in the file. The file must follow - the detailed JSON schema for script data. - --tx-out-datum-hash-value JSON_VALUE - The script datum hash for this tx output, by hashing - the script datum given here. There is no schema: - (almost) any JSON value is supported, including - top-level strings and numbers. - --tx-out-datum-embed-cbor-file CBOR_FILE - The script datum to embed in the tx for this output, - in the given file. The file has to be in CBOR format. - --tx-out-datum-embed-file JSON_FILE - The script datum to embed in the tx for this output, - in the given file. The file must follow the detailed - JSON schema for script data. - --tx-out-datum-embed-value JSON_VALUE - The script datum to embed in the tx for this output, - given here. There is no schema: (almost) any JSON - value is supported, including top-level strings and - numbers. - --tx-out-inline-datum-cbor-file CBOR_FILE - The script datum to embed in the tx output as an - inline datum, in the given file. The file has to be - in CBOR format. - --tx-out-inline-datum-file JSON_FILE - The script datum to embed in the tx output as an - inline datum, in the given file. The file must follow - the detailed JSON schema for script data. - --tx-out-inline-datum-value JSON_VALUE - The script datum to embed in the tx output as an - inline datum, given here. There is no schema: - (almost) any JSON value is supported, including - top-level strings and numbers. - --tx-out-reference-script-file FILEPATH - Reference script input file. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/transaction_calculate-min-value.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/transaction_calculate-min-value.cli deleted file mode 100644 index 6749ce5a2..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/transaction_calculate-min-value.cli +++ /dev/null @@ -1,66 +0,0 @@ -Usage: cardano-cli transaction calculate-min-value --protocol-params-file FILEPATH - --tx-out ADDRESS VALUE - [ --tx-out-datum-hash HASH - | --tx-out-datum-hash-cbor-file CBOR_FILE - | --tx-out-datum-hash-file JSON_FILE - | --tx-out-datum-hash-value JSON_VALUE - | --tx-out-datum-embed-cbor-file CBOR_FILE - | --tx-out-datum-embed-file JSON_FILE - | --tx-out-datum-embed-value JSON_VALUE - | --tx-out-inline-datum-cbor-file CBOR_FILE - | --tx-out-inline-datum-file JSON_FILE - | --tx-out-inline-datum-value JSON_VALUE - ] - [--tx-out-reference-script-file FILEPATH] - - DEPRECATED: Use 'calculate-min-required-utxo' instead. - -Available options: - --protocol-params-file FILEPATH - Filepath of the JSON-encoded protocol parameters file - --tx-out ADDRESS VALUE The transaction output as ADDRESS VALUE where ADDRESS - is the Bech32-encoded address followed by the value - in the multi-asset syntax (including simply - Lovelace). - --tx-out-datum-hash HASH The script datum hash for this tx output, as the raw - datum hash (in hex). - --tx-out-datum-hash-cbor-file CBOR_FILE - The script datum hash for this tx output, by hashing - the script datum in the file. The file has to be in - CBOR format. - --tx-out-datum-hash-file JSON_FILE - The script datum hash for this tx output, by hashing - the script datum in the file. The file must follow - the detailed JSON schema for script data. - --tx-out-datum-hash-value JSON_VALUE - The script datum hash for this tx output, by hashing - the script datum given here. There is no schema: - (almost) any JSON value is supported, including - top-level strings and numbers. - --tx-out-datum-embed-cbor-file CBOR_FILE - The script datum to embed in the tx for this output, - in the given file. The file has to be in CBOR format. - --tx-out-datum-embed-file JSON_FILE - The script datum to embed in the tx for this output, - in the given file. The file must follow the detailed - JSON schema for script data. - --tx-out-datum-embed-value JSON_VALUE - The script datum to embed in the tx for this output, - given here. There is no schema: (almost) any JSON - value is supported, including top-level strings and - numbers. - --tx-out-inline-datum-cbor-file CBOR_FILE - The script datum to embed in the tx output as an - inline datum, in the given file. The file has to be - in CBOR format. - --tx-out-inline-datum-file JSON_FILE - The script datum to embed in the tx output as an - inline datum, in the given file. The file must follow - the detailed JSON schema for script data. - --tx-out-inline-datum-value JSON_VALUE - The script datum to embed in the tx output as an - inline datum, given here. There is no schema: - (almost) any JSON value is supported, including - top-level strings and numbers. - --tx-out-reference-script-file FILEPATH - Reference script input file. diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/transaction_hash-script-data.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/transaction_hash-script-data.cli deleted file mode 100644 index 1fb7ab4eb..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/transaction_hash-script-data.cli +++ /dev/null @@ -1,20 +0,0 @@ -Usage: cardano-cli transaction hash-script-data - ( --script-data-cbor-file CBOR_FILE - | --script-data-file JSON_FILE - | --script-data-value JSON_VALUE - ) - - Calculate the hash of script data. - -Available options: - --script-data-cbor-file CBOR_FILE - The script data file. The file has to be in CBOR - format. - --script-data-file JSON_FILE - The script data file. The file must follow the - detailed JSON schema for script data. - --script-data-value JSON_VALUE - The script data. There is no schema: (almost) any - JSON value is supported, including top-level strings - and numbers. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/transaction_policyid.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/transaction_policyid.cli deleted file mode 100644 index 2f66428fe..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/transaction_policyid.cli +++ /dev/null @@ -1,7 +0,0 @@ -Usage: cardano-cli transaction policyid --script-file FILEPATH - - Calculate the PolicyId from the monetary policy script. - -Available options: - --script-file FILEPATH Filepath of the script. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/transaction_sign-witness.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/transaction_sign-witness.cli deleted file mode 100644 index 7aa1cba6c..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/transaction_sign-witness.cli +++ /dev/null @@ -1,10 +0,0 @@ -Usage: cardano-cli transaction sign-witness --tx-body-file FILEPATH - [--witness-file FILEPATH] - --out-file FILEPATH - - Assemble a tx body and witness(es) to form a transaction - -Available options: - --tx-body-file FILEPATH Input filepath of the JSON TxBody. - --witness-file FILEPATH Filepath of the witness - --out-file FILEPATH The output file. diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/transaction_sign.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/transaction_sign.cli deleted file mode 100644 index cb3c9fd9c..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/transaction_sign.cli +++ /dev/null @@ -1,23 +0,0 @@ -Usage: cardano-cli transaction sign - ( --tx-body-file FILEPATH - | --tx-file FILEPATH - ) - [--signing-key-file FILEPATH - [--address STRING]] - [--mainnet | --testnet-magic NATURAL] - --out-file FILEPATH - - Sign a transaction - -Available options: - --tx-body-file FILEPATH Input filepath of the JSON TxBody. - --tx-file FILEPATH Input filepath of the JSON Tx. - --signing-key-file FILEPATH - Input filepath of the signing key (one or more). - --address STRING Byron address (Base58-encoded). - --mainnet Use the mainnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --testnet-magic NATURAL Specify a testnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --out-file FILEPATH Output filepath of the JSON Tx. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/transaction_submit.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/transaction_submit.cli deleted file mode 100644 index 119d0cde3..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/transaction_submit.cli +++ /dev/null @@ -1,24 +0,0 @@ -Usage: cardano-cli transaction submit --socket-path SOCKET_PATH - [--cardano-mode [--epoch-slots SLOTS]] - (--mainnet | --testnet-magic NATURAL) - --tx-file FILEPATH - - Submit a transaction to the local node whose Unix domain socket is obtained - from the CARDANO_NODE_SOCKET_PATH environment variable. - -Available options: - --socket-path SOCKET_PATH - Path to the node socket. This overrides the - CARDANO_NODE_SOCKET_PATH environment variable. The - argument is optional if CARDANO_NODE_SOCKET_PATH is - defined and mandatory otherwise. - --cardano-mode For talking to a node running in full Cardano mode - (default). - --epoch-slots SLOTS The number of slots per epoch for the Byron era. - (default: 21600) - --mainnet Use the mainnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --testnet-magic NATURAL Specify a testnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --tx-file FILEPATH Filepath of the transaction you intend to submit. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/transaction_txid.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/transaction_txid.cli deleted file mode 100644 index 1feb57dc1..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/transaction_txid.cli +++ /dev/null @@ -1,11 +0,0 @@ -Usage: cardano-cli transaction txid - ( --tx-body-file FILEPATH - | --tx-file FILEPATH - ) - - Print a transaction identifier. - -Available options: - --tx-body-file FILEPATH Input filepath of the JSON TxBody. - --tx-file FILEPATH Input filepath of the JSON Tx. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/transaction_witness.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/transaction_witness.cli deleted file mode 100644 index d446a2031..000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/transaction_witness.cli +++ /dev/null @@ -1,19 +0,0 @@ -Usage: cardano-cli transaction witness --tx-body-file FILEPATH - --signing-key-file FILEPATH - [--address STRING] - [--mainnet | --testnet-magic NATURAL] - --out-file FILEPATH - - Create a transaction witness - -Available options: - --tx-body-file FILEPATH Input filepath of the JSON TxBody. - --signing-key-file FILEPATH - Input filepath of the signing key (one or more). - --address STRING Byron address (Base58-encoded). - --mainnet Use the mainnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --testnet-magic NATURAL Specify a testnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --out-file FILEPATH The output file. - -h,--help Show this help text