🔥 Trading Boost

Integration mode

We provide two integration methods, Tips and Points, which you can choose flexibly according to your business needs:

Payment MethodDescriptionAdvantagesUse Cases
TipsPay Tips (minimum 0.0003 SOL) to designated accounts to accelerate transactions, with transaction prioritization determined by the Tips bid amount.
  • Flexible bidding mechanism
  • Low single-payment threshold
  • Pay-per-use based on actual acceleration needs
  • User-side highly customizable acceleration strategies
  • Complex business logic requiring dynamic priority adjustment
PointsPre-purchase Points credits. Acceleration fees are deducted asynchronously upon transaction acceleration, with prioritization determined by predefined request tiers.
  • Fixed and transparent pricing
  • Simplified usage logic
  • Fewer system dependencies
  • User-side straightforward requirements and simple configuration
  • Businesses prioritizing operational simplicity and stable processes

What is Solana Trading Boost?

Solana Trading Boost leverages SWQoS (Stake-Weighted Quality of Service) technology and ZAN's staked validator nodes to significantly enhance transaction success rates and speed on the Solana blockchain.

Key Features:

  • Priority Channels: Tier-based dedicated bandwidth allocation
  • Ultra-Low Latency: Prime: 95% transactions confirmed in ≤1 second
  • 🛡️ MEV Protection (Beta): Prevents malicious front-running
  • 📊 Real-Time Analytics: Success rate, latency, and consumption metrics

Technical Principle: SWQoS Documentation


How to Use?

Tips Integration

Prerequisites

📘

Note:

Before selecting the Tips integration method, please contact us in advance to have the permissions activated for your account.

Endpoints

If using the Tips integration method, please select from the following domains:

http://booster-sg.zan.top/node/v1/solana/mainnet/<your_AK>   # Singapore Region

MEV Protection

🚧

Important Note:

The Tips integration method currently does not support MEV protection functionality. This feature is under active development.

API Implementation

The Tips integration method is similar to standard SendTransaction, but requires transferring an amount ≥ 0.0003 SOL to one of the following accounts:

  • CEWud6sUrg85auffmvG55cVhGjDbFCGC2HvhGeagd7St

Code Example (curl):

curl -X POST 'http://booster-sg.zan.top/node/v1/solana/mainnet/{apiKey}' \
-H 'Content-Type: application/json' \
-d '{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "sendTransaction",
  "params": [
    "<base64_encoded_tx>",
    { "encoding": "base64" }
  ]
}'

Tips Transfer Code Example:

transaction.addInstruction(SystemProgram.transfer(fromPublicKey, 'CEWud6sUrg85auffmvG55cVhGjDbFCGC2HvhGeagd7St', 3000000));

Points Integration

Endpoints

Region-specific endpoints for optimal performance:

https://api.zan.top/node/v1/solana/mainnet/<your_AK>/prime   # Singapore
https://api-us.zan.top/node/v1/solana/mainnet/<your_AK>/prime  # Virginia
ParameterDescriptionValues
levelAcceleration tierprime (0.5u),
turbo (0.3u),
standard (0.1u)
?isMevMEV Protectiontrue (enable),
false /omit (disable)

📘

Note:

📌 Transactions default to standard (non-accelerated) without tier parameter.

MEV Protection

To activate MEV protection (at no additional cost), append ?isMev=true to your endpoint URL when initiating transactions.

Example: https://api.zan.top/node/v1/solana/mainnet/<your_AK>/prime?isMev=true

While MEV protection safeguards against transaction front-running, its cryptographic verification process may introduce marginal latency during peak network congestion. We recommend:

  • Benchmarking with/without MEV for your specific use case
  • Reserving activation for high-value transactions where security > speed
  • Monitoring real-time latency metrics via the ZAN Dashboard

API Implementation

To minimize implementation costs, the product follows the same usage pattern as conventional SendTransaction methods. For detailed usage instructions, refer to: ZAN API Documentation.

Python request example:

import requests

url = "https://api.zan.top/node/v1/solana/mainnet/public"

payload = {
    "id": 1,
    "jsonrpc": "2.0",
    "method": "sendTransaction"
}
headers = {
    "accept": "application/json",
    "content-type": "application/json"
}

response = requests.post(url, json=payload, headers=headers)

print(response.text)

How to Purchase?

Tips System

Refer to the How to Use section above for implementation details. Additionally, you must transfer a minimum amount of 0.0003 SOL to one of the following designated accounts:

  • CEWud6sUrg85auffmvG55cVhGjDbFCGC2HvhGeagd7St

Points System

  • 1 Point = $0.1 USD (dedicated resource unit)
    When using Trading Boost, Points are consumed, with different consumption rates based on priority tiers.
  • Billing Logic:
    • Deducted only upon successful on-chain confirmation
    • Auto-fallback to standard transactions when balance insufficient

Service Tiers

TierPriorityPoints Cost
PrimeDedicated channel5 Points (0.5u)
TurboHigh priority3 Points (0.3u)
StandardShared channel1 Point (0.1u)

Throughput Limits

  • Shared Infrastructure: To minimize operational overhead, Trading Boost shares API Keys (AK) and throughput limits with your existing Chain RPC service.
  • Throughput limit Upgrade Path: If your application requires higher Throughput limit:
  • Fail-Safe Protocol: Transactions exceeding allocated limits automatically revert to standard non-accelerated processing.

Monitoring & Diagnostics

Dashboard

Points View

Log in to the ZAN User PortalSOL TradingOverviewPoints View.

Tips View

Log in to the ZAN User PortalSOL TradingOverviewTips View.

Key Metrics

MetricDescription
Success RateTier-specific confirmation rate
On-Chain TimeSubmission → On-chain time (excluding the transmission time of client -> ZAN)
Remaining PointsReal-time resource availability (available with Points integration only)

Transaction Verification

  1. Go to Consumption Details in SOL Trading Boost module.
  2. Search by transaction hash.


    📘

    Note:

    Absence indicates non-accelerated transaction

FAQ & Support

Q1: Why might (transaction) boost fail?

  • Insufficient Points balance
  • Exceeding TPS limits

Q2: How to verify boost status?

Check hash in Consumption Details (missing = not boosted)

Q3: Is testnet supported?

Currently unavailable


Support Channels

For any technical issues or questions during product usage, please contact our support team through our official channels: Telegram | Discord | Feedback Portal. We will provide prompt assistance and support.