@gearbox-protocol/deploy-tools 5.24.29 → 5.24.30
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.
- package/dist/index.mjs +7 -6
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -421944,16 +421944,17 @@ var UpdateParser = class extends ProviderBase {
|
|
|
421944
421944
|
});
|
|
421945
421945
|
const queued = batches.filter((b) => b.status === "queued");
|
|
421946
421946
|
this.logger.debug(`loaded ${batches.length} batches, ${queued.length} queued`);
|
|
421947
|
-
|
|
421947
|
+
const input = batches;
|
|
421948
|
+
for (let i = 0; i < input.length; i++) {
|
|
421948
421949
|
try {
|
|
421949
|
-
const parsed = await this.#parseNormalizedBatch(
|
|
421950
|
-
parsed.blockNumber =
|
|
421950
|
+
const parsed = await this.#parseNormalizedBatch(input[i], i, input.length);
|
|
421951
|
+
parsed.blockNumber = input[i].blockNumber;
|
|
421951
421952
|
this.#output.batches.push(parsed);
|
|
421952
421953
|
} catch (e) {
|
|
421953
421954
|
this.#output.batches.push({
|
|
421954
|
-
id:
|
|
421955
|
+
id: input[i].id,
|
|
421955
421956
|
error: `${e}`.replaceAll("\n", "\\n"),
|
|
421956
|
-
blockNumber:
|
|
421957
|
+
blockNumber: input[i].blockNumber
|
|
421957
421958
|
});
|
|
421958
421959
|
}
|
|
421959
421960
|
}
|
|
@@ -424150,7 +424151,7 @@ function getRenderer(opts) {
|
|
|
424150
424151
|
var package_default = {
|
|
424151
424152
|
name: "@gearbox-protocol/deploy-tools",
|
|
424152
424153
|
description: "Gearbox deploy tools",
|
|
424153
|
-
version: "5.24.
|
|
424154
|
+
version: "5.24.30",
|
|
424154
424155
|
homepage: "https://gearbox.fi",
|
|
424155
424156
|
keywords: [
|
|
424156
424157
|
"gearbox"
|