curl --request POST \
--url https://ronin-mainnet.core.chainstack.com/3997273fc956a67dc6982384500e669e \
--header 'Content-Type: application/json' \
--data '
{
"id": 1,
"jsonrpc": "2.0",
"method": "eth_getTransactionByHash",
"params": [
"0x1e196c5fa958d3752b92a3178dd71e8050a0b4a72f528a72c3c12b09b5fc523a"
]
}
'{
"jsonrpc": "<string>",
"id": 123,
"result": {}
}curl --request POST \
--url https://ronin-mainnet.core.chainstack.com/3997273fc956a67dc6982384500e669e \
--header 'Content-Type: application/json' \
--data '
{
"id": 1,
"jsonrpc": "2.0",
"method": "eth_getTransactionByHash",
"params": [
"0x1e196c5fa958d3752b92a3178dd71e8050a0b4a72f528a72c3c12b09b5fc523a"
]
}
'{
"jsonrpc": "<string>",
"id": 123,
"result": {}
}Ronin API method that returns information about a transaction by its hash. This includes details such as the transaction’s sender and receiver, the amount of Ether transferred, and the transaction’s current state (e.g., pending, included in a block).Documentation Index
Fetch the complete documentation index at: https://chainstack-mintlify-flesh-empty-pages.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
transactionHash — the hash of the transaction to retrieve.result — an object containing detailed information about the transaction, including fields like from, to, value, gas, gasPrice, nonce, blockHash, blockNumber, and transactionIndex.eth_getTransactionByHash method is essential for tracking specific transactions on the Ronin blockchain. It can be used by wallets to show transaction details, by exchanges to track deposits and withdrawals, or by any application that needs to verify the status and details of a transaction.Was this page helpful?