date | Daily mints | Minters | |
---|---|---|---|
1 | 2025-03-07 00:00:00.000 | 17648 | 15663 |
2 | 2025-03-06 00:00:00.000 | 29483 | 26156 |
3 | 2025-03-05 00:00:00.000 | 43479 | 38650 |
4 | 2025-03-04 00:00:00.000 | 39866 | 36622 |
5 | 2025-03-03 00:00:00.000 | 14249 | 10625 |
6 | 2025-03-02 00:00:00.000 | 41905 | 36217 |
7 | 2025-03-01 00:00:00.000 | 83379 | 75771 |
8 | 2025-02-28 00:00:00.000 | 43305 | 36279 |
9 | 2025-02-27 00:00:00.000 | 56979 | 49749 |
10 | 2025-02-26 00:00:00.000 | 116807 | 107680 |
11 | 2025-02-25 00:00:00.000 | 45615 | 39971 |
12 | 2025-02-24 00:00:00.000 | 30105 | 23204 |
13 | 2025-02-23 00:00:00.000 | 25115 | 25105 |
14 | 2025-02-22 00:00:00.000 | 37891 | 36912 |
15 | 2025-02-21 00:00:00.000 | 92835 | 90391 |
16 | 2025-02-20 00:00:00.000 | 24122 | 23292 |
17 | 2025-02-19 00:00:00.000 | 3471 | 3328 |
18 | 2025-02-18 00:00:00.000 | 11 | 8 |
19 | 2025-02-17 00:00:00.000 | 6 | 3 |
20 | 2025-02-15 00:00:00.000 | 1 | 1 |
permaryDaily mints
Updated 2025-03-07
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
›
⌄
select
date_trunc('day', block_timestamp) as "date",
count (*) as "Daily mints",
count(distinct origin_from_address) as "Minters"
from monad.testnet.fact_event_logs
where
--origin_function_signature = '0x1ff7712f'
topic_0 = '0x7a7be958aedb09208ae6ed49fc0841ccb7f951498c9afc1c2bfa4abbd0e3ff82'
and contract_address = lower ('0x9077D31A794D81c21b0650974d5F581F4000CD1a')
group by "date"
order by "date" desc;
--and tx_succeeded = 'true'
--mints
--0x1ff7712f
Last run: about 2 months ago
29
1KB
1s