Skip to main content
Version: SDK V4 (latest)

Get Supported Entry Points

eth_supportedEntryPoints

This endpoint returns an array of the entryPoint addresses supported by the bundler. The first element of the array is the entryPoint addressed preferred by the bundler.

Parameters

Body

ParamTypeDescriptionRequired
methodstringName of method in this case: eth_supportedEntryPointsRequired
paramsarrayAn empty array with no specific paramsRequired
idstringid for request determined by client for JSON RPC requestsRequired
jsonrpcstringJSON RPC version in this case 2.0.0Required

Request

{
"method": "eth_supportedEntryPoints",
"params": [],
"id": 1693369916,
"jsonrpc": "2.0"
}

Response

{
"jsonrpc": "2.0",
"id": 1693369916,
"result": ["0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789"]
}

Was this page helpful?