faraz-Lvyyy8amount of usd that swap from CRV since first of the year
    Updated 2022-10-09
    select
    date_trunc('day', block_timestamp) as date,
    sum (AMOUNT_out_USD) as "amount of usd swap from CRV"
    from ethereum.core.ez_dex_swaps
    WHERE SYMBOL_out = 'CRV'
    and BLOCK_TIMESTAMP >= '2022-01-01'
    GROUP by 1
    order by 1 DESC
    Run a query to Download Data