Skip to main content
POST
eth_getTransactionReceipt
Arc API method that returns the receipt of a transaction by transaction hash. Transaction receipts contain information about the execution of a transaction.
Get your own node endpoint todayStart 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.
Arc-specific fields: Transaction receipts on Arc include additional fields:
  • feeToken — the TIP-20 token address used to pay transaction fees
  • feePayer — the address that paid the fees (may differ from sender with fee sponsorship)

Parameters

  • transactionHash — the hash of the transaction to retrieve the receipt for

Response

  • result — a receipt object, or null if no receipt was found:
    • transactionHash — the transaction hash
    • blockHash — hash of the block containing this transaction
    • blockNumber — block number containing this transaction
    • from — address of the sender
    • to — address of the receiver
    • status1 for success, 0 for failure
    • gasUsed — amount of gas used
    • logs — array of log objects
    • feeToken — TIP-20 token address used for fees (Arc-specific)
    • feePayer — address that paid the fees (Arc-specific)

eth_getTransactionReceipt code examples

Body

application/json
id
integer
default:1
jsonrpc
string
default:2.0
method
string
default:eth_getTransactionReceipt
params
array

Response

200 - application/json

Returns the result of eth_getTransactionReceipt.

jsonrpc
string
id
integer
result
object
Last modified on August 3, 2026