@gearbox-protocol/deploy-tools 4.7.0-next.1 → 4.7.0-next.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 +11 -2
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -350277,7 +350277,16 @@ var PriceOracleV3Parser = class extends AbstractParser {
|
|
|
350277
350277
|
// ../../packages/node/dist/parsers/RouterV3Parser.js
|
|
350278
350278
|
var RouterV3Parser = class extends AbstractParser {
|
|
350279
350279
|
constructor(contractType) {
|
|
350280
|
-
super(contractType,
|
|
350280
|
+
super(contractType, [
|
|
350281
|
+
{
|
|
350282
|
+
fragment: "constructor(address addressProvider, (address,uint8)[] tokenToTokenTypes)",
|
|
350283
|
+
comment: "v300"
|
|
350284
|
+
},
|
|
350285
|
+
{
|
|
350286
|
+
fragment: "constructor()",
|
|
350287
|
+
comment: "v301"
|
|
350288
|
+
}
|
|
350289
|
+
]);
|
|
350281
350290
|
this._iFace = IRouterConfiguratorV3__factory.createInterface();
|
|
350282
350291
|
this.parameterParsers = {
|
|
350283
350292
|
"setTokenTypesBatch((address,uint8)[])": [this.#parseTokenTypesBatch]
|
|
@@ -351784,7 +351793,7 @@ function getRenderer(opts) {
|
|
|
351784
351793
|
}
|
|
351785
351794
|
|
|
351786
351795
|
// package.json
|
|
351787
|
-
var version3 = "4.7.0-next.
|
|
351796
|
+
var version3 = "4.7.0-next.2";
|
|
351788
351797
|
|
|
351789
351798
|
// src/version.ts
|
|
351790
351799
|
var version_default = version3;
|