@steerprotocol/sdk 3.2.5 → 3.2.6
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.browser.mjs +3 -1
- package/dist/index.browser.mjs.map +1 -1
- package/dist/index.cjs +3 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +3 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.browser.mjs
CHANGED
|
@@ -15392,7 +15392,9 @@ const CUSTOM_BEACON_TO_PROTOCOL_MAP = {
|
|
|
15392
15392
|
[MultiPositionManagers.MultiPositionAerodromeV3]: Protocol.AerodromeV3,
|
|
15393
15393
|
[MultiPositionManagers.MultiPositionReserveV4]: Protocol.UniswapV4,
|
|
15394
15394
|
[MultiPositionManagers.TestCypherAlgebraIntegralHook]: Protocol.Cypher,
|
|
15395
|
-
[MultiPositionManagers.TestQuickswapAlgebraIntegralHook]: Protocol.QuickSwapIntegral
|
|
15395
|
+
[MultiPositionManagers.TestQuickswapAlgebraIntegralHook]: Protocol.QuickSwapIntegral,
|
|
15396
|
+
[MultiPositionManagers.TestUniswapJITHook]: Protocol.UniswapV4,
|
|
15397
|
+
[MultiPositionManagers.MultiPositionUniswapV4NoOracle]: Protocol.UniswapV4
|
|
15396
15398
|
};
|
|
15397
15399
|
const getCustomProtocolByBeacon = (beacon) => CUSTOM_BEACON_TO_PROTOCOL_MAP[beacon] || Object.entries(CUSTOM_BEACON_TO_PROTOCOL_MAP).find(([customBeacon]) => customBeacon.toLowerCase() === beacon.toLowerCase())?.[1];
|
|
15398
15400
|
/**`
|