Sbhn_NPNearCrowd 1
    Updated 2023-02-06
    select date_trunc('day',block_timestamp) as date,
    tx:actions[0]:FunctionCall:method_name as label,
    count(DISTINCT tx_hash) as txs,
    count(DISTINCT tx_signer) as users,
    sum(transaction_fee/pow(10,24)) as fees,
    rank() over (partition by date order by txs desc) as r
    from near.core.fact_transactions
    where tx_receiver like '%nearcrowd%'
    and date>= CURRENT_DATE - 14
    group by 1,2
    qualify r<= 10

    Run a query to Download Data