BundlerRpc Endpoints
JSON-RPC endpoints for bundler functionality.
Handle JSON-RPC requests
POST /rpc
Process JSON-RPC requests for bundler functionality.
Security: Bearer token authentication required
Request Body:
{
"jsonrpc": "2.0",
"chainID": 2484,
"apiKey": "7c581609293E503dE149d93f34767DFF33d32C16",
"id": 0,
"method": "eth_supportedEntryPoints",
"params": []
}
Responses:
200
- The JSON-RPC request was processed successfully400
- Invalid JSON-RPC request format
Request Body Parameters
Parameter | Type | Description | Required |
---|---|---|---|
jsonrpc | string | The JSON-RPC version. Default is "2.0" | Yes |
chainID | number | The JSON-RPC chainID. Default is 2484 | Yes |
apiKey | string | Developer API key | Yes |
id | any | The identifier of the request | No |
method | string | The method to be invoked (e.g., "eth_supportedEntryPoints") | Yes |
params | array | The parameters for the method | No |