TO SOLANA

Our nodes deliver peak efficiency, high reliability, and seamless performance — even under heavy congestion.

Trusted by trading desks on

Solana
Latitude.sh
Jito
Vali 3D mark
Three pillars · one fleet

GRPC, SHREDS, AND TPU.PICK YOUR LATENCY.

Three transaction surfaces — post-replay metadata via Yellowstone, pre-confirmation decoded shreds via vRPC, and direct-to-leader sending via the Landing endpoint. Same fleet, different trade-offs.

yellowstone:4224
YELLOWSTONE GRPC
HEAD · 285,432,099DRAGON'S MOUTH · GEYSERSLOT 285,432,099✓ confirmedtx C4mN…5jinstrphoenix::placeOrderlogs3 entriesaccs4 changedtx dY8t…6hspl-stake::delegateSLOT 285,432,098✓ confirmedtx Bf3p…2xinstrorca::swaplogs5 entriesaccs6 changedtx C4mN…5jtoken::transferSLOT 285,432,097✓ confirmed└─ tx 8Hx2…9qmarinade::deposit

DRAGON'S MOUTH, FULLY DECODED

Standard Yellowstone Dragon's Mouth protocol on port 4224. Streams post-replay transaction data with balances, logs, inner instructions, and execution status — the same protocol Helius and Triton use.

PORT 422425 TX FILTERS400 ACCT FILTERS
Read gRPC docs
vrpc:9000
VRPC · DECODED SHREDS
SAME TRANSACTION · TWO ARRIVAL TIMEStx #1284STANDARD gRPCpost-replay · port 4224t = block confirmedvRPCdecoded shreds · pre-replay · port 9000Δ ~50ms head start

SEE TRANSACTIONS BEFORE THEY CONFIRM

Decodes transactions directly from Solana's turbine shred layer — before the validator replays them. The lowest-latency way to detect new transactions. Built for copy trading, MEV, and real-time monitoring.

PRE-REPLAYSHRED LAYERFASTEST DETECTION
Read vRPC docs
land.vali.wtf
LANDING · TPU FORWARDER
QUIC · TPU DIRECT · MULTI-LEADER FANOUTsendTx · base64AQABAv7vK…q9FwKp2Hx9j…7vKR8m3qY…aBcDSLOT N+0Helius DAO4.8%SLOT N+1Jito SOL Pool3.2%SLOT N+2Marinade A2.1%SLOT N+3Solana Compass3.0%✓ INCLUDEDΣ STAKE COVERED · 13.1% · 4 UPCOMING LEADERS

DROP-IN sendTransaction TO THE LEADER

Bypass the standard RPC relay path and ship transactions directly to the current leader's TPU port. Multi-leader fanout to upcoming leaders — optimized for fastest possible inclusion.

TPU DIRECTMULTI-LEADER FANOUTDROP-IN COMPATIBLE
Read landing docs
Quickstart

STREAM SOLANAIN 30 SECONDS.

Vali Labs builds high-performance Solana infrastructure — JSON-RPC, gRPC, pre-confirmation shred streams, and TPU forwarding. Drop in any client library; the wire format is standard.

  • Pre-confirmation shred streaming via vRPC
  • TPU forwarder with multi-leader fanout
  • 5 regional edge nodes — Frankfurt to Tokyo
quickstart.ts
1import { Connection, Transaction } from '@solana/web3.js';
2 
3// Use the landing endpoint for sendTransaction
4const connection = new Connection('https://land.vali.wtf', {
5 commitment: 'confirmed',
6});
7 
8// Build your transaction as normal
9const tx = new Transaction();
10// ... add instructions ...
11 
12// Send via TPU forwarder
13const signature = await connection.sendTransaction(tx, [payer], {
14 skipPreflight: true, // recommended for speed
15 maxRetries: 0, // landing endpoint handles retries
16});
17 
18console.log('Sent via TPU:', signature);
5 regionsNFT-gated accessSub-50ms p50
Performance metrics

BLAZING FAST PERFORMANCE

Live metrics from production traffic. No marketing math — these numbers are exactly what your application sees.

