2515878eeb
* 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
25 lines
595 B
Bash
Executable File
25 lines
595 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
if [ -n "$CERC_SCRIPT_DEBUG" ]; then
|
|
set -x
|
|
fi
|
|
|
|
# Get BACTHER_KEY from keys.json
|
|
BATCHER_KEY=$(jq -r '.Batcher.privateKey' /l2-accounts/keys.json | tr -d '"')
|
|
|
|
op-batcher \
|
|
--l2-eth-rpc=http://op-geth:8545 \
|
|
--rollup-rpc=http://op-node:8547 \
|
|
--poll-interval=1s \
|
|
--sub-safety-margin=6 \
|
|
--num-confirmations=1 \
|
|
--safe-abort-nonce-too-low-count=3 \
|
|
--resubmission-timeout=30s \
|
|
--rpc.addr=0.0.0.0 \
|
|
--rpc.port=8548 \
|
|
--rpc.enable-admin \
|
|
--max-channel-duration=1 \
|
|
--target-l1-tx-size-bytes=2048 \
|
|
--l1-eth-rpc=$L1_RPC \
|
|
--private-key=$BATCHER_KEY
|