We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
vm.getChain
Forge
forge-std's StdChains provides a way to retrieve chain info for a chain id or chain alias: https://github.com/foundry-rs/forge-std/blob/6853b9ec7df5dc0c213b05ae67785ad4f4baa0ea/src/StdChains.sol#L69
StdChains
However this can get easily out of sync when support for new chains is added. We can fix this by providing native cheatcodes vm.getChain(alias) and vm.getChain(chainId) that returns a Chain struct as https://github.com/foundry-rs/forge-std/blob/6853b9ec7df5dc0c213b05ae67785ad4f4baa0ea/src/StdChains.sol#L45
vm.getChain(alias)
vm.getChain(chainId)
Chain
No response
The text was updated successfully, but these errors were encountered:
can i get assigned to this one?
Sorry, something went wrong.
assigned, lmk if you need some pointers, feel free to open a draft pr early
If nobody has started working on this can I try this one? @mattsse
redtrama
Successfully merging a pull request may close this issue.
Component
Forge
Describe the feature you would like
forge-std's
StdChains
provides a way to retrieve chain info for a chain id or chain alias: https://github.com/foundry-rs/forge-std/blob/6853b9ec7df5dc0c213b05ae67785ad4f4baa0ea/src/StdChains.sol#L69However this can get easily out of sync when support for new chains is added. We can fix this by providing native cheatcodes
vm.getChain(alias)
andvm.getChain(chainId)
that returns aChain
struct as https://github.com/foundry-rs/forge-std/blob/6853b9ec7df5dc0c213b05ae67785ad4f4baa0ea/src/StdChains.sol#L45Additional context
No response
The text was updated successfully, but these errors were encountered: