For the complete documentation index, see llms.txt. This page is also available as Markdown.
eth_sendRawTransactionSync
Submits a signed transaction and synchronously waits for it to be included in a block, returning the full transaction receipt. Unlike eth_sendRawTransaction, which returns only the transaction hash immediately, this method blocks until the transaction is executed and returns the complete receipt in a single call.
This is a Monad-specific method based on EIP-7966. It eliminates the need to poll with eth_getTransactionReceipt after submission. On Monad, transactions achieve sub-second confirmation due to the chain's architecture, making synchronous receipt return practical.