| RECEIPT_OBJECT_ID | TEXT | Please note this column is being deprecated in favor of simply “receipt_id”. |
| TX_HASH | TEXT | Unique identifier (hash) of this transaction. |
| 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. |
| TOKEN_ID | TEXT | The token ID for this NFT contract. |
| METHOD_NAME | TEXT | Name of the method(s) approved for use. NULL if permission is FullAccess. |
| ARGS | VARIANT | Decoded (where possible) arguments passed alongside the method_name. If decoding failed, the table will contain the raw message. |
| MEMO | VARIANT | 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. |
| DEPOSIT | NUMBER | Sum of all NEAR tokens transferred from the signing account to the receiver account during receipt processing. This includes tokens sent in a Transfer action(s), and tokens sent in a FunctionCall action(s) with a deposit attached. In raw number format with 24 decimal places, to adjust divide by POW(10,24) or multiply by 1e-24. |
| TX_RECEIVER | TEXT | TX_RECEIVER column |
| RECEIVER_ID | TEXT | Account reacting to the receipt from predecessorid, can be relay, a contract, or a user of a relay, etc. This field identifies the account that is processing the receipt and executing the associated action. In most cases, this is a smart contract that is being called, but it can also be a user account in relay transactions or the system account for certain operations. This differs from txreceiver and is specific to the receipt being processed. |
| SIGNER_ID | TEXT | Signer of the receipt, often same as tx_signer, sometimes system in the case of systemic gas refunds. This field identifies the account that has the authority to execute the receipt. In most cases, this is the same as the transaction signer, but in system operations like gas refunds, this may be the system account. The signer is the account that originally signed the transaction that began the blockchain activity, which may or may not include cross-contract calls. |
| OWNER_ID | TEXT | Owner of the minted NFT |
| OWNER_PER_TX | NUMBER | Number of different owners batch minting, data array’s len in the LOG message |
| MINT_PER_TX | NUMBER | Number of NFTs minted per nft_mint event called. |
| GAS_BURNT | NUMBER | Gas burned for the receipt action. This field represents the amount of computational resources consumed specifically for the receipt being processed. Gas burning is the mechanism by which NEAR charges for computational work, and this field tracks the exact amount burned for this particular receipt action. In raw number format with 16 decimal places, to adjust divide by POW(10,16) or multiply by 1e-16. |
| TRANSACTION_FEE | NUMBER | Total fee paid in NEAR to execute this transaction, which is a summation of all fees paid for actions and receipts within the transaction. In raw number format, to adjust divide by POW(10,24) |
| IMPLIED_PRICE | FLOAT | IMPLIED_PRICE column |
| TX_STATUS | TEXT | TX_STATUS column |
| TX_SUCCEEDED | BOOLEAN | Boolean indicating if the transaction was successful (rarely used, most tx succeed, it is receipts that can fail). This field tracks the overall success status of the transaction. While most transactions succeed at the transaction level, individual receipts within the transaction can still fail. This field is less commonly used for filtering since receipt-level success tracking provides more granular information about specific operations within the transaction. |
| MINT_ACTION_ID | TEXT | MINT_ACTION_ID column |
| FACT_NFT_MINTS_ID | TEXT | A unique identifier for the record. |
| INSERTED_TIMESTAMP | TIMESTAMP_LTZ | The timestamp at which the record was initially created and inserted into this table. |
| MODIFIED_TIMESTAMP | TIMESTAMP_LTZ | The timestamp at which this record was last modified by an internal process. |