KaskoazulAnchor Withdrawals since May 7th - Borrow
Updated 2022-05-07
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
›
⌄
with Anchor_collateral as (
select sender,
currency,
contract_label,
sum (amount) as currency_withdrawals,
sum (amount_usd) as USD_withdrawals,
count (tx_id) as number_txs
from anchor.collateral where event_type = 'withdraw'
and block_timestamp > '2022-05-07'
and amount_usd > 100000
group by 1,2,3
order by 5 desc
),
Anchor_redeem as (
select sender,
currency,
contract_label,
sum (amount) as currency_withdrawals,
sum (amount_usd) as USD_withdrawals,
count (tx_id) as number_txs from anchor.redeem
where block_timestamp >= '2022-05-07'
and amount > 1000000
group by 1,2,3
order by 5 desc
)
select *
from Anchor_collateral
Run a query to Download Data