-
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.
Merge pull request #854 from IntersectMBO/query-spo-stake-distr
Implement `query spo-stake-distribution`
- Loading branch information
Showing
9 changed files
with
215 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
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
46 changes: 46 additions & 0 deletions
46
...ano-cli/test/cardano-cli-golden/files/golden/help/conway_query_spo-stake-distribution.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,46 @@ | ||
Usage: cardano-cli conway 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 FILE | ||
| --spo-key-hash HASH | ||
) | ||
) | ||
[ --volatile-tip | ||
| --immutable-tip | ||
] | ||
[--out-file FILE] | ||
|
||
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 FILE | ||
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 FILE The output file. | ||
-h,--help Show this help text |