forked from cerc-io/stack-orchestrator
be08ee81ea
* Remove unnecessary todos
* Set option to log commands in shell scripts
* Replace fixturenet-eth dependency with wait on endpoint
* Skip lighthouse node dependency check
* Update all services in the stack
* Use debug flag to enable shell commands logging
* Add bash in op-batcher container
* Update mobymask-v2 instructions
* Update fixturenet-optimism instructions
* Add descriptions for services
* Move ts files to container-build
* Take L1 RPC endpoint from the env file
* Add dev mode restriction for editing env file
Former-commit-id: 2515878eeb
15 lines
360 B
Bash
Executable File
15 lines
360 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
if [ -n "$CERC_SCRIPT_DEBUG" ]; then
|
|
set -x
|
|
fi
|
|
|
|
op-node genesis l2 \
|
|
--deploy-config /contracts-bedrock/deploy-config/getting-started.json \
|
|
--deployment-dir /contracts-bedrock/deployments/getting-started/ \
|
|
--outfile.l2 /app/genesis.json \
|
|
--outfile.rollup /app/rollup.json \
|
|
--l1-rpc $L1_RPC
|
|
|
|
openssl rand -hex 32 > /app/jwt.txt
|