Use this file to discover all available pages before exploring further.
BlockRazor’s Fast mode is purpose-built for applications where latency is the difference between a successful trade and a missed opportunity. It routes your transactions through a globally distributed acceleration network, delivering them simultaneously to highly staked validators for rapid on-chain inclusion. Rather than paying gas through the standard fee market, Fast mode embeds the tip directly inside the transaction itself — forwarded to a designated address — giving validators a direct incentive to prioritize your transaction.
Construct a standard signed transaction for your target chain, embedding the tip payment to BlockRazor’s designated tip address inside the transaction body.
2
Submit to BlockRazor's Fast endpoint
Send the signed transaction to the BlockRazor Fast API. Your request is instantly fanned out across BlockRazor’s globally distributed relay nodes.
3
Validator delivery & block inclusion
BlockRazor forwards the transaction to a network of highly staked validators simultaneously. The embedded tip incentivizes validators to include your transaction in the next available block.
In Fast mode, the tip is not paid as a separate EIP-1559 priority fee — it must be embedded within the transaction itself as a transfer to BlockRazor’s designated tip address. Refer to the API reference for each chain’s tip address.
Send Transaction and Send Transaction v2. Default limit for new users: 3 TPS.
BSC
eth_sendRawTransaction and eth_sendRawTransaction v2. Default limit for new users: 10 TPS.
Base
eth_sendRawTransaction. Default limit for new users: 10 TPS.
Sui
ExecuteTransactionBlock. Contact BlockRazor for limit details.
Monad
Standard transaction submission via the Fast acceleration network. Coming soon.
New registered users can also use SendTx — a tip-free variant of Fast mode — with a limit of 10 transactions per 5 seconds and 10 transactions per day. This is a great way to evaluate the service before subscribing. The full Fast-Tx plan for BSC is $500/month.
On BSC, Fast mode uses the standard eth_sendRawTransaction JSON-RPC method. The tip must be included as a value transfer to BlockRazor’s designated BSC tip address within the same transaction or as a separate transaction in the batch.
import { ethers } from "ethers";// Connect to BlockRazor Fast endpoint for BSCconst provider = new ethers.JsonRpcProvider( "https://fast.blockrazor.io/bsc?auth=YOUR_AUTH_TOKEN");const wallet = new ethers.Wallet("YOUR_PRIVATE_KEY", provider);// The tip transfer to BlockRazor's designated address must be// embedded within the transaction itself.const tx = await wallet.sendTransaction({ to: "0xBLOCKRAZOR_TIP_ADDRESS", value: ethers.parseEther("0.001"), // tip amount});console.log("Fast transaction submitted:", tx.hash);await tx.wait();console.log("Transaction confirmed in block:", tx.blockNumber);
import { ethers } from "ethers";const provider = new ethers.JsonRpcProvider( "https://fast.blockrazor.io/bsc?auth=YOUR_AUTH_TOKEN");// eth_sendRawTransaction v2 accepts an array of signed transactionsconst signedTxs = ["0xSIGNED_TX_1", "0xSIGNED_TX_2"];const result = await provider.send("eth_sendRawTransaction", signedTxs);console.log("Batch submitted:", result);
On Solana, Fast mode accepts standard base-64 encoded signed transactions. The tip is embedded as a SOL transfer to BlockRazor’s Solana tip account within the transaction instructions.