mirror of
https://github.com/0xbow-io/privacy-pools-core.git
synced 2026-01-09 01:17:58 -05:00
chore: removing uneeded service
This commit is contained in:
@@ -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();
|
||||
|
||||
@@ -1,11 +0,0 @@
|
||||
type UniswapQuote = {
|
||||
chainId: number;
|
||||
inToken: string;
|
||||
outToken: string;
|
||||
inAmount: bigint;
|
||||
};
|
||||
|
||||
export class UniswapService {
|
||||
async quote({ chainId, inToken, outToken, inAmount }: UniswapQuote) {
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user