Skip to main content

eth_newPendingTransactionFilter

Creates a filter to retrieve new pending transaction hashes. To poll for new pending transactions, use eth_getFilterChanges.

Parameters

None

Returns

A filter ID that can be used to call eth_getFilterChanges.

Example

Replace YOUR-API-KEY with an API key from your Infura dashboard.

Request

curl https://bsc-mainnet.infura.io/v3/YOUR-API-KEY \
-X POST \
-H "Content-Type: application/json" \
-d '{"jsonrpc" :"2.0", "method":"newPendingTransactionFilter", "params": [], "id":1}'

Response

{
"jsonrpc": "2.0",
"id": 1,
"result": "0x443d6a77c4964707a8554c92f7e4debd"
}