-
Notifications
You must be signed in to change notification settings - Fork 178
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
[TUTORIAL] Docs tutorials out of sync on/after v1.7.0 #549
Comments
@astro44 was this done on the |
I found the same problem, the link you send was done on I think the On v1.7.0 branch ,there are several points not consistent with the current
|
I have another question: I think the contracts on branch |
Sorry @luleigreat, @sbvegan somehow didn't see this thread, |
closing in favor of #917 |
Please update docs to reflect latest changes in new builds.
since version 1.7.0 hardhat artifacts are no longer used in a few places in the build / run process:
ethereum-optimism/optimism@082d075
main.go call will need to be changed... currently in the tutorial:
but should look more like:
go run cmd/main.go genesis l2
--deploy-config ../packages/contracts-bedrock/deploy-config/getting-started.json
--l1-deployments ../packages/contracts-bedrock/deployments/getting-started/.deploy
--outfile.l2 genesis.json
--outfile.rollup rollup.json
--l1-rpc $L1_RPC_URL
also any references to json files in getting-started should likely require the contents of .deploy.
so for running proposer:
should look more like:
for -l2oo-address... in ()
cat ../packages/contracts-bedrock/deployments/getting-started/.deploy | jq -r '.L2OutputOracleProxy'
and also:
again... we'll find the address in the .deploy file mentioned above.
The text was updated successfully, but these errors were encountered: