eth.traces
SQL table schema for eth.traces and eth.recent_traces
All Ethereum call frames executed during a transaction, also known as internal transactions.
Column Name | Data Type | Description |
---|---|---|
| CHARACTER VARYING | Hash of the transaction this trace belongs to. |
| BIGINT | The position of the trace's transaction in its block. |
| CHARACTER VARYING | Address of sender, signing transaction |
| CHARACTER VARYING | The receiving address, a contract or externally-owned. |
| DECIMAL | The amount of Wei sent in the transaction. |
| CHARACTER VARYING | Optional, arbitrary input data of the transaction |
| CHARACTER VARYING | The data returned by the contract function call. |
| CHARACTER VARYING | Indicates the type of trace represented. |
| CHARACTER VARYING | For traces representing EVM call operations, the type of call. |
| CHARACTER VARYING | For traces rewarding ether, indicate the type of reward. |
| BIGINT | The maximum allowed gas for the transaction. |
| BIGINT | Gas used in this transaction |
| BIGINT | The count of subtraces triggered by this trace. |
| CHARACTER VARYING | Trace addresses |
| CHARACTER VARYING | An error message, if the trace resulted in one. |
| BIGINT | Status, from the receipt, indicating either success (1) or failure (0). |
| BIGINT | Unix time when the block including this transaction was mined. |
| BIGINT | The number of the block including this transaction |
| CHARACTER VARYING | The hash of the block including this transaction |
| CHARACTER VARYING | Unique identifier of the trace. |
Last updated