BlockRazor’s BSC Fast mode accelerates transaction submission by routing signed transactions through a globally distributed high-performance network with direct, low-latency connections to BSC validators. Compared to submitting through a standard public RPC node, Fast mode reduces the time from submission to block inclusion by bypassing conventional gossip propagation. New registered users receive a default throughput of 10 TPS. Three submission variants are available depending on your use case and tip configuration.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 formatted as a Bearer token:
Bearer YOUR_AUTH_TOKEN. Obtain your token from the BlockRazor dashboard.Submission Variants
BlockRazor’s BSC Fast endpoint supports three methods for transaction submission. Each trades off tip requirements and rate limits differently.- eth_sendRawTransaction
- eth_sendRawTransaction v2
- Fast-Tx (SendTx)
The standard Fast mode submission path. Submit a signed transaction that includes a tip to BlockRazor’s designated address embedded in the transaction itself. The tip incentivizes validator prioritization and maximizes the speed of block inclusion.
- Method:
eth_sendRawTransaction - Tip required: Yes — include a BNB transfer to BlockRazor’s tip address
- Default rate: 10 TPS for new registered users
Request Parameters
JSON-RPC version string. Must be
"2.0".The RPC method for transaction submission:
"eth_sendRawTransaction".Array with one element — the signed transaction data.
Client-chosen request ID echoed in the response.
Response
The 32-byte transaction hash (
0x-prefixed hex string) for the submitted transaction. Use eth_getTransactionReceipt to check confirmation status.Present when the submission fails.
Examples
For
eth_sendRawTransaction and v2, you must include a BNB transfer to BlockRazor’s designated tip address within the transaction. Transactions submitted without a tip via these methods will not be prioritized and may be rejected by the Fast mode routing layer.Rate Limits
| Variant | New User Limit | Subscribed Limit |
|---|---|---|
eth_sendRawTransaction | 10 TPS (default) | Custom |
eth_sendRawTransaction v2 | 10 TPS (default) | Custom |
| Fast-Tx (SendTx) | 10 txs / 5s, 10 txs / day | $500/month (no limits) |
The Fast-Tx subscription service ($500/month) removes the daily and per-window rate limits for SendTx and enables high-throughput transaction propagation using BlockRazor’s high-performance network. Visit the BlockRazor pricing page for details.