Hi there
I need to make some thing
that idea i need to know how many holder of My NFT (ERC1155)
yes i can do this
const ownerToken = async() => {
            const nftOptions = {
                address: "0xF35d7ad949394a768E3678F55695cB2D352a96Ax",
                token_id: "1",
                chain: "Rinkeby"
            };
            tokenIdOwners = await Moralis.Web3API.token.getTokenIdOwners(nftOptions);
        };
but next i need to know howmany user has ETH and has other NFT
i try to use async inside .then but not working
how i do this ?
      
    