@gearbox-protocol/sdk 12.0.0-next.1 → 12.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/cjs/permissionless/bindings/market-configurator.js +1 -0
- package/dist/cjs/permissionless/bindings/treasury-splitter.js +4 -7
- package/dist/esm/permissionless/bindings/market-configurator.js +1 -0
- package/dist/esm/permissionless/bindings/treasury-splitter.js +4 -7
- package/package.json +1 -1
|
@@ -103,13 +103,10 @@ class TreasurySplitterContract extends import_sdk.BaseContract {
|
|
|
103
103
|
abi,
|
|
104
104
|
data: callData
|
|
105
105
|
});
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
};
|
|
111
|
-
}
|
|
112
|
-
return super.parseFunctionParams(params);
|
|
106
|
+
return {
|
|
107
|
+
functionName: decoded.functionName,
|
|
108
|
+
...super.parseFunctionParams(decoded)
|
|
109
|
+
};
|
|
113
110
|
}
|
|
114
111
|
default:
|
|
115
112
|
return super.parseFunctionParams(params);
|
|
@@ -82,13 +82,10 @@ class TreasurySplitterContract extends BaseContract {
|
|
|
82
82
|
abi,
|
|
83
83
|
data: callData
|
|
84
84
|
});
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
};
|
|
90
|
-
}
|
|
91
|
-
return super.parseFunctionParams(params);
|
|
85
|
+
return {
|
|
86
|
+
functionName: decoded.functionName,
|
|
87
|
+
...super.parseFunctionParams(decoded)
|
|
88
|
+
};
|
|
92
89
|
}
|
|
93
90
|
default:
|
|
94
91
|
return super.parseFunctionParams(params);
|