/lightspeed
Submits a signed transaction with priority processing through the Lightspeed validator network. This endpoint provides accelerated transaction landing times through a tip-based priority system.
Requirements:
Transaction must include a system transfer instruction sending at least 0.0001 SOL (100,000 lamports) to one of the Lightspeed tip addresses
Must set
skipPreflight: true
in the configuration optionsTransaction must be fully signed and serialized
Lightspeed Tip Addresses:
53PhM3UTdMQWu5t81wcd35AHGc5xpmHoRjem7GQPvXjA
9tYF5yPDC1NP8s6diiB3kAX6ZZnva9DM3iDwJkBRarBB
Performance: Larger tips translate to faster transaction processing times. The minimum tip of 0.0001 SOL provides baseline priority, while tips higher than 0.001 SOL increase processing speed significantly.
Keep-Alive: Use the getHealth
RPC call to maintain your connection to the Lightspeed endpoint.
JSON-RPC protocol version
2.0
Possible values: Request identifier that will be returned in the response
1
The RPC method name (always "sendTransaction" for Lightspeed)
sendTransaction
Possible values: Successful Response
Unauthorized
Forbidden
Too Many Requests
Internal Server Error
curl -X POST https://basic.swqos.solanavibestation.com/lightspeed \
-H "Content-Type: application/json" \
-H "Authorization: your-api-key-here" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "sendTransaction",
"params": [
"4hXTCkRzt9WyecNzV1XPgCDfGAZzQKNxLXgynz5QDuWWPSAZBZSHptvWRL3BjCvzUXRdKvHL2b7yGrRQcWyaqsaBCncVG7BFggS8w9snUts67BSh3EqKpXLUm5UMHfD7ZBe9GhARjbNQMLJ1QD3Spr6REFY9Vw6y4jTvVwjNyKjFg0G5rucCjJ9a2Cf3sKKkgJfS2dWWEJB6gq7s7wSQ4gZzJYBHDnQ8sSg9a9kGKKz6Dcs",
{
"encoding": "base58",
"skipPreflight": true,
"maxRetries": 0
}
]
}'
{
"jsonrpc": "2.0",
"result": "2id3YC2jK9G5Wb2GmXYhqJqhb5S1n9mfK8ydGT6YWq9DJNWjPvAo1e5uDYKKxe8Y2k1Vp4nUJGHG9xEJT1m4F9G",
"id": 1
}
Last updated