nsa2000Gains Network 2
    Updated 2022-11-16
    with table_1 as (select min(block_timestamp) as first_tx,
    origin_from_address
    from polygon.core.fact_event_logs --GNS
    where tx_status= 'SUCCESS'
    and contract_address = '0x8f3cf7ad23cd3cadbd9735aff958023239c6a063'
    and origin_to_address in ('0xd8d177efc926a18ee455da6f5f6a6cfcee5f8f58','0x65187fec6ecc4774c1f632c7503466d5b4353db1','0xf8a140db8b05bec52c7e86d0d40d72f8e54fe559')
    and origin_from_address = event_inputs:from
    group by 2
    having first_tx >= current_date - 30)

    select date_trunc('day', first_tx) as date,
    count(distinct(origin_from_address)) as new_wallets,
    sum(new_wallets) over (order by date) as cumu_new_wallets,
    case
    when date >= '2022-11-08 00:00:00.000' then 'Collapse of FTX & Alameda'
    else 'Before Collapsing'
    end as event
    from table_1
    group by 1
    order by 1 desc
    Run a query to Download Data