superflyUntitled Query
    Updated 2022-07-14
    select U.lending_pool as LENDING_POOL,
    sum(C.tx_fee) as fee_payment
    from flipside_prod_db.crosschain.ez_lending U
    join polygon.core.fact_transactions C
    on U.tx_hash = C.tx_hash
    where U.blockchain = 'Ethereum'
    group by 1
    order by 2 desc
    limit 100
    Run a query to Download Data