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
forge script
Forge
forge 0.2.0 (545cd0b 2024-03-14T00:20:00.210934000Z)
macOS (Apple Silicon)
Blob storage was released today on Base, and I am using forge script to run a transaction through a new contract.
export OWNER=rando_addr
forge script script/DeployToken.s.sol --rpc-url https://mainnet.base.org
The text was updated successfully, but these errors were encountered:
Adding --legacy flag solves the issue, but you are right, priority fees are overestimated. I'm going to try to spot the issue and submit a pr.
Sorry, something went wrong.
This is a duplicate of #5709
@Evalir why aren't you considering implementing custom estimator function in foundry? ethers' accepts
fn estimator(base_fee: U256, history: Vec<Vec<U256>>) -> (U256, U256)
in estimate_eip1559_fees(estimator)
estimate_eip1559_fees(estimator)
foundry/crates/script/src/providers.rs
Line 83 in 42da942
Successfully merging a pull request may close this issue.
Component
Forge
Have you ensured that all of these are up to date?
What version of Foundry are you on?
forge 0.2.0 (545cd0b 2024-03-14T00:20:00.210934000Z)
What command(s) is the bug in?
forge script
Operating System
macOS (Apple Silicon)
Describe the bug
Blob storage was released today on Base, and I am using
forge script
to run a transaction through a new contract.Repro steps:
export OWNER=rando_addr
forge script script/DeployToken.s.sol --rpc-url https://mainnet.base.org
The text was updated successfully, but these errors were encountered: