Modify stake-address-info to output pool ID and DRep ID in both hex and bech32 formats #1285
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Changelog
Context
This addresses this issue: #897
How to trust this PR
This is how I tested it in preview:
$ cabal run cardano-cli -- query stake-address-info --address stake_test1updr3r8ru63np2eh4dkumuelp9w6p4l58z8upxj7z5d65qcsnxl97 [ { "address": "stake_test1updr3r8ru63np2eh4dkumuelp9w6p4l58z8upxj7z5d65qcsnxl97", "govActionDeposits": {}, "rewardAccountBalance": 0, "stakeDelegation": null, "stakeRegistrationDeposit": 2000000, "voteDelegation": { "keyHashBech32": "drep1yg74fedj67jplvxqqth5lg5ytxjrx8a4ljtzkaarhgcfy0gl7n0hl", "keyHashHex": "8200581c3d54e5b2d7a41fb0c002ef4fa28459a4331fb5fc962b77a3ba30923d" } } ] $ cabal run cardano-cli -- query stake-address-info --address stake_test1uzzx65ylw8yrkeusmfwa6exesgpzlw74630cxusgq3jn9jqrgsrjc [ { "address": "stake_test1uzzx65ylw8yrkeusmfwa6exesgpzlw74630cxusgq3jn9jqrgsrjc", "govActionDeposits": {}, "rewardAccountBalance": 150793503137, "stakeDelegation": { "stakePoolBech32": "pool1zyvx690fps6a9m3m89q6fwcfgd8jyupzgv8wrfpvd0fm5cyzxd0", "stakePoolHex": "11186d15e90c35d2ee3b3941a4bb09434f227022430ee1a42c6bd3ba" }, "stakeRegistrationDeposit": 2000000, "voteDelegation": null } ]Checklist