Sbhn_NPNearCrowd 1
Updated 2023-02-06
99
1
2
3
4
5
6
7
8
9
10
11
12
›
⌄
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