diff --git a/src/dex/dexalot/dexalot.ts b/src/dex/dexalot/dexalot.ts index 89bda5bf6..e69cedca0 100644 --- a/src/dex/dexalot/dexalot.ts +++ b/src/dex/dexalot/dexalot.ts @@ -416,15 +416,8 @@ export class Dexalot extends SimpleExchange implements IDex { blockNumber: number, limitPools?: string[], transferFees?: TransferFeeParams, - isFirstSwap?: boolean, ): Promise> { try { - - // Disable multi/mega routes - if(!isFirstSwap) { - return null; - } - if (await this.isRestricted()) { return null; } diff --git a/src/implementations/local-paraswap-sdk.ts b/src/implementations/local-paraswap-sdk.ts index 3ac07c809..d1b573beb 100644 --- a/src/implementations/local-paraswap-sdk.ts +++ b/src/implementations/local-paraswap-sdk.ts @@ -117,7 +117,6 @@ export class LocalParaswapSDK implements IParaSwapSDK { blockNumber, [this.dexKey], poolIdentifiers, - true, transferFees, ); diff --git a/src/pricing-helper.ts b/src/pricing-helper.ts index 754343f20..3c3343165 100644 --- a/src/pricing-helper.ts +++ b/src/pricing-helper.ts @@ -185,7 +185,6 @@ export class PricingHelper { blockNumber: number, dexKeys: string[], limitPoolsMap: { [key: string]: string[] | null } | null, - isFirstSwap: boolean, transferFees: TransferFeeParams = { srcFee: 0, destFee: 0, @@ -227,7 +226,6 @@ export class PricingHelper { blockNumber, limitPools ? limitPools : undefined, transferFees, - isFirstSwap, ) .then(poolPrices => { try {