crypto_gostserious-amethyst
    Updated 2024-10-16
    SELECT
    COUNT(DISTINCT wallet_address) AS total_nft_holders
    FROM (
    SELECT buyer_address AS wallet_address
    FROM APTOS.nft.ez_nft_sales
    UNION
    SELECT seller_address AS wallet_address
    FROM APTOS.nft.ez_nft_sales
    );
    -- total holders
    QueryRunArchived: QueryRun has been archived