kingharald-ethStablecoins that Deposited most In Kashi Market for Lending on Polygon Blockchain
    Updated 2022-07-11
    select symbol, sum(amount) as total_amount from polygon.sushi.ez_lending
    where origin_function_signature = '0x656f3d64'
    and action = 'Deposit'
    and (
    symbol = 'USDC' OR
    symbol = 'USDT' OR
    symbol = 'DAI' OR
    symbol = 'sUSD' OR
    symbol = 'TUSD' OR
    symbol = 'USDN'
    )
    group by symbol
    Run a query to Download Data