This repository has been archived by the owner on Jan 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 381
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Lido merge conflicts and linting (#285)
- Loading branch information
1 parent
66219c4
commit 98b22a0
Showing
3 changed files
with
9 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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() {} |