WatchmenNFT currency used daywise
    Updated 2023-12-01

    with DapperUtilityCoin as (
    select
    block_timestamp :: date as date,
    count(DISTINCT tx_id) as DapperUtilityCoin
    from
    flow.nft.ez_nft_sales
    where
    currency ilike '%DapperUtilityCoin%'
    group by
    1
    ),
    FlowToken as (
    select
    block_timestamp :: date as date,
    count(DISTINCT tx_id) as FlowToken
    from
    flow.nft.ez_nft_sales
    where
    currency ilike '%FlowToken%'
    group by
    1
    ),
    FUSD as (
    select
    block_timestamp :: date as date,
    count(DISTINCT tx_id) as FUSD
    from
    flow.nft.ez_nft_sales
    where
    currency ilike '%FUSD%'
    group by
    1
    ),
    FazeUtilityCoin as (
    select
    Run a query to Download Data