diff --git a/packages/automation/package.json b/packages/automation/package.json index 5ed5105..2f17d63 100644 --- a/packages/automation/package.json +++ b/packages/automation/package.json @@ -1,7 +1,7 @@ { "name": "@oasisdex/automation", "packageManager": "yarn@1.22.21", - "version": "1.6.0-alpha.14", + "version": "1.6.0-alpha.16", "description": "The set of utilities for Oasis automation", "homepage": "https://github.com/OasisDEX/common#readme", "main": "lib/src/index.js", diff --git a/packages/automation/src/mapping.ts b/packages/automation/src/mapping.ts index 10f6b52..2e8d910 100644 --- a/packages/automation/src/mapping.ts +++ b/packages/automation/src/mapping.ts @@ -247,6 +247,9 @@ export const commandAddressMapping: Record< '0x4A13b02ef24B2906a33e48e8F0AaF343C5316327': { type: CommandContractType.DmaAaveBasicSellCommandV2, }, + '0xea0c35bd1c2fae4d540ce30d9738bc55147f2a9c': { + type: CommandContractType.DmaAaveStopLossCommandV2, + }, }, [EthereumNetwork.BASE]: { '0xb7CB13e4cD2D64e739b5746563978Ab7ee36B064': { diff --git a/packages/automation/src/types.ts b/packages/automation/src/types.ts index 6b4def1..5233d5a 100644 --- a/packages/automation/src/types.ts +++ b/packages/automation/src/types.ts @@ -50,11 +50,11 @@ export enum TriggerType { SparkStopLossToDebtV2 = 118, DmaAaveBasicBuyV2 = 121, DmaAaveBasicSellV2 = 122, - DmaAaveStopLossToCollateralV2 = 123, - DmaAaveStopLossToDebtV2 = 124, - DmaSparkStopLossToCollateralV2 = 125, - DmaSparkStopLossToDebtV2 = 126, - DmaAaveTrailingStopLossV2 = 10005, + DmaAaveStopLossToCollateralV2 = 127, + DmaAaveStopLossToDebtV2 = 128, + DmaSparkStopLossToCollateralV2 = 129, + DmaSparkStopLossToDebtV2 = 130, + DmaAaveTrailingStopLossV2 = 10006, } export const triggerTypeToCommandContractTypeMap: Record = {