SYMBOL | AMOUNT_USD | |
---|---|---|
1 | SOL | 22271968.510767 |
2 | WBTC | 3690981.121448 |
3 | USDC | 2774891.785496 |
4 | ETH | 1886922.94145362 |
5 | USDT | 1196765.755833 |
6 | FARTCOIN | 408686.441335 |
7 | ORACLER | 161842.791494 |
8 | AI16Z | 155264.352607 |
9 | ARC | 139116.44603 |
10 | STONKS | 126672.244913 |
11 | PNUT | 114872.87083 |
12 | JITOSOL | 112625.743246 |
13 | JLP | 102216.395155 |
14 | POPCAT | 96743.908715 |
15 | TRUMP | 76547.001681838 |
16 | GOAT | 65736.096712 |
17 | CBBTC | 51408.850883 |
18 | HOUSE | 51319.311317 |
19 | FARTBOY | 51157.504535 |
20 | $FARTBOY | 51157.504535 |
Pine AnalyticsAggregator Authority Swap To USDC Volume by Token
Updated 2025-05-06
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
30
31
32
33
34
35
36
›
⌄
with tab1 as (
SELECT
tx_from,
sum(AMOUNT) as deposit_volume
FROM solana.core.fact_transfers
WHERE tx_to like '6tZT9AUcQn4iHMH79YZEXSy55kDLQ4VbA3PMtfLVNsFX'
AND mint like 'EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v'
group by 1
order by 2 desc
), tab2 as (
SELECT
tx_from,
sum(AMOUNT) as deposit_volume
FROM solana.core.fact_transfers
WHERE tx_to like '6tZT9AUcQn4iHMH79YZEXSy55kDLQ4VbA3PMtfLVNsFX'
AND mint like 'EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v'
and not tx_id in (select tx_id from solana.defi.fact_swaps_jupiter_summary where block_timestamp > '2025-02-15')
group by 1
order by 2 desc
)
select *
from (
select
symbol,
avg(amount_usd) as amount_usd
from (
select
swap_from_mint,
sum(SWAP_TO_AMOUNT) as amount_usd
Last run: about 1 month ago
...
908
19KB
36s