-
Notifications
You must be signed in to change notification settings - Fork 335
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
feat(vm
): add keyExists
#423
Conversation
src/Vm.sol
Outdated
// Checks if a key exists in a JSON or TOML object. | ||
function keyExists(string calldata, string calldata) external view returns (bool); |
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.
We try to always used named inputs/outputs here for clarity, do you mind updating? (looks like the above parseJson*
methods are also missing named params if you wanted to fix those also 😅
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.
oh yeah just followed what was above 😅 will update them all!
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.
hey @Evalir just bumping this
@mds1 should be g2g! |
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.
Thanks!
Upstream from foundry-rs/foundry#5431