Submit Signed Transaction
This endpoint is used to submit signed singular transaction.
Request
Method:
POST ./api/v2/submit
Parameters:
transaction
TransactionMessage
See TransactionMesssage
below
skipPreFlight
boolean
OPTIONAL. Useful for disabling transaction simulation before actual submission. true
or false
, Default False
frontRunningProtection
boolean
OPTIONAL. Specify if you would like to enable the Front-Running Protection feature. The transaction must include an Tip
instruction to pay for the service fee. You can include an Tip
instruction but set this field to False
. In this case, Trader API will propagate to both Jito and publicly. Default False
.
fastBestEffort
boolean
OPTIONAL. This is an optional parameter that effects the behavior of frontRunningProtection
which must be set to True to use this feature. Enabling this parameter will allow you to submit your transaction not only to the Jito but also to bloXroute-identified low-risk validators.
useStakedRPCs
boolean
OPTIONAL. An tip
instruction with a minimum of 0.001 SOL is required and frontRunningProtection
must be set to False to use this feature. When enabled, Trader API will use weighted stake qOS to submit your transaction to the Leader. The cost will be 10% of the tip
amount.
sniping
boolean
OPTIONAL. This parameter is available for any user with a tier of Enterprise Elite and above. Optimized to enhance token snipping use case.
allowBackRun
boolean
OPTIONAL. Specify if you would like to enable OFA(Order Flow Auction) submission option. Transaction will be sent to OFA MEV searcher. If there was any MEV profit, you will receive part of the MEV profit back as a rebate.
revenueAddress
string
OPTIONAL. Specify this field ONLY when you enable the allowBackRun
parameter. The MEV rebate will be send to the specified address.
TransactionMessage
content
txbase64Payload
Raw bytes of signed transaction.
Request example:
Response:
Fields:
signature
string
Solana signature of the submitted transaction
Example:
You can look up this signature in a Solana Explorer like SolScan or Solana Explorer.
Last updated