Priced Net Transfers Failed Table
Records failed priced network transfers on the Solana blockchain, which can help identify transaction issues and potential network congestion.
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.
TRANSACTION_INDEX
FIXED
The position or order of a transaction within a block.
TRANSACTION_ID
TEXT
Unique identifier assigned to each transaction within the blockchain.
INSTRUCTION_INDEX
FIXED
Index of the instruction within a transaction.
INNER_INSTRUCTION_INDEX
FIXED
Index of the inner instruction within a transaction.
TRANSFER_TYPE
TEXT
This can be “IN” or “OUT.” Differentiates whether a token has moved into or out of a wallet.
ACCOUNT
TEXT
The address of the wallet or the party in the transaction.
CP_ACCOUNT
TEXT
The address of the counterparty, which could be another wallet, exchange, or smart contract.
TOKEN_ADDRESS
TEXT
The address of the token.
NAME
TEXT
The name of the token being searched.
SYMBOL
TEXT
The symbol of the token being searched.
VALUE
REAL
The curated quantity of the token. A negative value indicates the token is being sent out. A positive value indicates that a token is being received.
TOKEN_FEE
REAL
The fee or royalties associated with the token account.
USD_VALUE
REAL
The curated value of the token, proceed in USD.
USD_TOKEN_FEE
REAL
The token fee, priced in USD value.
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 priced network transfers on the Solana blockchain. Analyze failed transfers—including both incoming and outgoing token movements with USD-converted values—to diagnose transaction issues and potential network congestion. The table helps you understand the context of each failure by providing details about the block and transaction, the specific instruction indices, the transfer direction, and the participating accounts, among others. You can:
Identify the block and transaction context using
BLOCK_SLOT
,TIMESTAMP
,DATETIME
,TRANSACTION_INDEX
, andTRANSACTION_ID
.Pinpoint the specific instruction using
INSTRUCTION_INDEX
andINNER_INSTRUCTION_INDEX
.Determine the transfer direction with
TRANSFER_TYPE
.Investigate the involved accounts via
ACCOUNT
andCP_ACCOUNT
.Retrieve token characteristics using
TOKEN_ADDRESS
,NAME
, andSYMBOL
.Analyze the transfer amounts and fee details with
VALUE
,TOKEN_FEE
, andUSD_VALUE
includingUSD_TOKEN_FEE
.Monitor data recency with
DATE_CREATED
andDATE_UPDATED
.
For example, you might query VALUE
, TOKEN_FEE
, and USD_VALUE
to assess the economic impact of a failed transfer, along with other critical details.
Last updated