@gearbox-protocol/deploy-tools 5.3.2 → 5.3.3

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.
Files changed (2) hide show
  1. package/dist/index.mjs +6 -2
  2. package/package.json +1 -1
package/dist/index.mjs CHANGED
@@ -381671,7 +381671,11 @@ function normalizeTransactions(batch) {
381671
381671
  if (["queueTransaction", "executeTransaction", "cancelTransaction"].includes(t.contractMethod.name)) {
381672
381672
  return normalizeTimelockTx(t);
381673
381673
  }
381674
- return normalizeDirectTx(t);
381674
+ try {
381675
+ return normalizeDirectTx(t);
381676
+ } catch (e) {
381677
+ throw new Error(`failed to normalize direct tx to ${t.to}/${t.contractMethod.name}: ${e}`);
381678
+ }
381675
381679
  });
381676
381680
  }
381677
381681
  function normalizeDirectTx(t) {
@@ -397213,7 +397217,7 @@ function getRenderer(opts) {
397213
397217
  var package_default = {
397214
397218
  name: "@gearbox-protocol/deploy-tools",
397215
397219
  description: "Gearbox deploy tools",
397216
- version: "5.3.2",
397220
+ version: "5.3.3",
397217
397221
  homepage: "https://gearbox.fi",
397218
397222
  keywords: [
397219
397223
  "gearbox"
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@gearbox-protocol/deploy-tools",
3
3
  "description": "Gearbox deploy tools",
4
- "version": "5.3.2",
4
+ "version": "5.3.3",
5
5
  "homepage": "https://gearbox.fi",
6
6
  "keywords": [
7
7
  "gearbox"