ProviderInfrastructure

Supanode Infrastructure

High-performance RPC nodes, Yellowstone gRPC streaming, and ClickHouse-powered historical data indexing.

Updated March 202512 min read

Overview

Supanode is a blockchain infrastructure provider focused on high-performance RPC nodes, real-time gRPC streaming, and historical data indexing for Solana, BSC, and Hyperliquid. Built by engineers with direct experience in on-chain trading and infrastructure, Supanode emphasizes performance transparency and honest pricing.

The service maintains a 99.99% uptime SLA with sub-1ms average latency, achieved through strategic node placement in Tier 3+ datacenters co-located with major validator clusters. Frankfurt (226 validators, 19.4% stake), Amsterdam (222 validators, 20.8% stake), New York, London, and Tokyo form the current geographic footprint.

Services

Solana RPC Nodes

Supanode's RPC infrastructure provides high-performance access to the Solana network. Shared endpoints are available for development and lower-traffic use cases, while dedicated nodes eliminate rate limits and provide exclusive resources for production applications. The service emphasizes no hidden fees and transparent pricing — a notable differentiator in a market where many providers obscure their actual costs.

Yellowstone gRPC / Geyser Streaming

Supanode's gRPC offering uses the Yellowstone Geyser implementation, the industry standard for Solana data streaming. The service processes 50,000+ account updates per second with no dropped messages, making it suitable for the most demanding real-time applications. WebSocket streaming is also available for applications that prefer that interface.

supanode-grpc.tstypescript
import Client from "@triton-one/yellowstone-grpc";

// Connect to Supanode gRPC endpoint
const client = new Client(
  "https://grpc.supanode.xyz:10000",
  "your-supanode-api-key",
  {}
);

const stream = await client.subscribe();

// Subscribe to Raydium swap transactions
stream.write({
  transactions: {
    raydiumSwaps: {
      vote: false,
      failed: false,
      accountInclude: [
        "675kPX9MHTjS2zt1qfr1NYHuzeLXfQM9H24wFSUt1Mp8" // Raydium AMM
      ],
    },
  },
  commitment: 1, // PROCESSED
});

stream.on("data", (data) => {
  if (data.transaction) {
    // Handle swap transaction
    processSwap(data.transaction);
  }
});

Solana Historical Data Indexer

Supanode's most distinctive offering is its historical data indexer: direct ClickHouse SQL access to complete Solana transaction history from January 2024 to real-time. This eliminates the need to build and maintain custom indexing infrastructure — a task that typically requires weeks of engineering effort and significant ongoing operational overhead.

supanode-indexer-query.sqlsql
-- Query all swaps for a specific wallet in the last 30 days
SELECT 
  signature,
  block_time,
  program_id,
  instruction_data,
  pre_balances,
  post_balances
FROM solana.transactions
WHERE 
  account_keys LIKE '%YourWalletAddress%'
  AND block_time > now() - INTERVAL 30 DAY
  AND program_id = '675kPX9MHTjS2zt1qfr1NYHuzeLXfQM9H24wFSUt1Mp8'
ORDER BY block_time DESC
LIMIT 1000;

Dedicated Solana RPC Nodes

For teams requiring maximum performance and isolation, Supanode offers dedicated RPC nodes with custom integrations and priority support. Dedicated nodes start at $1,800/month and include custom location selection, allowing teams to optimize for their specific geographic requirements.

Pricing Structure

Supanode operates a transparent, three-tier pricing model:

PlanPriceIncludes
Free / Try$0/monthOn-demand services, basic RPC, Yellowstone Geyser, WebSocket streaming
RPC + gRPC$200/monthRPC & gRPC endpoints, Ultra-Fast Yellowstone Geyser, WebSocket, community support
Dedicated Node$1,800+/monthDedicated infrastructure, custom integrations, priority support, location on-demand

Infrastructure Philosophy

Supanode's approach is characterized by co-location strategy — placing nodes in the same datacenters as major validator clusters rather than distributing globally for marketing purposes. This results in genuinely lower latency rather than advertised latency. The team's background in on-chain trading means they understand the difference between infrastructure that looks good on paper and infrastructure that performs under real trading conditions.

Supanode offers a free tier with no strict limits — contact them to discuss your specific requirements. This makes it practical to evaluate the service before committing to a paid plan.

Getting Started

Sign up at dashboard.supanode.xyz or contact the team directly via Discord or Telegram. The onboarding process is straightforward: pick your chain, choose your service, get endpoints, and start building.