PapasotAllamex fees
Updated 2023-01-03
99
1
2
3
4
5
6
7
8
9
10
11
12
13
›
⌄
select
date_trunc('day',block_timestamp) as date,
count(distinct tx_group_id) as alamex_swaps,
sum(alamex_swaps) over (order by date asc rows between unbounded preceding and current row) as total_alamex_swaps
from algorand.transfers
WHERE
receiver = 'H5T5FHYHVC2GFEZS6YQP27QVNCSMSNXCVMALDONJXFCL3L5NN4BKDMISGA'
AND
block_timestamp > '2022-06-27'
group by date
order by date
Run a query to Download Data