Moeccccvvvv
Updated 2023-04-13
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
›
⌄
select
date_trunc('month', block_timestamp)::date as date,
count (distinct NFT_FROM_ADDRESS) as senders,
count (distinct NFT_TO_ADDRESS) as receivers,
count (distinct tx_hash) as transfers,
count (distinct tokenid) as nft_token_cnt
from ethereum.core.ez_nft_transfers
where nft_address = lower('0x629a673a8242c2ac4b7b8c5d8735fbeac21a6205')
and nft_from_address != '0x0000000000000000000000000000000000000000'
and EVENT_TYPE = 'other'
group by 1
Run a query to Download Data