datavortexMonthly/ Accumulative Deposits Withdrawn
    Updated 2025-04-16
    WITH monthly_volume AS (
    SELECT
    DATE_TRUNC('month', block_timestamp) AS month,
    SUM(amount_usd) AS "monthly withdrawn(usd)"
    FROM gnosis.defi.ez_lending_withdraws
    GROUP BY month
    )
    SELECT
    month,
    "monthly withdrawn(usd)",
    ("monthly withdrawn(usd)" - LAG("monthly withdrawn(usd)") OVER (ORDER BY month)) / NULLIF(LAG("monthly withdrawn(usd)") OVER (ORDER BY month), 0) * 100 AS "percentage_change",
    SUM("monthly withdrawn(usd)") OVER (ORDER BY month) AS "cumulative withdrawn volume"
    FROM monthly_volume
    ORDER BY month;

    Last run: 20 days ago
    MONTH
    monthly withdrawn(usd)
    percentage_change
    cumulative withdrawn volume
    1
    2022-01-01 00:00:00.0001.031.03
    2
    2022-03-01 00:00:00.00046.594423.30097087447.62
    3
    2022-04-01 00:00:00.000495103.581062582.07769908495151.2
    4
    2022-05-01 00:00:00.0002064569.64316.9975179742559720.84
    5
    2022-06-01 00:00:00.0003625985.2375.6291073816185706.07
    6
    2022-07-01 00:00:00.0001354815.78-62.6359266787540521.85
    7
    2022-08-01 00:00:00.0003892837.42187.3333391511433359.27
    8
    2022-09-01 00:00:00.0004029494.393.51047206115462853.66
    9
    2022-10-01 00:00:00.0001599582.03-60.30315778717062435.69
    10
    2022-11-01 00:00:00.0001390180.06-13.09104291518452615.75
    11
    2022-12-01 00:00:00.0001966006.4541.42099333520418622.2
    12
    2023-01-01 00:00:00.0002284421.2416.19601960122703043.44
    13
    2023-02-01 00:00:00.0003264380.2742.89747498625967423.71
    14
    2023-03-01 00:00:00.0003422348.314.83914332729389772.02
    15
    2023-04-01 00:00:00.0001561219.23-54.3816383230950991.25
    16
    2023-05-01 00:00:00.0002982295.591.02349258133933286.75
    17
    2023-06-01 00:00:00.0003676907.8423.2911976737610194.59
    18
    2023-07-01 00:00:00.0001961926.02-46.6419582639572120.61
    19
    2023-08-01 00:00:00.0007669646.75290.92436064447241767.36
    20
    2023-09-01 00:00:00.0003681195.72-52.00306037650922963.08
    39
    2KB
    3s