hello i wanna use Moralis.Web3API.token.getAllTokenIds inside my self hosted server on binance tesnet what im doing wrong? im getting an empty response
const Moralis = require(āmoralis-v1/nodeā);
const serverUrl = āhttps://xxx.herokuapp.com/serverā;
const appId = ā001ā;
Moralis.start({
serverUrl,
appId,
});
Parse.Cloud.define(āgetAllTokenIdsā, async() => {
const options = {
address: "0x1db5c74a843920fc30c4838473cb44e730066173",
chain:'0x61'
};
let response = await Moralis.Web3API.token.getAllTokenIds( options );
return {response};
});