feat(displays): commands to display vault and config transactions#181
Merged
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
f6c6227 to
ded2b52
Compare
jeff-sqds
reviewed
Apr 14, 2026
palmaswell-squads
approved these changes
Apr 15, 2026
palmaswell-squads
left a comment
There was a problem hiding this comment.
Do we need all those empty prints?
sqds-rohan
approved these changes
Apr 15, 2026
0xRigel-squads
approved these changes
Apr 15, 2026
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This pull request introduces two new display commands to the CLI for inspecting Vault and Config transactions, updates the documentation to describe these features, and improves code clarity by adding doc comments to command structs. Additionally, it adds a new dependency and increments the CLI version.
New CLI display commands:
display-transactioncommand to fetch and display details of a VaultTransaction account, including decoded instructions, accounts (with flags), base58-encoded data, and address lookup tables. (cli/src/command/display_transaction.rs,cli/src/command/mod.rs,cli/README.md) [1] [2] [3] [4] [5] [6]display-config-transactioncommand to fetch and display details of a ConfigTransaction account, decoding actions such as member management, threshold changes, spending limits, and rent collector updates. (cli/src/command/display_config_transaction.rs,cli/src/command/mod.rs,cli/README.md) [1] [2] [3] [4] [5] [6]Documentation updates:
README.mdto document the new display commands, including usage, parameters, and examples. [1] [2]Code clarity and maintainability:
Dependency and versioning:
bs58crate as a new dependency for base58 encoding. (cli/Cargo.toml)0.1.7to0.1.8. (cli/Cargo.toml)