Glint Analytics
  • Glint Quick Start Guide
  • GETTING STARTED
    • What is Glint?
    • How to Create a Glint Account?
  • Dashboards
    • Creating a New Dashboard
    • Opening Trending Dashboards
  • DASHBOARD EDITING
    • Dashboard Editor Overview
      • Adding Portlets
      • Moving, Resizing and Arranging Portlets
      • Adjusting Portlet Appearance
      • Portlet Types and Settings
        • Chart Portlets
          • Chart Portlet Settings
        • Network Portlets
          • Network Portlet Settings
        • Dynamic Portlets
          • Dynamic Portlet Settings
        • Static Portlets
          • Text Portlet Settings
          • Image Portlet Settings
      • Additional Dashboard Options
        • Opening My Dashboards
        • Adding Dashboard Pages
        • Saving, Publishing, and Deleting Dashboards
  • QUERYING AND DATA ANALYSIS
    • Writing Queries
      • Using the AI Assistant
      • Manually Using SQL
      • Using the Query Builder
    • Schema Reference
      • Blocks Table
      • Instructions Table
      • Instructions Failed Table
      • Priced Net Transfers Table
      • Priced Net Transfers Failed Table
      • Priced Transfers Table
      • Priced Transfers Failed Table
      • Rewards Table
      • Tokens Table
      • Transactions Table
      • Transactions Failed Table
  • REWARDS
    • Reward Process and Mechanism
  • PLATFORM OVERVIEW
    • Supported Chains
Powered by GitBook
On this page
  1. QUERYING AND DATA ANALYSIS
  2. Schema Reference

Transactions Failed Table

PreviousTransactions TableNextReward Process and Mechanism

Last updated 5 months ago

CtrlK

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

Name

Type

Description

BLOCK_SLOT

FIXED

Slot number or identifier of the block.

TIMESTAMP

FIXED

Raw value of the time in Unix Epoch time (in UTC time zone), which is then converted to DATETIME column.

DATETIME

TIMESTAMP_NTZ

Timestamp of the transaction in UTC.

BLOCK_HASH

TEXT

The hash of a specific block in the blockchain.

BLOCK_HEIGHT

FIXED

Indicates the numerical position of a block within the blockchain.

TRANSACTION_INDEX

FIXED

The position or order of a transaction within a block of the blockchain.

TRANSACTION_ID

TEXT

Unique identifier assigned to each transaction within the blockchain.

SOURCE_TRANSACTION_FEE

FIXED

The transaction fee amount in lamports.

TRANSACTION_FEE

FIXED

The transaction fee amount (in SOL).

USD_TRANSACTION_FEE

REAL

The transaction fee amount priced in USD.

COMPUTE_UNITS_CONSUMED

FIXED

The computational units consumed by the transaction's execution on the Solana network.

ERROR

VARIANT

The response for error when any failure occurs.

RECENT_BLOCK_HASH

TEXT

A base-58 encoded hash of a recent block used to prevent transaction duplication and to give transactions lifetimes.

SIGNATURES

VARIANT

List of signatures for the given transaction.

SIGNER

TEXT

The first signature within the transaction

SIGNERS

ARRAY

n/a

ACCOUNT_KEYS

VARIANT

n/a

ADDRESS_TABLE_LOOKUPS

VARIANT

n/a

LOG_MESSAGES

VARIANT

n/a

VERSION

TEXT

Version number associated with a block or transaction.

RETURN_DATA

VARIANT

The most-recent return data generated by an instruction in the transaction.

STATUS

VARIANT

Indicates the status of the transaction.

DATE_CREATED

TIMESTAMP_NTZ

Indicates the date in which the data was loaded.

DATE_UPDATED

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 BLOCK_SLOT, TIMESTAMP, DATETIME, BLOCK_HASH, BLOCK_HEIGHT, TRANSACTION_INDEX, and TRANSACTION_ID.

  • Analyze fee-related information using SOURCE_TRANSACTION_FEE, TRANSACTION_FEE, and USD_TRANSACTION_FEE.

  • Evaluate network performance with COMPUTE_UNITS_CONSUMED.

  • Retrieve error details via ERROR.

  • Confirm transaction authenticity with RECENT_BLOCK_HASH.

  • Review signature data through SIGNATURES, SIGNER, and SIGNERS.

  • Access additional account information via ACCOUNT_KEYS and ADDRESS_TABLE_LOOKUPS.

  • Inspect diagnostic outputs with LOG_MESSAGES, VERSION, RETURN_DATA, and STATUS.

  • Monitor data recency using DATE_CREATED and DATE_UPDATED.

💡 For example, you might query ERROR, USD_TRANSACTION_FEE, and SIGNERS to understand why a transaction failed and assess its fee cost, along with other key parameters.