eth_sendUserOperation
Base / https://triport.io/r/{key}/rpc/base
Minimum tier: Pro
Last updated:
Four full EntryPoint addresses recovered from response body. v4 case labels omit eth_ prefix and their request scripts are absent; f30 script uses eth_supportedEntryPoints/eth_estimateUserOperationGas. Cannot promote unprefixed aliases. Two getCode bodies truncated, no deployed code hashes/ABI/UserOperation version or successful lifecycle. Errors prove only arity/hex/field validation. Availability is the frozen baseline, not deployed readiness. documented is the contract floor; evidence_kind retains unknown/source_summary.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| userOperation | BaseR03_userOp07 | Yes | |
| entryPoint | BaseR03_address | Yes |
Returns
| Field | Type |
|---|---|
| result | BaseR03_hash |
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_sendUserOperation","params":["<userOperation>","<entryPoint>"]}'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_sendUserOperation",
"params": [
"<userOperation>",
"<entryPoint>"
]
}),
});
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_sendUserOperation","params":["<userOperation>","<entryPoint>"]},
)
print(resp.json())Usage
- Transport: HTTP (JSON-RPC).
- Chain: Base.
- Clusters: mainnet.
- Credit cost: 1 per call.
FAQ
- What does eth_sendUserOperation do?
- Submit an ERC-4337 UserOperation for a pinned EntryPoint profile.
- How many credits does eth_sendUserOperation cost?
- eth_sendUserOperation costs 1 credit(s) per call on Triport by default.
- Is eth_sendUserOperation available over WebSocket?
- eth_sendUserOperation is an HTTP JSON-RPC method.