chain_name | string | Stores the chain name. |
chain_id | integer | Every chain_name has a unique number that acts as a numerical identifier for that chain. |
block_height | integer | Stores the block height. |
signed_at | datetime | Stores the timestamp. |
tx_hash | string | Every transaction on the blockchain has a transaction hash (tx_hash ) that acts as a unique identifier for that transaction. The tx_hash column allows you to query specific information from a particular transaction. |
market | string | Stores the name of the marketplace that facilitated the event. |
to | string | Stores the address in the tx_recipient column of the all_chains table. |
from | string | Stores the address in the tx_sender column of the all_chains table. |
maker | string | Stores the address selling the NFT. |
taker | string | Stores the address buying the NFT. |
token_id | integer | Stores the NFTs token ID. All NFTs have a token ID. Within a collection, these token IDs are unique. If the NFT is transferred to another owner, the token id remains the same, as this number is its identifier within a collection. For example, if a collection has 10K NFTs then an NFT in that collection can have a token ID from 1-10K. |
collection_address | string | Stores the address of the collection. For example, Bored Ape Yacht Club. |
collection_name | string | Stores the name of the collection. |
token_address | string | Stores the address of the token used to purchase the NFT. |
token_name | string | Stores the name of the token used to purchase the NFT. |
ticker_symbol | string | Stores the ticker symbol of the token used to purchase the NFT. |
num_decimals | integer | Stores the number decimal of the token used to purchase the NFT. |
nft_token_price | float | The token amount used to purchase the NFT. For example, if the user purchased an NFT for 1 ETH. The nft_token_price column will hold 1 . |
nft_token_price_unscaled | integer | The raw, on-chain token amount used to purchase the NFT. Blockchains don't work with decimal numbers which is why they multiply values by 10^num_decimal to turn decimal numbers (price or amount of a token) into integers (whole numbers). For example, instead of a transaction's gas costs being 0.000000000000000001 ether, it's shown as 1 wei. Therefore, this field has all the token amounts that are multiplied by 10^num_decimal. |
nft_token_price_usd | float | The USD amount used to purchase the NFT. |
nft_token_price_native | float | The price of the NFT denominated in the chains native token. Even if a seller sells their NFT for DAI or MANA, this column denominates the price in the native token (e.g. ETH, AVAX, FTM, etc.) |
gas_eth | float | Stores the gas fee, denominated in ETH. |
gas_usd_price | float | Stores the gas fee, denominated in USD. |
token_count | integer | Stores the number of NFTs involved in the sale. It's quick routine to see multiple NFTs involved in a single sale. |