Production-grade transaction analytics powered by Sanctum Gateway
Solana developers face a critical trade-off between transaction cost and security
Jito bundles provide MEV protection but cost 0.001 SOL per transaction - expensive at scale. For high-volume protocols like Jupiter processing millions of transactions, this adds up to hundreds of thousands of dollars annually.
Direct RPC is cheap (~0.000005 SOL base fee) but offers no MEV protection - transactions can be front-run by arbitrage bots, leading to value extraction and poor execution prices for users.
Developers lack comprehensive analytics on delivery methods and cost optimization. Without visibility into which method was used, success rates, and actual costs, optimizing transaction strategy is guesswork.
Comprehensive analytics platform powered by Sanctum Gateway
Smart routing across multiple delivery methods (RPC, Jito, Sanctum Sender) - Gateway intelligently selects optimal path based on transaction characteristics. Automatic cost optimization with access to proprietary Sanctum Sender.
Monitor any Solana wallet, track transactions in real-time via WebSocket, compare costs across all delivery methods. Historical data with 17 interactive charts for deep analysis.
Gateway's tip-based model (0.0001 SOL/tx) is 10x cheaper than Circular FAST (0.001 SOL/tx). For 10k transactions: Gateway = $190, Circular = $1,900. $1,710 savings! 🎉
TypeScript strict mode (0 errors), 10 REST APIs, 17 interactive charts, PostgreSQL + Redis caching, WebSocket real-time, Helius RPC, 100% feature complete.
Watch the complete walkthrough of Gateway Insights features, integrations, and value proposition
Complete walkthrough of Gateway Insights features
buildGatewayTransaction + sendTransaction in action
Live WebSocket updates with 17 interactive charts
90.91% savings vs always-using-Jito demonstrated
Monitor any Solana address without wallet connection
Explore the live application, view source code, and verify mainnet transactions
Using Official Sanctum Gateway SDK on Mainnet
// src/backend/gateway/client.ts
import { Gateway } from '@sanctum/gateway-sdk'; // ← Official SDK
export const gatewayClient = new Gateway({
apiKey: process.env.GATEWAY_API_KEY!,
network: 'mainnet-beta',
});
// src/backend/services/transaction-service.ts
export async function submitTransaction(params: TransactionParams) {
// Gateway handles ALL transaction submission
const result = await gatewayClient.sendTransaction(params.transaction);
// Capture Gateway-exclusive metadata
await transactionDAL.create({
signature: result.signature,
delivery_method: result.deliveryMethod, // ← Gateway exclusive
cost_lamports: result.cost * LAMPORTS_PER_SOL,
tip_refunded: result.tipRefunded, // ← Gateway exclusive
response_time_ms: result.responseTimeMs, // ← Gateway exclusive
status: result.success ? 'confirmed' : 'failed',
});
return result;
}11 Confirmed Transactions
All transactions verifiable on Solana blockchain
Like other smart transaction routers (Circular FAST, Triton Cascade), Gateway uses a tip-based pricing model - but at dramatically lower costs
| Feature | Sanctum Gateway | Circular FAST | Triton RPC |
|---|---|---|---|
| Tip per Transaction | 0.0001 SOL | 0.001 SOL | Variable |
| Tip Structure | Automatic | Manual | Manual |
| 10k Transactions Cost | 1 SOL (~$190) | 10 SOL (~$1,900) | Depends |
| Savings vs Circular | $1,710 (90%) | Baseline | N/A |
Unlike competitors where you must manually construct tip transfer instructions, Gateway automatically adds tip and optimization instructions via buildGatewayTransaction - transforming your simple transaction into an optimized multi-instruction transaction without extra code.
Real-world performance metrics from production
Cost Savings vs Always-Using-Jito
Success Rate (sanctum-sender)
Average API Response Time
Mainnet Transactions Tracked
Smart Dual-Submission
Submits to both Jito and RPC simultaneously, keeps whichever confirms first. This strategy provides best-of-both-worlds - MEV protection from Jito, cost efficiency from RPC.
Automatic Refunds
When RPC wins, Jito tip is refunded - you get Jito-level MEV protection at RPC-level costs. This is how Gateway achieves 90.91% savings compared to always using Jito.
0.0001 SOL Fixed Fee
Gateway's fixed fee is 90% cheaper than Jito's 0.001 SOL tip. For high-volume protocols, this translates to hundreds of thousands of dollars in annual savings.
Production-grade full-stack implementation
What makes Gateway Insights stand out
Monitor ANY Solana wallet address in real-time. Track transactions as they happen with WebSocket updates. No wallet connection required.
Compare RPC vs Jito vs Gateway costs side-by-side. See exactly where savings come from with visual breakdowns.
For wallet-monitored transactions, calculate potential savings if they had used Gateway instead of their actual delivery method.
Real-time health monitoring with error categorization, warning levels, and automatic failure analysis across delivery methods.
Export analytics data in CSV or JSON format for further analysis, reporting, or integration with other tools.
Cost trends, success rates, delivery methods, failure analysis, response times, and historical comparisons - all visualized.
Explore the production-ready platform
Who benefits from Gateway Insights?
Optimize Transaction Costs
Understand exact cost breakdown across delivery methods and identify savings opportunities
Monitor Gateway Performance
Track success rates, response times, and delivery method effectiveness in real-time
Debug Transaction Issues
Comprehensive error categorization and failure analysis to quickly identify problems
Cost Attribution
Track which delivery methods are being used and their associated costs
Performance Benchmarking
Compare Gateway against direct Jito or RPC to validate value proposition
Wallet Analysis
Monitor competitor wallets or analyze user transaction patterns
Sanctum Gateway enables hundreds of thousands of dollars in annual savings for high-volume protocols like Jupiter through intelligent dual-submission and automatic refunds.
Our platform makes these savings visible and trackable for any developer or protocol using Gateway.
Modern, production-grade architecture
Gateway Insights demonstrates the power of Sanctum Gateway through production-ready analytics, real-world mainnet transactions, and comprehensive cost optimization.
Gateway Insights - Sanctum Gateway Track Submission
Colosseum Cypherpunk Hackathon