@gearbox-protocol/deploy-tools 3.0.0-next.1 → 3.0.0-next.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.
- package/dist/index.mjs +4 -1
- package/package.json +2 -2
- package/dist/index.mjs.map +0 -7
package/dist/index.mjs
CHANGED
|
@@ -316724,6 +316724,9 @@ function normalizeMultisigTx(tx) {
|
|
|
316724
316724
|
eta: t.contractInputsValues.eta
|
|
316725
316725
|
};
|
|
316726
316726
|
}
|
|
316727
|
+
if (!t.contractInputsValues.signature) {
|
|
316728
|
+
throw new Error(`missing signature in tx ${t.to}.${t.contractMethod}`);
|
|
316729
|
+
}
|
|
316727
316730
|
const sighash = id2(t.contractInputsValues.signature).substring(0, 10);
|
|
316728
316731
|
const frag = FunctionFragment2.from(t.contractInputsValues.signature);
|
|
316729
316732
|
const decoded = AbiCoder2.defaultAbiCoder().decode(frag.inputs, t.contractInputsValues.data);
|
|
@@ -325826,7 +325829,7 @@ function zeroLT() {
|
|
|
325826
325829
|
}
|
|
325827
325830
|
|
|
325828
325831
|
// package.json
|
|
325829
|
-
var version3 = "
|
|
325832
|
+
var version3 = "3.0.0-next.3";
|
|
325830
325833
|
|
|
325831
325834
|
// src/index.ts
|
|
325832
325835
|
var program2 = new Command();
|
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": "3.0.0-next.
|
|
4
|
+
"version": "3.0.0-next.3",
|
|
5
5
|
"homepage": "https://gearbox.fi",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"gearbox"
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"url": "https://github.com/Gearbox-protocol/deploy-tools"
|
|
12
12
|
},
|
|
13
13
|
"type": "module",
|
|
14
|
-
"bin": "./dist/index.
|
|
14
|
+
"bin": "./dist/index.mjs",
|
|
15
15
|
"files": [
|
|
16
16
|
"dist"
|
|
17
17
|
],
|