| BLOCK_ID | NUMBER | The height of the chain this block corresponds with. |
| BLOCK_TIMESTAMP | TIMESTAMP_NTZ | The date and time at which the block began. |
| TX_HASH | TEXT | Unique identifier (hash) of this transaction. |
| RECEIPT_ID | TEXT | RECEIPT_ID column |
| CONTRACT_ADDRESS | TEXT | The address of the deployed contract for the token, nft, or other smart contract. |
| FROM_ADDRESS | TEXT | The address the sends the token. |
| TO_ADDRESS | TEXT | The receiver of usn token. |
| MEMO | TEXT | Optional log message within the transaction (often null). This field contains additional information or context about the transfer, such as transaction notes, reference numbers, or descriptive text. Memos are commonly used in cross-chain bridges, exchange deposits, or other scenarios where additional context is needed to identify or process the transfer. The memo field is optional and frequently null for standard transfers. |
| AMOUNT_RAW | TEXT | Unadjusted amount of tokens as it appears on-chain (not decimal adjusted). This is the raw token amount before any decimal precision adjustments are applied. For example, if transferring 1 NEAR token, the amount_raw would be 1000000000000000000000000 (1e24) since NEAR has 24 decimal places. This field preserves the exact on-chain representation of the token amount for precise calculations and verification. |
| AMOUNT_RAW_PRECISE | FLOAT | Decimal adjusted amount of tokens (as float, rounded - use this generally). This field provides the token amount after applying the appropriate decimal precision adjustments based on the token’s decimal places. For example, if transferring 1 NEAR token, the amount_adj would be 1.0 after dividing the raw amount (1e24) by 10^24. This field is the most commonly used representation for token amounts in analytics and reporting as it provides human-readable values. |
| AMOUNT_PRECISE | TEXT | AMOUNT_PRECISE column |
| AMOUNT | FLOAT | AMOUNT column |
| AMOUNT_USD | FLOAT | AMOUNT_USD column |
| DECIMALS | NUMBER | DECIMALS column |
| SYMBOL | TEXT | SYMBOL column |
| TOKEN_PRICE | FLOAT | TOKEN_PRICE column |
| TOKEN_IS_VERIFIED | BOOLEAN | Boolean flag indicating whether the token or price record is verified by Flipside’s crosschain curation process. Verified tokens are prioritized for analytics and are considered reliable for most use cases. Unverified tokens may be incomplete, deprecated, or experimental. |
| TRANSFER_TYPE | TEXT | Nature of the transfer. This field categorizes the type of token transfer being performed. Common values include “native” for raw NEAR token transfers, “nep141” for fungible token transfers following the NEAR token standard, and other protocol-specific transfer types. This helps distinguish between different token standards and transfer mechanisms used on the NEAR blockchain. |
| TRANSFER_ACTION | TEXT | The event that caused the transfer. Transfer: A standard transfer Action of tokens from one address to another. Deposit: A deposit Action of tokens into a contract. fttransfer: A transfer of tokens using the fttransfer method. fttransfercall: A transfer of tokens using the fttransfercall method. ftmint: A minting of tokens using the ftmint method. orderadded: An order being added to the orderbook. addliquidity: Adding liquidity to a pool. neardeposit: A deposit of NEAR tokens into the wrap.ne… |
| RECEIPT_SUCCEEDED | BOOLEAN | Boolean indicating whether the receipt was successfully processed. This field tracks the execution status of the receipt, which is crucial for understanding transaction outcomes. While most transactions succeed, individual receipts within a transaction can fail due to various reasons such as insufficient gas, contract errors, or invalid parameters. This field is essential for filtering successful operations and analyzing failure patterns. |
| EZ_TOKEN_TRANSFERS_ID | TEXT | A unique identifier for the record. |
| ACTION_ID | TEXT | ACTION_ID column |
| INSERTED_TIMESTAMP | TIMESTAMP_NTZ | The timestamp at which the record was initially created and inserted into this table. |
| MODIFIED_TIMESTAMP | TIMESTAMP_NTZ | The timestamp at which this record was last modified by an internal process. |