Pine AnalyticsASC MInt 1 copy copy
    Updated 2025-02-08
    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
    ASC_MINTED
    WALLETS
    1
    2688
    2
    3149
    3
    17817
    4
    418
    4
    33B
    3s