hessWeekly Number of New Depositors
    Updated 9 days ago
    with submit as (select min(block_timestamp) as min,
    origin_from_address
    from avalanche.core.ez_decoded_event_logs
    where EVENT_NAME = 'Submitted'
    and CONTRACT_ADDRESS = '0x2b2c81e08f1af8835a78bb2a90ae924ace0ea4be'
    group by 2
    )

    select trunc(min,'week') as weekly,
    count(DISTINCT origin_from_address) as "New Depositors",
    sum("New Depositors") over (order by weekly asc) as "Cumulative New Depositors"
    from submit
    group by 1
    order by 1 asc
    Last run: 9 days ago
    WEEKLY
    New Depositors
    Cumulative New Depositors
    1
    2022-01-24 00:00:00.00055
    2
    2022-01-31 00:00:00.000712
    3
    2022-02-07 00:00:00.000315
    4
    2022-02-14 00:00:00.00015251540
    5
    2022-02-21 00:00:00.0005272067
    6
    2022-02-28 00:00:00.0004452512
    7
    2022-03-07 00:00:00.0003122824
    8
    2022-03-14 00:00:00.0005413365
    9
    2022-03-21 00:00:00.00011184483
    10
    2022-03-28 00:00:00.0009265409
    11
    2022-04-04 00:00:00.0005665975
    12
    2022-04-11 00:00:00.0006166591
    13
    2022-04-18 00:00:00.0004817072
    14
    2022-04-25 00:00:00.0006427714
    15
    2022-05-02 00:00:00.0005358249
    16
    2022-05-09 00:00:00.0001968445
    17
    2022-05-16 00:00:00.0001168561
    18
    2022-05-23 00:00:00.0001068667
    19
    2022-05-30 00:00:00.0001098776
    20
    2022-06-06 00:00:00.0001008876
    ...
    166
    6KB
    21s