@gearbox-protocol/deploy-tools 4.63.1 → 4.63.2
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 +9 -3
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -351115,7 +351115,10 @@ var UpdateParser = class extends ProviderBase {
|
|
|
351115
351115
|
const parsed = await this.#parseNormalizedBatch(normalizeSafeApiBatch(txs[i]), i, total);
|
|
351116
351116
|
this.#output.batches.push(parsed);
|
|
351117
351117
|
} catch (e) {
|
|
351118
|
-
this.#output.batches.push({
|
|
351118
|
+
this.#output.batches.push({
|
|
351119
|
+
id: txs[i].safeTxHash,
|
|
351120
|
+
error: `${e}`.replaceAll("\n", "\\n")
|
|
351121
|
+
});
|
|
351119
351122
|
} finally {
|
|
351120
351123
|
this.#output.safeTxHashes.push(txs[i].safeTxHash);
|
|
351121
351124
|
}
|
|
@@ -351141,7 +351144,10 @@ var UpdateParser = class extends ProviderBase {
|
|
|
351141
351144
|
const parsed = await this.#parseNormalizedBatch(batches[i], i, batches.length);
|
|
351142
351145
|
this.#output.batches.push(parsed);
|
|
351143
351146
|
} catch (e) {
|
|
351144
|
-
this.#output.batches.push({
|
|
351147
|
+
this.#output.batches.push({
|
|
351148
|
+
id: batches[i].id,
|
|
351149
|
+
error: `${e}`.replaceAll("\n", "\\n")
|
|
351150
|
+
});
|
|
351145
351151
|
}
|
|
351146
351152
|
}
|
|
351147
351153
|
this.#output.batchDir = dir;
|
|
@@ -352421,7 +352427,7 @@ function getRenderer(opts) {
|
|
|
352421
352427
|
var package_default = {
|
|
352422
352428
|
name: "@gearbox-protocol/deploy-tools",
|
|
352423
352429
|
description: "Gearbox deploy tools",
|
|
352424
|
-
version: "4.63.
|
|
352430
|
+
version: "4.63.2",
|
|
352425
352431
|
homepage: "https://gearbox.fi",
|
|
352426
352432
|
keywords: [
|
|
352427
352433
|
"gearbox"
|