post https://api.infstones.com/ethereum/mainnet/
Creates a filter in the node, to notify when new pending transactions arrive.
Parameters
None
Result
A hex code of an integer that represents the filter ID.
Example
Request
curl <your-endpoint> \
-X POST \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","method":"eth_newPendingTransactionFilter","params":[],"id":0}'
Return
{
"jsonrpc": "2.0",
"id": 0,
"result": "0xedc4ade4740164a0da9feeb6634ce43d"
}