From 8fbd39fc1747189866efb5b240da2df73f16360f Mon Sep 17 00:00:00 2001 From: NikolaiKryshnev <63440682+NikolaiKryshnev@users.noreply.github.com> Date: Fri, 29 Aug 2025 23:19:07 +0300 Subject: [PATCH 1/3] Update link web3.main.rst --- docs/web3.main.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/web3.main.rst b/docs/web3.main.rst index ad849ecfab..d7e09e1b3c 100644 --- a/docs/web3.main.rst +++ b/docs/web3.main.rst @@ -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) From aaa990184ad82b21193596f8a6926597e6bfb8a4 Mon Sep 17 00:00:00 2001 From: NikolaiKryshnev <63440682+NikolaiKryshnev@users.noreply.github.com> Date: Fri, 29 Aug 2025 23:28:40 +0300 Subject: [PATCH 2/3] Update web3.contract.rst --- docs/web3.contract.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/web3.contract.rst b/docs/web3.contract.rst index 1348012cff..f32a13bb59 100644 --- a/docs/web3.contract.rst +++ b/docs/web3.contract.rst @@ -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 `_ more information on the ``topics`` parameters. + - ``topics`` optional, accepts the standard JSON-RPC topics argument. See the JSON-RPC documentation for `eth_newFilter `_ more information on the ``topics`` parameters. .. doctest:: contractmethods From fec3a76c95f5bc0352eba4916e6c0b90ec6384b5 Mon Sep 17 00:00:00 2001 From: kclowes Date: Fri, 12 Sep 2025 15:13:50 -0600 Subject: [PATCH 3/3] Add newsfragment for #3746 --- newsfragments/3746.docs.rst | 1 + 1 file changed, 1 insertion(+) create mode 100644 newsfragments/3746.docs.rst diff --git a/newsfragments/3746.docs.rst b/newsfragments/3746.docs.rst new file mode 100644 index 0000000000..5cebdfa9b0 --- /dev/null +++ b/newsfragments/3746.docs.rst @@ -0,0 +1 @@ +Update a few broken links