You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm currently researching the Reown SDK (Unity, Android, and iOS), and I would like to know whether there is any built-in support for signing a transaction without broadcasting it — in other words, I only need the signed raw transaction from the user’s wallet.
I’ve checked that SignTypedDataAsync is available in the Unity SDK, which is great for EIP-712 messages, but I couldn't find any method for signing actual Ethereum transactions (especially EIP-1559 typed transactions) without sending them.
As an alternative, I tried sending a raw eth_signTransaction RPC request directly, but the wallet responds with "unknown account". This suggests the SDK or connected wallet does not expose a signing method for transactions.
So I wanted to ask:
Is there any method like signTransaction or equivalent available in any of the SDKs?
If not, are there any plans to support this feature in the near future?
Thanks in advance!
The text was updated successfully, but these errors were encountered:
The blockchain platform (game) that is being integrated needs to handle transaction processing on the game server rather than using a wallet, so the eth_signTransaction method is required instead of eth_sendTransaction.
We could add this feature for you, but I'd like to learn more about your use case and project. Let's set up a Telegram group? Drop me an email: gleb at reown.com
Hi Reown team,
I'm currently researching the Reown SDK (Unity, Android, and iOS), and I would like to know whether there is any built-in support for signing a transaction without broadcasting it — in other words, I only need the signed raw transaction from the user’s wallet.
I’ve checked that SignTypedDataAsync is available in the Unity SDK, which is great for EIP-712 messages, but I couldn't find any method for signing actual Ethereum transactions (especially EIP-1559 typed transactions) without sending them.
As an alternative, I tried sending a raw eth_signTransaction RPC request directly, but the wallet responds with "unknown account". This suggests the SDK or connected wallet does not expose a signing method for transactions.
So I wanted to ask:
Is there any method like signTransaction or equivalent available in any of the SDKs?
If not, are there any plans to support this feature in the near future?
Thanks in advance!
The text was updated successfully, but these errors were encountered: