TX_DATETIME | CUMULATIVE_TX_COUNT | CUMULATIVE_UNIQUE_USERS | CUMULATIVE_ORE_BRIDGED | |
---|---|---|---|---|
1 | 2024-08-01 21:00:00.000 | 2 | 1 | 0.00002 |
2 | 2024-08-01 23:00:00.000 | 3 | 2 | 0.00003 |
3 | 2024-08-02 00:00:00.000 | 6 | 3 | 0.00006 |
4 | 2024-08-02 20:00:00.000 | 8 | 4 | 100.00006 |
5 | 2024-08-02 23:00:00.000 | 100 | 85 | 638.736773 |
6 | 2024-08-03 00:00:00.000 | 231 | 201 | 1900.510826 |
7 | 2024-08-03 01:00:00.000 | 323 | 286 | 2548.393735 |
8 | 2024-08-03 02:00:00.000 | 381 | 338 | 2828.880186 |
9 | 2024-08-03 03:00:00.000 | 430 | 385 | 2944.566476 |
10 | 2024-08-03 04:00:00.000 | 480 | 432 | 3033.471576 |
11 | 2024-08-03 05:00:00.000 | 508 | 459 | 3091.664849 |
12 | 2024-08-03 06:00:00.000 | 555 | 503 | 3297.134971 |
13 | 2024-08-03 07:00:00.000 | 607 | 550 | 3400.178041 |
14 | 2024-08-03 08:00:00.000 | 644 | 583 | 3438.285779 |
15 | 2024-08-03 09:00:00.000 | 669 | 603 | 3515.01299 |
16 | 2024-08-03 10:00:00.000 | 684 | 618 | 3613.266856 |
17 | 2024-08-03 11:00:00.000 | 753 | 671 | 3695.685109 |
18 | 2024-08-03 12:00:00.000 | 799 | 704 | 3712.847018 |
19 | 2024-08-03 13:00:00.000 | 844 | 743 | 3782.025567 |
20 | 2024-08-03 14:00:00.000 | 889 | 782 | 4041.195722 |
MetaLightCumulative Chart
Updated 2025-02-06
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
›
⌄
WITH hourly_data AS (
SELECT
TO_TIMESTAMP_NTZ(CONCAT(CAST(e.block_timestamp AS DATE)::STRING, ' ', EXTRACT(HOUR FROM e.block_timestamp)::STRING, ':00:00')) AS tx_datetime,
COUNT(e.tx_id) AS tx_count,
COUNT(DISTINCT e.instruction:accounts[0]::STRING) AS unique_users,
SUM(b.burn_amount / 1e9) AS ore_bridged
FROM
solana.core.fact_events e
JOIN
solana.defi.fact_token_burn_actions b
ON
e.tx_id = b.tx_id
WHERE
e.succeeded
AND e.program_id = 'oreV2ZymfyeXgNgBdqMkumTqqAprVqgBWQfoYkrtKWQ'
AND e.instruction:accounts[2] = 'oreoU2P8bN6jkk3jbaiVxYnG1dCXcYxwhwyK9jSybcp'
AND e.instruction:accounts[3] = 'oreoN2tQbHXVaZsr3pf66A48miqcBXCDJozganhEJgz'
AND CAST(e.block_timestamp AS DATE) > CURRENT_DATE - INTERVAL '365 days'
GROUP BY
tx_datetime
)
SELECT
tx_datetime,
SUM(tx_count) OVER (ORDER BY tx_datetime) AS cumulative_tx_count,
SUM(unique_users) OVER (ORDER BY tx_datetime) AS cumulative_unique_users,
SUM(ore_bridged) OVER (ORDER BY tx_datetime) AS cumulative_ore_bridged
FROM
hourly_data
ORDER BY
tx_datetime ASC;
Last run: about 2 months ago
...
547
27KB
43s