@merkl/api 0.10.414 → 0.10.415

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -40,7 +40,7 @@ const extract = async () => {
40
40
  data = [];
41
41
  }
42
42
  // Final batch
43
- loadPromises.push(withRetry(load, [data], 5, 60_000));
43
+ loadPromises.push(withRetry(load, [data], 5, 10_000));
44
44
  let count = 0;
45
45
  let failed = 0;
46
46
  const promiseResults = await Promise.allSettled(loadPromises);
@@ -188,6 +188,7 @@ const updatePendings = async (data) => {
188
188
  };
189
189
  // ─────────────────────────────────────────────────────────────────────────────
190
190
  export const main = async () => {
191
+ log.info(`✅ Running for ${process.env.FILENAME}`);
191
192
  const start = moment().unix();
192
193
  // ─── Start Rewards ETL ───────────────────────────────────────────────
193
194
  const { count, failed } = await extract();