TaifoonTAIFOON
TaifoonTAIFOON
TAIFOON PROTOCOL — TRADERS QUICKSTART

5-Minute Trader Quickstart

Subscribe to real-time cross-chain signals with cryptographic proofs. Perfect for arbitrage bots, market makers, and quant systems.

<100ms
Latency
15+
Signals Available
38
Chains
01

Get Your API Key

Sign up and grab your API key from the dashboard:

bash
# Visit https://app.taifoon.dev/api-keys
# Copy your API key

export TAIFOON_API_KEY="tfn_live_..."  # Your key
02

Install Signal SDK

Install the Taifoon SDK for your trading bot:

bash
npm install @taifoon/sdk
# or
pip install taifoon-signals  # Python
03

Subscribe to Price Signals

Connect to the signal stream and get real-time price data:

typescript
import { SignalClient } from '@taifoon/sdk/signals';

const signals = new TaifoonSignals({
  apiKey: process.env.TAIFOON_API_KEY
});

// Subscribe to ETH/USDC price across chains
await signals.subscribe('price', {
  pair: 'ETH/USDC',
  chains: [1, 42161, 8453, 10],  // Ethereum, Arbitrum, Base, Optimism
  interval: '1s',  // 1 second updates
});

// Listen for price updates
signals.on('price', (signal) => {
  console.log(`Chain ${signal.chainId}: $${signal.price}`);
  console.log(`Proof: ${signal.proof}`);  // Cryptographic proof

  // Check for arbitrage opportunity
  checkArbitrage(signal);
});
04

Execute Verified Arbitrage

Use the proof to execute trades with on-chain verification:

typescript
async function checkArbitrage(signal) {
  const { chainId, price, proof } = signal;

  // Compare with other chains
  const opportunity = findBestOpportunity(price, chainId);

  if (opportunity.profitBps > 50) {  // >0.5% profit
    // Execute cross-chain arbitrage
    const tx = await arbitrageContract.executeArbitrage({
      sourceChain: chainId,
      targetChain: opportunity.targetChain,
      amount: parseEther('1.0'),
      proof: proof,  // ✅ Cryptographically verified price
    });

    console.log('Arbitrage executed:', tx.hash);
  }
}

// ✅ Proof guarantees:
// - Price is accurate (can't be manipulated)
// - Timing is verifiable (exact block timestamp)
// - Execution can be proven on-chain

You're Trading!

Your bot is now receiving verifiable cross-chain signals with <100ms latency. Every trade execution includes cryptographic proof for audits and compliance.

Available Signals

Price Feeds (DEX/CEX)
Gas Price Oracle
Liquidity Depth
Block Confirmation
MEV Opportunity
Cross-Chain Balance