fantasyNumber of LP created each day
    Updated 2025-03-03
    SELECT
    DATE_TRUNC('day', creation_time) AS creation_date,
    COUNT (*) AS total_created
    FROM
    ethereum.defi.dim_dex_liquidity_pools
    WHERE
    creation_date >= '2025-02-01'
    GROUP BY
    1
    ORDER BY
    1 ASC;
    Last run: 3 months ago
    CREATION_DATE
    TOTAL_CREATED
    1
    2025-02-01 00:00:00.000150
    2
    2025-02-02 00:00:00.000113
    3
    2025-02-03 00:00:00.00057
    4
    2025-02-04 00:00:00.000204
    5
    2025-02-05 00:00:00.000235
    6
    2025-02-06 00:00:00.000204
    7
    2025-02-07 00:00:00.000201
    8
    2025-02-08 00:00:00.000179
    9
    2025-02-09 00:00:00.000185
    10
    2025-02-10 00:00:00.000186
    11
    2025-02-11 00:00:00.000218
    12
    2025-02-12 00:00:00.000221
    13
    2025-02-13 00:00:00.000183
    14
    2025-02-14 00:00:00.000178
    15
    2025-02-15 00:00:00.000160
    16
    2025-02-16 00:00:00.000186
    17
    2025-02-17 00:00:00.000173
    18
    2025-02-18 00:00:00.000240
    19
    2025-02-19 00:00:00.000266
    20
    2025-02-20 00:00:00.000235
    31
    991B
    1s