Builder RPC (Private orderflow)

eth_sendRawTransaction

{
  "jsonrpc": "2.0",
  "id": "1",
  "method": "eth_sendRawTransaction”,
  "params": ["0x…"],  // Signed raw tx hex
}

Submits a raw transaction (serialized and signed) for broadcasting to the network. The transaction data should be encoded as a hexadecimal string starting with 0x. You can create and sign a transaction externally using libraries like web3.jsarrow-up-right or ethers.jsarrow-up-right.

Note: For EIP-4844arrow-up-right transactions, the raw form must be in the network format, which includes blobs, KZG commitments, and KZG proofs.

Last updated