From 1a4b6f66ab497023ea6855946f228d6c96e803b6 Mon Sep 17 00:00:00 2001 From: Alexander Burkut Date: Mon, 2 Oct 2023 14:05:55 +0300 Subject: [PATCH] add a fix --- src/dex/dexalot/dexalot.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/dex/dexalot/dexalot.ts b/src/dex/dexalot/dexalot.ts index ac9747ed5..e97cb7645 100644 --- a/src/dex/dexalot/dexalot.ts +++ b/src/dex/dexalot/dexalot.ts @@ -897,13 +897,14 @@ 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: denormalizedToken.address, - decimals: denormalizedToken.decimals, + address: wrappedToken.address, + decimals: wrappedToken.decimals, }], liquidityUSD: pairs[pairName].liquidityUSD, });