YinkaEth Part C1 copy
    -- forked from maestro_p / Eth Part C1 @ https://flipsidecrypto.xyz/maestro_p/q/aiqOH8B5T1so/eth-part-c1

    select balance_date,
    pool_name,
    token0,
    token1,
    amount_usd,
    platform
    from flipside_prod_db.ethereum.dex_liquidity_pools l
    join flipside_prod_db.ethereum.erc20_balances e on e.user_address = l.pool_address --pool address: dex address
    where pool_name = 'FEI-TRIBE UNI-V2 LP'
    and balance_date between '2021-05-01' and '2021-05-08'
    and amount_usd is not null



    Run a query to Download Data