lagandispenserdai volume in dex swaps
    Updated 2022-05-17
    SELECT
    sum(amount_usd) as amount,
    platform,
    pool_name
    FROM ethereum.dex_swaps
    WHERE token_address = '0x6b175474e89094c44da98b954eedeac495271d0f'--dai
    AND block_timestamp >= CURRENT_DATE - 90
    GROUP BY 2,3
    ORDER BY amount DESC
    LIMIT 50




    Run a query to Download Data