-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #257 from input-output-hk/newhoggy/new-stake-and-v…
…ote-delegation-certificate-command New `stake-address stake-and-vote-delegation-certificate` command
- Loading branch information
Showing
7 changed files
with
142 additions
and
0 deletions.
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
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
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
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
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
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
43 changes: 43 additions & 0 deletions
43
...i-golden/files/golden/help/conway_stake-address_stake-and-vote-delegation-certificate.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,43 @@ | ||
Usage: cardano-cli conway stake-address stake-and-vote-delegation-certificate | ||
( --stake-verification-key STRING | ||
| --stake-verification-key-file FILE | ||
| --stake-script-file FILE | ||
| --stake-address ADDRESS | ||
) | ||
( --stake-pool-verification-key STRING | ||
| --cold-verification-key-file FILE | ||
| --stake-pool-id STAKE_POOL_ID | ||
) | ||
( --drep-verification-key STRING | ||
| --drep-verification-key-file FILE | ||
| --drep-key-hash HASH | ||
) | ||
--out-file FILE | ||
|
||
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 FILE | ||
Filepath of the staking verification key. | ||
--stake-script-file FILE 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 FILE | ||
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). Zero or more | ||
occurences of this option is allowed. | ||
--drep-verification-key STRING | ||
DRep verification key (Bech32 or hex-encoded). | ||
--drep-verification-key-file FILE | ||
Filepath of the DRep verification key. | ||
--drep-key-hash HASH DRep verification key hash (either Bech32-encoded or | ||
hex-encoded). Zero or more occurences of this option | ||
is allowed. | ||
--out-file FILE The output file. | ||
-h,--help Show this help text |