SocioAnalyticaavailable liquidity breakdown by tokens
    Updated 2025-01-24
    with supply as (
    SELECT
    token_symbol,
    sum(amount_usd) as amount_supply_usd
    FROM bsc.defi.ez_lending_deposits
    WHERE platform = 'Kinza'
    GROUP BY 1
    )
    ,
    borrow as (
    SELECT
    token_symbol,
    sum(amount_usd) as amount_borrowed_usd
    FROM bsc.defi.ez_lending_borrows
    WHERE platform = 'Kinza'
    GROUP BY 1
    )
    , withdraw as (
    SELECT
    token_symbol,
    sum(amount_usd) as amount_withdraw_usd
    FROM bsc.defi.ez_lending_withdraws
    WHERE platform = 'Kinza'
    GROUP BY 1
    )
    ,
    repay as (
    SELECT
    token_symbol,
    sum(amount_usd) as amount_repay_usd
    FROM bsc.defi.ez_lending_repayments
    WHERE platform = 'Kinza'
    GROUP BY 1
    )

    Auto-refreshes every 24 hours
    QueryRunArchived: QueryRun has been archived