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






    Last run: about 1 year agoAuto-refreshes every 24 hours
    DAY
    NEW WITHDRAWERS
    VOLUME
    TOTAL NEW WITHDRAWERS
    1
    2023-12-29 00:00:00.000985230.717145068163702
    2
    2023-08-12 00:00:00.0001735428.85236276114929
    3
    2023-12-18 00:00:00.0002760469.60588371147114
    4
    2024-01-06 00:00:00.000953160.313287027170971
    5
    2024-01-11 00:00:00.000749119.694301128174650
    6
    2023-10-25 00:00:00.000527124.80270115174356
    7
    2023-09-13 00:00:00.000693108.89957952882
    8
    2023-10-20 00:00:00.000485109.12330989271970
    9
    2023-11-22 00:00:00.0001463332.19856976599757
    10
    2023-10-15 00:00:00.000399153.15075569479
    11
    2023-12-10 00:00:00.0002087277.793162866126746
    12
    2023-12-23 00:00:00.0001425226.585976695155428
    13
    2023-11-13 00:00:00.00035567.90743017185558
    14
    2023-10-14 00:00:00.000433150.08441369080
    15
    2023-08-11 00:00:00.0002127549.89101813194
    16
    2023-11-23 00:00:00.0001101169.765582538100858
    17
    2023-10-02 00:00:00.000490152.25729972664429
    18
    2024-01-12 00:00:00.000955115.188147703175605
    19
    2023-11-12 00:00:00.00042886.2170312185203
    20
    2023-10-03 00:00:00.000489140.91239182864918
    ...
    183
    9KB
    10s