freemartianDaily Offer
    Updated 2025-01-03
    with listing_api as (
    SELECT livequery.live.udf_api(
    'https://raw.githubusercontent.com/mehdimarjan/Opensea/refs/heads/main/listing.json'
    ) AS response
    ),
    offer_api as (
    SELECT livequery.live.udf_api(
    'https://raw.githubusercontent.com/mehdimarjan/Opensea/refs/heads/main/offer.json'
    ) AS response
    ),

    offer_data AS(
    SELECT
    to_timestamp(value:event_timestamp) AS offer_time,
    value:order_hash AS order_hash,
    to_timestamp(value:start_date) AS start_date,
    to_timestamp(value:expiration_date) AS expiration_date,
    value:maker AS maker,
    value:order_type as type,
    value:payment:quantity/pow(10,18) AS offer_amount,
    FROM offer_api, LATERAL FLATTEN (input => response:data)
    GROUP BY ALL
    ORDER BY 1 DESC
    )


    SELECT
    offer_time::date AS time,
    count(order_hash) AS transactions,
    count(DISTINCT maker) AS offer_makers,
    SUM(offer_amount) AS offer_amount
    FROM offer_data
    group BY 1



    Last run: 3 months ago
    TIME
    TRANSACTIONS
    OFFER_MAKERS
    OFFER_AMOUNT
    1
    2025-01-02 00:00:00.0001244164106.8051
    2
    2025-01-01 00:00:00.000211653.8292
    3
    2024-12-31 00:00:00.000498157.9384
    4
    2024-12-30 00:00:00.00020962.4556
    5
    2024-12-29 00:00:00.00021610873.0819
    5
    216B
    2s