DAY | CHANGE | CHANGE_CUMULATIVE | |
---|---|---|---|
1 | 2025-06-07 00:00:00.000 | 650.304477 | 1547565.969247 |
2 | 2025-06-06 00:00:00.000 | 2279.397807 | 1546915.66477 |
3 | 2025-06-05 00:00:00.000 | -232872.728149 | 1544636.266963 |
4 | 2025-06-04 00:00:00.000 | 851.772693 | 1777508.995112 |
5 | 2025-06-03 00:00:00.000 | 2224.196568 | 1776657.222419 |
6 | 2025-06-02 00:00:00.000 | 1688.866133 | 1774433.025851 |
7 | 2025-06-01 00:00:00.000 | 2041.136361 | 1772744.159718 |
8 | 2025-05-31 00:00:00.000 | 2758.763825 | 1770703.023357 |
9 | 2025-05-30 00:00:00.000 | 2028.834864 | 1767944.259532 |
10 | 2025-05-29 00:00:00.000 | 1757.687934 | 1765915.424668 |
11 | 2025-05-28 00:00:00.000 | 2112.02462 | 1764157.736734 |
12 | 2025-05-27 00:00:00.000 | 2043.404579 | 1762045.712114 |
13 | 2025-05-26 00:00:00.000 | 1760.057784 | 1760002.307535 |
14 | 2025-05-25 00:00:00.000 | 1984.352795 | 1758242.249751 |
15 | 2025-05-24 00:00:00.000 | 1664.33474 | 1756257.896956 |
16 | 2025-05-23 00:00:00.000 | 1706.764342 | 1754593.562216 |
17 | 2025-05-22 00:00:00.000 | 4824.45305 | 1752886.797874 |
18 | 2025-05-21 00:00:00.000 | 4616.429703 | 1748062.344824 |
19 | 2025-05-20 00:00:00.000 | 1935.486132 | 1743445.915121 |
20 | 2025-05-19 00:00:00.000 | 3279.703353 | 1741510.428989 |
pietrektDev Fund Earnings
Updated 8 hours ago
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
›
⌄
WITH from_transactions_dev_module AS (SELECT to_date(block_timestamp) as date, amount_e8 / 1e8 * (-1) as amount
FROM thorchain.core.fact_transfer_events as c1
WHERE
(c1.from_address = 'thor1d8c0wv4y72kmlytegjmgx825xwumt9qt5xe07k'
or c1.from_address = 'thor1d8c0wv4y72kmlytegjmgx825xwumt9qt5xe07k')
AND c1.asset = 'THOR.RUNE' ORDER BY date),
to_transactions_dev_module AS (SELECT to_date(block_timestamp) as date, amount_e8 / 1e8 as amount
FROM thorchain.core.fact_transfer_events as c1
WHERE
(c1.to_address = 'thor1d8c0wv4y72kmlytegjmgx825xwumt9qt5xe07k'
or c1.to_address = 'thor1d8c0wv4y72kmlytegjmgx825xwumt9qt5xe07k')
AND c1.asset = 'THOR.RUNE' ORDER BY date),
transactions_all_dev_module AS (SELECT * FROM from_transactions_dev_module UNION ALL SELECT *
FROM to_transactions_dev_module),
daily_balance_change_dev_module AS (SELECT date, SUM(amount) as change, ROW_NUMBER() OVER(ORDER BY date) as rownum
FROM transactions_all_dev_module GROUP BY date ORDER BY date)
SELECT date as day,
change,
(SELECT SUM(change) FROM daily_balance_change_dev_module as c2 WHERE c2.rownum <= c1.rownum)
as change_cumulative
FROM daily_balance_change_dev_module as c1 ORDER BY day desc
Last run: about 8 hours agoAuto-refreshes every 24 hours
...
256
14KB
4s