eth_sendBundle
Base / https://triport.io/r/{key}/rpc/base
Minimum tier: Reference only
Last updated:
0/1 bad tx gives minimum-count error, 2/10 bad reaches user-tx format; case labels 50/100/500 reach the same early error. The full 500-element request and its generating script are absent; no later-element, bytes, gas or admission limit established. 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. Canonical executable profile is keyed Blink target-hash attribution. Merkle/baseauction nokey parser observations remain unknown and do not unlock this profile.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| bundle | object | 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_sendBundle","params":["<bundle>"]}'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_sendBundle",
"params": [
"<bundle>"
]
}),
});
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_sendBundle","params":["<bundle>"]},
)
print(resp.json())Usage
- Transport: HTTP (JSON-RPC).
- Chain: Base.
- Clusters: mainnet.
- Credit cost: 5 per call.
FAQ
- What does eth_sendBundle do?
- Submit a Base Blink attribution bundle.
- How many credits does eth_sendBundle cost?
- eth_sendBundle costs 5 credit(s) per call on Triport by default.
- Is eth_sendBundle available over WebSocket?
- eth_sendBundle is an HTTP JSON-RPC method.