Submits a pre-signed, RLP-encoded transaction to the network and returns its hash.Documentation Index
Fetch the complete documentation index at: https://base-a060aa97-meyer9-discv5-p2p-protocol-id.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Parameters
The signed transaction as an RLP-encoded hex string. Typically generated by a wallet library such as viem, ethers.js, or web3.js.
Returns
The 32-byte transaction hash if the transaction was accepted into the mempool.
Error Codes
| Code | Message | Description |
|---|---|---|
-32000 | nonce too low | The transaction nonce is lower than the current account nonce. |
-32000 | insufficient funds for gas * price + value | The sender’s balance cannot cover gas cost and value. |
-32000 | already known | An identical transaction is already in the mempool. |
-32000 | replacement transaction underpriced | A replacement transaction must increase the gas price by at least 10%. |