Spectermain summ
Updated 2024-10-29
99
1
2
3
4
5
6
7
8
9
10
11
12
›
⌄
SELECT Date_trunc('week', block_timestamp) as date,
count(distinct tx_hash) as transaction,
sum(transaction) over (order by date) as cum_transaction,
count(DISTINCT sender) as users,
sum(coalesce(amount_in_usd, amount_out_usd)) as volume_usd,
sum(volume_usd) over (order by date) as cum_volume_usd
FROM blast.defi.ez_dex_swaps
GROUP BY date
order by date desc
QueryRunArchived: QueryRun has been archived