Hi, this function works well
Moralis.Web3API.token.getAllTokenIds.
Here is my script.
const options = {address: “0x0540E4EE0C5CdBA347C2f0E011ACF8651bB70Eb9” , chain: “avalanche”};
let NFTs = await Moralis.Web3API.token.getAllTokenIds(options);
But it only takes 500 tokens’ information from 10000 tokens.
How can I set the function to receive full information?
- page: 0
- page_size: 500
- result: Array(500)
- [0 … 99]
- [100 … 199]
- [200 … 299]
- [300 … 399]
- [400 … 499]
- length: 500
- total: 10000
Thank you