Hello!
I was wondering if the performance can be improved. As per suggestions from your team, we took $199 subscription we upgraded our server still the performance is really poor. its taking too much time to fetch information from the contract. Simple Web3 API call is taking more than 20 sec. If am fetching data directly using Binance API, its not taking more than a sec. Please refer to the below code snippet.
const getBUSD = async () => {
await enableWeb3();
let res2: any = await Moralis.Web3API.native.runContractFunction({...optionsgetBUSD,
chain:'0x38'});
setBUSD(res2);
}
useEffect(()=>{
getBUSD();
},[]);
we didn’t face this type of issue any of our previous projects. This is our first time with Moralis.
your help on this will be much appreciated