Advanced Configurationยถ

Advanced features for power users: MEV extraction, PBS sidecars, and node customization.

โšก MEV-Boost

Connect to MEV relays for extra rewards.

MEV boost
๐Ÿš€ Commit-Boost

PBS sidecar for proposer commitments.

Commit-Boost
๐Ÿ”Œ Using Node RPC

Query your node via JSON-RPC.

Using Your Node
โœ… Manual Verification

Verify your node is working correctly.

Manual Binary Verification Guide

MEV Overviewยถ

Maximal Extractable Value (MEV) allows validators to earn additional rewards by including optimally ordered transactions in blocks.

Important

MEV-Boost is optional but recommended for validators who want to maximize rewards.

How it works:

  1. Block Builders - Create optimized blocks with MEV

  2. Relays - Connect validators to builders

  3. MEV-Boost - Sidecar that requests blocks from relays

  4. Proposer - Your validator proposes the winning block

MEV Relay Options

Popular relays for Ethereum mainnet:

  • Flashbots - https://0xac6...@boost-relay.flashbots.net

  • bloXroute - Multiple options (ethical, regulated, max profit)

  • Ultrasound - https://0xa1d...@relay.ultrasound.money

  • Aestus - https://0xa15...@mainnet.aestus.live

Full MEV-Boost setup โ†’

RPC Accessยถ

Your node exposes JSON-RPC endpoints for queries and transactions:

Client

Default Port

Documentation

Execution Layer

8545

Ethereum JSON-RPC

Consensus Layer

5052

Beacon API

Optimism

8547

OP Stack RPC

Arbitrum

8547

Arbitrum RPC

Example query:

curl -X POST http://localhost:8545 \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":1}'

See also