BlockPI Network
Search
K
Comment on page

eth_supportedEntryPoints

returns an array of the entryPoint addresses supported by the bundler

Parameters:

None

Returns:

string - the current entrypoint address

Example:

// Request
curl https://polygon.blockpi.network/v1/rpc/your-rpc-key -X POST -H "Content-Type: application/json"
--data
'{
"jsonrpc": "2.0",
"id": 0,
"method": "eth_supportedEntryPoints",
"params": []
}'
// Result
{
"jsonrpc": "2.0",
"id": 0,
"result": ["0x00...", "0x01..."],
}