# eth\_sendRawTransaction

### We also support the standard `eth_sendRawTransaction` method.&#x20;

For more details on using `eth_sendRawTransaction`, please refer to the [Ethereum JSON-RPC documentation](https://ethereum.org/en/developers/docs/apis/json-rpc/).

### Request Body

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

### **CURL Example** <a href="#response-example" id="response-example"></a>

```bash
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** <a href="#response-example" id="response-example"></a>

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