anton-rs / op-up

Composable OP Stack Orchestration
https://stack.anton.systems
MIT License
41 stars 2 forks source link

bug: allocs stage failure #65

Closed merklefruit closed 11 months ago

merklefruit commented 11 months ago

When executing the up command, the allocs stage incurs in a critical failure.

error:

Exception: Exception occurred in child process: 
Command '['forge', 'script', 'scripts/Deploy.s.sol:Deploy', '--sender', 
'0x0dbf9c4872d17003bd9a9c3cd5b71bfff61cac4a', '--rpc-url', 'http://127.0.0.1:8545', 
'--broadcast', '--unlocked']' returned non-zero exit status 1

this error originates in the bedrock devnet python script here:

https://github.com/ethereum-optimism/optimism/blob/6bc21cb17702284a80e1a3e50fa70a996a721e97/bedrock-devnet/devnet/__init__.py#L129

merklefruit commented 11 months ago

update: the issue seems due to forge dependencies being git submodules, for which metadata is unavailable when downloading the Optimism monorepo through the tarball archive. (needed inside optimism/packages/contracts-bedrock

Solutions include:

Easiest fix for now is definitely going to be cloning the monorepo.