trace_rawTransaction
The trace_rawTransaction method allows users to retrieve internal transactions that occurred during the execution of a specific Ethereum transaction. This is particularly useful for understanding t...
trace_rawTransaction
Overview
The 'trace_rawTransaction' method allows users to retrieve internal transactions that occurred during the execution of a specific Ethereum transaction. This is particularly useful for understanding the internal operations of complex smart contract interactions.
Request
{
"transaction_hash": "YOUR_TRANSACTION_HASH",
"api_key": "YOUR_API_KEY"
}Request Parameters
- transaction_hash: The hash of the Ethereum transaction you want to trace.
- api_key: Your CoinAPI API key.
Response
{
"transaction_hash": "YOUR_TRANSACTION_HASH",
"block_number": 1234567,
"from_address": "0xSenderAddress",
"to_address": "0xReceiverAddress",
"value": "0.5 ETH",
"gas_used": 21000,
"internal_transactions": [
{
"from_address": "0xInternalSender",
"to_address": "0xInternalReceiver",
"value": "0.1 ETH",
"gas_used": 5000
}
// ... more internal transactions if any
]
}Errors
- Invalid Request: This error is returned if the request format is incorrect.
- Internal Error: This error is returned if there's a server-side issue processing the request.
Rate Limits
Please note that there are rate limits applied to the API to ensure fair usage. Free-tier users are limited to 100 requests per day, while premium users can make up to 1000 or more requests per day.
Support
If you encounter any issues or have further questions regarding the eth_getBlockByHash method, please contact our support team at [email protected].
trace_filter
The trace_filter method allows users to retrieve internal Ethereum transaction traces based on a set of filter conditions. This is particularly useful for developers and analysts who need to inspec...
trace_replayBlockTransactions
The trace_replayBlockTransactions methodallows users to replay transactions in a specific block. This is particularly useful for debugging and understanding transaction outcomes.