chore: removing uneeded service

This commit is contained in:
Francisco Bezzecchi
2025-04-11 21:21:43 -03:00
parent 5e2872981a
commit 4b9817ebe3
2 changed files with 0 additions and 13 deletions

View File

@@ -1,8 +1,6 @@
export { PrivacyPoolRelayer } from "./privacyPoolRelayer.service.js";
import { PrivacyPoolRelayer } from "./privacyPoolRelayer.service.js";
import { QuoteService } from "./quote.service.js";
import { UniswapService } from "./uniswap.service.js";
export const uniswapService = new UniswapService();
export const privacyPoolRelayer = new PrivacyPoolRelayer();
export const quoteService = new QuoteService();

View File

@@ -1,11 +0,0 @@
type UniswapQuote = {
chainId: number;
inToken: string;
outToken: string;
inAmount: bigint;
};
export class UniswapService {
async quote({ chainId, inToken, outToken, inAmount }: UniswapQuote) {
}
}