zackmendelContract deployed on EEthereum
    Updated 2025-04-01
    SELECT
    DATE_TRUNC(month, created_block_timestamp) AS timespan,
    COUNT(DISTINCT address) AS contracts,
    SUM(contracts) OVER (ORDER BY timespan) AS cumul_contracts,
    COUNT(DISTINCT creator_address) AS creators,
    SUM(creators) OVER (ORDER BY timespan) AS cumul_creators
    FROM ethereum.core.dim_contracts
    GROUP BY 1
    ORDER BY 1
    Last run: 11 days ago
    TIMESPAN
    CONTRACTS
    CUMUL_CONTRACTS
    CREATORS
    CUMUL_CREATORS
    1
    2015-08-01 00:00:00.000680680133133
    2
    2015-09-01 00:00:00.00010521732124257
    3
    2015-10-01 00:00:00.00014963228205462
    4
    2015-11-01 00:00:00.00012164444247709
    5
    2015-12-01 00:00:00.000158660303531062
    6
    2016-01-01 00:00:00.000203880687231785
    7
    2016-02-01 00:00:00.0004175122439332718
    8
    2016-03-01 00:00:00.00054961773916634381
    9
    2016-04-01 00:00:00.0003855215949655346
    10
    2016-05-01 00:00:00.000121813377519757321
    11
    2016-06-01 00:00:00.000484568223115418862
    12
    2016-07-01 00:00:00.00028625110856137210234
    13
    2016-08-01 00:00:00.000782211867892211156
    14
    2016-09-01 00:00:00.000646812514665811814
    15
    2016-10-01 00:00:00.0008060820575439712211
    16
    2016-11-01 00:00:00.0001436322011796813179
    17
    2016-12-01 00:00:00.0001622623634387514054
    18
    2017-01-01 00:00:00.0009025245368403018084
    19
    2017-02-01 00:00:00.0008792254160183019914
    20
    2017-03-01 00:00:00.00018684272844217422088
    ...
    117
    6KB
    31s