Comment on page
eth_supportedEntryPoints
returns an array of the entryPoint addresses supported by the bundler
None
string - the current entrypoint address
// 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..."],
}
Last modified 4mo ago