Issue Deploying Contracts in the Creating your own L2 rollup testnet Tutorial
#813
Closed
euler-singularity
started this conversation in
General
Replies: 1 comment 7 replies
-
|
op-deployer by default read the l1/l2 contract artifacts from the remote google storage func (t TaggedRelease) URL() string {
return fmt.Sprintf("https://storage.googleapis.com/oplabs-contract-artifacts/artifacts-v1-%x.tar.gz", t.ContentHash)
}
var taggedReleases = map[string]TaggedRelease{
ContractsV160Tag: {
ArtifactsHash: common.HexToHash("d20a930cc0ff204c2d93b7aa60755ec7859ba4f328b881f5090c6a6a2a86dcba"),
ContentHash: common.HexToHash("e1f0c4020618c4a98972e7124c39686cab2e31d5d7846f9ce5e0d5eed0f5ff32"),
},
ContractsV170Beta1L2Tag: {
ArtifactsHash: common.HexToHash("9e3ad322ec9b2775d59143ce6874892f9b04781742c603ad59165159e90b00b9"),
ContentHash: common.HexToHash("b0fb1f6f674519d637cff39a22187a5993d7f81a6d7b7be6507a0b50a5e38597"),
},
ContractsV180Tag: {
ArtifactsHash: common.HexToHash("78f186df4e9a02a6421bd9c3641b281e297535140967faa428c938286923976a"),
ContentHash: common.HexToHash("361ebf1f520c20d932695b00babfff6923ce2530cd05b2776eb74e07038898a6"),
},
ContractsV200Tag: {
ArtifactsHash: common.HexToHash("32e11c96e07b83619f419595facb273368dccfe2439287549e7b436c9b522204"),
ContentHash: common.HexToHash("1cec51ed629c0394b8fb17ff2c6fa45c406c30f94ebbd37d4c90ede6c29ad608"),
},
ContractsV300Tag: {
ArtifactsHash: common.HexToHash("40661d078e6efe7106b95d6fc5c4fda8db144487d85a47abd246cb3afcb41ab2"),
ContentHash: common.HexToHash("147b9fae70608da2975a01be3d98948306f89ba1930af7c917eea41a54d87cdb"),
},
}So I think maybe there's something wrong with the script or the remote artifact, not related to your local forge artifacts, maybe you can try another op-deployer version to have a retry, such as v0.2.0 |
Beta Was this translation helpful? Give feedback.
7 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Did you check the documentation?
Did you check for duplicate questions?
Issue Description
I am trying to deploy a rollup on top of Base.
I am following the
Creating your own L2 rollup testnettutorial. When deploying the contracts with theapplycommand:Then I get the following error:
I have followed all the steps until this point. I also ran
forge buildand theforge-artifactsare created atpackages/contracts-bedrock/forge-artifacts`Logs
Additional Information
This is my
foundry.tomlFeedback
No response
Beta Was this translation helpful? Give feedback.
All reactions