-
Notifications
You must be signed in to change notification settings - Fork 5.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add eth_signTransaction to the RPC API #728
Comments
@bas-vk don't we have that already? |
Doesn't seem to be documented at least. |
Totally behind this. I think there needs to be a more robust RPC interface in general. This one in particular would be super useful for dapps that want to use Raiden-like capabilities in their code. |
Just to drop the note, we also would like to see that as part of public (read documented) JSON-RPC APIs, also to simplify and prevent double spend issues. Do you happen to have some ETAs or some other indications when (and if likely at all) we will see that happen? |
There has been no activity on this issue for two months. It will be closed in a week if no further activity occurs. If you would like to move this EIP forward, please respond to any outstanding feedback or add a comment indicating that you have addressed all required feedback and are ready for a review. |
This issue was closed due to inactivity. If you are still pursuing it, feel free to reopen it and respond to any feedback or request a review in a comment. |
as mentioned here : #636
eth_sendTransaction
is doing 2 things: signing and sendingsince we already have
eth_sendRawTransaction
we would just need the extra method :eth_signTransaction
eth_sendTransaction
would then be used as a convenient option only.Rationale:
eth_signTransaction
is useful in situations where you want to control when the transaction is broadcasted to the network. Currently there is no way to get a signed transaction out of the user without sending to the network at the same time.The text was updated successfully, but these errors were encountered: