diff --git a/docs/web3.eth.account.rst b/docs/web3.eth.account.rst index 12e8d7872b..74eed5cd5b 100644 --- a/docs/web3.eth.account.rst +++ b/docs/web3.eth.account.rst @@ -90,6 +90,10 @@ Example ``account_test_script.py`` print(f"Your hot wallet address is {account.address}") + # Now you can use web3.eth.send_transaction(), Contract.functions.xxx.transact() functions + # with your local private key through middleware and you no longer get the error + # "ValueError: The method eth_sendTransaction does not exist/is not available + Example how to run this in UNIX shell: .. code-block:: shell @@ -103,6 +107,7 @@ Example how to run this in UNIX shell: # Run our script python account_test_script.py + This will print:: Your hot wallet address is 0x27C8F899bb69E1501BBB96d09d7477a2a7518918 diff --git a/newsfragments/2474.doc.rst b/newsfragments/2474.doc.rst new file mode 100644 index 0000000000..23e1775b31 --- /dev/null +++ b/newsfragments/2474.doc.rst @@ -0,0 +1 @@ +Add clarification around ValueError and Local Signing middleware