eth_callBundle
Base / https://triport.io/r/{key}/rpc/base
Minimum tier: Reference only
Last updated:
v3t9 accepted_by=[]; six invalid-params responses. callBundle fails signed-tx decoding; simulate forms remain invalid/calls empty. 1/20 and 2/2 are journal/parser classifications, not successful simulations or a stable oracle. Primary records mention this exact method/channel or related source spelling. Stored results/labels and script recipes lack a complete recorded request+successful response pair; no blanket provider availability inferred. Search terms are provenance crosswalk only, not enabled wire aliases. Availability is the frozen baseline, not deployed readiness. documented is the contract floor; evidence_kind retains unknown/source_summary.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| bundle | object | Yes | |
| block | BaseR03_blockTag | Yes |
Returns
| Field | Type |
|---|---|
| unavailable | object |
Examples
curl https://triport.io/r/{key}/rpc/base \
-X POST -H 'Content-Type: application/json' \
-H 'Authorization: Bearer <api-key>' \
-d '{"jsonrpc":"2.0","id":1,"method":"eth_callBundle","params":["<bundle>","<block>"]}'const res = await fetch("https://triport.io/r/{key}/rpc/base", {
method: "POST",
headers: { "Content-Type": "application/json", Authorization: "Bearer <api-key>" },
body: JSON.stringify({
"jsonrpc": "2.0",
"id": 1,
"method": "eth_callBundle",
"params": [
"<bundle>",
"<block>"
]
}),
});
const data = await res.json();import requests
resp = requests.post(
"https://triport.io/r/{key}/rpc/base",
headers={"Authorization": "Bearer <api-key>"},
json={"jsonrpc":"2.0","id":1,"method":"eth_callBundle","params":["<bundle>","<block>"]},
)
print(resp.json())Usage
- Transport: HTTP (JSON-RPC).
- Chain: Base.
- Clusters: mainnet.
- Credit cost: 1 per call.
FAQ
- What does eth_callBundle do?
- Run the candidate Base bundle simulation profile.
- How many credits does eth_callBundle cost?
- eth_callBundle costs 1 credit(s) per call on Triport by default.
- Is eth_callBundle available over WebSocket?
- eth_callBundle is an HTTP JSON-RPC method.