Send externally signed transaction. #785
-
Good afternoon, I would like to know if it is possible for you to allow broadcasting transactions that have been signed externally. In my use case, the private keys are stored on secure hardware (https://fr.wikipedia.org/wiki/Hardware_Security_Module) and that hardware manages signing transactions. For now, I am using ethers v5 and ethereumjs/tx to broadcast transactions externally signed using the following https://docs.ethers.org/v5/api/providers/provider/#Provider-sendTransaction Is it planned to add that kind of feature? |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 5 replies
-
@Fbartoli , wouldn't something like that work for you?
|
Beta Was this translation helpful? Give feedback.
-
Came here to ask the exact same question, hah. In my situation I am currently const txHash = await provider.send("eth_sendRawTransaction", [
signedTx,
]); I've been refactoring to use viem instead of ethers but just hit a stumbling block where I've found that Am I missing something? |
Beta Was this translation helpful? Give feedback.
-
Yeah, we will need to implement sendRawTransaction. Shouldn’t take too long. Can look into it tomorrow. |
Beta Was this translation helpful? Give feedback.
-
Hello, sorry to ask. Do you have a date for the update? |
Beta Was this translation helpful? Give feedback.
Yeah, we will need to implement sendRawTransaction. Shouldn’t take too long. Can look into it tomorrow.