Skip to content
This repository has been archived by the owner on Jan 24, 2024. It is now read-only.

Commit

Permalink
fix: Lido merge conflicts and linting (#285)
Browse files Browse the repository at this point in the history
  • Loading branch information
immasandwich authored Apr 27, 2022
1 parent 66219c4 commit 98b22a0
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 11 deletions.
6 changes: 3 additions & 3 deletions src/apps/lido/ethereum/lido.steth.token-fetcher.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ import { Inject } from '@nestjs/common';

import { IAppToolkit, APP_TOOLKIT } from '~app-toolkit/app-toolkit.interface';
import { Register } from '~app-toolkit/decorators';
import { PositionFetcher } from '~position/position-fetcher.interface';
import { buildDollarDisplayItem } from '~app-toolkit/helpers/presentation/display-item.present';
import { getTokenImg } from '~app-toolkit/helpers/presentation/image.present';
import { ContractType } from '~position/contract.interface';
import { PositionFetcher } from '~position/position-fetcher.interface';
import { AppTokenPosition } from '~position/position.interface';
import { Network } from '~types/network.interface';
import { buildDollarDisplayItem } from '~app-toolkit/helpers/presentation/display-item.present';
import { getTokenImg } from '~app-toolkit/helpers/presentation/image.present';

import { LidoContractFactory } from '../contracts';
import { LIDO_DEFINITION } from '../lido.definition';
Expand Down
6 changes: 3 additions & 3 deletions src/apps/lido/ethereum/lido.wsteth.token-fetcher.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ import { Inject } from '@nestjs/common';

import { IAppToolkit, APP_TOOLKIT } from '~app-toolkit/app-toolkit.interface';
import { Register } from '~app-toolkit/decorators';
import { buildDollarDisplayItem } from '~app-toolkit/helpers/presentation/display-item.present';
import { getTokenImg } from '~app-toolkit/helpers/presentation/image.present';
import { ContractType } from '~position/contract.interface';
import { PositionFetcher } from '~position/position-fetcher.interface';
import { AppTokenPosition } from '~position/position.interface';
import { ContractType } from '~position/contract.interface';
import { Network } from '~types/network.interface';
import { buildDollarDisplayItem } from '~app-toolkit/helpers/presentation/display-item.present';
import { getTokenImg } from '~app-toolkit/helpers/presentation/image.present';

import { LidoContractFactory } from '../contracts';
import { LIDO_DEFINITION } from '../lido.definition';
Expand Down
8 changes: 3 additions & 5 deletions src/apps/lido/lido.module.ts
Original file line number Diff line number Diff line change
@@ -1,22 +1,20 @@
import { Module } from '@nestjs/common';

import { AbstractDynamicApp } from '~app/app.dynamic-module';
import { AbstractApp } from '~app/app.dynamic-module';

import { LidoContractFactory } from './contracts';
import { EthereumLidoBalanceFetcher } from './ethereum/lido.balance-fetcher';
import { EthereumLidoStethTokenFetcher } from './ethereum/lido.steth.token-fetcher';
import { EthereumLidoWstethTokenFetcher } from './ethereum/lido.wsteth.token-fetcher';
import { EthereumLidoTvlFetcher } from './ethereum/lido.tvl-fetcher';
import { EthereumLidoWstethTokenFetcher } from './ethereum/lido.wsteth.token-fetcher';
import { LidoAppDefinition } from './lido.definition';

@Module({
providers: [
LidoAppDefinition,
LidoContractFactory,
EthereumLidoTvlFetcher,
EthereumLidoBalanceFetcher,
EthereumLidoStethTokenFetcher,
EthereumLidoWstethTokenFetcher,
],
})
export class LidoAppModule extends AbstractDynamicApp<LidoAppModule>() {}
export class LidoAppModule extends AbstractApp() {}

0 comments on commit 98b22a0

Please sign in to comment.