DAYS | CONTRACTS | DEPLOYERS | CUM_CONTRACTS | CUM_DEPLOYERS | |
---|---|---|---|---|---|
1 | 2025-03-12 00:00:00.000 | 100095 | 37877 | 4332723 | 1753559 |
2 | 2025-03-11 00:00:00.000 | 296692 | 98276 | 4232628 | 1715682 |
3 | 2025-03-10 00:00:00.000 | 185831 | 62903 | 3935936 | 1617406 |
4 | 2025-03-09 00:00:00.000 | 172814 | 56155 | 3750105 | 1554503 |
5 | 2025-03-08 00:00:00.000 | 157630 | 66909 | 3577291 | 1498348 |
6 | 2025-03-07 00:00:00.000 | 227375 | 101962 | 3419661 | 1431439 |
7 | 2025-03-06 00:00:00.000 | 188937 | 57761 | 3192286 | 1329477 |
8 | 2025-03-05 00:00:00.000 | 187067 | 83953 | 3003349 | 1271716 |
9 | 2025-03-04 00:00:00.000 | 220024 | 116594 | 2816282 | 1187763 |
10 | 2025-03-03 00:00:00.000 | 193999 | 91460 | 2596258 | 1071169 |
11 | 2025-03-02 00:00:00.000 | 215892 | 102252 | 2402259 | 979709 |
12 | 2025-03-01 00:00:00.000 | 263403 | 133758 | 2186367 | 877457 |
13 | 2025-02-28 00:00:00.000 | 331620 | 168991 | 1922964 | 743699 |
14 | 2025-02-27 00:00:00.000 | 363303 | 151487 | 1591344 | 574708 |
15 | 2025-02-26 00:00:00.000 | 484602 | 164114 | 1228041 | 423221 |
16 | 2025-02-25 00:00:00.000 | 253311 | 94270 | 743439 | 259107 |
17 | 2025-02-24 00:00:00.000 | 127188 | 40379 | 490128 | 164837 |
18 | 2025-02-23 00:00:00.000 | 97357 | 31022 | 362940 | 124458 |
19 | 2025-02-22 00:00:00.000 | 68247 | 22208 | 265583 | 93436 |
20 | 2025-02-21 00:00:00.000 | 71779 | 23558 | 197336 | 71228 |
mamad-5XN3k3Monad Contract Deployment
Updated 3 days ago
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
›
⌄
select
date_trunc('day', created_block_timestamp) as days,
count(distinct CREATED_TX_HASH) as contracts,
count(distinct creator_address) as deployers,
sum(count(distinct CREATED_TX_HASH)) over (order by date_trunc('day', created_block_timestamp) asc) as cum_contracts,
sum(count(distinct creator_address)) over (order by date_trunc('day', created_block_timestamp) asc) as cum_deployers
from monad.testnet.dim_contracts
where created_block_timestamp::date >= '2025-02-19'
group by 1
order by 1 desc
Last run: 3 days ago
22
1KB
3s