HosseinUntitled Query
Updated 2022-09-18
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
›
⌄
select
date_trunc('day', block_timestamp::date) as date,
tx_receiver as token,
count(distinct(tx_hash)) as tx_num
from near.core.fact_transactions
where tx_status = 'Success'
and (
tx_receiver = 'token.sweat' or
tx_receiver = 'pixeltoken.near' or
tx_receiver = 'token.v2.ref-finance.near' or
tx_receiver = 'fusotao-token.near'
)
and block_timestamp::date >= '2022-06-15'
group by date, tx_receiver
order by date asc, tx_num desc
Run a query to Download Data