-
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
refactor: use TransactionRequest
everywhere
#7040
Conversation
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.
looks great,
pending alloy
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.
looks great,
pending alloy
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.
lgtm, let's add a note on transaction_request_to_typed
that we want to remove it at some point, both in code and an issue?
also need ci passing
@onbjerg ci won't pass until we merge the main pr—the evm-inspectors crate uses the normal rpc types instead of the ones pointing to your branch |
@Evalir main PR is merged, can you update this PR? |
ci seems hanged up? |
we dont have unlimited runners so sometimes other prs need to finish before ci can run |
doesn't seem like there's any pr running though |
0887695
to
001d02a
Compare
needs alloy-rs/alloy#195 |
ci failure unrelated. |
Motivation
Previously we were using
CallRequest
, and an in-houseTransactionRequest
.Solution
Switches to using
TransactionRequest
everywhere.Depends on alloy-rs/alloy#178