AephiaRQ - Daily Crafting txs fees
    Updated 37 minutes ago
    WITH starbase_player AS (
    SELECT
    player_profile
    ,starbase_player


    FROM $query('62a2c594-afe5-4164-9a14-81fb22953bdc')

    )


    ,fees AS (
    SELECT
    date_trunc('day', block_timestamp::date) as date
    ,fe.tx_id
    ---
    ,count(distinct(tx_id)) as txs
    --,max(ft.fee) / 1000000000 as max_fee
    --,txs::int * max_fee::float as sol_payed
    ,ft.fee / 1000000000 as sol_payed
    --,sum(ft.fee) OVER (partition by date, starbase, asset) / 1000000000 as sum_sol_payed

    ,sum(sol_payed) OVER (partition by date) as sol_craft_daily_all
    ,sum(txs) OVER (partition by date) as crafting_txs


    from starbase_player s
    --,crafting c
    ,solana.core.fact_events fe
    inner join solana.core.fact_transactions ft USING(block_timestamp, tx_id)
    WHERE program_id IN ('SAGE2HAwep459SNq61LHvjxPk4pLPEJLoMETef7f7EE')
    AND log_messages::string LIKE '%Crafting%'
    --AND succeeded = 'true'
    AND s.starbase_player IN (instruction:accounts[1], instruction:accounts[2])
    Last run: 39 minutes ago
    DATE
    CRAFTING_TXS
    SOL_CRAFT_DAILY_ALL
    SOL_CRAFT_TXS
    1
    2025-05-10 00:00:00.000198960.5163770.00002595
    2
    2025-05-09 00:00:00.000200850.5364950.00002671
    3
    2025-05-08 00:00:00.000209030.5797380.00002773
    4
    2025-05-07 00:00:00.000217020.5929580.00002732
    5
    2025-05-06 00:00:00.000211070.6654760.00003153
    6
    2025-05-05 00:00:00.000199170.5768850.00002896
    7
    2025-05-04 00:00:00.000218600.6284130.00002875
    8
    2025-05-03 00:00:00.000200650.5374250.00002678
    9
    2025-05-02 00:00:00.000190520.584870.0000307
    10
    2025-05-01 00:00:00.000197710.5824730.00002946
    11
    2025-04-30 00:00:00.000186290.5319840.00002856
    12
    2025-04-29 00:00:00.000194450.5958530.00003064
    13
    2025-04-28 00:00:00.000195730.6238420.00003187
    14
    2025-04-27 00:00:00.000208000.562350.00002704
    15
    2025-04-26 00:00:00.000202960.5906860.0000291
    16
    2025-04-25 00:00:00.000209970.6068190.0000289
    17
    2025-04-24 00:00:00.000216740.6588340.0000304
    18
    2025-04-23 00:00:00.000215210.7416910.00003446
    19
    2025-04-22 00:00:00.000202490.6375880.00003149
    20
    2025-04-21 00:00:00.000205150.6321140.00003081
    30
    2KB
    651s