-
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 #292 from input-output-hk/smelc/create-info-govern…
…ance-action cardano-cli: add governance create-info command
- Loading branch information
Showing
6 changed files
with
121 additions
and
12 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
43 changes: 43 additions & 0 deletions
43
...no-cli/test/cardano-cli-golden/files/golden/help/conway_governance_action_create-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,43 @@ | ||
Usage: cardano-cli conway governance action create-info (--mainnet | --testnet) | ||
--governance-action-deposit NATURAL | ||
( --stake-pool-verification-key STRING | ||
| --cold-verification-key-file FILE | ||
| --stake-pool-id STAKE_POOL_ID | ||
| --stake-verification-key STRING | ||
| --stake-verification-key-file FILE | ||
| --stake-key-hash HASH | ||
) | ||
--proposal-url TEXT | ||
( --proposal-text TEXT | ||
| --proposal-file FILE | ||
| --proposal-hash HASH | ||
) | ||
--out-file FILE | ||
|
||
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. | ||
--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. | ||
--stake-verification-key STRING | ||
Stake verification key (Bech32 or hex-encoded). | ||
--stake-verification-key-file FILE | ||
Filepath of the staking verification key. | ||
--stake-key-hash HASH Stake verification key hash (hex-encoded). | ||
--proposal-url TEXT Proposal anchor URL | ||
--proposal-text TEXT Input proposal as UTF-8 encoded text. | ||
--proposal-file FILE Input proposal as a text file. | ||
--proposal-hash HASH Proposal anchor data hash. | ||
--out-file FILE Path to action file to be used later on with build or | ||
build-raw | ||
-h,--help Show this help text |