princefarzamMy Anchor Deposit in Context
Updated 2022-01-28
99
1
2
3
4
5
6
7
8
9
10
11
12
13
›
⌄
-- [your transaction's timestamp:2021-11-21 11:56:37.878]
select
date_trunc('hour',block_timestamp) as block_hour,
date_trunc('minute',block_timestamp) as block_minute,
case
when sender = 'terra1xzw630grutqv5qmucyh7sad4ujjdlr0ejdgu0v' then 'me'
else 'everyone else'
end as depositor,
count(*) as transaction_count -- * in count() means count 'all results' in query
from anchor.deposits
where block_hour = '2021-11-21 11:00:00.000'
group by block_hour, block_minute, depositor
Run a query to Download Data