Skip to content

Commit 210a207

Browse files
authored
Merge branch 'main' into fix/cip36-assets-indexing
2 parents 1a33c7e + 1d22916 commit 210a207

File tree

57 files changed

+2183
-1980
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+2183
-1980
lines changed

catalyst_voices/apps/voices/lib/dependency/dependencies.dart

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ final class Dependencies extends DependencyProvider {
7777
})
7878
..registerLazySingleton<ProposalsCubit>(
7979
() => ProposalsCubit(
80+
get<UserService>(),
8081
get<CampaignService>(),
8182
get<ProposalService>(),
8283
),
@@ -175,7 +176,7 @@ final class Dependencies extends DependencyProvider {
175176
get<CatalystDatabase>(),
176177
);
177178
})
178-
..registerLazySingleton<SignedDocumentDataSource>(() {
179+
..registerLazySingleton<DatabaseDocumentsDataSource>(() {
179180
return DatabaseDocumentsDataSource(
180181
get<CatalystDatabase>(),
181182
);
@@ -196,7 +197,7 @@ final class Dependencies extends DependencyProvider {
196197
..registerLazySingleton<DocumentRepository>(() {
197198
return DocumentRepository(
198199
get<DatabaseDraftsDataSource>(),
199-
get<SignedDocumentDataSource>(),
200+
get<DatabaseDocumentsDataSource>(),
200201
get<CatGatewayDocumentDataSource>(),
201202
get<DocumentFavoriteSource>(),
202203
);
@@ -206,6 +207,7 @@ final class Dependencies extends DependencyProvider {
206207
() => ProposalRepository(
207208
get<SignedDocumentManager>(),
208209
get<DocumentRepository>(),
210+
get<DatabaseDocumentsDataSource>(),
209211
),
210212
)
211213
..registerLazySingleton<CommentRepository>(

catalyst_voices/apps/voices/lib/pages/proposals/proposal_pagination_tabview.dart

Lines changed: 0 additions & 35 deletions
This file was deleted.

0 commit comments

Comments
 (0)