# eth_newPendingTransactionFilter

> Creates a filter in the node, to notify when new pending transactions arrive.

<SimplifiedApiReference
  method="eth_newPendingTransactionFilter"
  description="Creates a filter in the node, to notify when new pending transactions arrive."
  parameters={[]}
  returns={{
    type: 'string',
    description: 'hex encoded unsigned integer',
  }}
  exampleRequest={`await provider.request({
    method: 'eth_newPendingTransactionFilter',
    params: [],
})`}
  exampleResponse={`{
    "id": 1,
    "jsonrpc": "2.0",
    "result": "0x01"
}`}
/>
