NFT Indicator
2023-09-19 15:44:29 0 举报
AI智能生成
nft indicator
作者其他创作
大纲/内容
on-chain parsing
nft_trades
nft_transactions
number_of_buyer_address
count(distinct buyer_address)
number_of_seller_address
count(distinct seller_address)
number_of_sales_transactions
count(distinct transaction_hash)
min_price
min(price)
max_price
max(price)
avg_price
avg(price)
volume
sum(value)
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)
off-chain collect
token_price
value
floor_price_in_usd
market_cap
nft_orders
nft_floor_price
market_cap
floor_price * total_supply
0 条评论
下一页
为你推荐
查看更多