mlhHumble Swap
    Updated 2022-06-24
    select date_trunc('day', block_timestamp) as day,
    count(distinct(tx_id)) as count_tx,
    count(distinct sender)as swappers
    from flipside_prod_db.algorand.application_call_transaction
    where app_id = '771891102'
    and day >= '2022-01-01'
    group by 1
    order by 1 asc
    Run a query to Download Data