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 b8048d6 commit 1a4b6f6
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/dex/dexalot/dexalot.ts
Original file line number Diff line number Diff line change
Expand Up @@ -897,13 +897,14 @@ 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: denormalizedToken.address,
decimals: denormalizedToken.decimals,
address: wrappedToken.address,
decimals: wrappedToken.decimals,
}],
liquidityUSD: pairs[pairName].liquidityUSD,
});
Expand Down

0 comments on commit 1a4b6f6

Please sign in to comment.