eth_sendTransaction

In the Web3 tutorial, we use web3.eth.sendTransaction, which in turn signs the transaction locally using the private key of the account, and sends the transaction via web3.eth.sendSignedTransaction, which is a wrapper for eth_sendRawTransaction.

Last updated