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

Last updated