@poolzfinance/api4 1.9.12 → 1.10.0
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/dist/endpoints/poolxTokenomics.d.ts +3 -0
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.modern.js +1 -1
- package/dist/index.modern.js.map +1 -1
- package/dist/index.module.js +1 -1
- package/dist/index.module.js.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.map +1 -1
- package/dist/types/graphql/gql.d.ts +11 -4
- package/dist/types/graphql/graphql.d.ts +55 -3
- package/package.json +1 -1
|
@@ -11,10 +11,10 @@ import { TypedDocumentNode as DocumentNode } from '@graphql-typed-document-node/
|
|
|
11
11
|
* Therefore it is highly recommended to use the babel or swc plugin for production.
|
|
12
12
|
*/
|
|
13
13
|
declare const documents: {
|
|
14
|
-
"\n query BoostProxyData($campaignCodes: [String!]!) {\n boostProxy(campaignCodes: $campaignCodes) {\n TotalUsers\n CampaignName\n TotalEntries\n CampaignCode\n }\n}": DocumentNode<types.BoostProxyDataQuery, types.Exact<{
|
|
14
|
+
"\n query BoostProxyData($campaignCodes: [String!]!) {\n boostProxy(campaignCodes: $campaignCodes) {\n TotalUsers\n DataKey\n CampaignName\n TotalEntries\n CampaignCode\n }\n}": DocumentNode<types.BoostProxyDataQuery, types.Exact<{
|
|
15
15
|
campaignCodes: string | string[];
|
|
16
16
|
}>>;
|
|
17
|
-
"\n query BoostProxyUsers($campaignCodes: [String!]!) {\n boostProxy(campaignCodes: $campaignCodes) {\n TotalUsers\n CampaignName\n TotalEntries\n CampaignCode\n Users {\n Address\n Entries\n }\n }\n}": DocumentNode<types.BoostProxyUsersQuery, types.Exact<{
|
|
17
|
+
"\n query BoostProxyUsers($campaignCodes: [String!]!) {\n boostProxy(campaignCodes: $campaignCodes) {\n TotalUsers\n CampaignName\n TotalEntries\n CampaignCode\n DataKey\n Users {\n Address\n Entries\n }\n }\n}": DocumentNode<types.BoostProxyUsersQuery, types.Exact<{
|
|
18
18
|
campaignCodes: string | string[];
|
|
19
19
|
}>>;
|
|
20
20
|
"\n query getCirculatingSupply {\n circulatingSupply\n}": DocumentNode<types.GetCirculatingSupplyQuery, types.Exact<{
|
|
@@ -71,6 +71,9 @@ declare const documents: {
|
|
|
71
71
|
"\n query MyRole {\n myRole\n}": DocumentNode<types.MyRoleQuery, types.Exact<{
|
|
72
72
|
[key: string]: never;
|
|
73
73
|
}>>;
|
|
74
|
+
"\n query GetPoolxTokenomics {\n poolxTokenomics {\n CirculatingSupply\n Locked\n Data {\n TotalSupply\n BuyBack\n LockedDealV2\n DelayVault\n DelayVaultV2\n Reserved\n }\n Trade {\n Sum\n Huobi\n GateIO\n PancakeSwapV2\n PancakeSwapV3\n Mexc\n }\n }\n }\n": DocumentNode<types.GetPoolxTokenomicsQuery, types.Exact<{
|
|
75
|
+
[key: string]: never;
|
|
76
|
+
}>>;
|
|
74
77
|
"\n query Signup($signUpId: Int!) {\n signUp(id: $signUpId) {\n Address\n Amount\n }\n}": DocumentNode<types.SignupQuery, types.Exact<{
|
|
75
78
|
signUpId: number;
|
|
76
79
|
}>>;
|
|
@@ -94,11 +97,11 @@ export declare function gql(source: string): unknown;
|
|
|
94
97
|
/**
|
|
95
98
|
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
96
99
|
*/
|
|
97
|
-
export declare function gql(source: "\n query BoostProxyData($campaignCodes: [String!]!) {\n boostProxy(campaignCodes: $campaignCodes) {\n TotalUsers\n CampaignName\n TotalEntries\n CampaignCode\n }\n}"): (typeof documents)["\n query BoostProxyData($campaignCodes: [String!]!) {\n boostProxy(campaignCodes: $campaignCodes) {\n TotalUsers\n CampaignName\n TotalEntries\n CampaignCode\n }\n}"];
|
|
100
|
+
export declare function gql(source: "\n query BoostProxyData($campaignCodes: [String!]!) {\n boostProxy(campaignCodes: $campaignCodes) {\n TotalUsers\n DataKey\n CampaignName\n TotalEntries\n CampaignCode\n }\n}"): (typeof documents)["\n query BoostProxyData($campaignCodes: [String!]!) {\n boostProxy(campaignCodes: $campaignCodes) {\n TotalUsers\n DataKey\n CampaignName\n TotalEntries\n CampaignCode\n }\n}"];
|
|
98
101
|
/**
|
|
99
102
|
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
100
103
|
*/
|
|
101
|
-
export declare function gql(source: "\n query BoostProxyUsers($campaignCodes: [String!]!) {\n boostProxy(campaignCodes: $campaignCodes) {\n TotalUsers\n CampaignName\n TotalEntries\n CampaignCode\n Users {\n Address\n Entries\n }\n }\n}"): (typeof documents)["\n query BoostProxyUsers($campaignCodes: [String!]!) {\n boostProxy(campaignCodes: $campaignCodes) {\n TotalUsers\n CampaignName\n TotalEntries\n CampaignCode\n Users {\n Address\n Entries\n }\n }\n}"];
|
|
104
|
+
export declare function gql(source: "\n query BoostProxyUsers($campaignCodes: [String!]!) {\n boostProxy(campaignCodes: $campaignCodes) {\n TotalUsers\n CampaignName\n TotalEntries\n CampaignCode\n DataKey\n Users {\n Address\n Entries\n }\n }\n}"): (typeof documents)["\n query BoostProxyUsers($campaignCodes: [String!]!) {\n boostProxy(campaignCodes: $campaignCodes) {\n TotalUsers\n CampaignName\n TotalEntries\n CampaignCode\n DataKey\n Users {\n Address\n Entries\n }\n }\n}"];
|
|
102
105
|
/**
|
|
103
106
|
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
104
107
|
*/
|
|
@@ -167,6 +170,10 @@ export declare function gql(source: "\n query KYC {\n myProxyKYC {\n Pr
|
|
|
167
170
|
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
168
171
|
*/
|
|
169
172
|
export declare function gql(source: "\n query MyRole {\n myRole\n}"): (typeof documents)["\n query MyRole {\n myRole\n}"];
|
|
173
|
+
/**
|
|
174
|
+
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
175
|
+
*/
|
|
176
|
+
export declare function gql(source: "\n query GetPoolxTokenomics {\n poolxTokenomics {\n CirculatingSupply\n Locked\n Data {\n TotalSupply\n BuyBack\n LockedDealV2\n DelayVault\n DelayVaultV2\n Reserved\n }\n Trade {\n Sum\n Huobi\n GateIO\n PancakeSwapV2\n PancakeSwapV3\n Mexc\n }\n }\n }\n"): (typeof documents)["\n query GetPoolxTokenomics {\n poolxTokenomics {\n CirculatingSupply\n Locked\n Data {\n TotalSupply\n BuyBack\n LockedDealV2\n DelayVault\n DelayVaultV2\n Reserved\n }\n Trade {\n Sum\n Huobi\n GateIO\n PancakeSwapV2\n PancakeSwapV3\n Mexc\n }\n }\n }\n"];
|
|
170
177
|
/**
|
|
171
178
|
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
172
179
|
*/
|
|
@@ -115,6 +115,7 @@ export type BoostProxy = {
|
|
|
115
115
|
__typename?: 'BoostProxy';
|
|
116
116
|
CampaignCode: Scalars['String']['output'];
|
|
117
117
|
CampaignName: Scalars['String']['output'];
|
|
118
|
+
DataKey: Scalars['String']['output'];
|
|
118
119
|
TotalEntries: Scalars['Int']['output'];
|
|
119
120
|
TotalUsers: Scalars['Int']['output'];
|
|
120
121
|
Users: Array<BoostProxyUser>;
|
|
@@ -126,11 +127,11 @@ export type BoostProxyUser = {
|
|
|
126
127
|
};
|
|
127
128
|
export type DataOnAuth = {
|
|
128
129
|
auth_date: Scalars['Int']['input'];
|
|
129
|
-
first_name
|
|
130
|
+
first_name?: InputMaybe<Scalars['String']['input']>;
|
|
130
131
|
hash: Scalars['String']['input'];
|
|
131
132
|
id: Scalars['Int']['input'];
|
|
132
|
-
last_name
|
|
133
|
-
photo_url
|
|
133
|
+
last_name?: InputMaybe<Scalars['String']['input']>;
|
|
134
|
+
photo_url?: InputMaybe<Scalars['String']['input']>;
|
|
134
135
|
username: Scalars['String']['input'];
|
|
135
136
|
};
|
|
136
137
|
export type GenerateTokenFromSignature = {
|
|
@@ -273,6 +274,17 @@ export type MyData = {
|
|
|
273
274
|
EvmWallets: Array<Scalars['String']['output']>;
|
|
274
275
|
NonEvmWallet: Array<NonEvmWallet>;
|
|
275
276
|
};
|
|
277
|
+
export type MyInvestSum = {
|
|
278
|
+
__typename?: 'MyInvestSum';
|
|
279
|
+
DateOfFirstTx?: Maybe<Scalars['Int']['output']>;
|
|
280
|
+
InvestedTx?: Maybe<Array<Scalars['String']['output']>>;
|
|
281
|
+
SumOfAmountIn?: Maybe<Scalars['Float']['output']>;
|
|
282
|
+
SumOfTokenOut?: Maybe<Scalars['Float']['output']>;
|
|
283
|
+
TotalTokens?: Maybe<Scalars['Float']['output']>;
|
|
284
|
+
UserAddress: Scalars['String']['output'];
|
|
285
|
+
WithdrawnSum?: Maybe<Scalars['Float']['output']>;
|
|
286
|
+
WithdrawnTx?: Maybe<Array<Scalars['String']['output']>>;
|
|
287
|
+
};
|
|
276
288
|
export type MySignUp = {
|
|
277
289
|
__typename?: 'MySignUp';
|
|
278
290
|
SignupId: Scalars['Int']['output'];
|
|
@@ -293,6 +305,7 @@ export type PoolxTokenomicsData = {
|
|
|
293
305
|
__typename?: 'PoolxTokenomicsData';
|
|
294
306
|
BuyBack: Scalars['Float']['output'];
|
|
295
307
|
DelayVault: Scalars['Float']['output'];
|
|
308
|
+
DelayVaultV2: Scalars['Float']['output'];
|
|
296
309
|
LockedDealV2: Scalars['Float']['output'];
|
|
297
310
|
Reserved: Scalars['Float']['output'];
|
|
298
311
|
TotalSupply: Scalars['Float']['output'];
|
|
@@ -303,6 +316,7 @@ export type PoolxTokenomicsTrade = {
|
|
|
303
316
|
Huobi: Scalars['Float']['output'];
|
|
304
317
|
Mexc: Scalars['Float']['output'];
|
|
305
318
|
PancakeSwapV2: Scalars['Float']['output'];
|
|
319
|
+
PancakeSwapV3?: Maybe<Scalars['Float']['output']>;
|
|
306
320
|
Sum: Scalars['Float']['output'];
|
|
307
321
|
};
|
|
308
322
|
export type PutMyDataNonEvmWallet = {
|
|
@@ -323,6 +337,7 @@ export type Query = {
|
|
|
323
337
|
kolInvestedErc20: Array<KolInvestedErc20>;
|
|
324
338
|
leaderBoard: Array<LeaderBoard>;
|
|
325
339
|
myData?: Maybe<MyData>;
|
|
340
|
+
myInvestSum: MyInvestSum;
|
|
326
341
|
/** @deprecated Use a new query 'myProxyKYC'. */
|
|
327
342
|
myKYC: Kyc;
|
|
328
343
|
myProxyKYC: KycProxy;
|
|
@@ -376,6 +391,9 @@ export type QueryLeaderBoardArgs = {
|
|
|
376
391
|
export type QueryMyDataArgs = {
|
|
377
392
|
chainNames?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
378
393
|
};
|
|
394
|
+
export type QueryMyInvestSumArgs = {
|
|
395
|
+
projectId: Scalars['Int']['input'];
|
|
396
|
+
};
|
|
379
397
|
export type QuerySignUpArgs = {
|
|
380
398
|
id: Scalars['Int']['input'];
|
|
381
399
|
};
|
|
@@ -525,6 +543,7 @@ export type BoostProxyDataQuery = {
|
|
|
525
543
|
boostProxy: Array<{
|
|
526
544
|
__typename?: 'BoostProxy';
|
|
527
545
|
TotalUsers: number;
|
|
546
|
+
DataKey: string;
|
|
528
547
|
CampaignName: string;
|
|
529
548
|
TotalEntries: number;
|
|
530
549
|
CampaignCode: string;
|
|
@@ -541,6 +560,7 @@ export type BoostProxyUsersQuery = {
|
|
|
541
560
|
CampaignName: string;
|
|
542
561
|
TotalEntries: number;
|
|
543
562
|
CampaignCode: string;
|
|
563
|
+
DataKey: string;
|
|
544
564
|
Users: Array<{
|
|
545
565
|
__typename?: 'BoostProxyUser';
|
|
546
566
|
Address: string;
|
|
@@ -738,6 +758,35 @@ export type MyRoleQuery = {
|
|
|
738
758
|
__typename?: 'Query';
|
|
739
759
|
myRole: string;
|
|
740
760
|
};
|
|
761
|
+
export type GetPoolxTokenomicsQueryVariables = Exact<{
|
|
762
|
+
[key: string]: never;
|
|
763
|
+
}>;
|
|
764
|
+
export type GetPoolxTokenomicsQuery = {
|
|
765
|
+
__typename?: 'Query';
|
|
766
|
+
poolxTokenomics: {
|
|
767
|
+
__typename?: 'PoolxTokenomics';
|
|
768
|
+
CirculatingSupply: number;
|
|
769
|
+
Locked: number;
|
|
770
|
+
Data: {
|
|
771
|
+
__typename?: 'PoolxTokenomicsData';
|
|
772
|
+
TotalSupply: number;
|
|
773
|
+
BuyBack: number;
|
|
774
|
+
LockedDealV2: number;
|
|
775
|
+
DelayVault: number;
|
|
776
|
+
DelayVaultV2: number;
|
|
777
|
+
Reserved: number;
|
|
778
|
+
};
|
|
779
|
+
Trade: {
|
|
780
|
+
__typename?: 'PoolxTokenomicsTrade';
|
|
781
|
+
Sum: number;
|
|
782
|
+
Huobi: number;
|
|
783
|
+
GateIO: number;
|
|
784
|
+
PancakeSwapV2: number;
|
|
785
|
+
PancakeSwapV3?: number | null;
|
|
786
|
+
Mexc: number;
|
|
787
|
+
};
|
|
788
|
+
};
|
|
789
|
+
};
|
|
741
790
|
export type SignupQueryVariables = Exact<{
|
|
742
791
|
signUpId: Scalars['Int']['input'];
|
|
743
792
|
}>;
|
|
@@ -819,6 +868,9 @@ export declare const KycDocument: DocumentNode<KycQuery, Exact<{
|
|
|
819
868
|
export declare const MyRoleDocument: DocumentNode<MyRoleQuery, Exact<{
|
|
820
869
|
[key: string]: never;
|
|
821
870
|
}>>;
|
|
871
|
+
export declare const GetPoolxTokenomicsDocument: DocumentNode<GetPoolxTokenomicsQuery, Exact<{
|
|
872
|
+
[key: string]: never;
|
|
873
|
+
}>>;
|
|
822
874
|
export declare const SignupDocument: DocumentNode<SignupQuery, Exact<{
|
|
823
875
|
signUpId: Scalars['Int']['input'];
|
|
824
876
|
}>>;
|