@ludo.ninja/api 3.0.46 → 3.0.48
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/graphql_tools/__generated__/searchHost/schema.d.ts +207 -0
- package/build/graphql_tools/__generated__/searchHost/schema.js +110 -2
- package/build/index.d.ts +35 -1
- package/package.json +1 -1
- package/src/graphql_tools/__generated__/searchHost/schema.ts +264 -0
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -192,6 +192,24 @@ export declare enum ILeaderboardType {
|
|
|
192
192
|
Airdrops = "AIRDROPS",
|
|
193
193
|
Projects = "PROJECTS"
|
|
194
194
|
}
|
|
195
|
+
export type ILudoNftTon = {
|
|
196
|
+
id: Scalars['ID'];
|
|
197
|
+
name?: Maybe<Scalars['String']>;
|
|
198
|
+
description?: Maybe<Scalars['String']>;
|
|
199
|
+
address: Scalars['String'];
|
|
200
|
+
tokenId: Scalars['String'];
|
|
201
|
+
nftIndexInCollection: Scalars['Int'];
|
|
202
|
+
creationDate?: Maybe<Scalars['Long']>;
|
|
203
|
+
rank?: Maybe<Scalars['Float']>;
|
|
204
|
+
userId: Scalars['String'];
|
|
205
|
+
ownersAddresses: Array<Scalars['String']>;
|
|
206
|
+
creatorsAddresses: Array<Scalars['String']>;
|
|
207
|
+
originalUrls: Array<Scalars['String']>;
|
|
208
|
+
};
|
|
209
|
+
export type ILudoNftsTonPage = {
|
|
210
|
+
ludoNftsTon: Array<ILudoNftTon>;
|
|
211
|
+
nextPage?: Maybe<IPage>;
|
|
212
|
+
};
|
|
195
213
|
export type IMedia = {
|
|
196
214
|
originalUrl?: Maybe<Scalars['String']>;
|
|
197
215
|
url?: Maybe<Scalars['String']>;
|
|
@@ -282,6 +300,41 @@ export type IProfilePage = {
|
|
|
282
300
|
profiles: Array<Maybe<IProfile>>;
|
|
283
301
|
nextPage?: Maybe<IPage>;
|
|
284
302
|
};
|
|
303
|
+
export type IProject = {
|
|
304
|
+
id: Scalars['ID'];
|
|
305
|
+
name: Scalars['String'];
|
|
306
|
+
marketCap?: Maybe<Scalars['Int']>;
|
|
307
|
+
tradingVolume24h?: Maybe<Scalars['Float']>;
|
|
308
|
+
liquidity?: Maybe<Scalars['Float']>;
|
|
309
|
+
avgInvestorsUserRank?: Maybe<Scalars['Int']>;
|
|
310
|
+
vcBackers?: Maybe<Scalars['Int']>;
|
|
311
|
+
securityScore?: Maybe<Scalars['Int']>;
|
|
312
|
+
types: Array<IProjectType>;
|
|
313
|
+
};
|
|
314
|
+
export declare enum IProjectType {
|
|
315
|
+
MemeCoins = "MEME_COINS",
|
|
316
|
+
AiAgents = "AI_AGENTS",
|
|
317
|
+
GameFi = "GAME_FI",
|
|
318
|
+
DeFi = "DE_FI"
|
|
319
|
+
}
|
|
320
|
+
export type IProjectsLeaderboardFilterInput = {
|
|
321
|
+
nameTerm?: Maybe<Scalars['String']>;
|
|
322
|
+
marketCap?: Maybe<Scalars['Int']>;
|
|
323
|
+
liquidity?: Maybe<Scalars['Float']>;
|
|
324
|
+
avgInvestorsUserRank?: Maybe<Scalars['Int']>;
|
|
325
|
+
vcBackers?: Maybe<Scalars['Int']>;
|
|
326
|
+
securityScore?: Maybe<Scalars['Int']>;
|
|
327
|
+
type?: Maybe<IProjectType>;
|
|
328
|
+
};
|
|
329
|
+
export type IProjectsLeaderboardSortInput = {
|
|
330
|
+
sortByMarketCap?: Maybe<ISort>;
|
|
331
|
+
sortByLiquidity?: Maybe<ISort>;
|
|
332
|
+
sortBySecurityScore?: Maybe<ISort>;
|
|
333
|
+
};
|
|
334
|
+
export type IProjectsPage = {
|
|
335
|
+
projects: Array<IProject>;
|
|
336
|
+
nextPage?: Maybe<IPage>;
|
|
337
|
+
};
|
|
285
338
|
export type IQuery = {
|
|
286
339
|
getDummy: Scalars['String'];
|
|
287
340
|
fetchUserPortfolio: Array<Maybe<ICurrencyAmountPair>>;
|
|
@@ -303,10 +356,13 @@ export type IQuery = {
|
|
|
303
356
|
findUserCreations: ICreationsPage;
|
|
304
357
|
findUserLudoCreations: ICreationsPage;
|
|
305
358
|
fetchAvailableLeaderboards?: Maybe<Array<Maybe<ILeaderboardType>>>;
|
|
359
|
+
fetchMyLudoNftsTonPage: ILudoNftsTonPage;
|
|
360
|
+
fetchLudoNftsTonPage: ILudoNftsTonPage;
|
|
306
361
|
fetchAirdropsLeaderboard: IOpportunitiesPage;
|
|
307
362
|
findProfilesByName: IProfilePage;
|
|
308
363
|
fetchUserReferralsInfoPage: IUserReferralsInfoPage;
|
|
309
364
|
fetchUserReferralsInfoCsv: Scalars['String'];
|
|
365
|
+
fetchProjectsLeaderboard: IProjectsPage;
|
|
310
366
|
};
|
|
311
367
|
export type IQueryFetchUserPortfolioArgs = {
|
|
312
368
|
ownerId: Scalars['String'];
|
|
@@ -374,6 +430,13 @@ export type IQueryFindUserLudoCreationsArgs = {
|
|
|
374
430
|
ownerId: Scalars['String'];
|
|
375
431
|
page?: Maybe<IPageInput>;
|
|
376
432
|
};
|
|
433
|
+
export type IQueryFetchMyLudoNftsTonPageArgs = {
|
|
434
|
+
page: IPageInput;
|
|
435
|
+
};
|
|
436
|
+
export type IQueryFetchLudoNftsTonPageArgs = {
|
|
437
|
+
userId: Scalars['ID'];
|
|
438
|
+
page: IPageInput;
|
|
439
|
+
};
|
|
377
440
|
export type IQueryFetchAirdropsLeaderboardArgs = {
|
|
378
441
|
filter: IAirdropsLeaderboardFilterInput;
|
|
379
442
|
sort: IAirdropsLeaderboardSortInput;
|
|
@@ -388,6 +451,11 @@ export type IQueryFetchUserReferralsInfoPageArgs = {
|
|
|
388
451
|
sort: IUserReferralsInfoSortInput;
|
|
389
452
|
page: IPageInput;
|
|
390
453
|
};
|
|
454
|
+
export type IQueryFetchProjectsLeaderboardArgs = {
|
|
455
|
+
filter: IProjectsLeaderboardFilterInput;
|
|
456
|
+
sort: IProjectsLeaderboardSortInput;
|
|
457
|
+
page: IPageInput;
|
|
458
|
+
};
|
|
391
459
|
export declare enum IReftypeColor {
|
|
392
460
|
Red = "RED",
|
|
393
461
|
Green = "GREEN",
|
|
@@ -501,6 +569,8 @@ export type IResolversTypes = {
|
|
|
501
569
|
DynamicCollectionDataInput: IDynamicCollectionDataInput;
|
|
502
570
|
LeaderboardType: ILeaderboardType;
|
|
503
571
|
Long: ResolverTypeWrapper<Scalars['Long']>;
|
|
572
|
+
LudoNftTon: ResolverTypeWrapper<ILudoNftTon>;
|
|
573
|
+
LudoNftsTonPage: ResolverTypeWrapper<ILudoNftsTonPage>;
|
|
504
574
|
Media: ResolverTypeWrapper<IMedia>;
|
|
505
575
|
Mutation: ResolverTypeWrapper<{}>;
|
|
506
576
|
OpportunitiesPage: ResolverTypeWrapper<IOpportunitiesPage>;
|
|
@@ -509,6 +579,11 @@ export type IResolversTypes = {
|
|
|
509
579
|
PageInput: IPageInput;
|
|
510
580
|
Profile: ResolverTypeWrapper<IProfile>;
|
|
511
581
|
ProfilePage: ResolverTypeWrapper<IProfilePage>;
|
|
582
|
+
Project: ResolverTypeWrapper<IProject>;
|
|
583
|
+
ProjectType: IProjectType;
|
|
584
|
+
ProjectsLeaderboardFilterInput: IProjectsLeaderboardFilterInput;
|
|
585
|
+
ProjectsLeaderboardSortInput: IProjectsLeaderboardSortInput;
|
|
586
|
+
ProjectsPage: ResolverTypeWrapper<IProjectsPage>;
|
|
512
587
|
Query: ResolverTypeWrapper<{}>;
|
|
513
588
|
ReftypeColor: IReftypeColor;
|
|
514
589
|
Sort: ISort;
|
|
@@ -545,6 +620,8 @@ export type IResolversParentTypes = {
|
|
|
545
620
|
DynamicCollectionData: IDynamicCollectionData;
|
|
546
621
|
DynamicCollectionDataInput: IDynamicCollectionDataInput;
|
|
547
622
|
Long: Scalars['Long'];
|
|
623
|
+
LudoNftTon: ILudoNftTon;
|
|
624
|
+
LudoNftsTonPage: ILudoNftsTonPage;
|
|
548
625
|
Media: IMedia;
|
|
549
626
|
Mutation: {};
|
|
550
627
|
OpportunitiesPage: IOpportunitiesPage;
|
|
@@ -553,6 +630,10 @@ export type IResolversParentTypes = {
|
|
|
553
630
|
PageInput: IPageInput;
|
|
554
631
|
Profile: IProfile;
|
|
555
632
|
ProfilePage: IProfilePage;
|
|
633
|
+
Project: IProject;
|
|
634
|
+
ProjectsLeaderboardFilterInput: IProjectsLeaderboardFilterInput;
|
|
635
|
+
ProjectsLeaderboardSortInput: IProjectsLeaderboardSortInput;
|
|
636
|
+
ProjectsPage: IProjectsPage;
|
|
556
637
|
Query: {};
|
|
557
638
|
Sort: ISort;
|
|
558
639
|
TopEntitiesPage: ITopEntitiesPage;
|
|
@@ -718,6 +799,26 @@ export type IDynamicCollectionDataResolvers<ContextType = any, ParentType extend
|
|
|
718
799
|
export interface ILongScalarConfig extends GraphQLScalarTypeConfig<IResolversTypes['Long'], any> {
|
|
719
800
|
name: 'Long';
|
|
720
801
|
}
|
|
802
|
+
export type ILudoNftTonResolvers<ContextType = any, ParentType extends IResolversParentTypes['LudoNftTon'] = IResolversParentTypes['LudoNftTon']> = {
|
|
803
|
+
id?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
|
|
804
|
+
name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
805
|
+
description?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
806
|
+
address?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
807
|
+
tokenId?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
808
|
+
nftIndexInCollection?: Resolver<IResolversTypes['Int'], ParentType, ContextType>;
|
|
809
|
+
creationDate?: Resolver<Maybe<IResolversTypes['Long']>, ParentType, ContextType>;
|
|
810
|
+
rank?: Resolver<Maybe<IResolversTypes['Float']>, ParentType, ContextType>;
|
|
811
|
+
userId?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
812
|
+
ownersAddresses?: Resolver<Array<IResolversTypes['String']>, ParentType, ContextType>;
|
|
813
|
+
creatorsAddresses?: Resolver<Array<IResolversTypes['String']>, ParentType, ContextType>;
|
|
814
|
+
originalUrls?: Resolver<Array<IResolversTypes['String']>, ParentType, ContextType>;
|
|
815
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
816
|
+
};
|
|
817
|
+
export type ILudoNftsTonPageResolvers<ContextType = any, ParentType extends IResolversParentTypes['LudoNftsTonPage'] = IResolversParentTypes['LudoNftsTonPage']> = {
|
|
818
|
+
ludoNftsTon?: Resolver<Array<IResolversTypes['LudoNftTon']>, ParentType, ContextType>;
|
|
819
|
+
nextPage?: Resolver<Maybe<IResolversTypes['Page']>, ParentType, ContextType>;
|
|
820
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
821
|
+
};
|
|
721
822
|
export type IMediaResolvers<ContextType = any, ParentType extends IResolversParentTypes['Media'] = IResolversParentTypes['Media']> = {
|
|
722
823
|
originalUrl?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
723
824
|
url?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
@@ -797,6 +898,23 @@ export type IProfilePageResolvers<ContextType = any, ParentType extends IResolve
|
|
|
797
898
|
nextPage?: Resolver<Maybe<IResolversTypes['Page']>, ParentType, ContextType>;
|
|
798
899
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
799
900
|
};
|
|
901
|
+
export type IProjectResolvers<ContextType = any, ParentType extends IResolversParentTypes['Project'] = IResolversParentTypes['Project']> = {
|
|
902
|
+
id?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
|
|
903
|
+
name?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
904
|
+
marketCap?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
|
905
|
+
tradingVolume24h?: Resolver<Maybe<IResolversTypes['Float']>, ParentType, ContextType>;
|
|
906
|
+
liquidity?: Resolver<Maybe<IResolversTypes['Float']>, ParentType, ContextType>;
|
|
907
|
+
avgInvestorsUserRank?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
|
908
|
+
vcBackers?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
|
909
|
+
securityScore?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
|
910
|
+
types?: Resolver<Array<IResolversTypes['ProjectType']>, ParentType, ContextType>;
|
|
911
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
912
|
+
};
|
|
913
|
+
export type IProjectsPageResolvers<ContextType = any, ParentType extends IResolversParentTypes['ProjectsPage'] = IResolversParentTypes['ProjectsPage']> = {
|
|
914
|
+
projects?: Resolver<Array<IResolversTypes['Project']>, ParentType, ContextType>;
|
|
915
|
+
nextPage?: Resolver<Maybe<IResolversTypes['Page']>, ParentType, ContextType>;
|
|
916
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
917
|
+
};
|
|
800
918
|
export type IQueryResolvers<ContextType = any, ParentType extends IResolversParentTypes['Query'] = IResolversParentTypes['Query']> = {
|
|
801
919
|
getDummy?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
802
920
|
fetchUserPortfolio?: Resolver<Array<Maybe<IResolversTypes['CurrencyAmountPair']>>, ParentType, ContextType, RequireFields<IQueryFetchUserPortfolioArgs, 'ownerId'>>;
|
|
@@ -818,10 +936,13 @@ export type IQueryResolvers<ContextType = any, ParentType extends IResolversPare
|
|
|
818
936
|
findUserCreations?: Resolver<IResolversTypes['CreationsPage'], ParentType, ContextType, RequireFields<IQueryFindUserCreationsArgs, 'ownerId' | 'input'>>;
|
|
819
937
|
findUserLudoCreations?: Resolver<IResolversTypes['CreationsPage'], ParentType, ContextType, RequireFields<IQueryFindUserLudoCreationsArgs, 'ownerId'>>;
|
|
820
938
|
fetchAvailableLeaderboards?: Resolver<Maybe<Array<Maybe<IResolversTypes['LeaderboardType']>>>, ParentType, ContextType>;
|
|
939
|
+
fetchMyLudoNftsTonPage?: Resolver<IResolversTypes['LudoNftsTonPage'], ParentType, ContextType, RequireFields<IQueryFetchMyLudoNftsTonPageArgs, 'page'>>;
|
|
940
|
+
fetchLudoNftsTonPage?: Resolver<IResolversTypes['LudoNftsTonPage'], ParentType, ContextType, RequireFields<IQueryFetchLudoNftsTonPageArgs, 'userId' | 'page'>>;
|
|
821
941
|
fetchAirdropsLeaderboard?: Resolver<IResolversTypes['OpportunitiesPage'], ParentType, ContextType, RequireFields<IQueryFetchAirdropsLeaderboardArgs, 'filter' | 'sort' | 'page'>>;
|
|
822
942
|
findProfilesByName?: Resolver<IResolversTypes['ProfilePage'], ParentType, ContextType, RequireFields<IQueryFindProfilesByNameArgs, 'name'>>;
|
|
823
943
|
fetchUserReferralsInfoPage?: Resolver<IResolversTypes['UserReferralsInfoPage'], ParentType, ContextType, RequireFields<IQueryFetchUserReferralsInfoPageArgs, 'filter' | 'sort' | 'page'>>;
|
|
824
944
|
fetchUserReferralsInfoCsv?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
945
|
+
fetchProjectsLeaderboard?: Resolver<IResolversTypes['ProjectsPage'], ParentType, ContextType, RequireFields<IQueryFetchProjectsLeaderboardArgs, 'filter' | 'sort' | 'page'>>;
|
|
825
946
|
};
|
|
826
947
|
export type ITopEntitiesPageResolvers<ContextType = any, ParentType extends IResolversParentTypes['TopEntitiesPage'] = IResolversParentTypes['TopEntitiesPage']> = {
|
|
827
948
|
assets?: Resolver<Array<Maybe<IResolversTypes['Asset']>>, ParentType, ContextType>;
|
|
@@ -863,6 +984,8 @@ export type IResolvers<ContextType = any> = {
|
|
|
863
984
|
DynamicAssetData?: IDynamicAssetDataResolvers<ContextType>;
|
|
864
985
|
DynamicCollectionData?: IDynamicCollectionDataResolvers<ContextType>;
|
|
865
986
|
Long?: GraphQLScalarType;
|
|
987
|
+
LudoNftTon?: ILudoNftTonResolvers<ContextType>;
|
|
988
|
+
LudoNftsTonPage?: ILudoNftsTonPageResolvers<ContextType>;
|
|
866
989
|
Media?: IMediaResolvers<ContextType>;
|
|
867
990
|
Mutation?: IMutationResolvers<ContextType>;
|
|
868
991
|
OpportunitiesPage?: IOpportunitiesPageResolvers<ContextType>;
|
|
@@ -870,6 +993,8 @@ export type IResolvers<ContextType = any> = {
|
|
|
870
993
|
Page?: IPageResolvers<ContextType>;
|
|
871
994
|
Profile?: IProfileResolvers<ContextType>;
|
|
872
995
|
ProfilePage?: IProfilePageResolvers<ContextType>;
|
|
996
|
+
Project?: IProjectResolvers<ContextType>;
|
|
997
|
+
ProjectsPage?: IProjectsPageResolvers<ContextType>;
|
|
873
998
|
Query?: IQueryResolvers<ContextType>;
|
|
874
999
|
TopEntitiesPage?: ITopEntitiesPageResolvers<ContextType>;
|
|
875
1000
|
UserReferralsInfo?: IUserReferralsInfoResolvers<ContextType>;
|
|
@@ -1050,12 +1175,33 @@ export type IFindAllTopEntitiesByNameQuery = {
|
|
|
1050
1175
|
profiles: Array<Maybe<Pick<IProfile, 'userId' | 'username' | 'about' | 'userpic' | 'followers' | 'followings' | 'createdAt' | 'deletedAt' | 'visible' | 'views' | 'deleted' | 'referralTypeName' | 'referralTypeColor'>>>;
|
|
1051
1176
|
};
|
|
1052
1177
|
};
|
|
1178
|
+
export type IFetchLudoNftsTonPageQueryVariables = Exact<{
|
|
1179
|
+
userId: Scalars['ID'];
|
|
1180
|
+
page: IPageInput;
|
|
1181
|
+
}>;
|
|
1182
|
+
export type IFetchLudoNftsTonPageQuery = {
|
|
1183
|
+
fetchLudoNftsTonPage: {
|
|
1184
|
+
nextPage?: Maybe<Pick<IPage, 'token' | 'num' | 'size' | 'elements'>>;
|
|
1185
|
+
ludoNftsTon: Array<Pick<ILudoNftTon, 'id' | 'name' | 'description' | 'address' | 'tokenId' | 'nftIndexInCollection' | 'creationDate' | 'rank' | 'userId' | 'ownersAddresses' | 'creatorsAddresses' | 'originalUrls'>>;
|
|
1186
|
+
};
|
|
1187
|
+
};
|
|
1053
1188
|
export type IFetchUserPortfolioQueryVariables = Exact<{
|
|
1054
1189
|
ownerId: Scalars['String'];
|
|
1055
1190
|
}>;
|
|
1056
1191
|
export type IFetchUserPortfolioQuery = {
|
|
1057
1192
|
fetchUserPortfolio: Array<Maybe<Pick<ICurrencyAmountPair, 'currency' | 'amount'>>>;
|
|
1058
1193
|
};
|
|
1194
|
+
export type IFetchProjectsLeaderboardQueryVariables = Exact<{
|
|
1195
|
+
filter: IProjectsLeaderboardFilterInput;
|
|
1196
|
+
sort: IProjectsLeaderboardSortInput;
|
|
1197
|
+
page: IPageInput;
|
|
1198
|
+
}>;
|
|
1199
|
+
export type IFetchProjectsLeaderboardQuery = {
|
|
1200
|
+
fetchProjectsLeaderboard: {
|
|
1201
|
+
projects: Array<Pick<IProject, 'id' | 'name' | 'marketCap' | 'tradingVolume24h' | 'liquidity' | 'avgInvestorsUserRank' | 'vcBackers' | 'securityScore' | 'types'>>;
|
|
1202
|
+
nextPage?: Maybe<Pick<IPage, 'token' | 'num' | 'size' | 'elements' | 'lastNum'>>;
|
|
1203
|
+
};
|
|
1204
|
+
};
|
|
1059
1205
|
export type IFetchUserReferralsInfoCsvQueryVariables = Exact<{
|
|
1060
1206
|
[key: string]: never;
|
|
1061
1207
|
}>;
|
|
@@ -1503,6 +1649,35 @@ export declare function useFindAllTopEntitiesByNameLazyQuery(baseOptions?: Apoll
|
|
|
1503
1649
|
export type FindAllTopEntitiesByNameQueryHookResult = ReturnType<typeof useFindAllTopEntitiesByNameQuery>;
|
|
1504
1650
|
export type FindAllTopEntitiesByNameLazyQueryHookResult = ReturnType<typeof useFindAllTopEntitiesByNameLazyQuery>;
|
|
1505
1651
|
export type FindAllTopEntitiesByNameQueryResult = Apollo.QueryResult<IFindAllTopEntitiesByNameQuery, IFindAllTopEntitiesByNameQueryVariables>;
|
|
1652
|
+
export declare const FetchLudoNftsTonPageDocument: Apollo.DocumentNode;
|
|
1653
|
+
/**
|
|
1654
|
+
* __useFetchLudoNftsTonPageQuery__
|
|
1655
|
+
*
|
|
1656
|
+
* To run a query within a React component, call `useFetchLudoNftsTonPageQuery` and pass it any options that fit your needs.
|
|
1657
|
+
* When your component renders, `useFetchLudoNftsTonPageQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
1658
|
+
* you can use to render your UI.
|
|
1659
|
+
*
|
|
1660
|
+
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
1661
|
+
*
|
|
1662
|
+
* @example
|
|
1663
|
+
* const { data, loading, error } = useFetchLudoNftsTonPageQuery({
|
|
1664
|
+
* variables: {
|
|
1665
|
+
* userId: // value for 'userId'
|
|
1666
|
+
* page: // value for 'page'
|
|
1667
|
+
* },
|
|
1668
|
+
* });
|
|
1669
|
+
*/
|
|
1670
|
+
export declare function useFetchLudoNftsTonPageQuery(baseOptions: Apollo.QueryHookOptions<IFetchLudoNftsTonPageQuery, IFetchLudoNftsTonPageQueryVariables>): Apollo.QueryResult<IFetchLudoNftsTonPageQuery, Exact<{
|
|
1671
|
+
userId: string;
|
|
1672
|
+
page: IPageInput;
|
|
1673
|
+
}>>;
|
|
1674
|
+
export declare function useFetchLudoNftsTonPageLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchLudoNftsTonPageQuery, IFetchLudoNftsTonPageQueryVariables>): Apollo.LazyQueryResultTuple<IFetchLudoNftsTonPageQuery, Exact<{
|
|
1675
|
+
userId: string;
|
|
1676
|
+
page: IPageInput;
|
|
1677
|
+
}>>;
|
|
1678
|
+
export type FetchLudoNftsTonPageQueryHookResult = ReturnType<typeof useFetchLudoNftsTonPageQuery>;
|
|
1679
|
+
export type FetchLudoNftsTonPageLazyQueryHookResult = ReturnType<typeof useFetchLudoNftsTonPageLazyQuery>;
|
|
1680
|
+
export type FetchLudoNftsTonPageQueryResult = Apollo.QueryResult<IFetchLudoNftsTonPageQuery, IFetchLudoNftsTonPageQueryVariables>;
|
|
1506
1681
|
export declare const FetchUserPortfolioDocument: Apollo.DocumentNode;
|
|
1507
1682
|
/**
|
|
1508
1683
|
* __useFetchUserPortfolioQuery__
|
|
@@ -1529,6 +1704,38 @@ export declare function useFetchUserPortfolioLazyQuery(baseOptions?: Apollo.Lazy
|
|
|
1529
1704
|
export type FetchUserPortfolioQueryHookResult = ReturnType<typeof useFetchUserPortfolioQuery>;
|
|
1530
1705
|
export type FetchUserPortfolioLazyQueryHookResult = ReturnType<typeof useFetchUserPortfolioLazyQuery>;
|
|
1531
1706
|
export type FetchUserPortfolioQueryResult = Apollo.QueryResult<IFetchUserPortfolioQuery, IFetchUserPortfolioQueryVariables>;
|
|
1707
|
+
export declare const FetchProjectsLeaderboardDocument: Apollo.DocumentNode;
|
|
1708
|
+
/**
|
|
1709
|
+
* __useFetchProjectsLeaderboardQuery__
|
|
1710
|
+
*
|
|
1711
|
+
* To run a query within a React component, call `useFetchProjectsLeaderboardQuery` and pass it any options that fit your needs.
|
|
1712
|
+
* When your component renders, `useFetchProjectsLeaderboardQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
1713
|
+
* you can use to render your UI.
|
|
1714
|
+
*
|
|
1715
|
+
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
1716
|
+
*
|
|
1717
|
+
* @example
|
|
1718
|
+
* const { data, loading, error } = useFetchProjectsLeaderboardQuery({
|
|
1719
|
+
* variables: {
|
|
1720
|
+
* filter: // value for 'filter'
|
|
1721
|
+
* sort: // value for 'sort'
|
|
1722
|
+
* page: // value for 'page'
|
|
1723
|
+
* },
|
|
1724
|
+
* });
|
|
1725
|
+
*/
|
|
1726
|
+
export declare function useFetchProjectsLeaderboardQuery(baseOptions: Apollo.QueryHookOptions<IFetchProjectsLeaderboardQuery, IFetchProjectsLeaderboardQueryVariables>): Apollo.QueryResult<IFetchProjectsLeaderboardQuery, Exact<{
|
|
1727
|
+
filter: IProjectsLeaderboardFilterInput;
|
|
1728
|
+
sort: IProjectsLeaderboardSortInput;
|
|
1729
|
+
page: IPageInput;
|
|
1730
|
+
}>>;
|
|
1731
|
+
export declare function useFetchProjectsLeaderboardLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchProjectsLeaderboardQuery, IFetchProjectsLeaderboardQueryVariables>): Apollo.LazyQueryResultTuple<IFetchProjectsLeaderboardQuery, Exact<{
|
|
1732
|
+
filter: IProjectsLeaderboardFilterInput;
|
|
1733
|
+
sort: IProjectsLeaderboardSortInput;
|
|
1734
|
+
page: IPageInput;
|
|
1735
|
+
}>>;
|
|
1736
|
+
export type FetchProjectsLeaderboardQueryHookResult = ReturnType<typeof useFetchProjectsLeaderboardQuery>;
|
|
1737
|
+
export type FetchProjectsLeaderboardLazyQueryHookResult = ReturnType<typeof useFetchProjectsLeaderboardLazyQuery>;
|
|
1738
|
+
export type FetchProjectsLeaderboardQueryResult = Apollo.QueryResult<IFetchProjectsLeaderboardQuery, IFetchProjectsLeaderboardQueryVariables>;
|
|
1532
1739
|
export declare const FetchUserReferralsInfoCsvDocument: Apollo.DocumentNode;
|
|
1533
1740
|
/**
|
|
1534
1741
|
* __useFetchUserReferralsInfoCsvQuery__
|
|
@@ -23,8 +23,8 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
23
23
|
return result;
|
|
24
24
|
};
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
-
exports.
|
|
27
|
-
exports.useFindUserLudoCreationsLazyQuery = exports.useFindUserLudoCreationsQuery = exports.FindUserLudoCreationsDocument = exports.useFindUserCreationsLazyQuery = exports.useFindUserCreationsQuery = exports.FindUserCreationsDocument = exports.useFindProfilesByNameLazyQuery = exports.useFindProfilesByNameQuery = exports.FindProfilesByNameDocument = exports.useFindCreationsLazyQuery = exports.useFindCreationsQuery = exports.FindCreationsDocument = exports.useFetchUserReferralsInfoPageLazyQuery = exports.useFetchUserReferralsInfoPageQuery = exports.FetchUserReferralsInfoPageDocument = exports.useFetchUserReferralsInfoCsvLazyQuery = void 0;
|
|
26
|
+
exports.FetchUserPortfolioDocument = exports.useFetchLudoNftsTonPageLazyQuery = exports.useFetchLudoNftsTonPageQuery = exports.FetchLudoNftsTonPageDocument = exports.useFindAllTopEntitiesByNameLazyQuery = exports.useFindAllTopEntitiesByNameQuery = exports.FindAllTopEntitiesByNameDocument = exports.useFetchDynamicCollectionsDataLazyQuery = exports.useFetchDynamicCollectionsDataQuery = exports.FetchDynamicCollectionsDataDocument = exports.useFetchDynamicCollectionDataLazyQuery = exports.useFetchDynamicCollectionDataQuery = exports.FetchDynamicCollectionDataDocument = exports.useFetchDynamicAssetsLikesLazyQuery = exports.useFetchDynamicAssetsLikesQuery = exports.FetchDynamicAssetsLikesDocument = exports.useFetchDynamicAssetLikesLazyQuery = exports.useFetchDynamicAssetLikesQuery = exports.FetchDynamicAssetLikesDocument = exports.useFetchCreationsByTypeLazyQuery = exports.useFetchCreationsByTypeQuery = exports.FetchCreationsByTypeDocument = exports.useFetchCollectionsByIdsLazyQuery = exports.useFetchCollectionsByIdsQuery = exports.FetchCollectionsByIdsDocument = exports.useFindCollectionsLazyQuery = exports.useFindCollectionsQuery = exports.FindCollectionsDocument = exports.useFetchCollectionLazyQuery = exports.useFetchCollectionQuery = exports.FetchCollectionDocument = exports.useFetchAvailableLeaderboardsLazyQuery = exports.useFetchAvailableLeaderboardsQuery = exports.FetchAvailableLeaderboardsDocument = exports.useFetchAssetsLazyQuery = exports.useFetchAssetsQuery = exports.FetchAssetsDocument = exports.useFetchAssetByBlockchainLazyQuery = exports.useFetchAssetByBlockchainQuery = exports.FetchAssetByBlockchainDocument = exports.useFetchAllCreationsLazyQuery = exports.useFetchAllCreationsQuery = exports.FetchAllCreationsDocument = exports.useFetchAirdropsLeaderboardLazyQuery = exports.useFetchAirdropsLeaderboardQuery = exports.FetchAirdropsLeaderboardDocument = exports.ISortDirection = exports.IReftypeColor = exports.IProjectType = exports.ILeaderboardType = void 0;
|
|
27
|
+
exports.useFindUserLudoCreationsLazyQuery = exports.useFindUserLudoCreationsQuery = exports.FindUserLudoCreationsDocument = exports.useFindUserCreationsLazyQuery = exports.useFindUserCreationsQuery = exports.FindUserCreationsDocument = exports.useFindProfilesByNameLazyQuery = exports.useFindProfilesByNameQuery = exports.FindProfilesByNameDocument = exports.useFindCreationsLazyQuery = exports.useFindCreationsQuery = exports.FindCreationsDocument = exports.useFetchUserReferralsInfoPageLazyQuery = exports.useFetchUserReferralsInfoPageQuery = exports.FetchUserReferralsInfoPageDocument = exports.useFetchUserReferralsInfoCsvLazyQuery = exports.useFetchUserReferralsInfoCsvQuery = exports.FetchUserReferralsInfoCsvDocument = exports.useFetchProjectsLeaderboardLazyQuery = exports.useFetchProjectsLeaderboardQuery = exports.FetchProjectsLeaderboardDocument = exports.useFetchUserPortfolioLazyQuery = exports.useFetchUserPortfolioQuery = void 0;
|
|
28
28
|
const client_1 = require("@apollo/client");
|
|
29
29
|
const Apollo = __importStar(require("@apollo/client"));
|
|
30
30
|
var ILeaderboardType;
|
|
@@ -32,6 +32,13 @@ var ILeaderboardType;
|
|
|
32
32
|
ILeaderboardType["Airdrops"] = "AIRDROPS";
|
|
33
33
|
ILeaderboardType["Projects"] = "PROJECTS";
|
|
34
34
|
})(ILeaderboardType || (exports.ILeaderboardType = ILeaderboardType = {}));
|
|
35
|
+
var IProjectType;
|
|
36
|
+
(function (IProjectType) {
|
|
37
|
+
IProjectType["MemeCoins"] = "MEME_COINS";
|
|
38
|
+
IProjectType["AiAgents"] = "AI_AGENTS";
|
|
39
|
+
IProjectType["GameFi"] = "GAME_FI";
|
|
40
|
+
IProjectType["DeFi"] = "DE_FI";
|
|
41
|
+
})(IProjectType || (exports.IProjectType = IProjectType = {}));
|
|
35
42
|
var IReftypeColor;
|
|
36
43
|
(function (IReftypeColor) {
|
|
37
44
|
IReftypeColor["Red"] = "RED";
|
|
@@ -1116,6 +1123,57 @@ function useFindAllTopEntitiesByNameLazyQuery(baseOptions) {
|
|
|
1116
1123
|
return Apollo.useLazyQuery(exports.FindAllTopEntitiesByNameDocument, baseOptions);
|
|
1117
1124
|
}
|
|
1118
1125
|
exports.useFindAllTopEntitiesByNameLazyQuery = useFindAllTopEntitiesByNameLazyQuery;
|
|
1126
|
+
exports.FetchLudoNftsTonPageDocument = (0, client_1.gql) `
|
|
1127
|
+
query FetchLudoNftsTonPage($userId: ID!, $page: PageInput!) {
|
|
1128
|
+
fetchLudoNftsTonPage(userId: $userId, page: $page) {
|
|
1129
|
+
nextPage {
|
|
1130
|
+
token
|
|
1131
|
+
num
|
|
1132
|
+
size
|
|
1133
|
+
elements
|
|
1134
|
+
}
|
|
1135
|
+
ludoNftsTon {
|
|
1136
|
+
id
|
|
1137
|
+
name
|
|
1138
|
+
description
|
|
1139
|
+
address
|
|
1140
|
+
tokenId
|
|
1141
|
+
nftIndexInCollection
|
|
1142
|
+
creationDate
|
|
1143
|
+
rank
|
|
1144
|
+
userId
|
|
1145
|
+
ownersAddresses
|
|
1146
|
+
creatorsAddresses
|
|
1147
|
+
originalUrls
|
|
1148
|
+
}
|
|
1149
|
+
}
|
|
1150
|
+
}
|
|
1151
|
+
`;
|
|
1152
|
+
/**
|
|
1153
|
+
* __useFetchLudoNftsTonPageQuery__
|
|
1154
|
+
*
|
|
1155
|
+
* To run a query within a React component, call `useFetchLudoNftsTonPageQuery` and pass it any options that fit your needs.
|
|
1156
|
+
* When your component renders, `useFetchLudoNftsTonPageQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
1157
|
+
* you can use to render your UI.
|
|
1158
|
+
*
|
|
1159
|
+
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
1160
|
+
*
|
|
1161
|
+
* @example
|
|
1162
|
+
* const { data, loading, error } = useFetchLudoNftsTonPageQuery({
|
|
1163
|
+
* variables: {
|
|
1164
|
+
* userId: // value for 'userId'
|
|
1165
|
+
* page: // value for 'page'
|
|
1166
|
+
* },
|
|
1167
|
+
* });
|
|
1168
|
+
*/
|
|
1169
|
+
function useFetchLudoNftsTonPageQuery(baseOptions) {
|
|
1170
|
+
return Apollo.useQuery(exports.FetchLudoNftsTonPageDocument, baseOptions);
|
|
1171
|
+
}
|
|
1172
|
+
exports.useFetchLudoNftsTonPageQuery = useFetchLudoNftsTonPageQuery;
|
|
1173
|
+
function useFetchLudoNftsTonPageLazyQuery(baseOptions) {
|
|
1174
|
+
return Apollo.useLazyQuery(exports.FetchLudoNftsTonPageDocument, baseOptions);
|
|
1175
|
+
}
|
|
1176
|
+
exports.useFetchLudoNftsTonPageLazyQuery = useFetchLudoNftsTonPageLazyQuery;
|
|
1119
1177
|
exports.FetchUserPortfolioDocument = (0, client_1.gql) `
|
|
1120
1178
|
query FetchUserPortfolio($ownerId: String!) {
|
|
1121
1179
|
fetchUserPortfolio(ownerId: $ownerId) {
|
|
@@ -1148,6 +1206,56 @@ function useFetchUserPortfolioLazyQuery(baseOptions) {
|
|
|
1148
1206
|
return Apollo.useLazyQuery(exports.FetchUserPortfolioDocument, baseOptions);
|
|
1149
1207
|
}
|
|
1150
1208
|
exports.useFetchUserPortfolioLazyQuery = useFetchUserPortfolioLazyQuery;
|
|
1209
|
+
exports.FetchProjectsLeaderboardDocument = (0, client_1.gql) `
|
|
1210
|
+
query FetchProjectsLeaderboard($filter: ProjectsLeaderboardFilterInput!, $sort: ProjectsLeaderboardSortInput!, $page: PageInput!) {
|
|
1211
|
+
fetchProjectsLeaderboard(filter: $filter, sort: $sort, page: $page) {
|
|
1212
|
+
projects {
|
|
1213
|
+
id
|
|
1214
|
+
name
|
|
1215
|
+
marketCap
|
|
1216
|
+
tradingVolume24h
|
|
1217
|
+
liquidity
|
|
1218
|
+
avgInvestorsUserRank
|
|
1219
|
+
vcBackers
|
|
1220
|
+
securityScore
|
|
1221
|
+
types
|
|
1222
|
+
}
|
|
1223
|
+
nextPage {
|
|
1224
|
+
token
|
|
1225
|
+
num
|
|
1226
|
+
size
|
|
1227
|
+
elements
|
|
1228
|
+
lastNum
|
|
1229
|
+
}
|
|
1230
|
+
}
|
|
1231
|
+
}
|
|
1232
|
+
`;
|
|
1233
|
+
/**
|
|
1234
|
+
* __useFetchProjectsLeaderboardQuery__
|
|
1235
|
+
*
|
|
1236
|
+
* To run a query within a React component, call `useFetchProjectsLeaderboardQuery` and pass it any options that fit your needs.
|
|
1237
|
+
* When your component renders, `useFetchProjectsLeaderboardQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
1238
|
+
* you can use to render your UI.
|
|
1239
|
+
*
|
|
1240
|
+
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
1241
|
+
*
|
|
1242
|
+
* @example
|
|
1243
|
+
* const { data, loading, error } = useFetchProjectsLeaderboardQuery({
|
|
1244
|
+
* variables: {
|
|
1245
|
+
* filter: // value for 'filter'
|
|
1246
|
+
* sort: // value for 'sort'
|
|
1247
|
+
* page: // value for 'page'
|
|
1248
|
+
* },
|
|
1249
|
+
* });
|
|
1250
|
+
*/
|
|
1251
|
+
function useFetchProjectsLeaderboardQuery(baseOptions) {
|
|
1252
|
+
return Apollo.useQuery(exports.FetchProjectsLeaderboardDocument, baseOptions);
|
|
1253
|
+
}
|
|
1254
|
+
exports.useFetchProjectsLeaderboardQuery = useFetchProjectsLeaderboardQuery;
|
|
1255
|
+
function useFetchProjectsLeaderboardLazyQuery(baseOptions) {
|
|
1256
|
+
return Apollo.useLazyQuery(exports.FetchProjectsLeaderboardDocument, baseOptions);
|
|
1257
|
+
}
|
|
1258
|
+
exports.useFetchProjectsLeaderboardLazyQuery = useFetchProjectsLeaderboardLazyQuery;
|
|
1151
1259
|
exports.FetchUserReferralsInfoCsvDocument = (0, client_1.gql) `
|
|
1152
1260
|
query FetchUserReferralsInfoCsv {
|
|
1153
1261
|
fetchUserReferralsInfoCsv
|
package/build/index.d.ts
CHANGED
|
@@ -382,6 +382,20 @@ declare const schema: {
|
|
|
382
382
|
name: string;
|
|
383
383
|
pageSize: number;
|
|
384
384
|
}>>;
|
|
385
|
+
useFetchLudoNftsTonPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<searchSchema.IFetchLudoNftsTonPageQuery, searchSchema.Exact<{
|
|
386
|
+
userId: string;
|
|
387
|
+
page: searchSchema.IPageInput;
|
|
388
|
+
}>>): import("@apollo/client").QueryResult<searchSchema.IFetchLudoNftsTonPageQuery, searchSchema.Exact<{
|
|
389
|
+
userId: string;
|
|
390
|
+
page: searchSchema.IPageInput;
|
|
391
|
+
}>>;
|
|
392
|
+
useFetchLudoNftsTonPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<searchSchema.IFetchLudoNftsTonPageQuery, searchSchema.Exact<{
|
|
393
|
+
userId: string;
|
|
394
|
+
page: searchSchema.IPageInput;
|
|
395
|
+
}>> | undefined): import("@apollo/client").LazyQueryResultTuple<searchSchema.IFetchLudoNftsTonPageQuery, searchSchema.Exact<{
|
|
396
|
+
userId: string;
|
|
397
|
+
page: searchSchema.IPageInput;
|
|
398
|
+
}>>;
|
|
385
399
|
useFetchUserPortfolioQuery(baseOptions: import("@apollo/client").QueryHookOptions<searchSchema.IFetchUserPortfolioQuery, searchSchema.Exact<{
|
|
386
400
|
ownerId: string;
|
|
387
401
|
}>>): import("@apollo/client").QueryResult<searchSchema.IFetchUserPortfolioQuery, searchSchema.Exact<{
|
|
@@ -392,6 +406,24 @@ declare const schema: {
|
|
|
392
406
|
}>> | undefined): import("@apollo/client").LazyQueryResultTuple<searchSchema.IFetchUserPortfolioQuery, searchSchema.Exact<{
|
|
393
407
|
ownerId: string;
|
|
394
408
|
}>>;
|
|
409
|
+
useFetchProjectsLeaderboardQuery(baseOptions: import("@apollo/client").QueryHookOptions<searchSchema.IFetchProjectsLeaderboardQuery, searchSchema.Exact<{
|
|
410
|
+
filter: searchSchema.IProjectsLeaderboardFilterInput;
|
|
411
|
+
sort: searchSchema.IProjectsLeaderboardSortInput;
|
|
412
|
+
page: searchSchema.IPageInput;
|
|
413
|
+
}>>): import("@apollo/client").QueryResult<searchSchema.IFetchProjectsLeaderboardQuery, searchSchema.Exact<{
|
|
414
|
+
filter: searchSchema.IProjectsLeaderboardFilterInput;
|
|
415
|
+
sort: searchSchema.IProjectsLeaderboardSortInput;
|
|
416
|
+
page: searchSchema.IPageInput;
|
|
417
|
+
}>>;
|
|
418
|
+
useFetchProjectsLeaderboardLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<searchSchema.IFetchProjectsLeaderboardQuery, searchSchema.Exact<{
|
|
419
|
+
filter: searchSchema.IProjectsLeaderboardFilterInput;
|
|
420
|
+
sort: searchSchema.IProjectsLeaderboardSortInput;
|
|
421
|
+
page: searchSchema.IPageInput;
|
|
422
|
+
}>> | undefined): import("@apollo/client").LazyQueryResultTuple<searchSchema.IFetchProjectsLeaderboardQuery, searchSchema.Exact<{
|
|
423
|
+
filter: searchSchema.IProjectsLeaderboardFilterInput;
|
|
424
|
+
sort: searchSchema.IProjectsLeaderboardSortInput;
|
|
425
|
+
page: searchSchema.IPageInput;
|
|
426
|
+
}>>;
|
|
395
427
|
useFetchUserReferralsInfoCsvQuery(baseOptions?: import("@apollo/client").QueryHookOptions<searchSchema.IFetchUserReferralsInfoCsvQuery, searchSchema.Exact<{
|
|
396
428
|
[key: string]: never;
|
|
397
429
|
}>> | undefined): import("@apollo/client").QueryResult<searchSchema.IFetchUserReferralsInfoCsvQuery, searchSchema.Exact<{
|
|
@@ -485,6 +517,7 @@ declare const schema: {
|
|
|
485
517
|
page?: searchSchema.Maybe<searchSchema.IPageInput> | undefined;
|
|
486
518
|
}>>;
|
|
487
519
|
ILeaderboardType: typeof searchSchema.ILeaderboardType;
|
|
520
|
+
IProjectType: typeof searchSchema.IProjectType;
|
|
488
521
|
IReftypeColor: typeof searchSchema.IReftypeColor;
|
|
489
522
|
ISortDirection: typeof searchSchema.ISortDirection;
|
|
490
523
|
FetchAirdropsLeaderboardDocument: import("graphql").DocumentNode;
|
|
@@ -501,7 +534,9 @@ declare const schema: {
|
|
|
501
534
|
FetchDynamicCollectionDataDocument: import("graphql").DocumentNode;
|
|
502
535
|
FetchDynamicCollectionsDataDocument: import("graphql").DocumentNode;
|
|
503
536
|
FindAllTopEntitiesByNameDocument: import("graphql").DocumentNode;
|
|
537
|
+
FetchLudoNftsTonPageDocument: import("graphql").DocumentNode;
|
|
504
538
|
FetchUserPortfolioDocument: import("graphql").DocumentNode;
|
|
539
|
+
FetchProjectsLeaderboardDocument: import("graphql").DocumentNode;
|
|
505
540
|
FetchUserReferralsInfoCsvDocument: import("graphql").DocumentNode;
|
|
506
541
|
FetchUserReferralsInfoPageDocument: import("graphql").DocumentNode;
|
|
507
542
|
FindCreationsDocument: import("graphql").DocumentNode;
|
|
@@ -2122,7 +2157,6 @@ declare const schema: {
|
|
|
2122
2157
|
IDevicePlatform: typeof adminSchema.IDevicePlatform;
|
|
2123
2158
|
ILocationType: typeof adminSchema.ILocationType;
|
|
2124
2159
|
INotificationDestination: typeof adminSchema.INotificationDestination;
|
|
2125
|
-
IProjectType: typeof adminSchema.IProjectType;
|
|
2126
2160
|
ITariffPlan: typeof adminSchema.ITariffPlan;
|
|
2127
2161
|
CreateReferralTypeDocument: import("graphql").DocumentNode;
|
|
2128
2162
|
CreateTierDocument: import("graphql").DocumentNode;
|