POST
/
3997273fc956a67dc6982384500e669e
curl --request POST \
  --url https://ronin-mainnet.core.chainstack.com/3997273fc956a67dc6982384500e669e \
  --header 'Content-Type: application/json' \
  --data '{
  "id": 1,
  "jsonrpc": "2.0",
  "method": "eth_sendRawTransaction",
  "params": [
    "0xd46e8dd67c5d32be8d46e8dd67c5d32be8058bb8eb970870f072445675058bb8eb970870f072445675"
  ]
}'
{
  "jsonrpc": "<string>",
  "id": 123,
  "result": "<string>"
}

Ronin API method eth_sendRawTransaction is used to submit a pre-signed transaction to the network. This is typically used for transactions that have been signed offline or in a secure environment, allowing for the transaction to be broadcast without exposing private keys online.

Note that the interactive example in this page will not work, due to the fact that eth_sendRawTransaction is used to modify the state of the blockchain, it is not possible to duplicate the same request.

Get you own node endpoint today

Start for free and get your app to production levels immediately. No credit card required.

You can sign up with your GitHub, X, Google, or Microsoft account.

Parameters

  • string - The full, hex-encoded data of the signed transaction.

Response

  • result - The transaction hash of the successfully submitted transaction.

Use case

The eth_sendRawTransaction method is crucial for securely interacting with the Ronin network, especially in scenarios where an extra layer of security is required. It’s commonly used in wallet applications, automated trading systems, and other applications where transactions need to be prepared and signed before being broadcast to the network.

Body

application/json
id
integer
default:1
jsonrpc
string
default:2.0
method
string
default:eth_sendRawTransaction
params
string[]

Response

200 - application/json
The transaction hash of the submitted transaction
jsonrpc
string
id
integer
result
string