rezarwz# of Total µ-Tokens Traders
    Updated 2024-02-03
    with all_u as (
    SELECT
    tx_hash,
    block_timestamp,
    ORIGIN_FROM_ADDRESS as ua
    FROM
    ethereum.defi.ez_dex_swaps
    WHERE
    TOKEN_IN in (
    SELECT
    DECODED_LOG:floorToken
    from
    ethereum.core.ez_decoded_event_logs
    where
    contract_address = '0x3eb879cc9a0ef4c6f1d870a40ae187768c278da2'
    and event_name = 'NewCollectionSupported'
    )
    or TOKEN_out in (
    SELECT
    DECODED_LOG:floorToken
    from
    ethereum.core.ez_decoded_event_logs
    where
    contract_address = '0x3eb879cc9a0ef4c6f1d870a40ae187768c278da2'
    and event_name = 'NewCollectionSupported'
    ))
    SELECT
    count(DISTINCT ua) as "# of Total Traders"
    FROM
    all_u
    Last run: about 1 year ago
    # of Total Traders
    1
    4146
    1
    8B
    19s