Jito Transactions
For single transaction-related methods, using your Backpac load balancer RPC endpoint. Backpac automatically forwards JSON-RPC sendTransaction
RPC method request to Jito URL path /api/v1/transactions. Just send your JSON-RPC requests to your Backpac RPC endpoint with your API Key and Backpac handles the rest.
Endpoint
URL: https://solana-mainnet.backpac.xyz/{YOUR_API_KEY}
Method: POST
sendTransaction
This method acts as a direct proxy to the Solana sendTransaction
RPC method but forwards your transaction directly to the validator. By default, it submits the transaction with MEV protection.
Note:
Jito enforces a minimum tip of 1000 lamports for bundles. During high-demand periods, this minimum tip might not be sufficient to successfully navigate the auction. Therefore, it’s crucial to set both a priority fee and an additional Jito tip to optimize your transaction’s chances. For more information, see Tip Amounts.
For cost efficiency, you can enable revert protection by setting the query parameter bundleOnly=true
. With this setting, the transaction is sent exclusively as a single transaction bundle.
Additionally, this method always sets skip_preflight=true
, which means the transaction won’t be simulated in the RPC before being sent to the leader.
Request
Parameter | Type | Description |
---|---|---|
params | string | REQUIRED: First Transaction Signature embedded in the transaction, as base58 (slow, DEPRECATED) or base64 encoded string. |
encoding | string | OPTIONAL: Encoding used for the transaction data. Values: base58 (slow, DEPRECATED) or base64 . Default: base58 . |
Request Example (base64)
curl https://solana-mainnet.backpac.xyz/{YOUR_API_KEY} -X POST -H "Content-Type: application/json" -d '
{
"id": 1,
"jsonrpc": "2.0",
"method": "sendTransaction",
"params": [
"AVXo5X7UNzpuOmYzkZ+fqHDGiRLTSMlWlUCcZKzEV5CIKlrdvZa3/2GrJJfPrXgZqJbYDaGiOnP99tI/sRJfiwwBAAEDRQ/n5E5CLbMbHanUG3+iVvBAWZu0WFM6NoB5xfybQ7kNwwgfIhv6odn2qTUu/gOisDtaeCW1qlwW/gx3ccr/4wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvsInicc+E3IZzLqeA+iM5cn9kSaeFzOuClz1Z2kZQy0BAgIAAQwCAAAAAPIFKgEAAAA=",
{
"encoding": "base64"
}
]
}'
Request Example (base58)
curl https://solana-mainnet.backpac.xyz/{YOUR_API_KEY} -X POST -H "Content-Type: application/json" -d '
{
"jsonrpc": "2.0",
"id": 1,
"method": "sendTransaction",
"params": [
"4hXTCkRzt9WyecNzV1XPgCDfGAZzQKNxLXgynz5QDuWWPSAZBZSHptvWRL3BjCvzUXRdKvHL2b7yGrRQcWyaqsaBCncVG7BFggS8w9snUts67BSh3EqKpXLUm5UMHfD7ZBe9GhARjbNQMLJ1QD3Spr6oMTBU6EhdB4RD8CP2xUxr2u3d6fos36PD98XS6oX8TQjLpsMwncs5DAMiD4nNnR8NBfyghGCWvCVifVwvA8B8TJxE1aiyiv2L429BCWfyzAme5sZW8rDb14NeCQHhZbtNqfXhcp2tAnaAT"
]
}'
Response
Field | Type | Description |
---|---|---|
result | string | The result will be the same as described in the Solana RPC documentation. If sending as a bundle was successful, you can get the bundle_id from the x-bundle-id HTTP header in the response. |
Response Example
{
"jsonrpc": "2.0",
"result": "2id3YC2jK9G5Wo2phDx4gJVAew8DcY5NAojnVuao8rkxwPYPe8cSwE5GzhEgJA2y8fVjDEo6iR6ykBvDxrTQrtpb",
"id": 1
}