datavortexmonthly repayments
    Updated 2 days ago
    SELECT
    DATE_TRUNC('month', block_timestamp) AS "Month",
    COUNT(DISTINCT sender_id) AS "Repayers",
    COUNT(DISTINCT tx_hash) AS "Total Repay Transactions",
    SUM(amount_usd) AS "Total Repaid Volume",
    AVG(amount_usd) AS "Avg Repaid Amount"
    FROM
    near.defi.ez_lending
    WHERE
    symbol IN (
    'USDT',
    'USDt',
    'DAI',
    'FRAX',
    'USDT.e',
    'USDC.e',
    'USN'
    )
    AND actions IN ('repay')
    GROUP BY
    DATE_TRUNC('month', block_timestamp)
    ORDER BY
    "Month";

    Last run: 2 days ago
    Month
    Repayers
    Total Repay Transactions
    Total Repaid Volume
    Avg Repaid Amount
    1
    2022-03-01 00:00:00.00038743693.125220953369.312522095
    2
    2022-04-01 00:00:00.000873755474583097.234212630466.951484564
    3
    2022-05-01 00:00:00.000951848287208337.285384935037.499913775
    4
    2022-06-01 00:00:00.000540450442591425.399381829052.81405142
    5
    2022-07-01 00:00:00.000247193319950381.856088133473.79506055
    6
    2022-08-01 00:00:00.0002061098928582.1435651152715.152466565
    7
    2022-09-01 00:00:00.000166738302127.9111104931533.644218835
    8
    2022-10-01 00:00:00.0001626492186500.401951619548.036689745
    9
    2022-11-01 00:00:00.000163709262750.8708374541476.128487851
    10
    2022-12-01 00:00:00.000752508823.355694255441.167784713
    11
    2023-01-01 00:00:00.0007933217823.084615141187.611417001
    12
    2023-02-01 00:00:00.0005320130234.333722738392.653684711
    13
    2023-03-01 00:00:00.000914782346453.882992887900.518124555
    14
    2023-04-01 00:00:00.00059282880440.5608278653167.052377079
    15
    2023-05-01 00:00:00.00047280557400.772919152079.853630295
    16
    2023-06-01 00:00:00.00050173477249.4737467962758.667478305
    17
    2023-07-01 00:00:00.00036187677767.550397233624.425403194
    18
    2023-08-01 00:00:00.0005813942277736.299375131633.957173153
    19
    2023-09-01 00:00:00.00045475568174.5183761981196.156880792
    20
    2023-10-01 00:00:00.00071695816110.6564163061175.95195449
    38
    3KB
    4s