date | holders | total holders | |
---|---|---|---|
1 | 2024-01-25 00:00:00.000 | 9 | 2305 |
2 | 2024-01-24 00:00:00.000 | 17 | 2296 |
3 | 2024-01-23 00:00:00.000 | 25 | 2279 |
4 | 2024-01-22 00:00:00.000 | 50 | 2254 |
5 | 2024-01-21 00:00:00.000 | 33 | 2204 |
6 | 2024-01-20 00:00:00.000 | 29 | 2171 |
7 | 2024-01-19 00:00:00.000 | 44 | 2142 |
8 | 2024-01-18 00:00:00.000 | 48 | 2098 |
9 | 2024-01-17 00:00:00.000 | 63 | 2050 |
10 | 2024-01-16 00:00:00.000 | 29 | 1987 |
11 | 2024-01-15 00:00:00.000 | 44 | 1958 |
12 | 2024-01-14 00:00:00.000 | 65 | 1914 |
13 | 2024-01-13 00:00:00.000 | 44 | 1849 |
14 | 2024-01-12 00:00:00.000 | 46 | 1805 |
15 | 2024-01-11 00:00:00.000 | 143 | 1759 |
16 | 2024-01-10 00:00:00.000 | 1616 | 1616 |
StangFASThold - part 2 [ new holder ]
Updated 2024-01-26
999
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
›
⌄
with
minted_tokens AS
(
SELECT
a.tx_hash AS transaction
, count( distinct a.tokenid ) AS token
FROM
avalanche.nft.ez_nft_transfers a
WHERE
a.nft_address = '0xcdab7d987f0198edb440d014ed1e71256a0e3e7a'
AND a.event_type = 'mint'
GROUP BY 1
ORDER BY 2 DESC
)
,
minted_chart_1 AS
(
SELECT
a.block_timestamp AS date
, a.nft_to_address AS minter
, a.tx_hash AS transaction
, a.project_name AS project_name
, a.tokenid AS token_id
, b.amount_precise / c.token AS amount
, b.amount_usd / c.token AS usd_volume
FROM
avalanche.nft.ez_nft_transfers a
LEFT OUTER JOIN
avalanche.core.ez_avax_transfers b
ON a.block_timestamp = b.block_timestamp
AND a.tx_hash = b.tx_hash
AND a.nft_to_address = b.origin_from_address
Last run: about 1 year ago
16
579B
39s