Transactions Failed Table

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.

Last updated