DB_claims over time
Updated 2022-12-21
99
1
2
3
4
5
6
7
8
9
10
11
›
⌄
select
date_trunc('hour', block_timestamp) as date,
count(distinct tx_hash) as claim_count,
sum(claim_count) over (order by date) as cumulative_claims
from
terra.core.fact_messages
where
from_address = lower('0x8B799381ac40b838BBA4131ffB26197C432AFe78')
and date >= '2022-11-29'
group by 1
order by 1
Run a query to Download Data