curl --request POST \
--url https://hyperliquid-mainnet.core.chainstack.com/4f8d8f4040bdacd1577bff8058438274/evm \
--header 'Content-Type: application/json' \
--data '
{
"jsonrpc": "2.0",
"method": "eth_getTransactionReceipt",
"params": [
"0x33c3321b162edac1fdbb53af2962b2940c07e334a4f5ff758f1d5ef1235e55d0"
],
"id": 1
}
'{
"jsonrpc": "<string>",
"id": 123,
"result": {
"transactionHash": "<string>",
"transactionIndex": "<string>",
"blockHash": "<string>",
"blockNumber": "<string>",
"from": "<string>",
"to": "<string>",
"gasUsed": "<string>",
"cumulativeGasUsed": "<string>",
"contractAddress": "<string>",
"logs": [
{
"address": "<string>",
"topics": [
"<string>"
],
"data": "<string>"
}
],
"status": "<string>",
"effectiveGasPrice": "<string>",
"type": "<string>"
}
}Returns the receipt of a transaction by its hash, containing execution results and event logs.
curl --request POST \
--url https://hyperliquid-mainnet.core.chainstack.com/4f8d8f4040bdacd1577bff8058438274/evm \
--header 'Content-Type: application/json' \
--data '
{
"jsonrpc": "2.0",
"method": "eth_getTransactionReceipt",
"params": [
"0x33c3321b162edac1fdbb53af2962b2940c07e334a4f5ff758f1d5ef1235e55d0"
],
"id": 1
}
'{
"jsonrpc": "<string>",
"id": 123,
"result": {
"transactionHash": "<string>",
"transactionIndex": "<string>",
"blockHash": "<string>",
"blockNumber": "<string>",
"from": "<string>",
"to": "<string>",
"gasUsed": "<string>",
"cumulativeGasUsed": "<string>",
"contractAddress": "<string>",
"logs": [
{
"address": "<string>",
"topics": [
"<string>"
],
"data": "<string>"
}
],
"status": "<string>",
"effectiveGasPrice": "<string>",
"type": "<string>"
}
}transactionHash (string, required) — The 32-byte hash of the transactionnull if the transaction is not found or still pending.
Transaction receipt:
transactionHash — Hash of the transactiontransactionIndex — Index in the block (hex string)blockHash — Hash of containing blockblockNumber — Number of containing block (hex string)from — Sender addressto — Receiver address (null for contract creation)gasUsed — Actual gas used (hex string)cumulativeGasUsed — Total gas used in block up to this transaction (hex string)contractAddress — Created contract address (null if not contract creation)logs — Array of event logsstatus — Transaction status (0x0 for failure, 0x1 for success)effectiveGasPrice — Actual gas price paid (hex string)type — Transaction type (hex string)address — Contract address that emitted the logtopics — Array of indexed event parametersdata — Non-indexed event parametersnull.Successful response with transaction receipt
JSON-RPC version
Request identifier
Show child attributes
Hash of the transaction
Index of the transaction in the block
Hash of the block containing the transaction
Number of the block containing the transaction
Address of the sender
Address of the receiver
Amount of gas used by the transaction
Total gas used in the block up to this transaction
Contract address created, if the transaction was a contract creation
Transaction status (0x0 for failure, 0x1 for success)
Actual gas price paid by the transaction
Transaction type
Was this page helpful?