Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/web3.contract.rst
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ Each Contract Factory exposes the following methods.
- ``to_block`` optional. Defaults to 'latest'. Defines the ending block (inclusive) in the filter block range. Special values 'latest' and 'pending' set a dynamic range that always includes the 'latest' or 'pending' blocks for the filter's upper block range.
- ``address`` optional. Defaults to the contract address. The filter matches the event logs emanating from ``address``.
- ``argument_filters``, optional. Expects a dictionary of argument names and values. When provided event logs are filtered for the event argument values. Event arguments can be both indexed or unindexed. Indexed values will be translated to their corresponding topic arguments. Unindexed arguments will be filtered using a regular expression.
- ``topics`` optional, accepts the standard JSON-RPC topics argument. See the JSON-RPC documentation for `eth_newFilter <https://github.com/ethereum/wiki/wiki/JSON-RPC#eth_newfilter>`_ more information on the ``topics`` parameters.
- ``topics`` optional, accepts the standard JSON-RPC topics argument. See the JSON-RPC documentation for `eth_newFilter <https://ethereum.org/en/developers/docs/apis/json-rpc/#eth_newfilter>`_ more information on the ``topics`` parameters.

.. doctest:: contractmethods

Expand Down
2 changes: 1 addition & 1 deletion docs/web3.main.rst
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ Encoding and Decoding Helpers
>>> Web3.to_hex(text='cowmö')
'0x636f776dc3b6'

.. _JSON-RPC spec: https://github.com/ethereum/wiki/wiki/JSON-RPC#hex-value-encoding
.. _JSON-RPC spec: https://ethereum.org/en/developers/docs/apis/json-rpc/#hex-encoding

.. py:method:: Web3.to_text(primitive=None, hexstr=None, text=None)

Expand Down
1 change: 1 addition & 0 deletions newsfragments/3746.docs.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Update a few broken links