๐ Send pre-signed raw Ethereum transaction
Code samples
POST /api/v1/eth/transactions/send-raw
Sends a signed, RLP-encoded transaction using eth_sendRawTransaction.
Body parameter
{
"rawTransaction": "0x..."
}
๐ ๏ธ Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
| body | body | object | true | none |
| ยป rawTransaction | body | string | true | Signed and RLP-encoded transaction. |
Example responses
200 Response
{
"transactionHash": 8.491419877403187e+76
}
๐ Responses
| Status | Meaning | Description | Schema |
|---|---|---|---|
| 200 | OK | Transaction hash returned by node | Inline |
| 422 | Unprocessable Entity | Invalid request body (missing rawTransaction) | None |
| 500 | Internal Server Error | Could not connect to ETH node | None |
๐ Response Schema
Status Code 200
| Name | Type | Required | Restrictions | Description |
|---|---|---|---|---|
| ยป transactionHash | string | false | none | none |