API Reference

eth_newPendingTransactionFilter - DogeOS

Creates a filter in the node, to notify when new pending transactions arrive. To check if the state has changed, call eth_getFilterChanges.

Creates a filter in the node to notify when new pending transactions arrive. To check if the state has changed, call eth_getFilterChanges.

PARAMETERS

None

REQUEST

{
    "jsonrpc":"2.0",
    "method":"eth_newPendingTransactionFilter",
    "params":[],
    "id":0
}

RESPONSE

Result - A filter ID.

{
	"jsonrpc": "2.0",
	"id": 0,
	"result": "0xa08914f1caedfcbe814d9fb33e69678d"
}