pietrektthor total rewards
    Updated 7 hours ago
    -- 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' or
    from_address='0x3624525075b88b24ecc29ce226b0cec1ffcb6976' or
    from_address='0xd37bbe5744d730a1d98d8dc97c42f0ca46ad7146' or
    from_address='0x560f0108828c8f9f5c0e50e96641a162ae207042')
    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 7 hours agoAuto-refreshes every 24 hours
    DAY
    THOR_AMOUNT
    THOR_AMOUNT_USD
    THOR_AMOUNT_CUMULATIVE
    THOR_AMOUNT_USD_CUMULATIVE
    1
    2025-04-20 00:00:00.00055502.700997812963.28920627374631329.822497816744556.6887575
    2
    2025-04-19 00:00:00.00062078.69645383141.7407488374575827.121516741593.3995512
    3
    2025-04-18 00:00:00.000101131.666341135008.71062016174513748.425046216738451.6588023
    4
    2025-04-17 00:00:00.00038267.424795121870.37740532474412616.758705116733442.9481822
    5
    2025-04-16 00:00:00.00055826.286775662713.31161784974374349.333909916731572.5707769
    6
    2025-04-15 00:00:00.00072003.903817353568.32410292174318523.047134316728859.259159
    7
    2025-04-14 00:00:00.00062254.972639183014.7032755574246519.143316916725290.9350561
    8
    2025-04-13 00:00:00.00086499.137251534337.23974006674184264.170677816722276.2317805
    9
    2025-04-12 00:00:00.00035240.329437561712.95100879974097765.033426216717938.9920405
    10
    2025-04-11 00:00:00.00096679.987414424574.21637733974062524.703988716716226.0410317
    11
    2025-04-10 00:00:00.00075702.586751473719.6307024973965844.716574216711651.8246543
    12
    2025-04-09 00:00:00.00093452.485648254199.40519273673890142.129822816707932.1939519
    13
    2025-04-08 00:00:00.00051893.600900732431.51774189273796689.644174516703732.7887591
    14
    2025-04-06 00:00:00.00034335.992275782044.43365208473744796.043273816701301.2710172
    15
    2025-04-05 00:00:00.00018915.614445181118.57486021673710460.05099816699256.8373651
    16
    2025-04-04 00:00:00.00011778.1132942738.65259713273691544.436552816698138.2625049
    17
    2025-04-03 00:00:00.00067298.479707384194.51234472273679766.323258616697399.6099078
    18
    2025-04-02 00:00:00.000100520.909466501.59190296373612467.843551216693205.0975631
    19
    2025-04-01 00:00:00.00058985.205935273576.50897667973511946.934091316686703.5056601
    20
    2025-03-31 00:00:00.00022680.092834171426.23763787773452961.72815616683126.9966834
    ...
    1039
    93KB
    8s