vali-performance-metrics
SOL MainnetLIVE
Overview
Latency target
ms
Peak TPS (fleet)
TPS
Edge regions
live
Block height
slot
RPC + WS methods
live
DEX programs
decoded
RPC surface
MethodCategoryAPIvRPC
getBalanceREADRPC
sendTransactionWRITELanding
getAccountInfoREADRPC
getSignaturesForAddressREADArchive
accountSubscribeSUBSCRIBEWS
Geyser/SubscribeSTREAMgRPC
Vrpc/SubscribeDecodedSTREAMvRPCYES
Region status
5 RPC + 1 archive
  • FrankfurtFRA
    500 TPS
  • New YorkNYC
    400 TPS
  • AmsterdamAMS
    400 TPS
  • TokyoTYO
    250 TPS
  • LondonLND
    250 TPS
Activity log
  • 02:33:23OKBlock 285432101 confirmed — 420 txns included
  • 02:33:25INFOHealth check passed: all 5 regions nominal
  • 02:33:27OKgRPC Yellowstone stream reconnected: slot subscription active
  • 02:33:29INFOvRPC decoded shreds: PumpFun buys streaming
  • 02:33:31OKLanding endpoint: leader-rotation pre-forward armed
/global-edge-locations

YOUR REQUESTS,FIVE REGIONS.

Five anycast RPC regions across three continents — each serving its local users directly. No central hub, no detour through Frankfurt. Your traffic lands at the nearest endpoint and stays there.

5
Regions
3
Continents
1,800
Peak TPS
<50 ms
Latency
FrankfurtFRA
Germany
500 TPS
FASTEST
AmsterdamAMS
Netherlands
400 TPS
FASTER
New YorkNYC
United States
400 TPS
FASTER
TokyoTYO
Japan
250 TPS
FAST
LondonLND
United Kingdom
250 TPS
FAST
[region].node.vali.wtf[region].grpc.vali.wtf:4224archive.vali.wtf
Live fleet · drag to rotate
Our solutions

SUPERCHARGEYOUR EXPERIENCE.

Four product surfaces, one node fleet — RPC, gRPC, vRPC, and the Landing endpoint. Pick the slice you need today; the rest scales when you're ready.

landing-endpoint.sh

Landing endpoint

Drop-in sendTransaction replacement that bypasses the RPC relay queue and ships straight to current and upcoming leaders' TPU ports.

$vali land --tx --skipPreflight
Resolving leader schedule…
QUIC opened: current + next leader
Forwarded with multi-leader fanout
ROUTETPU DIRECTFANOUTMULTI-LEADER
rpc-fleet.sh

Congestion-tuned RPC

Standard JSON-RPC across 5 regions, --full-rpc-api enabled on every node. Tuned to get transactions through during hyped drops.

$vali endpoints --list
5 regions live · NA / EU / Asia
--full-rpc-api: ENABLED
Spam-tuned for congested epochs
REGIONS5 LIVEAPI SURFACEFULL
grpc-yellowstone.sh

Geyser gRPC

Standard Yellowstone Dragon's Mouth gRPC for post-replay transaction data — same protocol as Helius, Triton, and other RPC providers, with zstd compression.

$grpcurl [region].grpc.vali.wtf:4224
geyser.Geyser/Subscribe — connected
Compression: zstd
Streaming: tx + accounts + slots
PORT4224PROTOCOLYELLOWSTONE
vRPC · decoded shreds
Built for traders
Pre-confirmation streaming
See txs
before
replay.
vRPC decodes transactions directly from Solana's shred layer — the foundation for copy trading, MEV detection, and live wallet monitoring.
Endpoint
[region].vrpc.vali.wtf:9000
Stage
PRE-REPLAY
Coverage
6 + 6 DEX
Filters
5 axes
Method
SubscribeDecoded
Mode
Bidirectional
> DETECTED · slot 285432101
> PumpFun.buy · 5SGn9JZS…
> ACTED · pre-confirmation
Support

Frequently Asked Questions

Find answers to common questions about our services.

Buy a Vali pass on Tensor or Magic Eden, then bind your server's IP at vali.wtf. That's the whole setup — no API keys, no headers. Requests from a bound IP just work.

Still have questions? We're here to help.

Contact support on Discord
Ready when you are

Land your nextblock on Vali.

Spin up an endpoint in under a minute. Base Renewal covers Frankfurt; the One-Loc and All-Locations add-ons unlock more regions and higher TPS. No pass? Rent access from a holder instead.