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
24 lines
548 B
Bash
Executable File
24 lines
548 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
if [ -n "$CERC_SCRIPT_DEBUG" ]; then
|
|
set -x
|
|
fi
|
|
|
|
# Get SEQUENCER KEY from keys.json
|
|
SEQUENCER_KEY=$(jq -r '.Sequencer.privateKey' /l2-accounts/keys.json | tr -d '"')
|
|
|
|
op-node \
|
|
--l2=http://op-geth:8551 \
|
|
--l2.jwt-secret=/op-node-data/jwt.txt \
|
|
--sequencer.enabled \
|
|
--sequencer.l1-confs=3 \
|
|
--verifier.l1-confs=3 \
|
|
--rollup.config=/op-node-data/rollup.json \
|
|
--rpc.addr=0.0.0.0 \
|
|
--rpc.port=8547 \
|
|
--p2p.disable \
|
|
--rpc.enable-admin \
|
|
--p2p.sequencer.key=$SEQUENCER_KEY \
|
|
--l1=$L1_RPC \
|
|
--l1.rpckind=any
|