@dhedge/v2-sdk 1.8.0 → 1.8.1
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/v2-sdk.cjs.development.js +1 -3
- package/dist/v2-sdk.cjs.development.js.map +1 -1
- package/dist/v2-sdk.cjs.production.min.js +1 -1
- package/dist/v2-sdk.cjs.production.min.js.map +1 -1
- package/dist/v2-sdk.esm.js +1 -3
- package/dist/v2-sdk.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/services/oneInch/protocols.ts +2 -3
- package/src/test/1inch.test.ts +0 -54
|
@@ -9643,8 +9643,6 @@ function _getEasySwapperTxData() {
|
|
|
9643
9643
|
return _getEasySwapperTxData.apply(this, arguments);
|
|
9644
9644
|
}
|
|
9645
9645
|
|
|
9646
|
-
var excludedProtocols = ["OPTIMISM_PMM6"]; //Clipper
|
|
9647
|
-
|
|
9648
9646
|
function getOneInchProtocols(_x) {
|
|
9649
9647
|
return _getOneInchProtocols.apply(this, arguments);
|
|
9650
9648
|
}
|
|
@@ -9666,7 +9664,7 @@ function _getOneInchProtocols() {
|
|
|
9666
9664
|
return e.id;
|
|
9667
9665
|
});
|
|
9668
9666
|
filteredProtocols = protocols.filter(function (e) {
|
|
9669
|
-
return !
|
|
9667
|
+
return !e.includes("PMM");
|
|
9670
9668
|
});
|
|
9671
9669
|
return _context.abrupt("return", "&protocols=" + filteredProtocols.join(","));
|
|
9672
9670
|
|