AshlyCryptosweat1
Updated 2023-05-11
99
1
2
3
4
5
6
7
8
9
10
11
12
13
›
⌄
select
count(distinct (tx_hash)) as tx,
case
when tx_receiver = 'token.sweat' then 'token.sweat'
when tx_receiver = 'app.nearcrowd.near' then 'app.nearcrowd.near'
else 'other'
end as tokem_type
from
near.core.fact_transactions
where
tx_status = 'Success'
group by
tokem_type
Run a query to Download Data