0-MIDDepositors new
    Updated 2024-01-29
    with tab1 as (
    select date_trunc('minute',BLOCK_TIMESTAMP) as time
    ,TO_ADDRESS
    ,ETH_VALUE
    from base.core.fact_transactions
    where FROM_ADDRESS in('0x80c67432656d59144ceff962e8faf8926599bcf8','0xe4edb277e41dc89ab076a1f049f4a3efa700bce8','0xd9d74a29307cc6fc8bf424ee4217f1a587fbc8dc')
    ),
    tab2 as (
    select date_trunc('day',time) as day
    ,TO_ADDRESS
    ,ETH_VALUE
    ,row_number()over(partition by TO_ADDRESS order by day) as times_row
    from tab1)
    select
    day
    ,count(TO_ADDRESS) as "NEW DEPOSITORS"
    ,sum(ETH_VALUE) as volume
    ,sum("NEW DEPOSITORS")over(order by day) as "TOTAL NEW DEPOSITORS"
    from tab2
    where times_row=1
    group by 1





    Last run: about 1 year agoAuto-refreshes every 24 hours
    DAY
    NEW DEPOSITORS
    VOLUME
    TOTAL NEW DEPOSITORS
    1
    2023-09-13 00:00:00.0001069534.235187967102680
    2
    2023-11-13 00:00:00.00074488.134789046134262
    3
    2023-10-25 00:00:00.000373157.931062683124712
    4
    2023-10-20 00:00:00.000691176.094469537122361
    5
    2023-08-12 00:00:00.0003568597.73166573649424
    6
    2023-12-18 00:00:00.0002248747.080401677181513
    7
    2024-01-11 00:00:00.000967558.352127152209657
    8
    2023-12-29 00:00:00.0001183969.535858162196921
    9
    2024-01-06 00:00:00.000947586.597000587205190
    10
    2023-11-22 00:00:00.000911233.129698845143043
    11
    2023-12-23 00:00:00.0001193821.227446025190293
    12
    2023-12-10 00:00:00.0001744703.736442321164590
    13
    2023-10-15 00:00:00.000380159.476326447119895
    14
    2023-10-14 00:00:00.000362204.743058119515
    15
    2024-01-14 00:00:00.0001054442.942761453213181
    16
    2023-08-22 00:00:00.0001872475.85821116675633
    17
    2023-10-08 00:00:00.000370164.103533117605
    18
    2023-11-11 00:00:00.000514199.475948266132831
    19
    2023-12-17 00:00:00.0003300841.573367149179265
    20
    2023-10-11 00:00:00.00026293.852287118556
    ...
    184
    9KB
    125s