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

Call Bundle

Introduction to Call Bundle of BlockRazor Block Builder and integration methods

Introduction

This API is used to receive requests for simulating bundles. The method name is eth_callBundle.

Price

Call Bundle is only included in the Package; please go to the Pricing page to purchase the Package. Rate limit default to 1 TPS.

Request Parameter

Parameters
Mandatory
Format
Example
Description

txs

Mandatory

array[hex]

["0x…4b", "0x…5c"]

List of signed raw transactions

blockNumber

Mandatory

number

39177941

Current block number + 1

Request Example

curl https://virginia.builder.blockrazor.io \
  -H 'content-type: application/json' \
  -H 'Authorization: <auth-token>' \
  --data '{
  "jsonrpc": "2.0",
  "id": "1",
  "method": "eth_callBundle",
  "params": [
    {
      "txs":["0x…4b"],
      "blockNumber":39177941
    }
  ]
  }'

Response Example

Success

Error

Last updated

Was this helpful?