EVENT_NAME | TYPE | TRANSACTIONS | |
---|---|---|---|
1 | Supply | $10 - $50 | 4585 |
2 | Supply | $10,000 - $100,000 | 14523 |
3 | Supply | $100 - $500 | 2928 |
4 | Supply | $1000 - $5000 | 5654 |
5 | Supply | $50 - $100 | 1243 |
6 | Supply | $500 - $1000 | 2279 |
7 | Supply | $5000 - $10,000 | 1080 |
8 | Supply | Above $100,000 | 9845 |
9 | Supply | Below $10 | 9025 |
10 | Withdraw | $10 - $50 | 4440 |
11 | Withdraw | $10,000 - $100,000 | 14374 |
12 | Withdraw | $100 - $500 | 2107 |
13 | Withdraw | $1000 - $5000 | 5248 |
14 | Withdraw | $50 - $100 | 964 |
15 | Withdraw | $500 - $1000 | 2050 |
16 | Withdraw | $5000 - $10,000 | 969 |
17 | Withdraw | Above $100,000 | 6036 |
18 | Withdraw | Below $10 | 8573 |
Afonso_Diazgrouping txns
Updated 1 day ago
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
pricet as (
select
hour::date as dt,
token_address,
avg(price) as token_price_usd
from
aptos.price.ez_prices_hourly
group by 1, 2
),
main as (
select
tx_hash,
block_timestamp,
event_data:amount as amount_unadj,
event_data:coin_name as token_address,
event_data:signer_address as user,
'Supply' as event_name
from
aptos.core.fact_events
where
payload_function like '0x2fe576faa841347a9b1b32c869685deb75a15e3f62dfe37cbd6d52cc403a16f6::pool::lend%'
and event_type = '0x2fe576faa841347a9b1b32c869685deb75a15e3f62dfe37cbd6d52cc403a16f6::pool::LendEvent'
and success
union all
select
tx_hash,
block_timestamp,
event_data:amount as amount_unadj,
event_data:coin_name as token_address,
event_data:signer_address as user,
'Withdraw' as event_name
Last run: 1 day ago
18
583B
56s