-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
fix(chisel): final statement & fetch err with complex type fixes #9081
Conversation
@@ -528,7 +528,22 @@ impl ChiselDispatcher { | |||
err.name, |
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.
omg why does this exist. We have ABI to solidity in cast and forge already, and a whole crate to interface with etherscan (foundry-block-explorers), please just use those to fix a trillion other bugs
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.
this definitely needs a cleanup pass but should happen in a followup
@@ -528,7 +528,22 @@ impl ChiselDispatcher { | |||
err.name, |
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.
this definitely needs a cleanup pass but should happen in a followup
…ndry-rs#9081) * fix(chisel): consider assembly block return as final statement * Fix 4938 * Start from first assembly block when checking for return statement * Fix 6618
Motivation
Closes #4617 consider first assembly block return as final statement if any
Closes #4938 do not consider yul var declaration statement as final statement
Closes #6618 proper handle of custom error complex type when fetched from etherscan
Solution