post https://api.infstones.com/okc/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 newly created filter ID.
Example
Request
curl <your-endpoint> \
-X POST \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","method":"eth_newPendingTransactionFilter","params":[],"id":1}'
Return
{
"jsonrpc": "2.0",
"id": 1,
"result": "0x186a54792872a90cb9d7a642a361c5c9"
}