⚑SOL Fast Mode RPC

Fast confirmation speed for transactions on the Solana Network

This RPC URL can only process sendTransaction request at the moment. As a result, adding this endpoint to a wallet application may not work.

SOL Fast Mode RPC offers a reliable way for transactions to land on chain quickly on the Solana Mainnet Beta network. This endpoint focuses on speed: bloXroute attempts to send the transactions to as many validators as possible to reduce transaction confirmation time, and there is no front-running protection mechanism for this endpoint.

Sample Request to Submit Transaction

# request syntax follows official solana http rpc specs
curl https://sol.rpc.blxrbdn.com -s -X POST -H "Content-Type: application/json" -d '
  {
    "jsonrpc": "2.0",
    "id": 1,
    "method": "sendTransaction",
    "params": [
      "4hXT...naAT"
    ]
  }
'

Last updated