@poolzfinance/api4 1.11.36 → 1.11.38
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/getDownloader.d.ts +0 -3
- package/dist/endpoints/seasonPass.d.ts +1 -0
- package/dist/endpoints/signupV2.d.ts +14 -0
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +2 -2
- 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 +25 -9
- package/dist/types/graphql/graphql.d.ts +82 -164
- package/package.json +1 -1
|
@@ -48,9 +48,6 @@ declare const documents: {
|
|
|
48
48
|
"\n query MyQuery {\n time\n}": DocumentNode<types.MyQueryQuery, types.Exact<{
|
|
49
49
|
[key: string]: never;
|
|
50
50
|
}>>;
|
|
51
|
-
"\n query Downloader {\n downloader {\n ChainId\n ChainName\n RpcUrl\n CovalentLastBlock\n SecondsToWarning\n SecondsToError\n BlockPerSecond\n Events {\n ContractAddress\n EventHash\n Active\n StartingBlock\n EndingBlock\n MaxBatchSize\n ResponseType\n MaxPageNumber\n UrlSet\n Mapping {\n Id\n Path\n Converter\n Name\n }\n }\n }\n}": DocumentNode<types.DownloaderQuery, types.Exact<{
|
|
52
|
-
[key: string]: never;
|
|
53
|
-
}>>;
|
|
54
51
|
"\nmutation GenerateTokenFromSignature($eip4361message: String!, $signature: String!) {\n generateTokenFromSignature(eip4361message: $eip4361message, signature: $signature){\n token\n validUntil\n }\n}": DocumentNode<types.GenerateTokenFromSignatureMutation, types.Exact<{
|
|
55
52
|
eip4361message: string;
|
|
56
53
|
signature: string;
|
|
@@ -142,8 +139,9 @@ declare const documents: {
|
|
|
142
139
|
ValidUntil: number;
|
|
143
140
|
Note: string;
|
|
144
141
|
}>>;
|
|
145
|
-
"\n mutation DeleteSeasonPass($owner: String!) {\n deleteSeasonPass(owner: $owner) {\n Owner\n Amount\n ValidUntil\n Note\n }\n }\n": DocumentNode<types.DeleteSeasonPassMutation, types.Exact<{
|
|
142
|
+
"\n mutation DeleteSeasonPass($owner: String!, $note: String!) {\n deleteSeasonPass(owner: $owner, note: $note) {\n Owner\n Amount\n ValidUntil\n Note\n }\n }\n": DocumentNode<types.DeleteSeasonPassMutation, types.Exact<{
|
|
146
143
|
owner: string;
|
|
144
|
+
note: string;
|
|
147
145
|
}>>;
|
|
148
146
|
"\n query Signup($signUpId: Int!) {\n signUp(id: $signUpId) {\n Address\n Amount\n }\n}": DocumentNode<types.SignupQuery, types.Exact<{
|
|
149
147
|
signUpId: number;
|
|
@@ -151,6 +149,16 @@ declare const documents: {
|
|
|
151
149
|
"\n query MySignup {\n mySignup {\n SignupId\n }\n}": DocumentNode<types.MySignupQuery, types.Exact<{
|
|
152
150
|
[key: string]: never;
|
|
153
151
|
}>>;
|
|
152
|
+
"\n query MySignUpV2($projectIDs: [Int!]!) {\n mySignUpV2(projectIDs: $projectIDs) {\n ProjectId\n SignedUp\n }\n }\n": DocumentNode<types.MySignUpV2Query, types.Exact<{
|
|
153
|
+
projectIDs: number | number[];
|
|
154
|
+
}>>;
|
|
155
|
+
"\n query AdminSignUpV2($projectId: Int!, $minPoolxAmount: Int!) {\n adminSignUpV2(projectId: $projectId, minPoolxAmount: $minPoolxAmount) {\n Address\n Amount\n }\n }\n": DocumentNode<types.AdminSignUpV2Query, types.Exact<{
|
|
156
|
+
projectId: number;
|
|
157
|
+
minPoolxAmount: number;
|
|
158
|
+
}>>;
|
|
159
|
+
"\n mutation ProjectSignUpV2($projectId: Int!) {\n projectSignUpV2(projectId: $projectId) {\n ProjectId\n UserAddress\n JoinedTime\n }\n }\n": DocumentNode<types.ProjectSignUpV2Mutation, types.Exact<{
|
|
160
|
+
projectId: number;
|
|
161
|
+
}>>;
|
|
154
162
|
"\nquery SimpleUrlShortener($input: TxHashChainIdInput!) {\n simpleUrlShortener(input: $input) {\n ShortUrl\n ContainerText\n UrlToScan\n XPostText\n }\n}": DocumentNode<types.SimpleUrlShortenerQuery, types.Exact<{
|
|
155
163
|
input: types.TxHashChainIdInput;
|
|
156
164
|
}>>;
|
|
@@ -223,10 +231,6 @@ export declare function gql(source: "\n query DaoSenderHistory($page: Int!) {\n
|
|
|
223
231
|
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
224
232
|
*/
|
|
225
233
|
export declare function gql(source: "\n query MyQuery {\n time\n}"): (typeof documents)["\n query MyQuery {\n time\n}"];
|
|
226
|
-
/**
|
|
227
|
-
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
228
|
-
*/
|
|
229
|
-
export declare function gql(source: "\n query Downloader {\n downloader {\n ChainId\n ChainName\n RpcUrl\n CovalentLastBlock\n SecondsToWarning\n SecondsToError\n BlockPerSecond\n Events {\n ContractAddress\n EventHash\n Active\n StartingBlock\n EndingBlock\n MaxBatchSize\n ResponseType\n MaxPageNumber\n UrlSet\n Mapping {\n Id\n Path\n Converter\n Name\n }\n }\n }\n}"): (typeof documents)["\n query Downloader {\n downloader {\n ChainId\n ChainName\n RpcUrl\n CovalentLastBlock\n SecondsToWarning\n SecondsToError\n BlockPerSecond\n Events {\n ContractAddress\n EventHash\n Active\n StartingBlock\n EndingBlock\n MaxBatchSize\n ResponseType\n MaxPageNumber\n UrlSet\n Mapping {\n Id\n Path\n Converter\n Name\n }\n }\n }\n}"];
|
|
230
234
|
/**
|
|
231
235
|
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
232
236
|
*/
|
|
@@ -330,7 +334,7 @@ export declare function gql(source: "\n mutation UpdateSeasonPass($Owner: Strin
|
|
|
330
334
|
/**
|
|
331
335
|
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
332
336
|
*/
|
|
333
|
-
export declare function gql(source: "\n mutation DeleteSeasonPass($owner: String!) {\n deleteSeasonPass(owner: $owner) {\n Owner\n Amount\n ValidUntil\n Note\n }\n }\n"): (typeof documents)["\n mutation DeleteSeasonPass($owner: String!) {\n deleteSeasonPass(owner: $owner) {\n Owner\n Amount\n ValidUntil\n Note\n }\n }\n"];
|
|
337
|
+
export declare function gql(source: "\n mutation DeleteSeasonPass($owner: String!, $note: String!) {\n deleteSeasonPass(owner: $owner, note: $note) {\n Owner\n Amount\n ValidUntil\n Note\n }\n }\n"): (typeof documents)["\n mutation DeleteSeasonPass($owner: String!, $note: String!) {\n deleteSeasonPass(owner: $owner, note: $note) {\n Owner\n Amount\n ValidUntil\n Note\n }\n }\n"];
|
|
334
338
|
/**
|
|
335
339
|
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
336
340
|
*/
|
|
@@ -339,6 +343,18 @@ export declare function gql(source: "\n query Signup($signUpId: Int!) {\n si
|
|
|
339
343
|
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
340
344
|
*/
|
|
341
345
|
export declare function gql(source: "\n query MySignup {\n mySignup {\n SignupId\n }\n}"): (typeof documents)["\n query MySignup {\n mySignup {\n SignupId\n }\n}"];
|
|
346
|
+
/**
|
|
347
|
+
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
348
|
+
*/
|
|
349
|
+
export declare function gql(source: "\n query MySignUpV2($projectIDs: [Int!]!) {\n mySignUpV2(projectIDs: $projectIDs) {\n ProjectId\n SignedUp\n }\n }\n"): (typeof documents)["\n query MySignUpV2($projectIDs: [Int!]!) {\n mySignUpV2(projectIDs: $projectIDs) {\n ProjectId\n SignedUp\n }\n }\n"];
|
|
350
|
+
/**
|
|
351
|
+
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
352
|
+
*/
|
|
353
|
+
export declare function gql(source: "\n query AdminSignUpV2($projectId: Int!, $minPoolxAmount: Int!) {\n adminSignUpV2(projectId: $projectId, minPoolxAmount: $minPoolxAmount) {\n Address\n Amount\n }\n }\n"): (typeof documents)["\n query AdminSignUpV2($projectId: Int!, $minPoolxAmount: Int!) {\n adminSignUpV2(projectId: $projectId, minPoolxAmount: $minPoolxAmount) {\n Address\n Amount\n }\n }\n"];
|
|
354
|
+
/**
|
|
355
|
+
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
356
|
+
*/
|
|
357
|
+
export declare function gql(source: "\n mutation ProjectSignUpV2($projectId: Int!) {\n projectSignUpV2(projectId: $projectId) {\n ProjectId\n UserAddress\n JoinedTime\n }\n }\n"): (typeof documents)["\n mutation ProjectSignUpV2($projectId: Int!) {\n projectSignUpV2(projectId: $projectId) {\n ProjectId\n UserAddress\n JoinedTime\n }\n }\n"];
|
|
342
358
|
/**
|
|
343
359
|
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
344
360
|
*/
|
|
@@ -69,23 +69,6 @@ export type ActionSettings = {
|
|
|
69
69
|
SettingsId: Scalars['Int']['output'];
|
|
70
70
|
StartingRunningTime: Scalars['String']['output'];
|
|
71
71
|
};
|
|
72
|
-
export type AddChainInput = {
|
|
73
|
-
BlockPerSecond: Scalars['Float']['input'];
|
|
74
|
-
ChainId: Scalars['Int']['input'];
|
|
75
|
-
ChainName: Scalars['String']['input'];
|
|
76
|
-
DownloadTimeDelay: Scalars['Int']['input'];
|
|
77
|
-
RpcUrl: Scalars['String']['input'];
|
|
78
|
-
SecondsToError: Scalars['Int']['input'];
|
|
79
|
-
SecondsToWarning: Scalars['Int']['input'];
|
|
80
|
-
};
|
|
81
|
-
export type AddMappingInput = {
|
|
82
|
-
Converter: Scalars['String']['input'];
|
|
83
|
-
DownloaderSettingsChainId: Scalars['Int']['input'];
|
|
84
|
-
DownloaderSettingsContractAddress: Scalars['String']['input'];
|
|
85
|
-
DownloaderSettingsEventHash: Scalars['String']['input'];
|
|
86
|
-
Name: Scalars['String']['input'];
|
|
87
|
-
Path: Scalars['String']['input'];
|
|
88
|
-
};
|
|
89
72
|
export type AdminAction = {
|
|
90
73
|
__typename?: 'AdminAction';
|
|
91
74
|
ActionRegistry: ActionRegistry;
|
|
@@ -211,43 +194,6 @@ export type DataOnAuth = {
|
|
|
211
194
|
photo_url?: InputMaybe<Scalars['String']['input']>;
|
|
212
195
|
username?: InputMaybe<Scalars['String']['input']>;
|
|
213
196
|
};
|
|
214
|
-
export type Downloader = {
|
|
215
|
-
__typename?: 'Downloader';
|
|
216
|
-
BlockPerSecond: Scalars['Float']['output'];
|
|
217
|
-
ChainId: Scalars['Int']['output'];
|
|
218
|
-
ChainName: Scalars['String']['output'];
|
|
219
|
-
CovalentLastBlock: Scalars['Int']['output'];
|
|
220
|
-
DownloadTimeDelay: Scalars['Int']['output'];
|
|
221
|
-
Events?: Maybe<Array<DownloaderEvents>>;
|
|
222
|
-
RpcUrl: Scalars['String']['output'];
|
|
223
|
-
SecondsToError: Scalars['Int']['output'];
|
|
224
|
-
SecondsToWarning: Scalars['Int']['output'];
|
|
225
|
-
};
|
|
226
|
-
export type DownloaderEventInput = {
|
|
227
|
-
Active: Scalars['Boolean']['input'];
|
|
228
|
-
ContractAddress: Scalars['String']['input'];
|
|
229
|
-
EndingBlock?: InputMaybe<Scalars['Int']['input']>;
|
|
230
|
-
EventHash: Scalars['String']['input'];
|
|
231
|
-
Key: Scalars['String']['input'];
|
|
232
|
-
MaxBatchSize: Scalars['Int']['input'];
|
|
233
|
-
MaxPageNumber?: InputMaybe<Scalars['Int']['input']>;
|
|
234
|
-
ResponseType: Scalars['String']['input'];
|
|
235
|
-
StartingBlock: Scalars['Int']['input'];
|
|
236
|
-
UrlSet: Scalars['String']['input'];
|
|
237
|
-
};
|
|
238
|
-
export type DownloaderEvents = {
|
|
239
|
-
__typename?: 'DownloaderEvents';
|
|
240
|
-
Active: Scalars['Boolean']['output'];
|
|
241
|
-
ContractAddress: Scalars['String']['output'];
|
|
242
|
-
EndingBlock?: Maybe<Scalars['Int']['output']>;
|
|
243
|
-
EventHash: Scalars['String']['output'];
|
|
244
|
-
Mapping?: Maybe<Array<Mapping>>;
|
|
245
|
-
MaxBatchSize: Scalars['Int']['output'];
|
|
246
|
-
MaxPageNumber?: Maybe<Scalars['Int']['output']>;
|
|
247
|
-
ResponseType: Scalars['String']['output'];
|
|
248
|
-
StartingBlock: Scalars['Int']['output'];
|
|
249
|
-
UrlSet: Scalars['String']['output'];
|
|
250
|
-
};
|
|
251
197
|
export type GenerateTokenFromSignature = {
|
|
252
198
|
__typename?: 'GenerateTokenFromSignature';
|
|
253
199
|
token: Scalars['String']['output'];
|
|
@@ -298,35 +244,10 @@ export type LeaderBoard = {
|
|
|
298
244
|
Rank: Scalars['Int']['output'];
|
|
299
245
|
VaultAmount: Scalars['Float']['output'];
|
|
300
246
|
};
|
|
301
|
-
export type Mapping = {
|
|
302
|
-
__typename?: 'Mapping';
|
|
303
|
-
Converter: Scalars['String']['output'];
|
|
304
|
-
Id: Scalars['Int']['output'];
|
|
305
|
-
Name: Scalars['String']['output'];
|
|
306
|
-
Path: Scalars['String']['output'];
|
|
307
|
-
};
|
|
308
|
-
export type MappingInput = {
|
|
309
|
-
Converter: Scalars['String']['input'];
|
|
310
|
-
Name: Scalars['String']['input'];
|
|
311
|
-
Path: Scalars['String']['input'];
|
|
312
|
-
};
|
|
313
|
-
export type MappingMutation = {
|
|
314
|
-
__typename?: 'MappingMutation';
|
|
315
|
-
Converter: Scalars['String']['output'];
|
|
316
|
-
DownloaderSettingsChainId: Scalars['Int']['output'];
|
|
317
|
-
DownloaderSettingsContractAddress: Scalars['String']['output'];
|
|
318
|
-
DownloaderSettingsEventHash: Scalars['String']['output'];
|
|
319
|
-
Id: Scalars['Int']['output'];
|
|
320
|
-
Name: Scalars['String']['output'];
|
|
321
|
-
Path: Scalars['String']['output'];
|
|
322
|
-
};
|
|
323
247
|
export type Mutation = {
|
|
324
248
|
__typename?: 'Mutation';
|
|
325
249
|
addAutoSignUp: AdminAutoSignUp;
|
|
326
|
-
addChain: Downloader;
|
|
327
|
-
addDownloaderEvent: Scalars['Boolean']['output'];
|
|
328
250
|
addEvmWallet: UserData;
|
|
329
|
-
addMapping: Scalars['Boolean']['output'];
|
|
330
251
|
addNonEvmWallet: UserData;
|
|
331
252
|
addUser: AdminUsers;
|
|
332
253
|
adminAddAction: AdminAction;
|
|
@@ -334,10 +255,9 @@ export type Mutation = {
|
|
|
334
255
|
adminDeleteAction: Scalars['Boolean']['output'];
|
|
335
256
|
adminUpdateAction: ActionSettings;
|
|
336
257
|
createSeasonPass: SeasonPass;
|
|
258
|
+
createSeasonPasses: Array<SeasonPass>;
|
|
337
259
|
deleteAutoSignUp: AdminAutoSignUp;
|
|
338
|
-
deleteDownloaderEvent: Scalars['Boolean']['output'];
|
|
339
260
|
deleteEvmWallet: UserData;
|
|
340
|
-
deleteMapping: Scalars['Boolean']['output'];
|
|
341
261
|
deleteNonEvmWallet: UserData;
|
|
342
262
|
deleteSeasonPass: SeasonPass;
|
|
343
263
|
deleteUser: AdminUsers;
|
|
@@ -350,9 +270,7 @@ export type Mutation = {
|
|
|
350
270
|
sendToMonitor: Scalars['Int']['output'];
|
|
351
271
|
setMyAgree: Scalars['Boolean']['output'];
|
|
352
272
|
updateAutoSignUp: AdminAutoSignUp;
|
|
353
|
-
updateDownloaderEvent: Scalars['Boolean']['output'];
|
|
354
273
|
updateEvmWallet: UserData;
|
|
355
|
-
updateMapping: Scalars['Boolean']['output'];
|
|
356
274
|
updateNonEvmWallet: UserData;
|
|
357
275
|
updateSeasonPass: SeasonPass;
|
|
358
276
|
updateUser: AdminUsers;
|
|
@@ -362,19 +280,9 @@ export type MutationAddAutoSignUpArgs = {
|
|
|
362
280
|
note: Scalars['String']['input'];
|
|
363
281
|
poolzAmount: Scalars['Float']['input'];
|
|
364
282
|
};
|
|
365
|
-
export type MutationAddChainArgs = {
|
|
366
|
-
addChainInput: AddChainInput;
|
|
367
|
-
};
|
|
368
|
-
export type MutationAddDownloaderEventArgs = {
|
|
369
|
-
chainId: Scalars['Int']['input'];
|
|
370
|
-
eventData: DownloaderEventInput;
|
|
371
|
-
};
|
|
372
283
|
export type MutationAddEvmWalletArgs = {
|
|
373
284
|
wallet: Scalars['String']['input'];
|
|
374
285
|
};
|
|
375
|
-
export type MutationAddMappingArgs = {
|
|
376
|
-
addMappingInput: AddMappingInput;
|
|
377
|
-
};
|
|
378
286
|
export type MutationAddNonEvmWalletArgs = {
|
|
379
287
|
chainName: Scalars['String']['input'];
|
|
380
288
|
wallet: Scalars['String']['input'];
|
|
@@ -396,24 +304,20 @@ export type MutationAdminUpdateActionArgs = {
|
|
|
396
304
|
export type MutationCreateSeasonPassArgs = {
|
|
397
305
|
seasonPass: SeasonPassInput;
|
|
398
306
|
};
|
|
307
|
+
export type MutationCreateSeasonPassesArgs = {
|
|
308
|
+
seasonPasses: Array<SeasonPassInput>;
|
|
309
|
+
};
|
|
399
310
|
export type MutationDeleteAutoSignUpArgs = {
|
|
400
311
|
address: Scalars['String']['input'];
|
|
401
312
|
};
|
|
402
|
-
export type MutationDeleteDownloaderEventArgs = {
|
|
403
|
-
chainId: Scalars['Int']['input'];
|
|
404
|
-
contractAddress: Scalars['String']['input'];
|
|
405
|
-
eventHash: Scalars['String']['input'];
|
|
406
|
-
};
|
|
407
313
|
export type MutationDeleteEvmWalletArgs = {
|
|
408
314
|
wallet: Scalars['String']['input'];
|
|
409
315
|
};
|
|
410
|
-
export type MutationDeleteMappingArgs = {
|
|
411
|
-
id: Scalars['Int']['input'];
|
|
412
|
-
};
|
|
413
316
|
export type MutationDeleteNonEvmWalletArgs = {
|
|
414
317
|
chainName: Scalars['String']['input'];
|
|
415
318
|
};
|
|
416
319
|
export type MutationDeleteSeasonPassArgs = {
|
|
320
|
+
note: Scalars['String']['input'];
|
|
417
321
|
owner: Scalars['String']['input'];
|
|
418
322
|
};
|
|
419
323
|
export type MutationDeleteUserArgs = {
|
|
@@ -439,7 +343,7 @@ export type MutationOnboardingSetAllocationArgs = {
|
|
|
439
343
|
tokenAllocation: Array<OnboardingTokenAllocation>;
|
|
440
344
|
};
|
|
441
345
|
export type MutationProjectSignUpV2Args = {
|
|
442
|
-
projectId: Scalars['
|
|
346
|
+
projectId: Scalars['Int']['input'];
|
|
443
347
|
};
|
|
444
348
|
export type MutationSendToMonitorArgs = {
|
|
445
349
|
input: Scalars['String']['input'];
|
|
@@ -449,18 +353,10 @@ export type MutationUpdateAutoSignUpArgs = {
|
|
|
449
353
|
note: Scalars['String']['input'];
|
|
450
354
|
poolzAmount: Scalars['Float']['input'];
|
|
451
355
|
};
|
|
452
|
-
export type MutationUpdateDownloaderEventArgs = {
|
|
453
|
-
chainId: Scalars['Int']['input'];
|
|
454
|
-
eventData: DownloaderEventInput;
|
|
455
|
-
};
|
|
456
356
|
export type MutationUpdateEvmWalletArgs = {
|
|
457
357
|
newWallet: Scalars['String']['input'];
|
|
458
358
|
oldWallet: Scalars['String']['input'];
|
|
459
359
|
};
|
|
460
|
-
export type MutationUpdateMappingArgs = {
|
|
461
|
-
id: Scalars['Int']['input'];
|
|
462
|
-
updateMapping: MappingInput;
|
|
463
|
-
};
|
|
464
360
|
export type MutationUpdateNonEvmWalletArgs = {
|
|
465
361
|
chainName: Scalars['String']['input'];
|
|
466
362
|
wallet: Scalars['String']['input'];
|
|
@@ -513,7 +409,7 @@ export type MySignUp = {
|
|
|
513
409
|
};
|
|
514
410
|
export type MySignUpV2 = {
|
|
515
411
|
__typename?: 'MySignUpV2';
|
|
516
|
-
ProjectId: Scalars['
|
|
412
|
+
ProjectId: Scalars['Int']['output'];
|
|
517
413
|
SignedUp: Scalars['Boolean']['output'];
|
|
518
414
|
};
|
|
519
415
|
export type NonEvmWallet = {
|
|
@@ -593,8 +489,8 @@ export type PoolxTokenomicsTrade = {
|
|
|
593
489
|
};
|
|
594
490
|
export type ProjectSignUpV2 = {
|
|
595
491
|
__typename?: 'ProjectSignUpV2';
|
|
596
|
-
JoinedTime: Scalars['
|
|
597
|
-
ProjectId: Scalars['
|
|
492
|
+
JoinedTime: Scalars['Int']['output'];
|
|
493
|
+
ProjectId: Scalars['Int']['output'];
|
|
598
494
|
UserAddress: Scalars['String']['output'];
|
|
599
495
|
};
|
|
600
496
|
export type PutMyDataNonEvmWallet = {
|
|
@@ -615,7 +511,6 @@ export type Query = {
|
|
|
615
511
|
approvedContracts: Array<ApprovedContracts>;
|
|
616
512
|
boostProxy: Array<BoostProxy>;
|
|
617
513
|
daoSenderHistory: DaoSenderHistoryPage;
|
|
618
|
-
downloader: Array<Downloader>;
|
|
619
514
|
investedErc20: Array<InvestedErc20>;
|
|
620
515
|
kolInvestedErc20: Array<KolInvestedErc20>;
|
|
621
516
|
leaderBoard: Array<LeaderBoard>;
|
|
@@ -643,7 +538,10 @@ export type Query = {
|
|
|
643
538
|
status: Array<Status>;
|
|
644
539
|
time: Scalars['Int']['output'];
|
|
645
540
|
tokenInfo?: Maybe<TokenInfo>;
|
|
646
|
-
|
|
541
|
+
/** @deprecated Old LockDealV2 system. */
|
|
542
|
+
tokenRefundsLDv2: Array<TokenRefundsLDv2>;
|
|
543
|
+
/** # The 'poolId' must be a CollateralProvider */
|
|
544
|
+
tokenRefundsNFT: Array<TokenRefundsNft>;
|
|
647
545
|
uniqueUsers: UniqueUsers;
|
|
648
546
|
unlocks: Array<Unlocks>;
|
|
649
547
|
/** @deprecated This endpoint is deprecated. */
|
|
@@ -668,7 +566,7 @@ export type QueryAdminRpcWalletsArgs = {
|
|
|
668
566
|
};
|
|
669
567
|
export type QueryAdminSignUpV2Args = {
|
|
670
568
|
minPoolxAmount: Scalars['Int']['input'];
|
|
671
|
-
projectId: Scalars['
|
|
569
|
+
projectId: Scalars['Int']['input'];
|
|
672
570
|
};
|
|
673
571
|
export type QueryAdminUsersArgs = {
|
|
674
572
|
address?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -703,7 +601,7 @@ export type QueryMySignUpCheckArgs = {
|
|
|
703
601
|
poolIDs: Array<Scalars['Int']['input']>;
|
|
704
602
|
};
|
|
705
603
|
export type QueryMySignUpV2Args = {
|
|
706
|
-
projectIDs: Array<Scalars['
|
|
604
|
+
projectIDs: Array<Scalars['Int']['input']>;
|
|
707
605
|
};
|
|
708
606
|
export type QueryOnboardingDataArgs = {
|
|
709
607
|
chatId: Scalars['Long']['input'];
|
|
@@ -741,13 +639,17 @@ export type QuerySplitDataEncoderArgs = {
|
|
|
741
639
|
export type QueryTokenInfoArgs = {
|
|
742
640
|
hashKey: Scalars['String']['input'];
|
|
743
641
|
};
|
|
744
|
-
export type
|
|
642
|
+
export type QueryTokenRefundsLDv2Args = {
|
|
745
643
|
chainId: Scalars['Int']['input'];
|
|
746
644
|
fromBlock?: InputMaybe<Scalars['Int']['input']>;
|
|
747
645
|
newOwner?: InputMaybe<Scalars['String']['input']>;
|
|
748
646
|
toBlock?: InputMaybe<Scalars['Int']['input']>;
|
|
749
647
|
tokenAddress: Scalars['String']['input'];
|
|
750
648
|
};
|
|
649
|
+
export type QueryTokenRefundsNftArgs = {
|
|
650
|
+
chainId: Scalars['Int']['input'];
|
|
651
|
+
poolId: Scalars['Int']['input'];
|
|
652
|
+
};
|
|
751
653
|
export type QueryUnlocksArgs = {
|
|
752
654
|
address: Scalars['String']['input'];
|
|
753
655
|
};
|
|
@@ -769,13 +671,13 @@ export type RpcWallet = {
|
|
|
769
671
|
export type SeasonPass = {
|
|
770
672
|
__typename?: 'SeasonPass';
|
|
771
673
|
Amount: Scalars['Float']['output'];
|
|
772
|
-
Note
|
|
674
|
+
Note: Scalars['String']['output'];
|
|
773
675
|
Owner: Scalars['String']['output'];
|
|
774
676
|
ValidUntil: Scalars['Int']['output'];
|
|
775
677
|
};
|
|
776
678
|
export type SeasonPassInput = {
|
|
777
679
|
Amount: Scalars['Float']['input'];
|
|
778
|
-
Note
|
|
680
|
+
Note: Scalars['String']['input'];
|
|
779
681
|
Owner: Scalars['String']['input'];
|
|
780
682
|
ValidUntil: Scalars['Int']['input'];
|
|
781
683
|
};
|
|
@@ -843,8 +745,8 @@ export type TokenInfo = {
|
|
|
843
745
|
Symbol: Scalars['String']['output'];
|
|
844
746
|
TotalSupply: Scalars['Float']['output'];
|
|
845
747
|
};
|
|
846
|
-
export type
|
|
847
|
-
__typename?: '
|
|
748
|
+
export type TokenRefundsLDv2 = {
|
|
749
|
+
__typename?: 'TokenRefundsLDv2';
|
|
848
750
|
BlockHeight: Scalars['Int']['output'];
|
|
849
751
|
BlockSignedAt: Scalars['String']['output'];
|
|
850
752
|
ChainId: Scalars['Int']['output'];
|
|
@@ -856,6 +758,13 @@ export type TokenRefunds = {
|
|
|
856
758
|
OriginalLeftAmount: Scalars['Float']['output'];
|
|
857
759
|
TxHash: Scalars['String']['output'];
|
|
858
760
|
};
|
|
761
|
+
export type TokenRefundsNft = {
|
|
762
|
+
__typename?: 'TokenRefundsNFT';
|
|
763
|
+
Amount: Scalars['Float']['output'];
|
|
764
|
+
BlockSignedAt: Scalars['Int']['output'];
|
|
765
|
+
From: Scalars['String']['output'];
|
|
766
|
+
TokenId: Scalars['Int']['output'];
|
|
767
|
+
};
|
|
859
768
|
export type TxHashChainIdInput = {
|
|
860
769
|
ChainId: Scalars['Int']['input'];
|
|
861
770
|
TxHash: Scalars['String']['input'];
|
|
@@ -1076,41 +985,6 @@ export type MyQueryQuery = {
|
|
|
1076
985
|
__typename?: 'Query';
|
|
1077
986
|
time: number;
|
|
1078
987
|
};
|
|
1079
|
-
export type DownloaderQueryVariables = Exact<{
|
|
1080
|
-
[key: string]: never;
|
|
1081
|
-
}>;
|
|
1082
|
-
export type DownloaderQuery = {
|
|
1083
|
-
__typename?: 'Query';
|
|
1084
|
-
downloader: Array<{
|
|
1085
|
-
__typename?: 'Downloader';
|
|
1086
|
-
ChainId: number;
|
|
1087
|
-
ChainName: string;
|
|
1088
|
-
RpcUrl: string;
|
|
1089
|
-
CovalentLastBlock: number;
|
|
1090
|
-
SecondsToWarning: number;
|
|
1091
|
-
SecondsToError: number;
|
|
1092
|
-
BlockPerSecond: number;
|
|
1093
|
-
Events?: Array<{
|
|
1094
|
-
__typename?: 'DownloaderEvents';
|
|
1095
|
-
ContractAddress: string;
|
|
1096
|
-
EventHash: string;
|
|
1097
|
-
Active: boolean;
|
|
1098
|
-
StartingBlock: number;
|
|
1099
|
-
EndingBlock?: number | null;
|
|
1100
|
-
MaxBatchSize: number;
|
|
1101
|
-
ResponseType: string;
|
|
1102
|
-
MaxPageNumber?: number | null;
|
|
1103
|
-
UrlSet: string;
|
|
1104
|
-
Mapping?: Array<{
|
|
1105
|
-
__typename?: 'Mapping';
|
|
1106
|
-
Id: number;
|
|
1107
|
-
Path: string;
|
|
1108
|
-
Converter: string;
|
|
1109
|
-
Name: string;
|
|
1110
|
-
}> | null;
|
|
1111
|
-
}> | null;
|
|
1112
|
-
}>;
|
|
1113
|
-
};
|
|
1114
988
|
export type GenerateTokenFromSignatureMutationVariables = Exact<{
|
|
1115
989
|
eip4361message: Scalars['String']['input'];
|
|
1116
990
|
signature: Scalars['String']['input'];
|
|
@@ -1423,7 +1297,7 @@ export type SeasonPassQuery = {
|
|
|
1423
1297
|
Owner: string;
|
|
1424
1298
|
Amount: number;
|
|
1425
1299
|
ValidUntil: number;
|
|
1426
|
-
Note
|
|
1300
|
+
Note: string;
|
|
1427
1301
|
}>;
|
|
1428
1302
|
};
|
|
1429
1303
|
export type CreateSeasonPassMutationVariables = Exact<{
|
|
@@ -1439,7 +1313,7 @@ export type CreateSeasonPassMutation = {
|
|
|
1439
1313
|
Owner: string;
|
|
1440
1314
|
Amount: number;
|
|
1441
1315
|
ValidUntil: number;
|
|
1442
|
-
Note
|
|
1316
|
+
Note: string;
|
|
1443
1317
|
};
|
|
1444
1318
|
};
|
|
1445
1319
|
export type UpdateSeasonPassMutationVariables = Exact<{
|
|
@@ -1455,11 +1329,12 @@ export type UpdateSeasonPassMutation = {
|
|
|
1455
1329
|
Owner: string;
|
|
1456
1330
|
Amount: number;
|
|
1457
1331
|
ValidUntil: number;
|
|
1458
|
-
Note
|
|
1332
|
+
Note: string;
|
|
1459
1333
|
};
|
|
1460
1334
|
};
|
|
1461
1335
|
export type DeleteSeasonPassMutationVariables = Exact<{
|
|
1462
1336
|
owner: Scalars['String']['input'];
|
|
1337
|
+
note: Scalars['String']['input'];
|
|
1463
1338
|
}>;
|
|
1464
1339
|
export type DeleteSeasonPassMutation = {
|
|
1465
1340
|
__typename?: 'Mutation';
|
|
@@ -1468,7 +1343,7 @@ export type DeleteSeasonPassMutation = {
|
|
|
1468
1343
|
Owner: string;
|
|
1469
1344
|
Amount: number;
|
|
1470
1345
|
ValidUntil: number;
|
|
1471
|
-
Note
|
|
1346
|
+
Note: string;
|
|
1472
1347
|
};
|
|
1473
1348
|
};
|
|
1474
1349
|
export type SignupQueryVariables = Exact<{
|
|
@@ -1492,6 +1367,41 @@ export type MySignupQuery = {
|
|
|
1492
1367
|
SignupId: number;
|
|
1493
1368
|
}>;
|
|
1494
1369
|
};
|
|
1370
|
+
export type MySignUpV2QueryVariables = Exact<{
|
|
1371
|
+
projectIDs: Array<Scalars['Int']['input']> | Scalars['Int']['input'];
|
|
1372
|
+
}>;
|
|
1373
|
+
export type MySignUpV2Query = {
|
|
1374
|
+
__typename?: 'Query';
|
|
1375
|
+
mySignUpV2: Array<{
|
|
1376
|
+
__typename?: 'MySignUpV2';
|
|
1377
|
+
ProjectId: number;
|
|
1378
|
+
SignedUp: boolean;
|
|
1379
|
+
}>;
|
|
1380
|
+
};
|
|
1381
|
+
export type AdminSignUpV2QueryVariables = Exact<{
|
|
1382
|
+
projectId: Scalars['Int']['input'];
|
|
1383
|
+
minPoolxAmount: Scalars['Int']['input'];
|
|
1384
|
+
}>;
|
|
1385
|
+
export type AdminSignUpV2Query = {
|
|
1386
|
+
__typename?: 'Query';
|
|
1387
|
+
adminSignUpV2: Array<{
|
|
1388
|
+
__typename?: 'AdminSignUpV2';
|
|
1389
|
+
Address: string;
|
|
1390
|
+
Amount: number;
|
|
1391
|
+
}>;
|
|
1392
|
+
};
|
|
1393
|
+
export type ProjectSignUpV2MutationVariables = Exact<{
|
|
1394
|
+
projectId: Scalars['Int']['input'];
|
|
1395
|
+
}>;
|
|
1396
|
+
export type ProjectSignUpV2Mutation = {
|
|
1397
|
+
__typename?: 'Mutation';
|
|
1398
|
+
projectSignUpV2: {
|
|
1399
|
+
__typename?: 'ProjectSignUpV2';
|
|
1400
|
+
ProjectId: number;
|
|
1401
|
+
UserAddress: string;
|
|
1402
|
+
JoinedTime: number;
|
|
1403
|
+
};
|
|
1404
|
+
};
|
|
1495
1405
|
export type SimpleUrlShortenerQueryVariables = Exact<{
|
|
1496
1406
|
input: TxHashChainIdInput;
|
|
1497
1407
|
}>;
|
|
@@ -1607,9 +1517,6 @@ export declare const DaoSenderHistoryDocument: DocumentNode<DaoSenderHistoryQuer
|
|
|
1607
1517
|
export declare const MyQueryDocument: DocumentNode<MyQueryQuery, Exact<{
|
|
1608
1518
|
[key: string]: never;
|
|
1609
1519
|
}>>;
|
|
1610
|
-
export declare const DownloaderDocument: DocumentNode<DownloaderQuery, Exact<{
|
|
1611
|
-
[key: string]: never;
|
|
1612
|
-
}>>;
|
|
1613
1520
|
export declare const GenerateTokenFromSignatureDocument: DocumentNode<GenerateTokenFromSignatureMutation, Exact<{
|
|
1614
1521
|
eip4361message: Scalars['String']['input'];
|
|
1615
1522
|
signature: Scalars['String']['input'];
|
|
@@ -1703,6 +1610,7 @@ export declare const UpdateSeasonPassDocument: DocumentNode<UpdateSeasonPassMuta
|
|
|
1703
1610
|
}>>;
|
|
1704
1611
|
export declare const DeleteSeasonPassDocument: DocumentNode<DeleteSeasonPassMutation, Exact<{
|
|
1705
1612
|
owner: Scalars['String']['input'];
|
|
1613
|
+
note: Scalars['String']['input'];
|
|
1706
1614
|
}>>;
|
|
1707
1615
|
export declare const SignupDocument: DocumentNode<SignupQuery, Exact<{
|
|
1708
1616
|
signUpId: Scalars['Int']['input'];
|
|
@@ -1710,6 +1618,16 @@ export declare const SignupDocument: DocumentNode<SignupQuery, Exact<{
|
|
|
1710
1618
|
export declare const MySignupDocument: DocumentNode<MySignupQuery, Exact<{
|
|
1711
1619
|
[key: string]: never;
|
|
1712
1620
|
}>>;
|
|
1621
|
+
export declare const MySignUpV2Document: DocumentNode<MySignUpV2Query, Exact<{
|
|
1622
|
+
projectIDs: Array<Scalars['Int']['input']> | Scalars['Int']['input'];
|
|
1623
|
+
}>>;
|
|
1624
|
+
export declare const AdminSignUpV2Document: DocumentNode<AdminSignUpV2Query, Exact<{
|
|
1625
|
+
projectId: Scalars['Int']['input'];
|
|
1626
|
+
minPoolxAmount: Scalars['Int']['input'];
|
|
1627
|
+
}>>;
|
|
1628
|
+
export declare const ProjectSignUpV2Document: DocumentNode<ProjectSignUpV2Mutation, Exact<{
|
|
1629
|
+
projectId: Scalars['Int']['input'];
|
|
1630
|
+
}>>;
|
|
1713
1631
|
export declare const SimpleUrlShortenerDocument: DocumentNode<SimpleUrlShortenerQuery, Exact<{
|
|
1714
1632
|
input: TxHashChainIdInput;
|
|
1715
1633
|
}>>;
|