For the complete documentation index, see llms.txt. This page is also available as Markdown.

eth_sendRawTransaction

POST https://mainnet.valuechain.xyz

Submits a signed transaction to the network.

This broadcasts a transaction. Verify chainId (0x45f9f on mainnet), estimate gas, persist the hash, and wait for a receipt. Do not resubmit the same payload to poll status. For sponsored calls, see Relayer.

Parameters

Name
Type
Required
Description

signedTransaction

data

Yes

RLP-encoded signed transaction with a 0x prefix.

Result

Hash (hash): 32-byte transaction hash if the node accepted the payload.

Example

Response

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

Code examples

cURL

JavaScript

Python

Last updated