BlockRazor’s Solana Fast mode routes your transactions through a globally distributed acceleration network with highly staked validators, dramatically reducing the time from submission to on-chain inclusion. Unlike the standard Solana RPC, BlockRazor Fast mode leverages prioritized validator connections to minimize slot delays and improve confirmation rates under network congestion. To use Fast mode, your transaction must include a tip instruction transferring a fee to BlockRazor’s designated tip address — this incentivizes validators to prioritize your transaction. New registered users receive a default rate of 3 TPS.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/BlockRazorinc/docs_en/llms.txt
Use this file to discover all available pages before exploring further.
Endpoint
Authorization header.
Authentication
Your BlockRazor API token as a Bearer token:
Bearer YOUR_AUTH_TOKEN. Obtain your token from the BlockRazor dashboard.Methods
BlockRazor’s Solana Fast endpoint supports two transaction submission methods.- Send Transaction v1
- Send Transaction v2
The standard Fast mode submission method. Build your transaction with a tip instruction included, sign it, and submit using the standard
sendTransaction RPC call format. The tip is embedded directly in the transaction itself and forwarded to BlockRazor’s designated address on-chain.Rate limit for new users: Default 3 TPSRequest Parameters
JSON-RPC version string. Must be
"2.0".The Solana RPC method. Use
"sendTransaction" for both v1 and v2 submission paths.Client-defined request identifier echoed back in the response. Defaults to
1 if omitted.An array where the first element is the base64 or base58-encoded signed transaction, and the second element is an optional configuration object.
Response
The transaction signature (base58-encoded string) assigned to the submitted transaction. Use this signature with
getSignatureStatuses to track confirmation.Present when the submission fails.
Code Examples
Fast mode requires a tip to be included in the transaction itself, sent to BlockRazor’s designated tip address. The tip amount influences validator prioritization — higher tips improve your position in the validator queue during periods of high network congestion.
Rate Limits
| User Type | Rate Limit |
|---|---|
| New registered | 3 TPS (default) |
| Subscribed | Contact BlockRazor for custom limits |
Rate limits for Solana Fast mode can be increased through a subscription. Visit the BlockRazor pricing page to review available plans.