Skip to main content

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 successfully
  • 400 - Invalid JSON-RPC request format

Request Body Parameters

ParameterTypeDescriptionRequired
jsonrpcstringThe JSON-RPC version. Default is "2.0"Yes
chainIDnumberThe JSON-RPC chainID. Default is 2484Yes
apiKeystringDeveloper API keyYes
idanyThe identifier of the requestNo
methodstringThe method to be invoked (e.g., "eth_supportedEntryPoints")Yes
paramsarrayThe parameters for the methodNo