boomer77top 50 address
Updated 2022-02-18
999
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
30
31
32
33
34
35
36
›
⌄
with addy as (select distinct sender
from anchor.bonds
where block_timestamp >= CURRENT_DATE - 7
union
select distinct sender
from anchor.borrows
where block_timestamp >= CURRENT_DATE - 7
UNION
select distinct sender
from anchor.burns
where block_timestamp >= CURRENT_DATE - 7
UNION
select distinct sender
from anchor.collateral
where block_timestamp >= CURRENT_DATE - 7
UNION
select distinct sender
from anchor.deposits
where block_timestamp >= CURRENT_DATE - 7
UNION
select distinct sender
from anchor.gov_staking
where block_timestamp >= CURRENT_DATE - 7
UNION
select distinct voter
from anchor.gov_vote
where block_timestamp >= CURRENT_DATE - 7
UNION
select distinct sender
from anchor.redeem
where block_timestamp >= CURRENT_DATE - 7
UNION
select distinct sender
from anchor.repay
where block_timestamp >= CURRENT_DATE - 7
UNION
Run a query to Download Data