forked from cerc-io/stack-orchestrator
c2a3ffe0dd
* Add an option to pass env file to deploy command
* Use env variable mapping in fixturenet-optimism stack
* Use default values from checked in env files
* Use env variable mapping in mobymask-v2 stack
* Update instructions
* Add extra hosts in app compose files and update instructions
* Add CERC prefix to env variables in fixturenet-optimism stack
* Add CERC prefix to env variables in mobymask-v2 stack
Former-commit-id: 6b62247ef7
27 lines
654 B
Bash
Executable File
27 lines
654 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
if [ -n "$CERC_SCRIPT_DEBUG" ]; then
|
|
set -x
|
|
fi
|
|
|
|
CERC_L1_RPC="${CERC_L1_RPC:-${DEFAULT_CERC_L1_RPC}}"
|
|
|
|
# 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=$CERC_L1_RPC \
|
|
--private-key=$BATCHER_KEY
|