@merkl/api 0.15.31 → 0.15.33
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.
@@ -57,7 +57,7 @@ export class StatusService {
|
|
57
57
|
}
|
58
58
|
static async findUpdatesAndDelays() {
|
59
59
|
const merklRoots = await MerklRootService.fetchAll();
|
60
|
-
const delayedCampaignPromises = await Promise.allSettled(Object.keys(merklRoots).map(chainId => StatusService.findManyDelay({ chainId: Number.parseInt(chainId), delayLowerBound:
|
60
|
+
const delayedCampaignPromises = await Promise.allSettled(Object.keys(merklRoots).map(chainId => StatusService.findManyDelay({ chainId: Number.parseInt(chainId), delayLowerBound: 8 * HOUR })));
|
61
61
|
const res = {};
|
62
62
|
for (const [index, chainIdString] of Object.keys(merklRoots).entries()) {
|
63
63
|
const chainId = Number.parseInt(chainIdString);
|