Skip to main content

Start Operator

Setup Checklist tick

Before starting the Operator Service, confirm that everything is in place:

Start Operator Service

Run the Operator Service using the start command with your Vault address and node endpoints. Choose the format matching your installation method:

./operator start \
--vault=0x834F27bC8670491b75af512d943f01D5383F87Cf \
--consensus-endpoints=https://consensus-node \
--execution-endpoints=https://execution-node

Optional Flags

FlagDescription
--keystores-dirDirectory with validator keys in EIP-2335 ↗ format. Must contain a single password.txt or per-keystore password files (e.g., keystore1.json, keystore1.txt)
--keystores-password-filePath to the password file for decrypting keystores
--wallet-filePath to the wallet file. Default: file generated by create-wallet
--wallet-password-filePath to the wallet password file. Default: file generated by create-wallet
--harvest-vaultKeeps your Vault synced by calling updateState every 12 hours, reducing gas costs for users. The Vault state is also updated whenever users interact with it (deposits, withdrawals, etc.)
--claim-fee-splitterPeriodically claims fees to shareholder addresses. See Fee Claiming →
--run-nodesStarts and manages local Reth (execution), Lighthouse (consensus), and validator nodes alongside the Operator Service. Requires node-install first. See Automated Node Setup →
--validator-typeRegister 0x01 instead of default 0x02 validators
--min-deposit-amount-gweiMinimum Vault balance to trigger registration or top-up. Minimum allowed: 1 ETH/GNO. Default: 10 ETH/GNO
--vault-min-balance-gweiETH to keep in the Vault and not stake. Default: 0
--max-validator-balance-gweiMaximum validator balance for top-ups. Default: 1945 ETH (Ethereum), 1800 GNO (Gnosis)
--min-deposit-delayMinimum delay between registration or top-up transactions. Default: 3600 seconds (1 hour)
--max-withdrawal-request-fee-gweiMaximum fee per withdrawal request. Default: 1000 Gwei
--disable-withdrawalsDisables submitting partial and full withdrawals. This reduces gas costs but increases withdrawal times for users. Oracles will instead handle exits using signatures from registration
--max-fee-per-gas-gweiMaximum gas fee per transaction. Default: 10 Gwei (Ethereum), 2 Gwei (Gnosis)
--concurrencyNumber of processes in a pool. For optimal performance, set to half your CPU cores (e.g., --concurrency=4 for 8-core systems) to prevent overloading during keystore operations
--disable-validators-registrationDisables registering new validators
--disable-validators-fundingDisables topping up existing 0x02 validators
--verboseEnable debug mode, prints full output on error
--log-levelSet logging level: ERROR, WARNING, INFO, DEBUG