LTirrellmadlist summary
Updated 2023-05-24
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
25
26
27
28
29
30
31
›
⌄
with
base as (
select
case
when amount = 0 then 'Mad List'
when amount = 6.9 then 'Mad Rug'
else 'AAAAA'
end as mint_type,
count(distinct tx_id) as mints
-- mint
-- *
FROM
-- solana.core.fact_transactions
solana.core.fact_transfers
-- solana.core.fact_events
where
tx_to =
-- array_contains(
'2RtGg6fsFiiF1EQzHqbd66AhW7R5bWeQGpTbv2UMkCdW'::variant
-- , signers
-- and mint = 'So11111111111111111111111111111111111111112'
and block_timestamp >= '2023-02-28'
and amount != 0.1
group by
mint_type
)
SELECT
*
from
base
order by MINT_TYPE desc
Run a query to Download Data