@gearbox-protocol/deploy-tools 5.21.5 → 5.21.7
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 +4 -3
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -408715,7 +408715,7 @@ async function loadGovernorBatches(opts) {
|
|
|
408715
408715
|
}
|
|
408716
408716
|
}
|
|
408717
408717
|
let result = Array.from(batches.values());
|
|
408718
|
-
result = result.sort((a, b) => a.block < b.block ? 1 :
|
|
408718
|
+
result = result.sort((a, b) => a.block < b.block ? -1 : 1);
|
|
408719
408719
|
return result.map((b) => ({
|
|
408720
408720
|
id: `batch_${b.block}`,
|
|
408721
408721
|
description: `batch in block ${b.block}`,
|
|
@@ -416742,7 +416742,8 @@ var UpdateParser = class extends ProviderBase {
|
|
|
416742
416742
|
}
|
|
416743
416743
|
async parse(opts) {
|
|
416744
416744
|
await this.init();
|
|
416745
|
-
const { batchDir, safeTxHashes, governor } = opts;
|
|
416745
|
+
const { batchDir, safeTxHashes, unsafeMainnetMeta, governor } = opts;
|
|
416746
|
+
this.#output.input = { governor, safeTxHashes, unsafeMainnetMeta };
|
|
416746
416747
|
if (batchDir) {
|
|
416747
416748
|
await this.#parseBatchDir(batchDir, opts.unsafeMainnetMeta);
|
|
416748
416749
|
} else if (governor) {
|
|
@@ -419032,7 +419033,7 @@ function getRenderer(opts) {
|
|
|
419032
419033
|
var package_default = {
|
|
419033
419034
|
name: "@gearbox-protocol/deploy-tools",
|
|
419034
419035
|
description: "Gearbox deploy tools",
|
|
419035
|
-
version: "5.21.
|
|
419036
|
+
version: "5.21.7",
|
|
419036
419037
|
homepage: "https://gearbox.fi",
|
|
419037
419038
|
keywords: [
|
|
419038
419039
|
"gearbox"
|