For the complete documentation index, see llms.txt. This page is also available as Markdown.

Send Bundle

Send Bundle is a bundle sending interface provided by BlockRazor for Solana, used to send signed transactions to the blockchain in bundle form with low latency.

A maximum of four transactions can be sent in a single bundle. These transactions are executed sequentially, and if any one transaction fails, the entire bundle will fail.

To enhance MEV protection, use any valid Solana public key starting with jitodontfront and dontbund1e in the instructions of the first transaction in the bundle. If the transaction is subjected to a frontrun attack, it will be rejected by the Jito/Harmonic block engine.

Endpoint

  • POST /sendBundle

  • gRPC

Transaction Construction Example

Request Parameter

Parameters
Mandatory
Format
Example
Description

transactions

Mandatory

string[]

["$base64_tx_1","$base64_tx_2","$base64_tx_3"]

Fully signed transactions, Base64 encoding protocal

Last updated

Was this helpful?