TriportRPC

eth_sendRawTransaction

Robinhood Chain / https://triport.io/rpc/robinhood

Minimum tier: Free

Robinhood Chain method guide

Last updated:

Write surface admitted by confirmed routing/whitelist evidence rather than the read-method threshold of OK on at least two hosts. A deliberately malformed raw transaction reached the transaction parser on the three direct mainnet intake paths, the CloudFront gateway, and all three direct testnet intake paths; publicnode accepted the method at its transaction front. No observer sent a live valid transaction, so acceptance of a valid transaction is not measured and must not be described as verified on mainnet. A live acceptance test is planned on testnet chain 46630 (D16).

Parameters

eth_sendRawTransaction parameters
NameTypeRequiredDescription
rawTxDataYes

Returns

eth_sendRawTransaction return value
FieldType
resultHash

Examples

curl https://triport.io/rpc/robinhood \
  -X POST -H 'Content-Type: application/json' \
  -H 'Authorization: Bearer <api-key>' \
  -d '{"jsonrpc":"2.0","id":1,"method":"eth_sendRawTransaction","params":["<rawTx>"]}'
const res = await fetch("https://triport.io/rpc/robinhood", {
  method: "POST",
  headers: { "Content-Type": "application/json", Authorization: "Bearer <api-key>" },
  body: JSON.stringify({
  "jsonrpc": "2.0",
  "id": 1,
  "method": "eth_sendRawTransaction",
  "params": [
    "<rawTx>"
  ]
}),
});
const data = await res.json();
import requests
resp = requests.post(
    "https://triport.io/rpc/robinhood",
    headers={"Authorization": "Bearer <api-key>"},
    json={"jsonrpc":"2.0","id":1,"method":"eth_sendRawTransaction","params":["<rawTx>"]},
)
print(resp.json())

Usage

  1. Transport: HTTP (JSON-RPC).
  2. Chain: Robinhood Chain.
  3. Clusters: mainnet.
  4. Credit cost: 5 per call.

FAQ

What does eth_sendRawTransaction do?
Submit a signed raw transaction.
How many credits does eth_sendRawTransaction cost?
eth_sendRawTransaction costs 5 credit(s) per call on Triport by default.
Is eth_sendRawTransaction available over WebSocket?
eth_sendRawTransaction is an HTTP JSON-RPC method.