Prathamesh Musale
9ca108e877
Part of [laconicd testnet validator enrollment](https://www.notion.so/laconicd-testnet-validator-enrollment-6fc1d3cafcc64fef8c5ed3affa27c675) - Updated Dockerfiles - Added a separate service to generate L2 config files - Updated service dependency for `op-geth` and `op-node` - Passed lighthouse beacon API endpoint to the `op-node` command - Updated path for artifact generated by L1 contracts deployment Co-authored-by: Adwait Gharpure <69599306+Adw8@users.noreply.github.com> Reviewed-on: #3
38 lines
1.1 KiB
Bash
Executable File
38 lines
1.1 KiB
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
if [ -n "$CERC_SCRIPT_DEBUG" ]; then
|
|
set -x
|
|
fi
|
|
|
|
CERC_L1_CHAIN_ID="${CERC_L1_CHAIN_ID:-${DEFAULT_CERC_L1_CHAIN_ID}}"
|
|
CERC_L1_RPC="${CERC_L1_RPC:-${DEFAULT_CERC_L1_RPC}}"
|
|
DEPLOYMENT_CONTEXT="$CERC_L1_CHAIN_ID"
|
|
|
|
deploy_config_file="/l2-config/$DEPLOYMENT_CONTEXT.json"
|
|
l1_deployment_file="/l1-deployment/$DEPLOYMENT_CONTEXT-deploy.json"
|
|
l2_allocs_file="/l2-config/allocs-l2.json"
|
|
genesis_outfile="/l2-config/genesis.json"
|
|
rollup_outfile="/l2-config/rollup.json"
|
|
|
|
# Start op-node
|
|
SEQ_KEY=$(cat /l2-accounts/accounts.json | jq -r .SeqKey)
|
|
jwt_file=/l2-config/l2-jwt.txt
|
|
L2_AUTH="http://op-geth:8551"
|
|
RPC_KIND=any # this can optionally be set to a preset for common node providers like Infura, Alchemy, etc.
|
|
|
|
op-node \
|
|
--l2=$L2_AUTH \
|
|
--l2.jwt-secret=$jwt_file \
|
|
--sequencer.enabled \
|
|
--sequencer.l1-confs=5 \
|
|
--verifier.l1-confs=4 \
|
|
--rollup.config=$rollup_outfile \
|
|
--rpc.addr=0.0.0.0 \
|
|
--rpc.port=8547 \
|
|
--p2p.disable \
|
|
--rpc.enable-admin \
|
|
--p2p.sequencer.key="${SEQ_KEY#0x}" \
|
|
--l1=$CERC_L1_RPC \
|
|
--l1.rpckind=$RPC_KIND \
|
|
--l1.beacon=http://fixturenet-eth-lighthouse-1:8001
|