DATE | CHAIN | DAILY_UNIQUE_MINTERS | CUMULATIVE_MINTERS | |
---|---|---|---|---|
1 | 2024-06-04 00:00:00.000 | Ethereum | 1 | 1 |
2 | 2024-06-05 00:00:00.000 | Ethereum | 2 | 3 |
3 | 2024-06-06 00:00:00.000 | Ethereum | 1 | 4 |
4 | 2024-06-17 00:00:00.000 | Ethereum | 1 | 5 |
5 | 2024-06-28 00:00:00.000 | Ethereum | 1 | 6 |
6 | 2024-07-08 00:00:00.000 | Ethereum | 1 | 7 |
7 | 2024-07-11 00:00:00.000 | Ethereum | 1 | 8 |
8 | 2024-07-16 00:00:00.000 | Ethereum | 1 | 9 |
9 | 2024-07-18 00:00:00.000 | Ethereum | 1 | 10 |
10 | 2024-07-26 00:00:00.000 | Ethereum | 1 | 11 |
11 | 2024-07-29 00:00:00.000 | Ethereum | 1 | 12 |
12 | 2024-08-02 00:00:00.000 | Ethereum | 1 | 13 |
13 | 2024-08-09 00:00:00.000 | Ethereum | 1 | 14 |
14 | 2024-08-15 00:00:00.000 | Ethereum | 1 | 15 |
15 | 2024-08-16 00:00:00.000 | Ethereum | 1 | 16 |
16 | 2024-08-19 00:00:00.000 | Ethereum | 2 | 18 |
17 | 2024-08-20 00:00:00.000 | Ethereum | 2 | 20 |
18 | 2024-08-21 00:00:00.000 | Ethereum | 8 | 28 |
19 | 2024-08-22 00:00:00.000 | Ethereum | 156 | 184 |
20 | 2024-08-23 00:00:00.000 | Ethereum | 146 | 330 |
datavortexCummulative minters and TVl
Updated 2025-02-16
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 minters AS (
SELECT
'Ethereum' AS chain,
DATE_TRUNC('day', block_timestamp) AS date,
origin_from_address
FROM ethereum.core.ez_decoded_event_logs
WHERE
contract_address = LOWER('0x8236a87084f8B84306f72007F36F2618A5634494')
AND decoded_log:from = '0x0000000000000000000000000000000000000000'
AND event_name = 'Transfer'
UNION ALL
SELECT
'Base' AS chain,
DATE_TRUNC('day', block_timestamp) AS date,
origin_from_address
FROM base.core.ez_decoded_event_logs
WHERE
contract_address = LOWER('0xecAc9C5F704e954931349Da37F60E39f515c11c1')
AND decoded_log:from = '0x0000000000000000000000000000000000000000'
AND event_name = 'Transfer'
UNION ALL
SELECT
'BSC' AS chain,
DATE_TRUNC('day', block_timestamp) AS date,
origin_from_address
FROM bsc.core.ez_decoded_event_logs
WHERE
contract_address = LOWER('0xecAc9C5F704e954931349Da37F60E39f515c11c1')
AND decoded_log:from = '0x0000000000000000000000000000000000000000'
AND event_name = 'Transfer'
),
daily_minters AS (
Last run: 3 months ago
...
375
17KB
44s