DATE | NFTS_BRIDGED | USERS | |
---|---|---|---|
1 | 2025-03-22 00:00:00.000 | 3 | 3 |
2 | 2025-03-19 00:00:00.000 | 58 | 33 |
3 | 2025-03-23 00:00:00.000 | 14 | 3 |
4 | 2025-03-18 00:00:00.000 | 230 | 84 |
5 | 2025-03-20 00:00:00.000 | 16 | 12 |
6 | 2025-03-21 00:00:00.000 | 9 | 8 |
SandeshOriginals migration
Updated 2025-03-24
99
1
2
3
4
5
6
7
8
9
10
›
⌄
select
date_trunc('day',block_timestamp) as date,
count(distinct tokenId) as nfts_bridged,
count(distinct from_address) as users
from ethereum.nft.ez_nft_transfers
where to_address=lower('0x92eC336C40685751cF1F3C870C2ECdC5aEcC1730')
and block_timestamp >= '2025-03-18 10:50:35.000'
and nft_address='0x3a1561ef33515bba77a4df88d80afa9d363900e1'
group by 1
Last run: about 1 month ago
6
201B
2s