when I tried getReceivedItems function there was error 429, I setTimeout 10 seconds, but error still exist:
offer.getReceivedItems(function(err, items){
if(err){
setTimeout(function(){
self.getReceivedItems(offer);
}, 10000);
return;
}
self.getPrices(items, function(totalPrice, itemsWithPrices){
self.updateBotInventory(self.clearItems(itemsWithPrices));
});
});