datavortexDistribution of Deposits, Borrowings, Liquidations, Repayments, and Withdrawals by Depositor
    Updated 2025-04-16
    WITH Depositors AS (
    SELECT
    depositor AS address,
    SUM(d.amount_usd) AS "total deposited usd"
    FROM
    gnosis.defi.ez_lending_deposits d
    WHERE
    d.amount_usd IS NOT NULL
    GROUP BY
    depositor
    ),
    Withdrawn AS (
    SELECT
    depositor AS address,
    SUM(w.amount_usd) AS "total withdrawn usd"
    FROM
    gnosis.defi.ez_lending_withdraws w
    WHERE
    w.amount_usd IS NOT NULL
    GROUP BY
    depositor
    ),
    Borrowed AS (
    SELECT
    borrower AS address,
    SUM(b.amount_usd) AS "total borrowed usd"
    FROM
    gnosis.defi.ez_lending_borrows b
    WHERE
    b.amount_usd IS NOT NULL
    GROUP BY
    borrower
    ),
    Repaid AS (
    SELECT
    payer AS address,
    Last run: about 1 month ago
    Depositor
    Total Deposited USD
    Total Liquidated USD
    Total Borrowed USD
    Total Repaid USD
    Total Withdrawn USD
    1
    0x5ead411fc6c417689ebb1cf827f6169abf2feed89905090.28175.986662623.616614100.379964232.68
    2
    0x2374da9a66e6321612fb9cca715359db1ae5ee8a9174796.9120015.5310343993.519742027.746328797.23
    3
    0x472e624a8a210dba4f8e0aaa4ad2ed9a68f438604588758.737843.983749056.153009832.631401132.33
    4
    0xd97beffdf558b269257feba5df111ab718b71e244389079.48171816.83492154.062999458.433991754.54
    5
    0xa8a29bc8816e19d2b41cdaae48bd602180b0ff3e3597254.660.881562605.731560524.682328213.74
    6
    0x4ffad6ac852c0af0aa301376f4c5dea3a928b1202531265.34607.631607780.1591656.292481246.65
    7
    0x78358ae7cfe9094a0e7c6d4573ab23e0ba68b3aa1890046.459.25748073.04742809.15802710.07
    8
    0x9c7cc69ed41ee7991b3a691a9680cccc966f25bf1625673.8122.951417650.081416021.221646947.73
    9
    0x329c54289ff5d6b7b7dae13592c6b1eda1543ed41444630.392864.25737923.861947902.68635850.64
    10
    0x2cf7f3dd0023670958ceb0d4d97373ceb8a98aa31413709.62521543.67619573.23154262.7467538.92
    11
    0xfb04df5bc87a78ebcfaa207847da146bd2a7d3901067342.1855582.72768047.36703963.221201703.17
    12
    0x4a03c2a9f3a11b1fc154c8bc9b825e0ff503b028940088.2266345.12637367.24515244.07962349.09
    13
    0xde467125b64a64c504b303079681c775ced7274a752962.420.96470535.12463386.97748975.36
    14
    0x334f12afb7d8740868be04719639616533075234741369.120.1566648.16571317.13756516.68
    15
    0x91fea319ed45c7b12683c8c25e741151fbfee24b599187.0851745.21464246.15385740256308.63
    16
    0x34113c84f95717b34d9818dd47821c42e095bf59511521.640.11238856.36309962.53484996.55
    17
    0xd0ef1730e650179edcf753c8332f23ad58dab407462436.9545223.257800000
    18
    0x45323d50a3e1ca8fdf24df0a323fc9e38fd6b01c442411.6446401.63285714.03186593.69296841.84
    19
    0x241d2a8fea32e5e055e1a686f3d1581b4e8ba0e1401380.29182814.08249298.93101154.49800564.07
    20
    0xbd7acdba6383f3187c0d7dbd046af0834f06e92e332284.7116059.63236471.74215579.6240349.49
    20
    2KB
    8s