Skip to main content

Flare Mainnet Entity Operations

Flare is an EVM-compatible Layer 1 with enshrined data protocols. A production Flare operator normally runs a validator node and a Flare Entity stack so the same entity can validate the network and participate in the Flare Systems Protocol (FSP), including FTSOv2 and FDC.

Architecture

LayerComponentPurpose
Validatorgo-flare nodeFlare P-Chain validation, C-Chain execution, staking identity
FSPFlare System ClientContract interactions, voter registration, protocol submissions, signing policy tasks, finalization
FSPC-Chain IndexerIndexes FSP contract events and transactions used by protocol clients
FTSOFTSO ClientAnchor feed commit/reveal data for FTSOv2 Scaling
FTSOFast Updates ClientBlock-latency feed updates, backed by sortition key and fast-update accounts
FTSOFeed Value ProviderOperator-provided price/data source API consumed by FTSO clients
FDCFDC ClientConsumes verifier APIs and submits FDC voting data through FSP
FDCFDC SuiteChain nodes, indexers, verifiers, and optional Web2 verifier used by the FDC client

Checked Versions

Values below were checked from official Flare docs and repositories on 2026-05-11.

ItemVersion / CommitSource
go-flarev1.13.0Latest GitHub release and Docker Hub versioned tag checked on 2026-05-11
flare-systems-deployment0fa4ac7Main branch commit checked on 2026-05-11
flare-system-clientv1.0.12Image tag in flare-systems-deployment/docker-compose.yaml
flare-system-c-chain-indexerv1.1.2Image tag in flare-systems-deployment/docker-compose.yaml
ftso-scalingv1.0.9Image tag in flare-systems-deployment/docker-compose.yaml
fdc-clientv1.2.9Image tag in flare-systems-deployment/docker-compose.yaml
fast-updates/go-clientv1.0.2Image tag in flare-systems-deployment/docker-compose.yaml
fdc-suite-deployment5cb3644Main branch commit checked on 2026-05-11
warning

The FDC suite release notes currently include v1.2.4-rc.1, which requires XRP reindexing and BTC/DOGE/XRP PostgreSQL migration or reindex. Do not upgrade FDC suite repositories blindly; read RELEASES.md and plan downtime or a parallel deployment.

Hardware

DeploymentCPURAMDisk
Flare validator node only4 cores16 GB1 TB SSD pruned, 5.7 TB SSD archival
Full Flare Entity on one host16 cores64 GB4 TB SSD
Full FDC suite on one host16-32 cores/threads64 GB4 TB NVMe
Web2 verifier standalone4 cores8 GBMinimal local disk

Splitting FSP, FDC, and the value provider across multiple servers is supported and often easier to operate at scale. Keep latency low between the System Client, FDC Client, FTSO Client, and their upstream APIs.

Network Ports

PortScopePurpose
9651/tcpPublicFlare P2P / staking port, must be reachable
9650/tcpLocal or trusted network onlygo-flare HTTP API
3101/tcpInternal trusted networkFeed Value Provider example/default API
9800/tcpInternal trusted networkEVM verifier API default
FDC verifier portsInternal trusted networkBTC/DOGE/XRP/Web2 verifier APIs, based on compose files

Never expose 9650 or verifier APIs publicly without authentication, filtering, and a clear reason. Validator nodes should not serve public RPC traffic.

Operating Directories

DirectoryContents
/data/flare/nodego-flare Docker Compose, database mount, config, logs, staking keys
/data/flare/fdc-suite-deploymentFDC blockchain node, indexer, verifier deployment repository and generated configs
/data/flare/flare-systems-deploymentFSP/FTSO/FDC client deployment repository and generated configs
/data/flare/value-providerOperator-owned FTSO Feed Value Provider deployment

Official References