-
Notifications
You must be signed in to change notification settings - Fork 2.3k
feat(config): support numeric keys in [fork.<chain>] section
#11340
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 24 commits
Commits
Show all changes
32 commits
Select commit
Hold shift + click to select a range
cd633dd
feat(cheats): add fork cheats to load array vars
0xrusowsky fda1b89
add more tests
0xrusowsky 15b206a
Merge branch 'master' into rusowsky/extend-fork-cheats
grandizzy 83e83ee
refactor to reduce duplicate code
0xrusowsky 339ba1f
Merge branch 'rusowsky/extend-fork-cheats' of github.com:foundry-rs/f…
0xrusowsky 3acf9e1
fix: test spacing
0xrusowsky d0c121a
style: clippy
0xrusowsky 3c4af4e
Merge branch 'rusowsky/extend-fork-cheats' of github.com:foundry-rs/f…
0xrusowsky 32bbd76
fix: test spacing
0xrusowsky d2cf99a
style: rename to `readFork..`
0xrusowsky 202d3b9
docs: improve cheat comments
0xrusowsky da65c90
style: rename missing cheats
0xrusowsky e2b6c5d
docs: update cmnts
0xrusowsky 503b4fe
fix: use existing toml and json parsing helper fns
0xrusowsky 9bc005f
feat: resolve env vars in 'fork' config
0xrusowsky e3ad11f
fix: test spacing
0xrusowsky 535fdc5
fix: expected test logs
0xrusowsky 655384b
fix: use `let Self { .. } = self` syntax
0xrusowsky 4be3d53
Merge branch 'master' into rusowsky/extend-fork-cheats
0xrusowsky 2ce8cc5
feat: support numeric chain keys
0xrusowsky 9ba7d51
Merge branch 'master' of github.com:foundry-rs/foundry into rusowsky/…
0xrusowsky 95c9adc
style
0xrusowsky 6a3d63e
add unit tests
0xrusowsky 598f73a
better error msg
0xrusowsky 7ccb5d9
use `alloy_chains::Chain` as config key
0xrusowsky 44c67f4
fix: test spacing
0xrusowsky a4a6a2a
Merge branch 'master' into rusowsky/support-num-keys
0xrusowsky c7865eb
Merge branch 'master' into rusowsky/support-num-keys
grandizzy 33c3550
Merge branch 'master' into rusowsky/support-num-keys
0xrusowsky e2f4d30
style: std error msg
0xrusowsky 01e0ee3
Merge branch 'master' into rusowsky/support-num-keys
0xrusowsky 25806c2
fix: tests
0xrusowsky File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
any reason we can't fall back to just integers if they are not supported in
alloy_chains?Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yup, that's what we were discussing above.
addressed with
7ccb5d9