# Eth\_sendRawTransaction

## Send a raw signed transaction

> Sends a raw, signed Ethereum transaction to the network. \
> Returns the transaction hash (txid) if the transaction is successfully submitted.<br>

```json
{"openapi":"3.0.0","info":{"title":"Ethereum JSON-RPC","version":"1.0.0"},"servers":[{"url":"https://zksync.nownodes.io"}],"security":[{"api-keyAuth":[]}],"components":{"securitySchemes":{"api-keyAuth":{"type":"apiKey","in":"header","name":"api-key"}}},"paths":{"/":{"post":{"tags":["eth_sendRawTransaction"],"summary":"Send a raw signed transaction","operationId":"ethSendRawTransaction","description":"Sends a raw, signed Ethereum transaction to the network. \nReturns the transaction hash (txid) if the transaction is successfully submitted.\n","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","required":["jsonrpc","method","params","id"],"properties":{"jsonrpc":{"type":"string","description":"JSON-RPC version"},"method":{"type":"string","description":"Method name"},"params":{"type":"array","description":"Array containing a single signed transaction data (hex string)","items":{"type":"string","description":"Raw signed transaction data, hex-encoded, prefixed with \"0x\""}},"id":{"type":"integer","description":"Request ID"}}}}}},"responses":{"200":{"description":"Transaction successfully sent","content":{"application/json":{"schema":{"type":"object","properties":{"jsonrpc":{"type":"string"},"id":{"type":"integer"},"result":{"type":"string","description":"Transaction hash (txid) of the submitted transaction"}}}}}}}}}}}
```
