TriportRPC

eth_sendRawTransaction

Submit a signed raw transaction.

Robinhood Chain mainnet (chain ID 4663)robinhood:rpcrobinhood_send_tx - 3 / 5 / 30 / 80 RPS (free / basic / pro / business) (default, unmeasured); enterprise unlimited

eth_sendRawTransaction submit a signed raw transaction. The published signature and response shape come from the measured Robinhood OpenRPC contract.

Parameters

JSON-RPC params is a positional array.

rawTxDatarequired
Positional OpenRPC parameter.

Response

Representative envelope with the top-level shape of the accepted fixture:

Errors

See Robinhood errors. Invalid parameters return a JSON-RPC parameter error; authentication and quota failures use the shared client error contract. Unknown failures are returned without an implicit retry.

Examples

const response = await fetch("https://triport.io/rpc/robinhood", {
  method: "POST",
  headers: { "x-token": process.env.TRIPORT_API_KEY, "Content-Type": "application/json" },
  body: JSON.stringify({"jsonrpc":"2.0","id":1,"method":"eth_sendRawTransaction","params":["0x00"]}),
});
const payload = await response.json();

Notes

  • Routing is confirmed by a measurement of the sequencer intake node’s two-method allowlist (eth_sendRawTransaction and eth_sendRawTransactionConditional). Acceptance of a valid transaction has not been measured by anyone. A live acceptance test is planned on testnet chain 46630 (D16); do not infer mainnet acceptance.
  • Treat this write surface as accept_unverified until that test is complete.