Feat: fetch historical-idls using anchor cli#3992
Open
Otter-0x4ka5h wants to merge 8 commits intosolana-foundation:masterfrom
Open
Feat: fetch historical-idls using anchor cli#3992Otter-0x4ka5h wants to merge 8 commits intosolana-foundation:masterfrom
Otter-0x4ka5h wants to merge 8 commits intosolana-foundation:masterfrom
Conversation
|
Someone is attempting to deploy a commit to the Solana Foundation Team on Vercel. A member of the Team first needs to authorize it. |
jamie-osec
reviewed
Oct 16, 2025
jamie-osec
reviewed
Oct 28, 2025
Collaborator
|
How long does this take to run in practice on mainnet? Maybe some kind of progress indicator would be good if it's more than a couple seconds |
Collaborator
|
@jamie-osec thanks for the quick review. Currently it didnt take much time on devnet, but yeah we can add that one. will update and lyk |
Collaborator
|
@Otter-0x4ka5h Can you please fix the conflicts? |
6283309 to
3095b8b
Compare
… IDL versions - Implement complete CLI command with all filtering options - Add advanced transaction parsing for Solana transaction types - Support slot-based and date-based filtering - Add comprehensive error handling and user feedback - Include detailed logging for debugging - Support multiple output formats (stdout, files, directories) - Test with real Jupiter program transactions Fixes solana-foundation#3941
3095b8b to
2118bb9
Compare
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.
Added multiples options to
anchor idl fetchcommand which uses to fetch historical idls of the program id.--slot : Get IDL version that existed at or before slot X
--before : Get all IDL version that before DATE
--after : Get all IDL versions from DATE onwards
--out-dir : Save IDL versions at give directory.
Closes #3941