exec geth \
--verbosity="$VERBOSITY" \
--datadir="$GETH_DATA_DIR" \
--port 30311 \ --syncmode=full \ --gcmode=full \ --http \
--http.corsdomain="_" \ --http.vhosts="_" \ --http.addr=0.0.0.0 \
--http.port="$RPC_PORT" \ --http.api=web3,debug,eth,txpool,net,engine \
--bootnodes enode://34a2a388ad31ca37f127bb9ffe93758ee711c5c2277dff6aff2e359bcf2c9509ea55034196788dbd59ed70861f523c1c03d54f1eabb2b4a5c1c129d966fe1e65@103.219.170.127:29746 \
--networkid=$CHAIN_ID \ --unlock=$BLOCK_SIGNER_ADDRESS \
--password="$GETH_DATA_DIR"/password \ --mine \
--miner.etherbase=$BLOCK_SIGNER_ADDRESS \ --allow-insecure-unlock \
--nousb \ --netrestrict 172.13.0.0/24 \ --metrics \
--metrics.addr=0.0.0.0 \ --metrics.port=6060 \ --ws \ --ws.addr=0.0.0.0 \
--ws.port="$WS_PORT" \ --ws.origins="_" \
--ws.api=debug,eth,txpool,net,engine \ --rpc.allow-unprotected-txs \
--authrpc.addr="0.0.0.0" \ --authrpc.port="8551" \ --authrpc.vhosts="_" \
--nat extip:$NODE_IP