pietrektthor rewards from protocol emission
    Updated 2025-05-06
    --ethereum.core.ez_current_balances-- could be hourly
    with rewards as (select to_date(block_timestamp) as day,
    sum(amount) as thor_amount, sum(amount_usd) as thor_amount_usd,
    ROW_NUMBER() OVER(ORDER BY day) as rownum
    from ethereum.core.ez_token_transfers WHERE (to_address='0x815c23eca83261b6ec689b60cc4a58b54bc24d8d'
    and from_address='0x8f631816043c8e8cad0c4c602bfe7bff1b22b182')
    group by day),

    cumulative as (select day, thor_amount, thor_amount_usd, (select SUM(thor_amount) from rewards as b where b.rownum <= a.rownum) as thor_amount_cumulative,
    (select SUM(thor_amount_usd) from rewards as b where b.rownum <= a.rownum) as thor_amount_usd_cumulative from rewards as a)
    select * from cumulative order by day DESC
    Last run: about 1 month ago
    DAY
    THOR_AMOUNT
    THOR_AMOUNT_USD
    THOR_AMOUNT_CUMULATIVE
    THOR_AMOUNT_USD_CUMULATIVE
    1
    2024-11-19 00:00:00.000177043459.00752379990959883167.56080388
    2
    2024-11-18 00:00:00.000353966996.598444379813919879708.55328388
    3
    2024-11-17 00:00:00.000353727036.139672379459959872711.95483988
    4
    2024-11-16 00:00:00.000176803595.33408379106239865675.81516788
    5
    2024-11-15 00:00:00.000353167007.357644378929439862080.48108788
    6
    2024-11-14 00:00:00.000176643554.915328378576279855073.12344388
    7
    2024-11-13 00:00:00.000353607153.561804378399639851518.20811588
    8
    2024-11-12 00:00:00.000353247805.837784378046039844364.64631188
    9
    2024-11-11 00:00:00.000177003905.4696377692799836558.80852788
    10
    2024-11-10 00:00:00.000353887525.046124377515799832653.33892788
    11
    2024-11-09 00:00:00.000353887216.736288377161919825128.29280388
    12
    2024-11-08 00:00:00.000176243452.523976376808039817911.55651588
    13
    2024-11-07 00:00:00.000353366567.90282376631799814459.03253988
    14
    2024-11-06 00:00:00.000176603072.32786376278439807891.12971988
    15
    2024-11-05 00:00:00.000353285123.35488376101839804818.80185988
    16
    2024-11-04 00:00:00.000353645303.368148375748559799695.44697988
    17
    2024-11-03 00:00:00.000176642855.12064375394919794392.07883188
    18
    2024-11-02 00:00:00.000353085928.491352375218279791536.95819188
    19
    2024-11-01 00:00:00.000354205825.501024374865199785608.46683988
    20
    2024-10-31 00:00:00.000176722969.69124374510999779782.96581588
    ...
    922
    67KB
    6s