rezarwzDaily Sellers
    Updated 2024-08-28
    SELECT
    BLOCK_TIMESTAMP :: date as date,
    count(DISTINCT ORIGIN_FROM_ADDRESS) as "Sellers count"
    from
    ethereum.defi.ez_dex_swaps
    where
    TOKEN_In = lower ('{{contract_address}}')
    and BLOCK_TIMESTAMP :: date >= current_date - {{last_x_days}}
    GROUP by
    1
    QueryRunArchived: QueryRun has been archived