From 5cf040b78c6c1578dbd12df68247acd384f94be8 Mon Sep 17 00:00:00 2001 From: Alexander Burkut Date: Mon, 2 Oct 2023 15:11:39 +0300 Subject: [PATCH] add a fix --- src/dex/dexalot/dexalot.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/dex/dexalot/dexalot.ts b/src/dex/dexalot/dexalot.ts index e97cb7645..ac9747ed5 100644 --- a/src/dex/dexalot/dexalot.ts +++ b/src/dex/dexalot/dexalot.ts @@ -897,14 +897,13 @@ export class Dexalot extends SimpleExchange implements IDex { } const denormalizedToken = this.denormalizeToken(outputToken); - const wrappedToken = this.dexHelper.config.wrapETH(denormalizedToken); pairsByLiquidity.push({ exchange: this.dexKey, address: this.mainnetRFQAddress, connectorTokens: [{ - address: wrappedToken.address, - decimals: wrappedToken.decimals, + address: denormalizedToken.address, + decimals: denormalizedToken.decimals, }], liquidityUSD: pairs[pairName].liquidityUSD, });