--NFT Contract Address是NFT的合约地址
select
    buy_wallet_address
from 
(
    SELECT 
        evt_block_time
        ,"to" as buy_wallet_address
        ,row_number( ) over(partition by contract_address order by evt_block_time )  as num_rank
        ,*
    FROM  erc721."ERC721_evt_Transfer"
    WHERE contract_address in ('{{NFT Contract Address}}')
    and "from" in ('\\x0000000000000000000000000000000000000000')
) a 
where num_rank <=200
group by 1