I want to get all the transfers from block_B to block_B but for specific token. I have faced similar issue while trying to get ERC721 transfers. It looked like this:
const contract = new ethers.
const filter = contract.filters.Transfer();
const events = await contract.queryFilters(filter, block_A, block_B);