HOUR | TOTAL_MINTERS | TOTAL_MINTS | |
---|---|---|---|
1 | 2025-02-19 00:00:00.000 | 7 | 16 |
2 | 2025-02-19 01:00:00.000 | 1 | 4 |
3 | 2025-02-19 02:00:00.000 | 2 | 3 |
4 | 2025-02-19 03:00:00.000 | 7 | 11 |
5 | 2025-02-19 04:00:00.000 | 10 | 20 |
6 | 2025-02-19 05:00:00.000 | 6 | 28 |
7 | 2025-02-19 06:00:00.000 | 14 | 14 |
8 | 2025-02-19 07:00:00.000 | 11 | 67 |
9 | 2025-02-19 08:00:00.000 | 12 | 50 |
10 | 2025-02-19 09:00:00.000 | 71 | 227 |
11 | 2025-02-19 10:00:00.000 | 82 | 408 |
12 | 2025-02-19 11:00:00.000 | 91 | 226 |
13 | 2025-02-19 12:00:00.000 | 186 | 381 |
14 | 2025-02-19 13:00:00.000 | 360 | 670 |
15 | 2025-02-19 14:00:00.000 | 1166 | 1516 |
16 | 2025-02-19 15:00:00.000 | 3837 | 5345 |
17 | 2025-02-19 16:00:00.000 | 5679 | 10465 |
18 | 2025-02-19 17:00:00.000 | 16340 | 40244 |
19 | 2025-02-19 18:00:00.000 | 18020 | 36692 |
20 | 2025-02-19 19:00:00.000 | 12973 | 26802 |
datavortexhourly
Updated 2025-02-22
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
›
⌄
WITH erc1155_contracts AS (
SELECT
contract_address
FROM monad.testnet.fact_event_logs
WHERE topic_0 IN (
'0xc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62',
'0x4a39dc06d4c0dbc64b70b5eb2aa10c99d1887e3f0adf967c6fbbfb89c4a79e11'
)
AND block_timestamp >= '2025-02-19'
GROUP BY contract_address
),
decoded_erc1155_mints AS (
SELECT
origin_from_address AS minter,
'0x' || SUBSTR(topics[2], 27) AS to_address,
l.contract_address AS contract_address,
ethereum.public.udf_hex_to_int(topics[3]) AS token_id,
DATE_TRUNC('hour', l.block_timestamp) AS hour,
l.tx_hash AS tx_hash
FROM monad.testnet.fact_event_logs l
WHERE topic_0 IN (
'0xc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62',
'0x4a39dc06d4c0dbc64b70b5eb2aa10c99d1887e3f0adf967c6fbbfb89c4a79e11'
)
AND l.contract_address IN (SELECT contract_address FROM erc1155_contracts)
AND l.block_timestamp >= '2025-02-19'
),
erc721_contracts AS (
SELECT
contract_address
FROM monad.testnet.fact_event_logs
WHERE topic_0 = '0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef'
AND ARRAY_SIZE(topics) = 4
AND block_timestamp >= '2025-02-19'
Last run: 25 days ago
75
3KB
3s