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

Trace Bundle

Introduction to Trace Bundle of BlockRazor Block Builder and integration methods

Introduction

This method supports querying the current status of the bundle by bundle hash. Please query 5 minutes after sending the bundle to the builder. Endpoint: https://bsc-bundle-stats.blockrazor.io/

Price

Users who purchase the Trace Bundle service can also access the Bundle Explorer in the console.

User Type
Limit
Price

Paid User

1000 txs / day

$1500 / month

Request Parameter

Parameters
Mandatory
Format
Example
Description

hash

Mandatory

hash

0x25f9……317097

bundle hash

Request Example

curl -X GET "https://bsc-bundle-stats.blockrazor.io/bundlestate?hash=0x25f9fc35e978709195c00e864b9a19fb41ad5c5c5b8a3e003813ae9727317097" \
     -H "Content-Type: application/json" \
     -H "Authorization: M2ZiZj……JhODA1"

Response Example

Success

{
  "bundle": {
    "timestamp": "2025-04-07T09:04:40Z", // The time when the builder receives the bundle (UTC)
    "bundleHash": "0x25f9fc35e978709195c00e864b9a19fb41ad5c5c5b8a3e003813ae9727317097", // bundle hash
    "state": "onchain", // bundle is included on chain
    "blockNumber": 48144954, // The block number where the bundle is located
    "priority": "358911000000000" // bundle value, in wei
  }
}

Error

Last updated

Was this helpful?