datavortexToken Used in withdrawals
    Updated 2025-04-16
    SELECT
    token_symbol AS "Token",
    COUNT(DISTINCT tx_hash) AS "Total Withdrawal Transactions",
    SUM(amount_usd) AS "Total Withdrawal Volume USD"
    FROM
    gnosis.defi.ez_lending_withdraws
    WHERE
    amount_usd IS NOT NULL
    GROUP BY
    token_symbol
    ORDER BY
    2 DESC,
    3 DESC
    LIMIT
    10;
    Last run: about 1 month ago
    Token
    Total Withdrawal Transactions
    Total Withdrawal Volume USD
    1
    WXDAI63906221546392.18
    2
    USDC2447041023070.85
    3
    GNO2145538881155.27
    4
    EURe1880813023625.39
    5
    WETH13547114904995.47
    6
    wstETH1081679500325.94
    7
    sDAI5902148059520.85
    8
    USDC.e12757763769.08
    9
    WBTC9163961168.72
    10
    LINK509789544.35
    10
    268B
    2s