Files
ethereum-rpc-docker/taiko/script/start-driver.sh
Sebastian d7fbdfb28e fix
2024-06-06 08:31:38 +02:00

17 lines
471 B
Bash
Executable File

#!/bin/sh
set -eou pipefail
exec taiko-client driver \
--l1.ws "${L1_ENDPOINT_WS}" \
--l2.ws "${L2_GETH_RPC:-ws://taiko:8545}" \
--l1.beacon "${L1_BEACON_HTTP}" \
--l2.auth "${L2_GETH_AUTH:-http://taiko:8551}" \
--taikoL1 "${TAIKO_L1_ADDRESS}" \
--taikoL2 "${TAIKO_L2_ADDRESS}" \
--jwtSecret /data/taiko-geth/geth/jwtsecret \
--p2p.sync \
--p2p.checkPointSyncUrl "${L2_CHECKPOINT_SYNC_RPC:-https://rpc.mainnet.taiko.xyz}"