RathRath Finance
Advanced Features

Flashblocks

Ultra-fast transaction execution with sub-50ms latency on Flash-Blocks supported chains using Tachyon's flashblocks feature.

Flashblocks

Ultra-fast transaction execution on Flash-Blocks supported chains with Tachyon's flashblocks feature. Reduce transaction latency from 150ms to under 50ms for lightning-fast user experiences.

Overview

Flashblocks is Tachyon's high-speed transaction type that delivers ultra-low latency execution on Flash-Blocks supported chains. While standard Tachyon transactions already execute in under 150ms, flashblocks push the boundaries further with sub-50ms average latency, making them perfect for real-time applications, gaming, and high-frequency trading where every millisecond counts.

Performance Comparison

Transaction TypeAverage LatencyBest Use Cases
Standard RelayUnder 150msGeneral transactions, DeFi operations
FlashblocksUnder 50msGaming, real-time trading, time-critical operations

Supported Networks

Currently available on:

  • Base Mainnet (Chain ID: 8453)
  • Base Sepolia Testnet (Chain ID: 84532)

Flashblocks support is expanding to all EVM-compatible networks in Tachyon's ecosystem. Additional chains will be added progressively.

Usage

curl -X POST "https://tachyon.rath.fi/api/submit-tx" \
  -H "Content-Type: application/json" \
  -H "api-key: YOUR_API_KEY" \
  -d '{
    "chainId": 8453,
    "to": "0x3dbE34f2C21b3B2980d4dc53f3c7E51e39663F49",
    "value": "1",
    "callData": "0x",
    "gasLimit": "30000",
    "transactionType": "flash-blocks",
    "label": "Ultra-fast transaction"
  }'
import { Tachyon, ChainId } from '@rathfi/tachyon';

const tachyon = new Tachyon({
  apiKey: process.env.TACHYON_API_KEY!
});

const txId = await tachyon.relay({
  chainId: ChainId.BASE,
  to: '0x3dbE34f2C21b3B2980d4dc53f3c7E51e39663F49',
  value: '1',
  callData: '0x',
  transactionType: 'flash-blocks',
  gasLimit: "30000",
  label: 'Flashblocks Transfer'
});

console.log('Transaction submitted:', txId);

Use Cases

  • Gaming: Instant in-game transactions and real-time state updates
  • High-Frequency Trading: Ultra-fast order execution and arbitrage opportunities
  • Live Applications: Real-time chat, social interactions, and instant feedback
  • Time-Critical DeFi: MEV strategies, liquidations, and flash loans
  • Competitive Applications: Any use case where 50ms vs 150ms makes a difference

Key Benefits

  • Sub-50ms Latency: 3x faster than standard Tachyon transactions
  • Enhanced UX: Near-instantaneous transaction confirmations
  • Base Optimized: Specifically designed for Base network infrastructure
  • Same Reliability: Maintains Tachyon's 99.99% success rate

On this page