nft_transfers
nft_address_balance
total_minted
sum(amount) or count(distinct nft_token_id) where amount > 0
number_of_holders
count(distinct wallet_address) where amount > 0
total_burned
sum(amuont) or count(distinct nft_token_id) where wallet_address = '0x0000dead' and amount > 0
total_supply
total_minted - total_burned
number_of_burn_transactions
sum(case when transfer_type = 'burn' then 1 end)
number_of_mint_transactions
sum(case when transfer_type = 'mint' then 1 end)
number_of_transfer_transactions
sum(case when transfer_type = 'transfer' then 1 end)