cryptoshipBiggest Sellers
    Updated 2024-05-31
    SELECT seller_address, sum(amount_usd) as Total_Sales_$, count(token_id) as No_of_sells
    FROM sei.nft.ez_nft_sales
    GROUP BY 1
    HAVING sum(amount_usd) is NOT NULL
    ORDER BY 2 DESC
    LIMIT 20
    QueryRunArchived: QueryRun has been archived