Quick Start
Send your first accelerated Solana transaction with ZAN Trading Boost in under 5 minutes
Prerequisites
- ZAN account and API Key — Get API Key
- A funded Solana wallet (requires SOL for transactions + tips)
Step 1: Choose an Endpoint
Select the region closest to you. We recommend HTTP for lowest latency:
Why HTTP instead of HTTPS?
In high-frequency trading environments, milliseconds matter. Standard HTTPS communication adds ~20ms of TLS handshake overhead. For a high-performance blockchain like Solana, this 20ms delay can mean:
- Missing trading opportunities
- Transactions being preempted by faster nodes
- Disadvantage during market volatility
Note:For a complete endpoint list, see Endpoints & Regions .
Step 2: Add Tip Instruction
In your transaction, add a SOL transfer to ZAN's tip account:
- Tip Account: 7HkiWXe5deJvzn4D6kgMUFCADwX9Z4DMrdjNSSxN6bPp
- Minimum Tip: 0.0003 SOL (300,000 lamports)
Higher tips = higher priority. Tips are only deducted when transactions successfully reach the chain.
Step 3: Send Transaction
Use the standard sendTransaction JSON-RPC method:
curl -X POST 'http://booster-sg.zan.top/node/v1/solana/mainnet/<YOUR_API_KEY>/tips' \
-H 'Content-Type: application/json' \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "sendTransaction",
"params": [
"<BASE64_ENCODED_SIGNED_TRANSACTION>",
{
"encoding": "base64",
"skipPreflight": true
}
]
}'
Step 4: Verify Confirmation
To check if your transaction was accelerated:
Go to ZAN User Console → SOL Trading → Overview → Tips View → Consumption Details
Search by transaction hash:
- Found = Transaction was accelerated
- Not found = Transaction went through standard path
Next Steps
- Review the complete Tips Mode Integration Guide (with multi-language code examples)
- Enable MEV Protection to prevent front-running attacks
- Check the sendTransaction API Reference
- Having issues? Refer to Debugging Guide
Updated about 2 hours ago
