Skip to content

Commit

Permalink
add a fix
Browse files Browse the repository at this point in the history
  • Loading branch information
aburkut committed Oct 2, 2023
1 parent eff13c2 commit 5cf040b
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/dex/dexalot/dexalot.ts
Original file line number Diff line number Diff line change
Expand Up @@ -897,14 +897,13 @@ export class Dexalot extends SimpleExchange implements IDex<DexalotData> {
}

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,
});
Expand Down

0 comments on commit 5cf040b

Please sign in to comment.