KingTigerMafia-7mwRZbAlgorand Free Square - Most popular token to be swapped from?
    Updated 2022-06-30
    SELECT asset_name as token_name,
    count(DISTINCT TX_GROUP_ID) as tx_count
    FROM flipside_prod_db.algorand.swaps s
    JOIN flipside_prod_db.algorand.asset a on s.swap_from_asset_id = a.asset_id
    GROUP by 1
    ORDER by 2 DESC
    LIMIT 5