diff --git a/docs/filters.rst b/docs/filters.rst index deab2d7f8c..cef28b8b95 100644 --- a/docs/filters.rst +++ b/docs/filters.rst @@ -44,8 +44,9 @@ The :meth:`web3.eth.Eth.filter` method can be used to setup filters for: .. note :: Creating event filters requires that your Ethereum node has an API support enabled for filters. - It does not work with Infura nodes. To get event logs on Infura or other - stateless nodes please see :class:`web3.contract.ContractEvents`. + Note that Infura support for filters does not offer access to `pending` filters. + To get event logs on other stateless nodes please see :class:`web3.contract.ContractEvents`. + Filter Class @@ -179,7 +180,7 @@ Getting events without setting up a filter ------------------------------------------ You can query an Ethereum node for direct fetch of events, without creating a filter first. -This works on all node types, including Infura. +This works on all node types. For examples see :meth:`web3.contract.ContractEvents.getLogs`. diff --git a/newsfragments/2322.doc.rst b/newsfragments/2322.doc.rst new file mode 100644 index 0000000000..888fa618c9 --- /dev/null +++ b/newsfragments/2322.doc.rst @@ -0,0 +1 @@ +Clarify info about Infura filters over HTTP