-
Notifications
You must be signed in to change notification settings - Fork 51
fix: bump alloy to 0.15 #199
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
Conversation
@@ -76,7 +76,7 @@ async fn main() -> Result<()> { | |||
|
|||
// Create a provider with both signers pointing to anvil | |||
let rpc_url = anvil.endpoint_url(); | |||
let provider = ProviderBuilder::new().wallet(wallet).on_http(rpc_url); | |||
let provider = ProviderBuilder::new().wallet(wallet).connect_http(rpc_url); |
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.
Seeing a
Sent approval: 0x93426765c406ba149df94b52df30b415bc812b7d384dbcaafb9a389a4eec3555
Error: server returned an error response: error code 3: execution reverted, data: "0x"
Does not appear to be a regression as it also appears on main
Still worth looking into
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.
Adding to the ignore list in run.sh
for now
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.
added follow-up ticket for it here: #218
reth-db = { git = "https://github.com/paradigmxyz/reth", package = "reth-db", rev = "55f4b0b" } | ||
reth-provider = { git = "https://github.com/paradigmxyz/reth", package = "reth-provider", rev = "55f4b0b" } | ||
reth-node-types = { git = "https://github.com/paradigmxyz/reth", package = "reth-node-types", rev = "55f4b0b" } | ||
reth-chainspec = { git = "https://github.com/paradigmxyz/reth", package = "reth-chainspec", rev = "55f4b0b" } | ||
reth-node-ethereum = { git = "https://github.com/paradigmxyz/reth", package = "reth-node-ethereum", rev = "55f4b0b" } |
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 could also move this entirely to reth and just reference it here
lgtm! @yash-atreya |
providers::{Provider, ProviderBuilder}, | ||
rpc::types::TransactionRequest, | ||
}; | ||
use alloy_evm::{eth::EthEvmContext, EthEvm, Evm}; |
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.
💯!
Motivation
Updates:
Alloy to 0.15
Bump
foundry-fork-db
after REVM compatibility (feat: bump revm to21.0.0
and alloy to0.13.0
foundry-rs/foundry-fork-db#44)~~Update examples to be compatible with new REVM~~
Added follow-up ticket here: #217
PR Checklist