@ludo.ninja/api 2.8.95 → 2.8.96
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__/identityHost/schema.d.ts +42 -0
- package/build/graphql_tools/__generated__/identityHost/schema.js +49 -1
- package/build/index.d.ts +7 -0
- package/package.json +1 -1
- package/src/graphql_tools/__generated__/identityHost/schema.ts +70 -0
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -281,6 +281,7 @@ export type IQuery = {
|
|
|
281
281
|
getDummy: Scalars['String'];
|
|
282
282
|
fetchUserWallets: Array<Maybe<IWallet>>;
|
|
283
283
|
fetchMultiversxAudit?: Maybe<IMultiversxAudit>;
|
|
284
|
+
fetchAggregatedMultiversxAudit?: Maybe<IMultiversxAudit>;
|
|
284
285
|
fetchInviteCode: IInviteCode;
|
|
285
286
|
fetchMyProfileV2: IMyProfileV2;
|
|
286
287
|
fetchProfile: IProfile;
|
|
@@ -293,6 +294,9 @@ export type IQueryFetchUserWalletsArgs = {
|
|
|
293
294
|
export type IQueryFetchMultiversxAuditArgs = {
|
|
294
295
|
wallet: Scalars['String'];
|
|
295
296
|
};
|
|
297
|
+
export type IQueryFetchAggregatedMultiversxAuditArgs = {
|
|
298
|
+
userId: Scalars['ID'];
|
|
299
|
+
};
|
|
296
300
|
export type IQueryFetchInviteCodeArgs = {
|
|
297
301
|
inviteCode: Scalars['String'];
|
|
298
302
|
};
|
|
@@ -597,6 +601,7 @@ export type IQueryResolvers<ContextType = any, ParentType extends IResolversPare
|
|
|
597
601
|
getDummy?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
598
602
|
fetchUserWallets?: Resolver<Array<Maybe<IResolversTypes['Wallet']>>, ParentType, ContextType, RequireFields<IQueryFetchUserWalletsArgs, 'userId'>>;
|
|
599
603
|
fetchMultiversxAudit?: Resolver<Maybe<IResolversTypes['MultiversxAudit']>, ParentType, ContextType, RequireFields<IQueryFetchMultiversxAuditArgs, 'wallet'>>;
|
|
604
|
+
fetchAggregatedMultiversxAudit?: Resolver<Maybe<IResolversTypes['MultiversxAudit']>, ParentType, ContextType, RequireFields<IQueryFetchAggregatedMultiversxAuditArgs, 'userId'>>;
|
|
600
605
|
fetchInviteCode?: Resolver<IResolversTypes['InviteCode'], ParentType, ContextType, RequireFields<IQueryFetchInviteCodeArgs, 'inviteCode'>>;
|
|
601
606
|
fetchMyProfileV2?: Resolver<IResolversTypes['MyProfileV2'], ParentType, ContextType>;
|
|
602
607
|
fetchProfile?: Resolver<IResolversTypes['Profile'], ParentType, ContextType, RequireFields<IQueryFetchProfileArgs, 'userId'>>;
|
|
@@ -831,6 +836,17 @@ export type IUpdateProfileMutationVariables = Exact<{
|
|
|
831
836
|
showNsfw?: Maybe<Scalars['Boolean']>;
|
|
832
837
|
}>;
|
|
833
838
|
export type IUpdateProfileMutation = Pick<IMutation, 'updateProfile'>;
|
|
839
|
+
export type IFetchAggregatedMultiversxAuditQueryVariables = Exact<{
|
|
840
|
+
userId: Scalars['ID'];
|
|
841
|
+
}>;
|
|
842
|
+
export type IFetchAggregatedMultiversxAuditQuery = {
|
|
843
|
+
fetchAggregatedMultiversxAudit?: Maybe<(Pick<IMultiversxAudit, 'delegated' | 'nativeBalance' | 'tokenValue'> & {
|
|
844
|
+
interests?: Maybe<Array<Pick<IAuditInterest, 'name' | 'items' | 'percentage'>>>;
|
|
845
|
+
nftBalance?: Maybe<(Pick<IAuditNftBalance, 'nativeValue' | 'totalNfts'> & {
|
|
846
|
+
collections?: Maybe<Array<Pick<IAuditBalanceCollection, 'collection' | 'type' | 'name' | 'balance'>>>;
|
|
847
|
+
})>;
|
|
848
|
+
})>;
|
|
849
|
+
};
|
|
834
850
|
export type IFetchMultiversXAuditQueryVariables = Exact<{
|
|
835
851
|
wallet: Scalars['String'];
|
|
836
852
|
}>;
|
|
@@ -1473,6 +1489,32 @@ export declare function useUpdateProfileMutation(baseOptions?: Apollo.MutationHo
|
|
|
1473
1489
|
export type UpdateProfileMutationHookResult = ReturnType<typeof useUpdateProfileMutation>;
|
|
1474
1490
|
export type UpdateProfileMutationResult = Apollo.MutationResult<IUpdateProfileMutation>;
|
|
1475
1491
|
export type UpdateProfileMutationOptions = Apollo.BaseMutationOptions<IUpdateProfileMutation, IUpdateProfileMutationVariables>;
|
|
1492
|
+
export declare const FetchAggregatedMultiversxAuditDocument: Apollo.DocumentNode;
|
|
1493
|
+
/**
|
|
1494
|
+
* __useFetchAggregatedMultiversxAuditQuery__
|
|
1495
|
+
*
|
|
1496
|
+
* To run a query within a React component, call `useFetchAggregatedMultiversxAuditQuery` and pass it any options that fit your needs.
|
|
1497
|
+
* When your component renders, `useFetchAggregatedMultiversxAuditQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
1498
|
+
* you can use to render your UI.
|
|
1499
|
+
*
|
|
1500
|
+
* @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;
|
|
1501
|
+
*
|
|
1502
|
+
* @example
|
|
1503
|
+
* const { data, loading, error } = useFetchAggregatedMultiversxAuditQuery({
|
|
1504
|
+
* variables: {
|
|
1505
|
+
* userId: // value for 'userId'
|
|
1506
|
+
* },
|
|
1507
|
+
* });
|
|
1508
|
+
*/
|
|
1509
|
+
export declare function useFetchAggregatedMultiversxAuditQuery(baseOptions: Apollo.QueryHookOptions<IFetchAggregatedMultiversxAuditQuery, IFetchAggregatedMultiversxAuditQueryVariables>): Apollo.QueryResult<IFetchAggregatedMultiversxAuditQuery, Exact<{
|
|
1510
|
+
userId: Scalars["ID"];
|
|
1511
|
+
}>>;
|
|
1512
|
+
export declare function useFetchAggregatedMultiversxAuditLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchAggregatedMultiversxAuditQuery, IFetchAggregatedMultiversxAuditQueryVariables>): Apollo.LazyQueryResultTuple<IFetchAggregatedMultiversxAuditQuery, Exact<{
|
|
1513
|
+
userId: Scalars["ID"];
|
|
1514
|
+
}>>;
|
|
1515
|
+
export type FetchAggregatedMultiversxAuditQueryHookResult = ReturnType<typeof useFetchAggregatedMultiversxAuditQuery>;
|
|
1516
|
+
export type FetchAggregatedMultiversxAuditLazyQueryHookResult = ReturnType<typeof useFetchAggregatedMultiversxAuditLazyQuery>;
|
|
1517
|
+
export type FetchAggregatedMultiversxAuditQueryResult = Apollo.QueryResult<IFetchAggregatedMultiversxAuditQuery, IFetchAggregatedMultiversxAuditQueryVariables>;
|
|
1476
1518
|
export declare const FetchMultiversXAuditDocument: Apollo.DocumentNode;
|
|
1477
1519
|
/**
|
|
1478
1520
|
* __useFetchMultiversXAuditQuery__
|
|
@@ -23,7 +23,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
23
23
|
return result;
|
|
24
24
|
};
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
-
exports.FetchUserWalletsDocument = exports.FetchProfileDocument = exports.FetchMyProfileV2Document = exports.FetchMultiversXAuditDocument = exports.UpdateProfileDocument = exports.SignInTonDocument = exports.SignInTezosDocument = exports.SignInSolanaDocument = exports.SignInMetamaskDocument = exports.SignInFlowDocument = exports.SignInElrondDocument = exports.SignInAdminMetamaskDocument = exports.SetMainWalletDocument = exports.SaveEmailOfJoinerDocument = exports.RemoveWalletDocument = exports.UseInviteCodeDocument = exports.GenerateNewInviteCodesDocument = exports.CreateTonNonceDocument = exports.CreateNonceDocument = exports.CreateEvmNonceDocument = exports.AddWalletTonDocument = exports.AddWalletTezosDocument = exports.AddWalletSolanaDocument = exports.AddWalletMetamaskDocument = exports.AddWalletFlowDocument = exports.AddWalletElrondDocument = exports.IRole = void 0;
|
|
26
|
+
exports.FetchUserWalletsDocument = exports.FetchProfileDocument = exports.FetchMyProfileV2Document = exports.FetchMultiversXAuditDocument = exports.FetchAggregatedMultiversxAuditDocument = exports.UpdateProfileDocument = exports.SignInTonDocument = exports.SignInTezosDocument = exports.SignInSolanaDocument = exports.SignInMetamaskDocument = exports.SignInFlowDocument = exports.SignInElrondDocument = exports.SignInAdminMetamaskDocument = exports.SetMainWalletDocument = exports.SaveEmailOfJoinerDocument = exports.RemoveWalletDocument = exports.UseInviteCodeDocument = exports.GenerateNewInviteCodesDocument = exports.CreateTonNonceDocument = exports.CreateNonceDocument = exports.CreateEvmNonceDocument = exports.AddWalletTonDocument = exports.AddWalletTezosDocument = exports.AddWalletSolanaDocument = exports.AddWalletMetamaskDocument = exports.AddWalletFlowDocument = exports.AddWalletElrondDocument = exports.IRole = void 0;
|
|
27
27
|
exports.useAddWalletElrondMutation = useAddWalletElrondMutation;
|
|
28
28
|
exports.useAddWalletFlowMutation = useAddWalletFlowMutation;
|
|
29
29
|
exports.useAddWalletMetamaskMutation = useAddWalletMetamaskMutation;
|
|
@@ -46,6 +46,8 @@ exports.useSignInSolanaMutation = useSignInSolanaMutation;
|
|
|
46
46
|
exports.useSignInTezosMutation = useSignInTezosMutation;
|
|
47
47
|
exports.useSignInTonMutation = useSignInTonMutation;
|
|
48
48
|
exports.useUpdateProfileMutation = useUpdateProfileMutation;
|
|
49
|
+
exports.useFetchAggregatedMultiversxAuditQuery = useFetchAggregatedMultiversxAuditQuery;
|
|
50
|
+
exports.useFetchAggregatedMultiversxAuditLazyQuery = useFetchAggregatedMultiversxAuditLazyQuery;
|
|
49
51
|
exports.useFetchMultiversXAuditQuery = useFetchMultiversXAuditQuery;
|
|
50
52
|
exports.useFetchMultiversXAuditLazyQuery = useFetchMultiversXAuditLazyQuery;
|
|
51
53
|
exports.useFetchMyProfileV2Query = useFetchMyProfileV2Query;
|
|
@@ -756,6 +758,52 @@ exports.UpdateProfileDocument = (0, client_1.gql) `
|
|
|
756
758
|
function useUpdateProfileMutation(baseOptions) {
|
|
757
759
|
return Apollo.useMutation(exports.UpdateProfileDocument, baseOptions);
|
|
758
760
|
}
|
|
761
|
+
exports.FetchAggregatedMultiversxAuditDocument = (0, client_1.gql) `
|
|
762
|
+
query FetchAggregatedMultiversxAudit($userId: ID!) {
|
|
763
|
+
fetchAggregatedMultiversxAudit(userId: $userId) {
|
|
764
|
+
delegated
|
|
765
|
+
interests {
|
|
766
|
+
name
|
|
767
|
+
items
|
|
768
|
+
percentage
|
|
769
|
+
}
|
|
770
|
+
nativeBalance
|
|
771
|
+
nftBalance {
|
|
772
|
+
nativeValue
|
|
773
|
+
totalNfts
|
|
774
|
+
collections {
|
|
775
|
+
collection
|
|
776
|
+
type
|
|
777
|
+
name
|
|
778
|
+
balance
|
|
779
|
+
}
|
|
780
|
+
}
|
|
781
|
+
tokenValue
|
|
782
|
+
}
|
|
783
|
+
}
|
|
784
|
+
`;
|
|
785
|
+
/**
|
|
786
|
+
* __useFetchAggregatedMultiversxAuditQuery__
|
|
787
|
+
*
|
|
788
|
+
* To run a query within a React component, call `useFetchAggregatedMultiversxAuditQuery` and pass it any options that fit your needs.
|
|
789
|
+
* When your component renders, `useFetchAggregatedMultiversxAuditQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
790
|
+
* you can use to render your UI.
|
|
791
|
+
*
|
|
792
|
+
* @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;
|
|
793
|
+
*
|
|
794
|
+
* @example
|
|
795
|
+
* const { data, loading, error } = useFetchAggregatedMultiversxAuditQuery({
|
|
796
|
+
* variables: {
|
|
797
|
+
* userId: // value for 'userId'
|
|
798
|
+
* },
|
|
799
|
+
* });
|
|
800
|
+
*/
|
|
801
|
+
function useFetchAggregatedMultiversxAuditQuery(baseOptions) {
|
|
802
|
+
return Apollo.useQuery(exports.FetchAggregatedMultiversxAuditDocument, baseOptions);
|
|
803
|
+
}
|
|
804
|
+
function useFetchAggregatedMultiversxAuditLazyQuery(baseOptions) {
|
|
805
|
+
return Apollo.useLazyQuery(exports.FetchAggregatedMultiversxAuditDocument, baseOptions);
|
|
806
|
+
}
|
|
759
807
|
exports.FetchMultiversXAuditDocument = (0, client_1.gql) `
|
|
760
808
|
query FetchMultiversXAudit($wallet: String!) {
|
|
761
809
|
fetchMultiversxAudit(wallet: $wallet) {
|
package/build/index.d.ts
CHANGED
|
@@ -479,6 +479,12 @@ declare const schema: {
|
|
|
479
479
|
website?: identitySchema.Maybe<identitySchema.Scalars["String"]>;
|
|
480
480
|
showNsfw?: identitySchema.Maybe<identitySchema.Scalars["Boolean"]>;
|
|
481
481
|
}>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
|
|
482
|
+
useFetchAggregatedMultiversxAuditQuery(baseOptions: import("@apollo/client").QueryHookOptions<identitySchema.IFetchAggregatedMultiversxAuditQuery, identitySchema.IFetchAggregatedMultiversxAuditQueryVariables>): import("@apollo/client").QueryResult<identitySchema.IFetchAggregatedMultiversxAuditQuery, identitySchema.Exact<{
|
|
483
|
+
userId: identitySchema.Scalars["ID"];
|
|
484
|
+
}>>;
|
|
485
|
+
useFetchAggregatedMultiversxAuditLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<identitySchema.IFetchAggregatedMultiversxAuditQuery, identitySchema.IFetchAggregatedMultiversxAuditQueryVariables>): import("@apollo/client").LazyQueryResultTuple<identitySchema.IFetchAggregatedMultiversxAuditQuery, identitySchema.Exact<{
|
|
486
|
+
userId: identitySchema.Scalars["ID"];
|
|
487
|
+
}>>;
|
|
482
488
|
useFetchMultiversXAuditQuery(baseOptions: import("@apollo/client").QueryHookOptions<identitySchema.IFetchMultiversXAuditQuery, identitySchema.IFetchMultiversXAuditQueryVariables>): import("@apollo/client").QueryResult<identitySchema.IFetchMultiversXAuditQuery, identitySchema.Exact<{
|
|
483
489
|
wallet: identitySchema.Scalars["String"];
|
|
484
490
|
}>>;
|
|
@@ -526,6 +532,7 @@ declare const schema: {
|
|
|
526
532
|
SignInTezosDocument: import("graphql").DocumentNode;
|
|
527
533
|
SignInTonDocument: import("graphql").DocumentNode;
|
|
528
534
|
UpdateProfileDocument: import("graphql").DocumentNode;
|
|
535
|
+
FetchAggregatedMultiversxAuditDocument: import("graphql").DocumentNode;
|
|
529
536
|
FetchMultiversXAuditDocument: import("graphql").DocumentNode;
|
|
530
537
|
FetchMyProfileV2Document: import("graphql").DocumentNode;
|
|
531
538
|
FetchProfileDocument: import("graphql").DocumentNode;
|
package/package.json
CHANGED
|
@@ -341,6 +341,7 @@ export type IQuery = {
|
|
|
341
341
|
getDummy: Scalars['String'];
|
|
342
342
|
fetchUserWallets: Array<Maybe<IWallet>>;
|
|
343
343
|
fetchMultiversxAudit?: Maybe<IMultiversxAudit>;
|
|
344
|
+
fetchAggregatedMultiversxAudit?: Maybe<IMultiversxAudit>;
|
|
344
345
|
fetchInviteCode: IInviteCode;
|
|
345
346
|
fetchMyProfileV2: IMyProfileV2;
|
|
346
347
|
fetchProfile: IProfile;
|
|
@@ -359,6 +360,11 @@ export type IQueryFetchMultiversxAuditArgs = {
|
|
|
359
360
|
};
|
|
360
361
|
|
|
361
362
|
|
|
363
|
+
export type IQueryFetchAggregatedMultiversxAuditArgs = {
|
|
364
|
+
userId: Scalars['ID'];
|
|
365
|
+
};
|
|
366
|
+
|
|
367
|
+
|
|
362
368
|
export type IQueryFetchInviteCodeArgs = {
|
|
363
369
|
inviteCode: Scalars['String'];
|
|
364
370
|
};
|
|
@@ -742,6 +748,7 @@ export type IQueryResolvers<ContextType = any, ParentType extends IResolversPare
|
|
|
742
748
|
getDummy?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
743
749
|
fetchUserWallets?: Resolver<Array<Maybe<IResolversTypes['Wallet']>>, ParentType, ContextType, RequireFields<IQueryFetchUserWalletsArgs, 'userId'>>;
|
|
744
750
|
fetchMultiversxAudit?: Resolver<Maybe<IResolversTypes['MultiversxAudit']>, ParentType, ContextType, RequireFields<IQueryFetchMultiversxAuditArgs, 'wallet'>>;
|
|
751
|
+
fetchAggregatedMultiversxAudit?: Resolver<Maybe<IResolversTypes['MultiversxAudit']>, ParentType, ContextType, RequireFields<IQueryFetchAggregatedMultiversxAuditArgs, 'userId'>>;
|
|
745
752
|
fetchInviteCode?: Resolver<IResolversTypes['InviteCode'], ParentType, ContextType, RequireFields<IQueryFetchInviteCodeArgs, 'inviteCode'>>;
|
|
746
753
|
fetchMyProfileV2?: Resolver<IResolversTypes['MyProfileV2'], ParentType, ContextType>;
|
|
747
754
|
fetchProfile?: Resolver<IResolversTypes['Profile'], ParentType, ContextType, RequireFields<IQueryFetchProfileArgs, 'userId'>>;
|
|
@@ -1016,6 +1023,19 @@ export type IUpdateProfileMutationVariables = Exact<{
|
|
|
1016
1023
|
|
|
1017
1024
|
export type IUpdateProfileMutation = Pick<IMutation, 'updateProfile'>;
|
|
1018
1025
|
|
|
1026
|
+
export type IFetchAggregatedMultiversxAuditQueryVariables = Exact<{
|
|
1027
|
+
userId: Scalars['ID'];
|
|
1028
|
+
}>;
|
|
1029
|
+
|
|
1030
|
+
|
|
1031
|
+
export type IFetchAggregatedMultiversxAuditQuery = { fetchAggregatedMultiversxAudit?: Maybe<(
|
|
1032
|
+
Pick<IMultiversxAudit, 'delegated' | 'nativeBalance' | 'tokenValue'>
|
|
1033
|
+
& { interests?: Maybe<Array<Pick<IAuditInterest, 'name' | 'items' | 'percentage'>>>, nftBalance?: Maybe<(
|
|
1034
|
+
Pick<IAuditNftBalance, 'nativeValue' | 'totalNfts'>
|
|
1035
|
+
& { collections?: Maybe<Array<Pick<IAuditBalanceCollection, 'collection' | 'type' | 'name' | 'balance'>>> }
|
|
1036
|
+
)> }
|
|
1037
|
+
)> };
|
|
1038
|
+
|
|
1019
1039
|
export type IFetchMultiversXAuditQueryVariables = Exact<{
|
|
1020
1040
|
wallet: Scalars['String'];
|
|
1021
1041
|
}>;
|
|
@@ -1863,6 +1883,56 @@ export function useUpdateProfileMutation(baseOptions?: Apollo.MutationHookOption
|
|
|
1863
1883
|
export type UpdateProfileMutationHookResult = ReturnType<typeof useUpdateProfileMutation>;
|
|
1864
1884
|
export type UpdateProfileMutationResult = Apollo.MutationResult<IUpdateProfileMutation>;
|
|
1865
1885
|
export type UpdateProfileMutationOptions = Apollo.BaseMutationOptions<IUpdateProfileMutation, IUpdateProfileMutationVariables>;
|
|
1886
|
+
export const FetchAggregatedMultiversxAuditDocument = gql`
|
|
1887
|
+
query FetchAggregatedMultiversxAudit($userId: ID!) {
|
|
1888
|
+
fetchAggregatedMultiversxAudit(userId: $userId) {
|
|
1889
|
+
delegated
|
|
1890
|
+
interests {
|
|
1891
|
+
name
|
|
1892
|
+
items
|
|
1893
|
+
percentage
|
|
1894
|
+
}
|
|
1895
|
+
nativeBalance
|
|
1896
|
+
nftBalance {
|
|
1897
|
+
nativeValue
|
|
1898
|
+
totalNfts
|
|
1899
|
+
collections {
|
|
1900
|
+
collection
|
|
1901
|
+
type
|
|
1902
|
+
name
|
|
1903
|
+
balance
|
|
1904
|
+
}
|
|
1905
|
+
}
|
|
1906
|
+
tokenValue
|
|
1907
|
+
}
|
|
1908
|
+
}
|
|
1909
|
+
`;
|
|
1910
|
+
|
|
1911
|
+
/**
|
|
1912
|
+
* __useFetchAggregatedMultiversxAuditQuery__
|
|
1913
|
+
*
|
|
1914
|
+
* To run a query within a React component, call `useFetchAggregatedMultiversxAuditQuery` and pass it any options that fit your needs.
|
|
1915
|
+
* When your component renders, `useFetchAggregatedMultiversxAuditQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
1916
|
+
* you can use to render your UI.
|
|
1917
|
+
*
|
|
1918
|
+
* @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;
|
|
1919
|
+
*
|
|
1920
|
+
* @example
|
|
1921
|
+
* const { data, loading, error } = useFetchAggregatedMultiversxAuditQuery({
|
|
1922
|
+
* variables: {
|
|
1923
|
+
* userId: // value for 'userId'
|
|
1924
|
+
* },
|
|
1925
|
+
* });
|
|
1926
|
+
*/
|
|
1927
|
+
export function useFetchAggregatedMultiversxAuditQuery(baseOptions: Apollo.QueryHookOptions<IFetchAggregatedMultiversxAuditQuery, IFetchAggregatedMultiversxAuditQueryVariables>) {
|
|
1928
|
+
return Apollo.useQuery<IFetchAggregatedMultiversxAuditQuery, IFetchAggregatedMultiversxAuditQueryVariables>(FetchAggregatedMultiversxAuditDocument, baseOptions);
|
|
1929
|
+
}
|
|
1930
|
+
export function useFetchAggregatedMultiversxAuditLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchAggregatedMultiversxAuditQuery, IFetchAggregatedMultiversxAuditQueryVariables>) {
|
|
1931
|
+
return Apollo.useLazyQuery<IFetchAggregatedMultiversxAuditQuery, IFetchAggregatedMultiversxAuditQueryVariables>(FetchAggregatedMultiversxAuditDocument, baseOptions);
|
|
1932
|
+
}
|
|
1933
|
+
export type FetchAggregatedMultiversxAuditQueryHookResult = ReturnType<typeof useFetchAggregatedMultiversxAuditQuery>;
|
|
1934
|
+
export type FetchAggregatedMultiversxAuditLazyQueryHookResult = ReturnType<typeof useFetchAggregatedMultiversxAuditLazyQuery>;
|
|
1935
|
+
export type FetchAggregatedMultiversxAuditQueryResult = Apollo.QueryResult<IFetchAggregatedMultiversxAuditQuery, IFetchAggregatedMultiversxAuditQueryVariables>;
|
|
1866
1936
|
export const FetchMultiversXAuditDocument = gql`
|
|
1867
1937
|
query FetchMultiversXAudit($wallet: String!) {
|
|
1868
1938
|
fetchMultiversxAudit(wallet: $wallet) {
|