ASC_MINTED | WALLETS | |
---|---|---|
1 | 2 | 688 |
2 | 3 | 149 |
3 | 1 | 7817 |
4 | 4 | 18 |
Pine AnalyticsASC MInt 1 copy copy
Updated 2025-02-08
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
›
⌄
SELECT
events as ASC_minted,
count(*) as wallets
FROM (
SELECT
tx_from,
count(DISTINCT tx_id) as events,
sum(amount / power(10, 9)) as mint_volume_eth
FROM eclipse.core.fact_transfers
where tx_to like '7jB2kzg5FbuNjETEgjnERfznGMFs7sQ7nhoXcJzwJpxj'
and block_timestamp > '2024-11-20'
and mint like 'Eth1111111111111111111111111111111111111111'
and amount = 40000000
AND SUCCEEDED
GROUP BY 1
order by 2 DESC
)
GROUP BY 1
Last run: 3 months ago
4
33B
3s