Flipside CommunitySAGE crafting
    Updated 7 days ago
    -- Star Atlas daily copper crafted and burnt
    -- Original author: Aephia
    -- Original query: https://flipsidecrypto.xyz/Aephia/q/4agnBUwRn9tr/sage-crafting
    -- Original dashboard: https://flipsidecrypto.xyz/Aephia/daily-analysis-xGXyHF

    -- get all the copper burnt by day
    WITH burning AS (
    -- select the date the action took place
    SELECT date_trunc('day', block_timestamp::date) as date
    , SUM(
    -- CPPRam7wKuBkYzN5zCffgNU17RKaeMEns4ZD83BqBVNR is the mint for the copper resource
    CASE WHEN value:parsed:info:mint::string = 'CPPRam7wKuBkYzN5zCffgNU17RKaeMEns4ZD83BqBVNR'
    -- the 'burn' is specified in the tx instruction data
    AND value:parsed:type = 'burn'
    THEN value:parsed:info:amount
    END
    ) as copper_burn_amount
    , SUM(copper_burn_amount) OVER (order by date) as copper_total_burned
    FROM solana.core.fact_events
    -- the lateral flatten allows us to extract each instruction in the event
    , lateral flatten(input => inner_instruction:instructions)
    -- the date where this feature was launched
    WHERE block_timestamp > '2023-09-22'
    -- this is the star atlas burning program id
    AND program_id = 'Craftf1EGzEoPFJ1rpaTSQG1F6hhRRBAf4gRo9hdSZjR'
    AND succeeded = 'true'
    GROUP BY 1
    ORDER BY 1 DESC
    )

    , crafting AS (
    -- select the date the action took place
    SELECT date_trunc('day', block_timestamp::date) as date
    , SUM(
    -- FF2zDTzTeEH8SDwz6D5iqdDqQ8CsPXCuDVv3Uzw4wGN1 is the authority to craft copper
    CASE WHEN value:parsed:info:authority = 'FF2zDTzTeEH8SDwz6D5iqdDqQ8CsPXCuDVv3Uzw4wGN1'
    Last run: 7 days ago
    SYMBOL
    NAME
    DATE
    COPPER_AMOUNT
    COPPER_BURN_AMOUNT
    NET_COPPER_CRAFTED
    TOTAL_BURNED
    TOTAL_CRAFTED
    1
    COPPERCopper2024-08-24 00:00:00.000000-8071367889583493342570
    2
    COPPERCopper2024-08-22 00:00:00.000000-8071367889583493342570
    3
    COPPERCopper2024-08-21 00:00:00.000974209742-8071367889583493342570
    4
    COPPERCopper2024-08-20 00:00:00.000000-8071367889583493332828
    5
    COPPERCopper2024-08-16 00:00:00.000000-8071367889583493332828
    6
    COPPERCopper2024-12-16 00:00:00.000000-8071367889583493374482
    7
    COPPERCopper2024-12-07 00:00:00.000000-8071367889583493374482
    8
    COPPERCopper2024-12-05 00:00:00.000000-8071367889583493374482
    9
    COPPERCopper2024-12-03 00:00:00.000000-8071367889583493374482
    10
    COPPERCopper2025-01-21 00:00:00.000000-8071367889583493394482
    11
    COPPERCopper2025-01-10 00:00:00.000000-8071367889583493394482
    12
    COPPERCopper2025-01-01 00:00:00.00020000020000-8071367889583493394482
    13
    COPPERCopper2024-12-25 00:00:00.000000-8071367889583493374482
    14
    COPPERCopper2024-08-06 00:00:00.000000-8071354072183493332828
    15
    COPPERCopper2024-07-27 00:00:00.0000-50000-50000-8071354072183493332828
    16
    COPPERCopper2024-07-18 00:00:00.000000-8071349072183493332828
    17
    COPPERCopper2024-10-05 00:00:00.000000-8071367889583493374482
    18
    COPPERCopper2024-10-02 00:00:00.000000-8071367889583493374482
    19
    COPPERCopper2024-09-27 00:00:00.00031912031912-8071367889583493374482
    20
    COPPERCopper2024-05-03 00:00:00.000000-8070794884383483876927
    ...
    282
    26KB
    59s