andurilDEX Swaps
Updated 2023-03-15
99
1
2
3
4
5
6
7
8
9
10
11
12
›
⌄
select
date_trunc(week,block_timestamp) as week,
swap_program,
count(distinct tx_id) as daily_txs,
count(distinct swapper) as daily_buyers
from solana.core.fact_swaps
where
date(block_timestamp) >= '2022-01-01' and
week < date_trunc(week,current_date)
and succeeded = 'TRUE'
group by 1,2
Run a query to Download Data