Hessishxdefi-arb- weekly # of new vs existing users
    Updated 9 hours ago
    -- forked from xdefi-eth- weekly # of new vs existing users @ https://flipsidecrypto.xyz/edit/queries/d79ce0bb-e471-4396-8fc3-81cc4fa39fb6

    with swap_multi as (SELECT DISTINCT tx_hash as hash, ORIGIN_FROM_ADDRESS as swapper,count(*) as steps
    from arbitrum.defi.ez_dex_swaps
    where --tx_hash = '0x89a3e55cf2b71170881b3a1040d62baa5816a01a71cc74ad7d7b42976768d691'
    BLOCK_TIMESTAMP::date >= '2023-01-01' and
    ORIGIN_TO_ADDRESS in ('0xa2a42b7203b2dc0199b81039c6c4e1ef900e82a4','0xd2667072a2a30e8c21fa276b474fd047ab5ff0f7')
    and ORIGIN_from_ADDRESS not in ('0x1e2c53ba467f6c4aa9325a7767a401b1999b2bf7',
    '0x90ab3b8deeaa6a3cfa3c6622f140ce56e62f47e3',
    '0x36e7556a3c68876387ad02196b7e125e73939115',
    '0xf91e863dcc42a81536695b2e6497797935ee5b95')
    GROUP by all
    having steps > 1),

    swap_single as (SELECT DISTINCT tx_hash as hash, ORIGIN_FROM_ADDRESS as swapper,count(*) as steps
    from arbitrum.defi.ez_dex_swaps
    where --tx_hash = '0x89a3e55cf2b71170881b3a1040d62baa5816a01a71cc74ad7d7b42976768d691'
    BLOCK_TIMESTAMP::date >= '2023-01-01' and
    ORIGIN_TO_ADDRESS in ('0xa2a42b7203b2dc0199b81039c6c4e1ef900e82a4','0xd2667072a2a30e8c21fa276b474fd047ab5ff0f7')
    and ORIGIN_from_ADDRESS not in ('0x1e2c53ba467f6c4aa9325a7767a401b1999b2bf7',
    '0x90ab3b8deeaa6a3cfa3c6622f140ce56e62f47e3',
    '0x36e7556a3c68876387ad02196b7e125e73939115',
    '0xf91e863dcc42a81536695b2e6497797935ee5b95')
    GROUP by all
    having steps = 1),




    side_a as (
    SELECT BLOCK_TIMESTAMP::date as time_a,
    TX_HASH as tx_a,
    FROM_ADDRESS as swapper_a,
    SYMBOL as from_token,
    case when AMOUNT_USD is null then 0 else AMOUNT_USD end as amount_a
    from arbitrum.core.ez_token_transfers
    Last run: about 9 hours agoAuto-refreshes every 24 hours
    DATE
    Existing traders
    New traders
    Total traders
    1
    2023-10-30 00:00:00.00021113
    2
    2025-01-13 00:00:00.000448
    3
    2024-04-29 00:00:00.000145
    4
    2023-08-21 00:00:00.000011
    5
    2025-03-03 00:00:00.000538
    6
    2024-07-15 00:00:00.000235
    7
    2024-07-29 00:00:00.000437
    8
    2024-03-11 00:00:00.0006915
    9
    2025-01-27 00:00:00.0006410
    10
    2025-02-03 00:00:00.0005712
    11
    2024-06-17 00:00:00.000022
    12
    2024-01-01 00:00:00.0005813
    13
    2023-12-04 00:00:00.0005611
    14
    2024-11-04 00:00:00.0006612
    15
    2024-01-08 00:00:00.0005712
    16
    2024-05-20 00:00:00.000224
    17
    2023-12-18 00:00:00.0004812
    18
    2025-03-24 00:00:00.000224
    19
    2024-10-07 00:00:00.0006713
    20
    2024-07-22 00:00:00.000314
    80
    3KB
    349s