Are you an LLM? Read llms.txt for a summary of the docs, or llms-full.txt for the full context.
Skip to content

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

ParameterRequiredDescription
params[0]YesSigned raw transaction (RLP-encoded hex).

Response

{
  "jsonrpc": "2.0",
  "id": 1,
  "result": "0x...txhash..."
}