tvemulapcurrent holders?
Updated 2023-04-25
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
›
⌄
SELECT
nt.tokenid,
max(nt.block_timestamp) as last_move
FROM
ethereum.core.ez_nft_transfers as nt
LEFT JOIN ethereum.core.ez_decoded_event_logs as del on nt.tx_hash = del.tx_hash
WHERE
nt.nft_address = lower('0xED5AF388653567Af2F388E6224dC7C4b3241C544')
and nt.event_type != 'mint'
and del.event_name = 'Transfer'
GROUP BY
tokenid
Run a query to Download Data