SELECT swapper, sum(swap_to_amount) as swapped_amount,count(*) as numberof_swaps
from solana.fact_swaps
WHERE SWAP_TO_MINT = 'DUSTawucrTsGU8hcqRdHDCbuYhCPADMLM2VcCb8VnFnQ' --dust
and swap_program = 'jupiter aggregator v2'
and block_timestamp >= '2022-01-01'
and succeeded = TRUE
GROUP by 1 order by 2 DESC