Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mantle #59

Merged
merged 3 commits into from
May 20, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: export module
  • Loading branch information
cauta committed May 20, 2024
commit 05cf71ba4b2b4165ef8f860483abae7b340016b7
Original file line number Diff line number Diff line change
@@ -4,6 +4,7 @@ import {
AvaxBlockHistoryRepository,
BscBlockHistoryRepository,
EthBlockHistoryRepository,
MantleBlockHistoryRepository,
PolygonBlockHistoryRepository,
} from './repositories/block_history.repository';
import { BlockHistoryProviders } from './block_history.provider';
@@ -16,13 +17,15 @@ import { BlockHistoryProviders } from './block_history.provider';
BscBlockHistoryRepository,
PolygonBlockHistoryRepository,
AvaxBlockHistoryRepository,
MantleBlockHistoryRepository,
],
exports: [
...BlockHistoryProviders,
EthBlockHistoryRepository,
BscBlockHistoryRepository,
PolygonBlockHistoryRepository,
AvaxBlockHistoryRepository,
MantleBlockHistoryRepository,
],
})
export class BlockHistoryModelModule {}
Original file line number Diff line number Diff line change
@@ -4,6 +4,7 @@ import {
AvaxEventHistoryRepository,
BscEventHistoryRepository,
EthEventHistoryRepository,
MantleEventHistoryRepository,
PolygonEventHistoryRepository,
} from './repositories/event_history.repository';
import { EventHistoryProviders } from './event_history.provider';
@@ -16,13 +17,15 @@ import { EventHistoryProviders } from './event_history.provider';
BscEventHistoryRepository,
PolygonEventHistoryRepository,
AvaxEventHistoryRepository,
MantleEventHistoryRepository,
],
exports: [
...EventHistoryProviders,
EthEventHistoryRepository,
BscEventHistoryRepository,
PolygonEventHistoryRepository,
AvaxEventHistoryRepository,
MantleEventHistoryRepository,
],
})
export class EventHistoryModelModule {}
3 changes: 3 additions & 0 deletions app/libs/shared_modules/src/monitor/monitor.module.ts
Original file line number Diff line number Diff line change
@@ -5,6 +5,7 @@ import {
AvaxMonitorAddressRepository,
BscMonitorAddressRepository,
EthMonitorAddressRepository,
MantleMonitorAddressRepository,
PolygonMonitorAddressRepository,
} from './repositories/monitor.address.repository';
import { MonitorRepository } from './repositories/monitor.repository';
@@ -20,6 +21,7 @@ import { MonitorWebhookService } from './services/monitor.webhook.service';
BscMonitorAddressRepository,
PolygonMonitorAddressRepository,
AvaxMonitorAddressRepository,
MantleMonitorAddressRepository,
],
exports: [
...MonitorProviders,
@@ -29,6 +31,7 @@ import { MonitorWebhookService } from './services/monitor.webhook.service';
BscMonitorAddressRepository,
PolygonMonitorAddressRepository,
AvaxMonitorAddressRepository,
MantleMonitorAddressRepository,
],
})
export class MonitorModule {}