> For the complete documentation index, see [llms.txt](https://glint-analytics.gitbook.io/glint-analytics/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://glint-analytics.gitbook.io/glint-analytics/querying-and-data-analysis/schema-reference/transactions-failed-table.md).

# Transactions Failed Table

Transactions that failed are a subset of only failed transactions, which are identified by the transaction receipt status.

| Name                                | Type            | Description                                                                                                          |
| ----------------------------------- | --------------- | -------------------------------------------------------------------------------------------------------------------- |
| <kbd>BLOCK\_SLOT</kbd>              | `FIXED`         | Slot number or identifier of the block.                                                                              |
| <kbd>TIMESTAMP</kbd>                | `FIXED`         | Raw value of the time in Unix Epoch time (in UTC time zone), which is then converted to DATETIME column.             |
| <kbd>DATETIME</kbd>                 | `TIMESTAMP_NTZ` | Timestamp of the transaction in UTC.                                                                                 |
| <kbd>BLOCK\_HASH</kbd>              | `TEXT`          | The hash of a specific block in the blockchain.                                                                      |
| <kbd>BLOCK\_HEIGHT</kbd>            | `FIXED`         | Indicates the numerical position of a block within the blockchain.                                                   |
| <kbd>TRANSACTION\_INDEX</kbd>       | `FIXED`         | The position or order of a transaction within a block of the blockchain.                                             |
| <kbd>TRANSACTION\_ID</kbd>          | `TEXT`          | Unique identifier assigned to each transaction within the blockchain.                                                |
| <kbd>SOURCE\_TRANSACTION\_FEE</kbd> | `FIXED`         | The transaction fee amount in lamports.                                                                              |
| <kbd>TRANSACTION\_FEE</kbd>         | `FIXED`         | The transaction fee amount (in SOL).                                                                                 |
| <kbd>USD\_TRANSACTION\_FEE</kbd>    | `REAL`          | The transaction fee amount priced in USD.                                                                            |
| <kbd>COMPUTE\_UNITS\_CONSUMED</kbd> | `FIXED`         | The computational units consumed by the transaction's execution on the Solana network.                               |
| <kbd>ERROR</kbd>                    | `VARIANT`       | The response for error when any failure occurs.                                                                      |
| <kbd>RECENT\_BLOCK\_HASH</kbd>      | `TEXT`          | A base-58 encoded hash of a recent block used to prevent transaction duplication and to give transactions lifetimes. |
| <kbd>SIGNATURES</kbd>               | `VARIANT`       | List of signatures for the given transaction.                                                                        |
| <kbd>SIGNER</kbd>                   | `TEXT`          | The first signature within the transaction                                                                           |
| <kbd>SIGNERS</kbd>                  | `ARRAY`         | n/a                                                                                                                  |
| <kbd>ACCOUNT\_KEYS</kbd>            | `VARIANT`       | n/a                                                                                                                  |
| <kbd>ADDRESS\_TABLE\_LOOKUPS</kbd>  | `VARIANT`       | n/a                                                                                                                  |
| <kbd>LOG\_MESSAGES</kbd>            | `VARIANT`       | n/a                                                                                                                  |
| <kbd>VERSION</kbd>                  | `TEXT`          | Version number associated with a block or transaction.                                                               |
| <kbd>RETURN\_DATA</kbd>             | `VARIANT`       | The most-recent return data generated by an instruction in the transaction.                                          |
| <kbd>STATUS</kbd>                   | `VARIANT`       | Indicates the status of the transaction.                                                                             |
| <kbd>DATE\_CREATED</kbd>            | `TIMESTAMP_NTZ` | Indicates the date in which the data was loaded.                                                                     |
| <kbd>DATE\_UPDATED</kbd>            | `TIMESTAMP_NTZ` | Indicates the date in which the data was updated.                                                                    |

🔍 Use these columns to gather comprehensive insights into failed transactions on the Solana blockchain, identifying the context of failures along with diagnostic details. Examine when they occurred, their cost in both lamports and USD, their exact position in the chain, among other key metrics. You can:

* Identify the block and transaction context using <kbd>BLOCK\_SLOT,</kbd> <kbd>TIMESTAMP</kbd>, <kbd>DATETIME</kbd>, <kbd>BLOCK\_HASH</kbd>, <kbd>BLOCK\_HEIGHT</kbd>, <kbd>TRANSACTION\_INDEX</kbd>, and <kbd>TRANSACTION\_ID</kbd>.
* Analyze fee-related information using <kbd>SOURCE\_TRANSACTION\_FEE</kbd>, <kbd>TRANSACTION\_FEE</kbd>, and <kbd>USD\_TRANSACTION\_FEE</kbd>.
* Evaluate network performance with <kbd>COMPUTE\_UNITS\_CONSUMED</kbd>.
* Retrieve error details via <kbd>ERROR</kbd>.
* Confirm transaction authenticity with <kbd>RECENT\_BLOCK\_HASH</kbd>.
* Review signature data through <kbd>SIGNATURES</kbd>, <kbd>SIGNER</kbd>, and <kbd>SIGNERS</kbd>.
* Access additional account information via A<kbd>CCOUNT\_KEYS</kbd> and <kbd>ADDRESS\_TABLE\_LOOKUPS</kbd>.
* Inspect diagnostic outputs with <kbd>LOG\_MESSAGES</kbd>, <kbd>VERSION</kbd>, <kbd>RETURN\_DATA</kbd>, and <kbd>STATUS</kbd>.
* Monitor data recency using <kbd>DATE\_CREATED</kbd> and <kbd>DATE\_UPDATED</kbd>.

💡 For example, you might query <kbd>ERROR</kbd>, <kbd>USD\_TRANSACTION\_FEE</kbd>, and <kbd>SIGNERS</kbd> to understand why a transaction failed and assess its fee cost, along with other key parameters.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://glint-analytics.gitbook.io/glint-analytics/querying-and-data-analysis/schema-reference/transactions-failed-table.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
