diff --git a/src/dex/stader/stader-integration.test.ts b/src/dex/stader/stader-integration.test.ts index ad78d5cff..e8bad2f49 100644 --- a/src/dex/stader/stader-integration.test.ts +++ b/src/dex/stader/stader-integration.test.ts @@ -206,25 +206,5 @@ describe('Stader', function () { tokens[srcTokenSymbol].address, ); }); - - it('ETH getTopPoolsForToken', async function () { - const poolLiquidity = await stader.getTopPoolsForToken( - tokens['ETH'].address, - 10, - ); - console.log(`ETH Top Pools:`, poolLiquidity); - - checkPoolsLiquidity(poolLiquidity, tokens['ETH'].address, dexKey); - }); - - it('WETH getTopPoolsForToken', async function () { - const poolLiquidity = await stader.getTopPoolsForToken( - tokens['WETH'].address, - 10, - ); - console.log(`WETH Top Pools:`, poolLiquidity); - - checkPoolsLiquidity(poolLiquidity, tokens['WETH'].address, dexKey); - }); }); }); diff --git a/src/dex/stader/stader.ts b/src/dex/stader/stader.ts index e883dd492..5dedf2264 100644 --- a/src/dex/stader/stader.ts +++ b/src/dex/stader/stader.ts @@ -203,23 +203,6 @@ export class Stader tokenAddress: string, limit: number, ): AsyncOrSync { - if ( - !(isETHAddress(tokenAddress) || this.isWETH(tokenAddress.toLowerCase())) - ) - return []; - - return [ - { - exchange: this.dexKey, - address: this.config.ETHx, - connectorTokens: [ - { - decimals: 18, - address: this.config.ETHx, - }, - ], - liquidityUSD: 1000000000, // Just returning a big number so this DEX will be preferred - }, - ]; + return []; } }