barbodRaydium Swaps 3
Updated 2022-04-06
99
1
2
3
4
5
6
7
8
9
10
11
›
⌄
select
swap_from_mint as from_swap,
address_name as token,
count (DISTINCT tx_id) as number_of_transactions,
count (DISTINCT swapper) as walletes
from solana.fact_swaps join solana.dim_labels
on address = swap_from_mint
where block_timestamp>= '2022-01-01'
and succeeded = true
and swap_program = 'raydium v4'
group by 1,2 order by 3 desc
Run a query to Download Data