ERPC Releases Solana Leader Slot Information API

ERPC Releases Solana Leader Slot Information API

2025.09.29
ELSOUL LABO B.V. and Validators DAO, which operate ERPC, released the Leader Slot Information API (getLeaderSlots API). Users holding ERPC usage credits can access upcoming Solana leader schedules, stake weight, validator location data, and reference ping values through an RPC-compatible interface.

Background

On Solana, every slot is assigned to a leader validator that receives transactions and produces blocks. Because leaders rotate globally, low-latency strategy is different from traditional HFT, where infrastructure is often placed near one matching engine. On Solana, the fastest region changes as the leader schedule changes.
Preparing this information independently requires updating hundreds of thousands of slots per epoch, tracking validator metadata, estimating locations, measuring latency, and keeping the data usable in real time. ERPC provides this as an operational API.

API Usage Example

The API can be called like a standard Solana RPC method. The following request retrieves 100 leader slot records starting from the slot specified in params.
json
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "getLeaderSlots",
  "params": [416462031]
}
The current response is wrapped in result with success, message, total, and data[]. Each record includes slot, identity, stakeWeight, leader geolocation fields such as leaderRegion and leaderCity, and reference latency in pingToLeaders.

Leader Slots as an Operational Timeline

The data can be read visually as a slot timeline from a given observation point. This example uses Frankfurt.
Slot windowLeader regionLeader locationStake weightPing from FrankfurtReading
416462031stockholmŠiauliai, LT2,502,391.1427.742 msEuropean latency, but not the same metro.
416462032-416462035amsterdamAmsterdam, NL280,745.6916.835 msLow-latency Amsterdam window.
416462036frankfurtFrankfurt am Main, DE12,254,651.760.974 msSame-region Frankfurt leader.

Solana Network Data Website

Validators Solutions - Solana network data
For public validator and network distribution, use Validators Solutions. Validators Solutions is useful for understanding the broader Solana network, while the ERPC Leader Slot API is designed for slot-level operational routing with schedule, stake weight, location, and latency data.

Strategic Utilization

  • Use leader location and ping to decide whether direct sending is efficient for a given slot.
  • Use stakeWeight to understand which validators are likely to appear more frequently over longer windows.
  • Use multiple regions such as FRA, AMS, NY, TY, and SGP to reduce gaps during leader transitions.
  • Avoid relying only on global average latency; Solana opportunity windows move with the leader schedule.

Availability

The Leader Slot Information API is available to ERPC users with usage credits. API tokens can be issued and verified on the ERPC Web Dashboard, and the detailed documentation is available on the ERPC website.

Challenges Solved by ERPC and Validators DAO

  • Transaction failures and latency fluctuations common in general RPC environments
  • Performance limitations imposed by many infrastructure providers
  • Significant impact of network distance on communication quality
  • Difficulty for smaller projects to access high-quality infrastructure
ERPC and SLV are built from our own need for high-performance Solana infrastructure. We will continue improving the data, routing, and operational tools needed by teams building latency-sensitive Solana applications.