MufasaTotal Number of loans that has been initiated grouped by symbol
    Updated 2022-08-12
    select count(tx_id) as total_loans,
    symbol
    from flipside_prod_db.aave.borrows
    where borrower_address = lower('{{Address}}')
    group by symbol
    Run a query to Download Data