permaryNO. OF INFLOW TRANSACTIONS AND USERS
    Updated 2024-10-11
    select
    date_trunc('month', block_timestamp) as month,
    label,
    count(distinct tx_hash) as events,
    count(distinct ORIGIN_FROM_ADDRESS) as users
    FROM ethereum.core.ez_token_transfers
    LEFT outer JOIN ethereum.core.dim_labels
    ON address = to_address
    WHERE label_type LIKE 'cex'
    and block_timestamp > '2024-01-01'
    GROUP BY 1,2
    having events > 190000
    QueryRunArchived: QueryRun has been archived