Updated 2022-12-09Copy Reference Fork
9
1
2
3
4
5
6
7
8
›
⌄
select event_name, count(distinct tx_hash) as txns, count(distinct origin_from_address) as Users, sum(event_inputs:value/1e6) as Total_Vol,
avg(event_inputs:value/1e6) as Average_Vol, median(event_inputs:value/1e6) as Median_Vol
from avalanche.core.fact_event_logs
where tx_status = 'SUCCESS'
and event_name in ('Mint','Burn')
and contract_address = '0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e'
and block_timestamp >= '2022-07-01'
group by 1
Run a query to Download Data