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 scripts/deploy/Deploy.s.sol:Deploy
This is the command make devnet-up uses to generate L1 allocs(source):
make devnet-up
DEPLOY_CONFIG_PATH=deploy-config/devnetL1-template.json forge script scripts/deploy/Deploy.s.sol:Deploy --sig "runWithStateDump()" "--sender" "0x90F79bf6EB2c4f870365E785982E1f101E93b906"
which works.
But if you also specify --rpc-url(sepolia in my case), it'll error out like this:
--rpc-url
The text was updated successfully, but these errors were encountered:
You need to specify IMPL_SALT env var as a random bytes32
IMPL_SALT
Sorry, something went wrong.
It's already set in .envrc:
.envrc
export IMPL_SALT=$(openssl rand -hex 32)
If I echo, it shows:
# echo $IMPL_SALT 789b62c5670c9712f7d2c763c5feed54a4128565a46cbb54602fd75b47968352
No branches or pull requests
This is the command
make devnet-up
uses to generate L1 allocs(source):which works.
But if you also specify
--rpc-url
(sepolia in my case), it'll error out like this:The text was updated successfully, but these errors were encountered: