delete depricated addLiquidityToPool functionality

This commit is contained in:
Steam Deck User
2023-12-15 18:04:51 +04:00
parent 826b3b508c
commit 54bf512d21
2 changed files with 0 additions and 417 deletions

View File

@@ -8,7 +8,6 @@ import type {
VerboseUnitConfig,
} from '../types.js';
import Exchange from './Exchange/index.js';
import FarmingManager from './FarmingManager/index.js';
import { chains, envs } from '../config/index.js';
import type { networkCodes } from '../constants/index.js';
import { IndexerService } from '../services/Indexer/index.js';
@@ -35,8 +34,6 @@ export default class Unit {
public readonly exchange: Exchange;
public readonly farmingManager: FarmingManager;
public readonly config: VerboseUnitConfig;
public readonly contracts: Record<string, string>;
@@ -123,6 +120,5 @@ export default class Unit {
this.config.basicAuth
);
this.exchange = new Exchange(this);
this.farmingManager = new FarmingManager(this);
}
}