Skip to main content

Solana / Agave

Solana / Agave nodes expose validator operations plus developer RPC services for reading network state, sending transactions, simulating transactions, and live update subscriptions. The official Solana RPC docs describes RPC as the application interface for chain data and transaction submission.

:::warning Public RPC is development and testing infrastructure Solana public RPC endpoints are shared infrastructure, not production backends. Public endpoint guidance documents 429 for excess request rate and 403 for blocked traffic; production services need dedicated/private RPC with quotas, authentication, and monitoring. :::

AreaDefaultPurpose
Gossip8001/udpCluster peer discovery.
JSON-RPC HTTP8899/tcpRequest-response reads, simulation, and transaction submit.
WebSocket PubSub8900/tcpPersistent account, log, program, slot, and signature subscriptions.
Metrics9100/tcpInternal Prometheus scrape endpoint.

Read node architecture, choose interfaces in RPC/API matrix, and apply shared Rate Limiting and Monitoring Standards practices.