From a2ea28d4fbf441d49399beb3f546d62d49c7c745 Mon Sep 17 00:00:00 2001 From: pacrob Date: Mon, 22 May 2023 13:10:07 -0600 Subject: [PATCH] add eth_signTypedData not supported by any clients note to docs --- docs/web3.eth.rst | 6 +++++- newsfragments/2961.docs.rst | 1 + 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 newsfragments/2961.docs.rst diff --git a/docs/web3.eth.rst b/docs/web3.eth.rst index f00871f3e1..8b004b1e6f 100644 --- a/docs/web3.eth.rst +++ b/docs/web3.eth.rst @@ -927,7 +927,11 @@ The following methods are available on the ``web3.eth`` namespace. .. py:method:: Eth.sign_typed_data(account, jsonMessage) * Delegates to ``eth_signTypedData`` RPC Method - + + .. note:: + + ``eth_signTypedData`` is not currently supported by any major client (Besu, Erigon, Geth, or Nethermind) + Please note that the ``jsonMessage`` argument is the loaded JSON Object and **NOT** the JSON String itself. diff --git a/newsfragments/2961.docs.rst b/newsfragments/2961.docs.rst new file mode 100644 index 0000000000..c7bd555cdd --- /dev/null +++ b/newsfragments/2961.docs.rst @@ -0,0 +1 @@ +Added 'unsupported by any current clients' note to the `Eth.sign_typed_data` docs