We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ec70ad commit 007cc24Copy full SHA for 007cc24
src/utils/tokens.ts
@@ -112,13 +112,7 @@ const getSwapsByOneToken = async (outputTokenSymbol: string) => {
112
throw new Error(`Failed to get swaps for 1 ${outputTokenSymbol}`);
113
}
114
115
- const directSwap = await getThreeRouteSwap({
116
- inputTokenSymbol: THREE_ROUTE_TEZ_SYMBOL,
117
- outputTokenSymbol,
118
- realAmount: invertedSwap.output
119
- });
120
-
121
- return { directSwap, invertedSwap, updatedAt };
+ return { directSwap: EMPTY_SWAP, invertedSwap, updatedAt };
122
};
123
124
const getSwaps = async (outputTokenSymbol: string) => {
0 commit comments