fidam Distribution of Buyers by Volume
    Updated 2025-01-27
    With deii AS(
    SELECT
    BUYER_ADDRESS,
    Sum(Price_USD) as Volume
    From avalanche.nft.ez_nft_sales
    Group by BUYER_ADDRESS
    )
    SELECT
    Count (DISTINCT BUYER_ADDRESS) AS Sellers,
    CASE
    When Volume <20 Then 'Less than 20'
    When Volume BETWEEN 20 And 50 Then '20 to 50 Volume'
    When Volume Between 50 And 100 Then '50 to 100 volume'
    When Volume BETWEEN 100 And 200 Then '100 to 200 volume'
    When Volume BETWEEN 200 AND 300 Then '200 to 300 volume'
    When Volume >300 Then 'Above 300'
    End as Volume_Category
    From deii
    Group by Volume_Category
    Last run: 3 months ago
    SELLERS
    VOLUME_CATEGORY
    1
    7912Above 300
    2
    51669Less than 20
    3
    3600100 to 200 volume
    4
    611720 to 50 Volume
    5
    402950 to 100 volume
    6
    1875200 to 300 volume
    6
    148B
    1s