Bundle Trace

The Bundle-Trace service allows users to check the status of a submitted bundle — whether it was included on-chain, or how it behaved within bloXroute’s internal system.

It provides detailed insights including the bundle hash, block number, simulation results, and visibility across bloXroute and external builders.

Bundle-Trace limits requests to 1 request every 30 seconds and 4 requests per day.

Purchase the Bundle Trace Add-on to increase the limit to 60 requests per day for this endpoint.

Submission Endpoint

  • Method: bscbundletrace

  • Endpoint: https://tools.bloxroute.com

REQUEST

Parameters

Name
Description
Default

auth_header

Allows the user to include the authentication in the URL string directly.

If the authentication is provided in both the header and the URL parameter, the one in the header will be used.

None

block_number

Allows the user to specify the block number they sent the bundle to. In case the bundle was sent to multiple blocks - this parameter is mandatory

None

Examples

curl \
    -X GET \
    -H "Content-Type: application/json" \
    -H "Authorization: <YOUR-AUTHORIZATION-HEADER>" \
    https://tools.bloxroute.com/bscbundletrace/<BUNDLE_HASH>

Potential Responses

Response
Description

bundle is on chain

The bundle is included in the on-chain block

bundle not found in our database. Bundle data might take up to 10 minutes to load.

The bundle hash is not found in our database. Bundle data becomes available in our database 10 minutes after the bundle submission, so If the bundle was sent recently you can try again later.

bloXroute bid did not win

The validator did not choose bloXroute's block.

bundle had an error on initial simulation - [error]

The bundle was not included in the block because it has an error not related to the other bundles and transactions. In case the bundle simulation fails when the bundle is the only bundle at the top of block, we consider it as an initial simulation error. Possible initial simulation errors are: sandwich / frontrun bundles, bundle reverted, transaction nonce too low

builder did not include bundle in the block - [reason]

The builder's winning block does not include this bunle. possible reasons: - bundle sent too late - bundle reverted or conflicted with other bundles/txs - a more efficient arrangement was found that does not include this bundle

Last updated