Skip to content

Commit

Permalink
fix: removed unused imports & poolIface on FluidDexLiquidityProxy
Browse files Browse the repository at this point in the history
  • Loading branch information
KanievskyiDanylo committed Dec 16, 2024
1 parent a2119ed commit e571369
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/dex/fluid-dex/fluid-dex-liquidity-proxy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import { bigIntify, catchParseLogError } from '../../utils';
import { StatefulEventSubscriber } from '../../stateful-event-subscriber';
import { IDexHelper } from '../../dex-helper/idex-helper';
import ResolverABI from '../../abi/fluid-dex/resolver.abi.json';
import FluidDexPoolABI from '../../abi/fluid-dex/fluid-dex.abi.json';
import LiquidityABI from '../../abi/fluid-dex/liquidityUserModule.abi.json';
import {
CommonAddresses,
Expand All @@ -14,7 +13,7 @@ import {
PoolReserveResponse,
} from './types';
import { Address } from '../../types';
import { Contract, ethers } from 'ethers';
import { Contract } from 'ethers';

export class FluidDexLiquidityProxy extends StatefulEventSubscriber<FluidDexLiquidityProxyState> {
handlers: {
Expand All @@ -31,8 +30,6 @@ export class FluidDexLiquidityProxy extends StatefulEventSubscriber<FluidDexLiqu

readonly liquidityIface = new Interface(LiquidityABI);

readonly poolIface = new Interface(FluidDexPoolABI);

readonly resolverIface = new Interface(ResolverABI);

resolverContract: Contract;
Expand Down

0 comments on commit e571369

Please sign in to comment.