PLATFORM | CATEGORY | TRANSACTIONS | |
---|---|---|---|
1 | meteora | Small (<$100) | 21405 |
2 | meteora | Whale ($10K+) | 17277 |
3 | meteora | Medium ($100-$1K) | 8381 |
4 | meteora | Large ($1K-$10K) | 2761 |
5 | orca | Small (<$100) | 1640158 |
6 | orca | Whale ($10K+) | 101956 |
7 | orca | Medium ($100-$1K) | 75237 |
8 | orca | Large ($1K-$10K) | 59960 |
9 | raydium | Small (<$100) | 295831 |
10 | raydium | Whale ($10K+) | 62090 |
11 | raydium | Medium ($100-$1K) | 37716 |
12 | raydium | Large ($1K-$10K) | 28112 |
Afonso_DiazVolume Distribution for deposit
Updated 2 days ago
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
›
⌄
with main as (
select
tx_id,
block_timestamp,
pool_address,
provider_address as user,
pool_name,
platform,
token_a_amount_usd + token_b_amount_usd as amount_usd,
action_type as event_name
from solana.marinade.ez_liquidity_pool_actions
), categorized as (
select
platform,
case
when amount_usd < 100 then 'Small (<$100)'
when amount_usd between 100 and 1000 then 'Medium ($100-$1K)'
when amount_usd between 1000 and 10000 then 'Large ($1K-$10K)'
else 'Whale ($10K+)'
end as category,
count(distinct tx_id) as transactions
from main
where event_name = 'deposit'
group by platform, category
)
select platform, category, transactions
from categorized
order by platform, transactions desc
Last run: 2 days ago
12
420B
4s