cybergenlab[Ecosystem metrics] Project Activity (monthly)
    Updated 2024-11-16
    --Format monthly Dapp sectoral users for Pie Chart graph

    /* Existing sectors in dim_labels
    dex, dapp, operator, games, chadmin, bridge, token, nft, flotsam, cex, defi
    */

    with sectors as (
    select
    date_trunc('month', block_timestamp) as time,
    coalesce((label_type), 'other') as category,
    count(distinct from_address) as users,
    from ethereum.core.fact_transactions as transactions
    left join ethereum.core.dim_labels labels on transactions.to_address = labels.address
    where block_timestamp >= dateadd(month, -1, date_trunc('month',current_date()))
    and block_timestamp < date_trunc('month',current_date())
    and category not in ('token', 'cex', 'chadmin', 'operator', 'flotsam', 'other')
    and status = 'SUCCESS'
    group by 1,2
    )

    select * from sectors















    QueryRunArchived: QueryRun has been archived