m3jiTop Buyers
    Updated 2025-01-28
    SELECT
    purchaser AS "Buyer Address",
    COUNT(DISTINCT tx_id) AS "Number of Transactions",
    SUM(sales_amount) AS "Total Volume Traded (SOL)"
    FROM
    solana.nft.fact_nft_sales
    WHERE
    marketplace ilike '%tensor%'
    AND block_timestamp :: date >= '{{Date}}'
    AND succeeded = 'true'
    GROUP BY
    1
    ORDER BY
    3 DESC

    Auto-refreshes every 12 hours
    QueryRunArchived: QueryRun has been archived