Use this file to discover all available pages before exploring further.
BlockRazor’s RPC mode is the most straightforward way to submit transactions to supported networks. It exposes the full suite of standard JSON-RPC methods — including eth_sendRawTransaction — while layering in MEV protection and real-time rebate support on top of your existing workflow. Because the interface is 100% JSON-RPC compatible, migrating from a public RPC endpoint requires nothing more than swapping the URL.
Full JSON-RPC method support including eth_sendRawTransaction. No rate limits for new registered users.
Ethereum
Full JSON-RPC method support including eth_sendRawTransaction. No rate limits for new registered users.
Base
Supports eth_sendRawTransaction. New users are rate-limited to 1 Tx / 5 seconds.
Monad
Standard JSON-RPC submission with BlockRazor’s acceleration network. Coming soon.
New registered users on BSC and Ethereum have no rate limits. Base is restricted to 1 transaction every 5 seconds for new accounts. Subscribe to a plan to remove limits and unlock higher throughput.
import { ethers } from "ethers";const provider = new ethers.JsonRpcProvider( "https://rpc.blockrazor.io/base?auth=YOUR_AUTH_TOKEN");const wallet = new ethers.Wallet("YOUR_PRIVATE_KEY", provider);const tx = await wallet.sendTransaction({ to: "0xRECIPIENT_ADDRESS", value: ethers.parseEther("0.01"),});console.log("Transaction hash:", tx.hash);await tx.wait();console.log("Transaction confirmed!");
Base RPC is limited to 1 transaction every 5 seconds for new registered users. Subscribe to the Base RPC-Send Tx plan ($1,000/month) to increase your throughput.
Submit a signed, serialized transaction. The primary method for all EVM-compatible chains.
eth_getTransactionReceipt
Poll for transaction status and retrieve block inclusion details after submission.
eth_blockNumber
Retrieve the latest confirmed block number on the target chain.
eth_call
Execute a read-only contract call without broadcasting a transaction.
BlockRazor’s RPC mode supports the full Ethereum JSON-RPC specification. Any method valid on the target chain’s native RPC is also valid on the BlockRazor endpoint.