jjj323Daily Pixels Distributed copy
    Updated 2025-04-04
    -- forked from permary / Daily Pixels Distributed @ https://flipsidecrypto.xyz/permary/q/BoQuQNkcgvhZ/daily-pixels-distributed

    WITH rewards AS (
    SELECT
    tx_hash AS hash,
    DATE_TRUNC('day', block_timestamp) AS date
    FROM ronin.core.fact_transactions
    WHERE to_address = '0x0e6bce8f215c52b53fad009e3bfacbb3be3774a6'
    AND origin_function_signature = '0x9ca96ce0'
    ),

    pixel_rewards AS (
    SELECT
    DATE_TRUNC('day', block_timestamp) AS date,
    SUM(amount) AS total_pixels_distributed,
    sum(amount_usd) as total_usd
    FROM ronin.core.ez_token_transfers
    WHERE contract_address = '0x7eae20d11ef8c779433eb24503def900b9d28ad7'
    AND from_address = '0x0e6bce8f215c52b53fad009e3bfacbb3be3774a6'
    AND tx_hash IN (SELECT hash FROM rewards)
    GROUP BY 1
    )

    SELECT date, total_pixels_distributed, total_usd
    FROM pixel_rewards
    ORDER BY date ASC;



    Last run: 3 months ago
    DATE
    TOTAL_PIXELS_DISTRIBUTED
    TOTAL_USD
    1
    2024-12-15 00:00:00.0000.11729166670.02
    2
    2024-12-16 00:00:00.00028471.367643886395.48
    3
    2024-12-17 00:00:00.00091980.34915234420216.1
    4
    2024-12-18 00:00:00.00077597.38561067715788.36
    5
    2024-12-19 00:00:00.00041214.2911210947415.8
    6
    2024-12-20 00:00:00.00056487.8528890639042.51
    7
    2024-12-21 00:00:00.00038371.9581718756446.41
    8
    2024-12-22 00:00:00.00073045.47073437511644.51
    9
    2024-12-27 00:00:00.00024.3330468753.89
    10
    2025-01-06 00:00:00.00017214.3127617193033.23
    11
    2025-01-07 00:00:00.00050964.9451718758613.26
    12
    2025-01-08 00:00:00.00050227.5317679697493.01
    13
    2025-01-09 00:00:00.00039508.7934246095616.19
    14
    2025-01-10 00:00:00.00028983.4977640624126.76
    15
    2025-01-11 00:00:00.00023959.3950796873399.87
    16
    2025-01-12 00:00:00.00030059.0458281254233.12
    17
    2025-01-13 00:00:00.00033023.4935760044268.44
    18
    2025-01-14 00:00:00.00031804.4733300224260.25
    19
    2025-01-15 00:00:00.00024867.1056179693450.85
    20
    2025-01-16 00:00:00.00037564.2047664065393.35
    98
    5KB
    7s