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>"
}
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>"
}
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.
eth_sendRawTransaction
is used to modify the state of the blockchain, it is not possible to duplicate the same request.string
- The full, hex-encoded data of the signed transaction.result
- The transaction hash of the successfully submitted transaction.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.The transaction hash of the submitted transaction
The response is of type object
.
Was this page helpful?