eth_sendRawTransaction

We also support the standard eth_sendRawTransaction method.

For more details on using eth_sendRawTransaction, please refer to the Ethereum JSON-RPC documentation.

Request Body

{
  "jsonrpc": "2.0",
  "id": "1",
  "method": "eth_sendRawTransaction",
  "params": [
    // String
    // Signed EIP-2718 rlp encoded tx hex.
    tx
  ]
}‍

CURL Example

curl -s \
  -X POST \
  -H "Content-Type: application/json" \
  --data '{
    "jsonrpc": "2.0",
    "id": "1",
    "method": "eth_sendRawTransaction",
    "params": ["0x12…ab"]
  }' \
  https://rpc.kairos-timeboost.xyz

Response Example

{
  "jsonrpc": "2.0",
  "id":1,
  "result": "0xe670ec64341771606e55d6b4ca35a1a6b75ee3d5145a99d05921026d1527331"
}

Last updated