eth_sendRawTransaction
Submit a single signed transaction privately. The transaction is not broadcast to the public mempool.
Bombora documents this as the raw private-transaction entrypoint. At the edge, eth_sendPrivateRawTransaction is also accepted and forwarded to the same downstream handler.
Request
{
"jsonrpc": "2.0",
"id": 1,
"method": "eth_sendRawTransaction",
"params": ["0x...signed-tx-bytes..."]
}Parameters
| Parameter | Required | Description |
|---|---|---|
params[0] | Yes | Signed raw transaction (RLP-encoded hex). |
Response
{
"jsonrpc": "2.0",
"id": 1,
"result": "0x...txhash..."
}