Send PrivateTransaction
Send PrivateTransaction
API Overview
Method: eth_sendRawTransaction
Used to receive signed raw transactions submitted privately—these bypass the public mempool, protecting against front-running and sandwich attacks.
Request Parameters
Parameter | Required | Type | Description |
---|---|---|---|
transaction | Yes | hex string | Signed raw transaction data (RLP-encoded) |
Example Request
{
"jsonrpc": "2.0",
"id": "1",
"method": "eth_sendRawTransaction",
"params": ["0xf86c80850..."] // signed raw transaction
}
Example Response
{"jsonrpc": "2.0","id": "1","result": {"txHash": "0xdef456..."}}
Updated 2 days ago