From fff040d2991e5e3e8163fc10682101167590078e Mon Sep 17 00:00:00 2001 From: maradini77 <140460067+maradini77@users.noreply.github.com> Date: Mon, 22 Dec 2025 12:50:08 +0100 Subject: [PATCH 1/3] Update quickstart.rst --- docs/quickstart.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/quickstart.rst b/docs/quickstart.rst index 5f7c68daaa..53a377e77f 100644 --- a/docs/quickstart.rst +++ b/docs/quickstart.rst @@ -39,7 +39,7 @@ Test Provider If you're just learning the ropes or doing some quick prototyping, you can use a test provider, `eth-tester `_. This provider includes -some accounts prepopulated with test ether and instantly includes each transaction into a block. +some accounts prepopulated with test ether and instantly includes each transaction in a block. web3.py makes this test provider available via ``EthereumTesterProvider``. .. note:: From 4604855038fc92e47de5498c1ade6e7b087a6e7c Mon Sep 17 00:00:00 2001 From: maradini77 <140460067+maradini77@users.noreply.github.com> Date: Mon, 22 Dec 2025 12:51:18 +0100 Subject: [PATCH 2/3] Update migration.rst --- docs/migration.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/migration.rst b/docs/migration.rst index b9d5a68947..94cb333e1a 100644 --- a/docs/migration.rst +++ b/docs/migration.rst @@ -357,7 +357,7 @@ encodable as a bytes type with length of 4. This means only 0x-prefixed hex stri a length of 4 and bytes types with a length of 4 will be considered valid. This removes doubt that comes from inferring values and assuming they should be padded. -This behavior was previously available in via the ``w3.enable_strict_bytes_checking()`` +This behavior was previously available via the ``w3.enable_strict_bytes_checking()`` method. This is now, however, a toggleable flag on the ``Web3`` instance via the ``w3.strict_bytes_type_checking`` property. As outlined above, this property is set to ``True`` by default but can be toggled on and off via the property's setter From 308431fc85fb1d64ca80cacfaa92a3e0adfc959a Mon Sep 17 00:00:00 2001 From: maradini77 <140460067+maradini77@users.noreply.github.com> Date: Mon, 22 Dec 2025 12:51:42 +0100 Subject: [PATCH 3/3] Update providers.rst --- docs/providers.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/providers.rst b/docs/providers.rst index 1fc8503216..7d074387b2 100644 --- a/docs/providers.rst +++ b/docs/providers.rst @@ -302,7 +302,7 @@ WebSocketProvider .. py:class:: web3.providers.persistent.WebSocketProvider(endpoint_uri: str, websocket_kwargs: Dict[str, Any] = {}, use_text_frames: bool = False) - This provider handles interactions with an WS or WSS based JSON-RPC server. + This provider handles interactions with a WS or WSS based JSON-RPC server. * ``endpoint_uri`` should be the full URI to the RPC endpoint such as ``'ws://localhost:8546'``.