TriportRPC

eth_sendRawTransactionConditional

Submit a signed transaction with sequencer inclusion conditions.

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

eth_sendRawTransactionConditional submit a signed transaction with sequencer inclusion conditions. 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.
optionsConditionalOptionsrequired
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":2,"method":"eth_sendRawTransactionConditional","params":["0x00",{}]}),
});
const payload = await response.json();

Notes

  • This method is routed only to the sequencer intake and gateway classes. Valid-condition acceptance remains unmeasured (accept_unverified), so treat the surface as best-effort.
  • See conditional submission before using it.