mmdrezaDaily Flashloan
    select
    date_trunc('day',block_timestamp) as date,
    -- symbol,
    count(distinct tx_hash) as tx_count,
    count(distinct INITIATOR_ADDRESS) as users,
    sum(FLASHLOAN_AMOUNT_USD) as volume,
    sum(PREMIUM_AMOUNT_USD) as fee
    from ethereum.aave.ez_flashloans
    where block_timestamp >= '2023-01-01'
    group by 1
    order by 1 asc
    Run a query to Download Data