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 MetaMask Developer dashboard.
Request
- curl
- WSS
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}'
wscat -c wss://bsc-mainnet.infura.io/ws/v3/<YOUR-API-KEY> -x '{"jsonrpc": "2.0", "method":"newPendingTransactionFilter", "params": [], "id": 1}'
Response
- JSON
{
  "jsonrpc": "2.0",
  "id": 1,
  "result": "0x443d6a77c4964707a8554c92f7e4debd"
}