For the complete documentation index, see llms.txt. This page is also available as Markdown.

eth_sendRawTransaction - Robinhood

Example code for the eth_sendRawTransaction JSON-RPC method. Complete guide to using the eth_sendRawTransaction JSON-RPC method in GetBlock.io Web3 documentation.

Submits a signed transaction to the network. The transaction must be RLP-encoded and signed with the correct chain ID (4663 / 0x1237 for Robinhood Chain mainnet) for EIP-155 replay protection.

Parameters

Parameter
Type
Required
Description

signedTx

DATA

Yes

RLP-encoded signed transaction (hex)

Request Example

curl --location --request POST 'https://shared.us-east-1.getblock.io/<ACCESS-TOKEN>/' \
--header 'Content-Type: application/json' \
--data-raw '{
    "jsonrpc": "2.0",
    "method": "eth_sendRawTransaction",
    "params": [
        "0xf86c8085055ae82600825208947a25d0f0ff6a25f36de0a19c3d5f6dc2c6eaed6a88016345785d8a000080820246e2a01b5e176d927f8e9ab405058b2d2457392da3e20f328b16ddabcebc33eaac5fea3094a6d52d77b6dc9c4f74e58fb50a76b80e3a8b1f47"
    ],
    "id": "getblock.io"
}'
import axios from 'axios';

const data = JSON.stringify({
    "jsonrpc": "2.0",
    "method": "eth_sendRawTransaction",
    "params": [
        "0xf86c8085055ae82600825208947a25d0f0ff6a25f36de0a19c3d5f6dc2c6eaed6a88016345785d8a000080820246e2a01b5e176d927f8e9ab405058b2d2457392da3e20f328b16ddabcebc33eaac5fea3094a6d52d77b6dc9c4f74e58fb50a76b80e3a8b1f47"
    ],
    "id": "getblock.io"
});

const config = {
    method: 'post',
    url: 'https://shared.us-east-1.getblock.io/<ACCESS-TOKEN>/',
    headers: {
        'Content-Type': 'application/json'
    },
    data: data
};

axios(config)
    .then(response => console.log(JSON.stringify(response.data, null, 2)))
    .catch(error => console.log(error));

Response Example

{
    "jsonrpc": "2.0",
    "id": "getblock.io",
    "result": "0xa8f9b3c7d2e4f6a1b9c8d7e6f5a4b3c2d1e0f9a8b7c6d5e4f3a2b1c0d9e8f7a6"
}

Response Parameters

Field
Type
Description

result

DATA

Transaction hash — use eth_getTransactionReceipt to track inclusion

Use Cases

  • Wallet transaction submission

  • DEX backends submitting orders on Robinhood Chain DEXes (Uniswap, Lighter, 1inch)

  • Stock Token transfer submission

Error Handling

Status Code
Error Message
Cause

403

Forbidden

Missing or invalid <ACCESS-TOKEN>

-32602

Invalid params

Request parameters are missing or malformed

-32603

Internal error

Server-side error while processing the request

429

Too Many Requests

Rate limit exceeded for your plan

-32000

Transaction underpriced

Gas price below the minimum the pool accepts

-32000

Already known

Transaction was already submitted

-32000

Nonce too low

Sender's nonce has advanced — this transaction is stale

-32000

Insufficient funds

Sender doesn't have enough ETH to cover gas × gasLimit + value

-32000

Intrinsic gas too low

Gas limit below the minimum for this transaction type

SDK Integration

Last updated

Was this helpful?