Learn how to use the supportedEntryPoints JSON-RPC method.
curl --request POST \
--url 'https://bundler.particle.network/#eth_supportedEntryPoints' \
--header 'Content-Type: application/json' \
--data '
{
"jsonrpc": "2.0",
"id": 1,
"chainId": 80001,
"method": "eth_supportedEntryPoints",
"params": [
"<unknown>"
]
}
'{
"jsonrpc": "2.0",
"id": 1,
"chainId": 80001,
"result": [
"0xEntryPoint1"
]
}supportEntryPointssupportEntryPoints returns a list of EntryPoint addresses supported by the Particle Bundler. It takes no parameters.0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789 is supported due to it being the flagship EntryPoint contract for ERC-4337.{
"chainId": 80001,
"jsonrpc": "2.0",
"id": 1,
"method": "eth_supportedEntryPoints",
"params": []
}
Request to retrieve supported entry points for Ethereum.
Version of the JSON-RPC protocol, should be 2.0.
"2.0"
The request identifier.
1
The chain ID.
80001
API method being called.
eth_supportedEntryPoints No parameters are needed for this request.
Successful response with supported entry points.
Was this page helpful?
curl --request POST \
--url 'https://bundler.particle.network/#eth_supportedEntryPoints' \
--header 'Content-Type: application/json' \
--data '
{
"jsonrpc": "2.0",
"id": 1,
"chainId": 80001,
"method": "eth_supportedEntryPoints",
"params": [
"<unknown>"
]
}
'{
"jsonrpc": "2.0",
"id": 1,
"chainId": 80001,
"result": [
"0xEntryPoint1"
]
}