-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
140 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
cardano-cli/test/cardano-cli-golden/files/golden/help/address.cli
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
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. |
37 changes: 37 additions & 0 deletions
37
cardano-cli/test/cardano-cli-golden/files/golden/help/address_build.cli
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
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 |
8 changes: 8 additions & 0 deletions
8
cardano-cli/test/cardano-cli-golden/files/golden/help/address_info.cli
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
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 |
23 changes: 23 additions & 0 deletions
23
cardano-cli/test/cardano-cli-golden/files/golden/help/address_key-gen.cli
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
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 |
15 changes: 15 additions & 0 deletions
15
cardano-cli/test/cardano-cli-golden/files/golden/help/address_key-hash.cli
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
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 |