Skip to main content

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.

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.

How Fast Mode Works

1

Build 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.

Supported Chains & Rate Limits

Solana

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.

Sending a Fast Transaction

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.

cURL

curl -X POST https://fast.blockrazor.io/bsc \
  -H 'Content-Type: application/json' \
  -H 'Authorization: Bearer YOUR_AUTH_TOKEN' \
  -d '{
    "jsonrpc": "2.0",
    "method": "eth_sendRawTransaction",
    "params": ["0xSIGNED_TX_HEX_WITH_TIP"],
    "id": 1
  }'

ethers.js

import { ethers } from "ethers";

// Connect to BlockRazor Fast endpoint for BSC
const 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);

Batch Submission (v2)

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 transactions
const signedTxs = ["0xSIGNED_TX_1", "0xSIGNED_TX_2"];

const result = await provider.send("eth_sendRawTransaction", signedTxs);
console.log("Batch submitted:", result);

API Reference

Solana Send Transaction

Full parameter reference for Solana Fast submission.

BSC eth_sendRawTransaction

Full parameter reference for BSC Fast submission.

Sui ExecuteTransactionBlock

Full parameter reference for Sui Fast submission.

Build docs developers (and LLMs) love