Configuration
The Flowra Validator Client is configured through startup flags on agave-validator (the same pattern as any Agave-lineage client) plus a Programmable Block Policy file referenced by environment variable.
Flowra-related flags
Both regional endpoints must point at the same region.
The PBP policy file
Set the policy file path through the environment:
export FLOWRA_PBP_CONFIG=/etc/flowra/flowra-pbp.toml
The validator is the policy authority: it pushes this file to the Block Engine on connect and re-pushes automatically whenever the file changes. Full field reference and a complete example: Programmable Block Policy.
# flowra-pbp.toml (minimal example)
[policy]
allow_aggressive_mev = false
[address_blacklist]
addresses = []
If FLOWRA_PBP_CONFIG is unset, the default policy applies: open access, standard inclusion, no filters.
Policy semantics
- Authority-push. Your file is the source of truth. The engine enforces whatever you last pushed.
- Hot reload. Save the file and the client re-pushes it within seconds. No restart required.
- Logged. Policy pushes and bundle rejections appear in client and engine logs.
Commission and distribution
Auction tips are lamport transfers to per-validator tip accounts, claimed through the on-chain tip distribution mechanism. After the 5% protocol fee, your --commission-bps determines the validator/staker split.
tip (100%) -> protocol fee (5%)
\-> validator commission (your bps)
\-> stakers (remainder)
Tip crank
Each leader slot, the client's BundleStage runs the tip program crank: it initializes the tip payment config once, then sets the tip receiver and block builder for the epoch. If the crank fails (look for tip_programs_error=1 in logs), bundles cannot execute; verify the tip program addresses match your network's deployment.
Operational notes
- Logs. Bundle and Block Engine activity is logged by the
BundleStageandBlockEngineStagemodules; run with your usual Agave log configuration. - Ledger replay. On restart the validator replays the ledger before going live, and the Block Engine connection is established only after replay completes. Budget for this in maintenance windows.
- Upgrades. Client releases track upstream Agave/Jito-Solana versions; registered validators are notified through the operator channel.