@evergonlabs/tmi-protocol-api-client 0.22.0-rc.3 → 0.22.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/index.d.cts CHANGED
@@ -2,16 +2,16 @@ import * as _hey_api_client_fetch from '@hey-api/client-fetch';
2
2
  import { TDataShape, Options as Options$1, Client, Config } from '@hey-api/client-fetch';
3
3
  import { IApiEnv, IApiEnvName, getApiEnv } from '@evergonlabs/tmi-protocol-shared/envs';
4
4
 
5
- type GetStakingPlatformsGetV0Data = {
5
+ type GetStakingPlatformsGetData = {
6
6
  body?: never;
7
7
  path?: never;
8
8
  query: {
9
9
  chainId: '11155111' | '84532' | '31337';
10
10
  address: string;
11
11
  };
12
- url: '/staking/platforms/get/v0';
12
+ url: '/staking/platforms/get';
13
13
  };
14
- type GetStakingPlatformsGetV0Errors = {
14
+ type GetStakingPlatformsGetErrors = {
15
15
  /**
16
16
  * No platform found
17
17
  */
@@ -21,8 +21,8 @@ type GetStakingPlatformsGetV0Errors = {
21
21
  name: string;
22
22
  };
23
23
  };
24
- type GetStakingPlatformsGetV0Error = GetStakingPlatformsGetV0Errors[keyof GetStakingPlatformsGetV0Errors];
25
- type GetStakingPlatformsGetV0Responses = {
24
+ type GetStakingPlatformsGetError = GetStakingPlatformsGetErrors[keyof GetStakingPlatformsGetErrors];
25
+ type GetStakingPlatformsGetResponses = {
26
26
  /**
27
27
  * Platform details
28
28
  */
@@ -35,23 +35,19 @@ type GetStakingPlatformsGetV0Responses = {
35
35
  updatedAt: string;
36
36
  };
37
37
  };
38
- type GetStakingPlatformsGetV0Response = GetStakingPlatformsGetV0Responses[keyof GetStakingPlatformsGetV0Responses];
39
- type PostStakingPlatformsSearchV0Data = {
40
- body?: {
41
- page: {
42
- skip: number;
43
- limit: number;
44
- };
45
- filter: {
46
- chainId?: '11155111' | '84532' | '31337';
47
- owner?: string;
48
- };
49
- };
38
+ type GetStakingPlatformsGetResponse = GetStakingPlatformsGetResponses[keyof GetStakingPlatformsGetResponses];
39
+ type GetStakingPlatformsSearchData = {
40
+ body?: never;
50
41
  path?: never;
51
- query?: never;
52
- url: '/staking/platforms/search/v0';
42
+ query: {
43
+ skip: number;
44
+ limit: number;
45
+ chainId?: '11155111' | '84532' | '31337';
46
+ owner?: string;
47
+ };
48
+ url: '/staking/platforms/search';
53
49
  };
54
- type PostStakingPlatformsSearchV0Responses = {
50
+ type GetStakingPlatformsSearchResponses = {
55
51
  /**
56
52
  * Returns list of platforms by specified filter
57
53
  */
@@ -64,23 +60,19 @@ type PostStakingPlatformsSearchV0Responses = {
64
60
  updatedAt: string;
65
61
  }>;
66
62
  };
67
- type PostStakingPlatformsSearchV0Response = PostStakingPlatformsSearchV0Responses[keyof PostStakingPlatformsSearchV0Responses];
68
- type PostStakingPoolsSearchPoolsV0Data = {
69
- body?: {
70
- page: {
71
- skip: number;
72
- limit: number;
73
- };
74
- filter: {
75
- chainId?: '11155111' | '84532' | '31337';
76
- platform?: string;
77
- };
78
- };
63
+ type GetStakingPlatformsSearchResponse = GetStakingPlatformsSearchResponses[keyof GetStakingPlatformsSearchResponses];
64
+ type GetStakingPoolsSearchPoolsData = {
65
+ body?: never;
79
66
  path?: never;
80
- query?: never;
81
- url: '/staking/pools/searchPools/v0';
67
+ query: {
68
+ skip: number;
69
+ limit: number;
70
+ chainId?: '11155111' | '84532' | '31337';
71
+ platform?: string;
72
+ };
73
+ url: '/staking/pools/searchPools';
82
74
  };
83
- type PostStakingPoolsSearchPoolsV0Responses = {
75
+ type GetStakingPoolsSearchPoolsResponses = {
84
76
  /**
85
77
  * Returns list of pools by specified filter
86
78
  */
@@ -94,8 +86,8 @@ type PostStakingPoolsSearchPoolsV0Responses = {
94
86
  createdAt: string;
95
87
  }>;
96
88
  };
97
- type PostStakingPoolsSearchPoolsV0Response = PostStakingPoolsSearchPoolsV0Responses[keyof PostStakingPoolsSearchPoolsV0Responses];
98
- type GetStakingPoolsGetPoolV0Data = {
89
+ type GetStakingPoolsSearchPoolsResponse = GetStakingPoolsSearchPoolsResponses[keyof GetStakingPoolsSearchPoolsResponses];
90
+ type GetStakingPoolsGetPoolData = {
99
91
  body?: never;
100
92
  path?: never;
101
93
  query: {
@@ -103,9 +95,9 @@ type GetStakingPoolsGetPoolV0Data = {
103
95
  poolId: string;
104
96
  platform: string;
105
97
  };
106
- url: '/staking/pools/getPool/v0';
98
+ url: '/staking/pools/getPool';
107
99
  };
108
- type GetStakingPoolsGetPoolV0Errors = {
100
+ type GetStakingPoolsGetPoolErrors = {
109
101
  /**
110
102
  * No pool found
111
103
  */
@@ -115,8 +107,8 @@ type GetStakingPoolsGetPoolV0Errors = {
115
107
  name: string;
116
108
  };
117
109
  };
118
- type GetStakingPoolsGetPoolV0Error = GetStakingPoolsGetPoolV0Errors[keyof GetStakingPoolsGetPoolV0Errors];
119
- type GetStakingPoolsGetPoolV0Responses = {
110
+ type GetStakingPoolsGetPoolError = GetStakingPoolsGetPoolErrors[keyof GetStakingPoolsGetPoolErrors];
111
+ type GetStakingPoolsGetPoolResponses = {
120
112
  /**
121
113
  * List platforms
122
114
  */
@@ -130,25 +122,21 @@ type GetStakingPoolsGetPoolV0Responses = {
130
122
  createdAt: string;
131
123
  };
132
124
  };
133
- type GetStakingPoolsGetPoolV0Response = GetStakingPoolsGetPoolV0Responses[keyof GetStakingPoolsGetPoolV0Responses];
134
- type PostStakingStakesSearchStakesV0Data = {
135
- body?: {
136
- page: {
137
- skip: number;
138
- limit: number;
139
- };
140
- filter: {
141
- chainId?: '11155111' | '84532' | '31337';
142
- owner?: string;
143
- platform?: string;
144
- poolId?: string;
145
- };
146
- };
125
+ type GetStakingPoolsGetPoolResponse = GetStakingPoolsGetPoolResponses[keyof GetStakingPoolsGetPoolResponses];
126
+ type GetStakingStakesSearchStakesData = {
127
+ body?: never;
147
128
  path?: never;
148
- query?: never;
149
- url: '/staking/stakes/searchStakes/v0';
129
+ query: {
130
+ skip: number;
131
+ limit: number;
132
+ chainId?: '11155111' | '84532' | '31337';
133
+ owner?: string;
134
+ platform?: string;
135
+ poolId?: string;
136
+ };
137
+ url: '/staking/stakes/searchStakes';
150
138
  };
151
- type PostStakingStakesSearchStakesV0Responses = {
139
+ type GetStakingStakesSearchStakesResponses = {
152
140
  /**
153
141
  * Returns list of stakes within specified platforms and pools
154
142
  */
@@ -167,25 +155,21 @@ type PostStakingStakesSearchStakesV0Responses = {
167
155
  updatedAt: string;
168
156
  }>;
169
157
  };
170
- type PostStakingStakesSearchStakesV0Response = PostStakingStakesSearchStakesV0Responses[keyof PostStakingStakesSearchStakesV0Responses];
171
- type PostStakingStakesSearchStakeEventsV0Data = {
172
- body?: {
173
- page: {
174
- skip: number;
175
- limit: number;
176
- };
177
- filter: {
178
- chainId?: '11155111' | '84532' | '31337';
179
- owner?: string;
180
- platform?: string;
181
- poolId?: string;
182
- };
183
- };
158
+ type GetStakingStakesSearchStakesResponse = GetStakingStakesSearchStakesResponses[keyof GetStakingStakesSearchStakesResponses];
159
+ type GetStakingStakesSearchStakeEventsData = {
160
+ body?: never;
184
161
  path?: never;
185
- query?: never;
186
- url: '/staking/stakes/searchStakeEvents/v0';
162
+ query: {
163
+ skip: number;
164
+ limit: number;
165
+ chainId?: '11155111' | '84532' | '31337';
166
+ owner?: string;
167
+ platform?: string;
168
+ poolId?: string;
169
+ };
170
+ url: '/staking/stakes/searchStakeEvents';
187
171
  };
188
- type PostStakingStakesSearchStakeEventsV0Responses = {
172
+ type GetStakingStakesSearchStakeEventsResponses = {
189
173
  /**
190
174
  * Returns list of stakes events within specified platforms and pools
191
175
  */
@@ -200,8 +184,8 @@ type PostStakingStakesSearchStakeEventsV0Responses = {
200
184
  txHash: string;
201
185
  }>;
202
186
  };
203
- type PostStakingStakesSearchStakeEventsV0Response = PostStakingStakesSearchStakeEventsV0Responses[keyof PostStakingStakesSearchStakeEventsV0Responses];
204
- type GetStakingStakesGetStakeV0Data = {
187
+ type GetStakingStakesSearchStakeEventsResponse = GetStakingStakesSearchStakeEventsResponses[keyof GetStakingStakesSearchStakeEventsResponses];
188
+ type GetStakingStakesGetStakeData = {
205
189
  body?: never;
206
190
  path?: never;
207
191
  query: {
@@ -209,9 +193,9 @@ type GetStakingStakesGetStakeV0Data = {
209
193
  platform: string;
210
194
  stakeId: string;
211
195
  };
212
- url: '/staking/stakes/getStake/v0';
196
+ url: '/staking/stakes/getStake';
213
197
  };
214
- type GetStakingStakesGetStakeV0Errors = {
198
+ type GetStakingStakesGetStakeErrors = {
215
199
  /**
216
200
  * No stake found
217
201
  */
@@ -221,8 +205,8 @@ type GetStakingStakesGetStakeV0Errors = {
221
205
  name: string;
222
206
  };
223
207
  };
224
- type GetStakingStakesGetStakeV0Error = GetStakingStakesGetStakeV0Errors[keyof GetStakingStakesGetStakeV0Errors];
225
- type GetStakingStakesGetStakeV0Responses = {
208
+ type GetStakingStakesGetStakeError = GetStakingStakesGetStakeErrors[keyof GetStakingStakesGetStakeErrors];
209
+ type GetStakingStakesGetStakeResponses = {
226
210
  /**
227
211
  * Stake details
228
212
  */
@@ -241,14 +225,14 @@ type GetStakingStakesGetStakeV0Responses = {
241
225
  updatedAt: string;
242
226
  };
243
227
  };
244
- type GetStakingStakesGetStakeV0Response = GetStakingStakesGetStakeV0Responses[keyof GetStakingStakesGetStakeV0Responses];
245
- type GetStakingRolesGetRolesV0Data = {
228
+ type GetStakingStakesGetStakeResponse = GetStakingStakesGetStakeResponses[keyof GetStakingStakesGetStakeResponses];
229
+ type GetStakingRolesGetRolesData = {
246
230
  body?: never;
247
231
  path?: never;
248
232
  query?: never;
249
- url: '/staking/roles/getRoles/v0';
233
+ url: '/staking/roles/getRoles';
250
234
  };
251
- type GetStakingRolesGetRolesV0Responses = {
235
+ type GetStakingRolesGetRolesResponses = {
252
236
  /**
253
237
  * List of available roles
254
238
  */
@@ -257,8 +241,8 @@ type GetStakingRolesGetRolesV0Responses = {
257
241
  value: string;
258
242
  }>;
259
243
  };
260
- type GetStakingRolesGetRolesV0Response = GetStakingRolesGetRolesV0Responses[keyof GetStakingRolesGetRolesV0Responses];
261
- type PostStakingRolesGrantRoleV0Data = {
244
+ type GetStakingRolesGetRolesResponse = GetStakingRolesGetRolesResponses[keyof GetStakingRolesGetRolesResponses];
245
+ type PostStakingRolesGrantRoleData = {
262
246
  body?: {
263
247
  platform: string;
264
248
  addresses: Array<string>;
@@ -266,9 +250,9 @@ type PostStakingRolesGrantRoleV0Data = {
266
250
  };
267
251
  path?: never;
268
252
  query?: never;
269
- url: '/staking/roles/grantRole/v0';
253
+ url: '/staking/roles/grantRole';
270
254
  };
271
- type PostStakingRolesGrantRoleV0Responses = {
255
+ type PostStakingRolesGrantRoleResponses = {
272
256
  /**
273
257
  * Returns estimated gas or estimation error
274
258
  */
@@ -283,25 +267,21 @@ type PostStakingRolesGrantRoleV0Responses = {
283
267
  };
284
268
  };
285
269
  };
286
- type PostStakingRolesGrantRoleV0Response = PostStakingRolesGrantRoleV0Responses[keyof PostStakingRolesGrantRoleV0Responses];
287
- type PostStakingRolesSearchRolesV0Data = {
288
- body?: {
289
- page: {
290
- skip: number;
291
- limit: number;
292
- };
293
- filter: {
294
- chainId?: '11155111' | '84532' | '31337';
295
- owner?: string;
296
- platform?: string;
297
- poolId?: string;
298
- };
299
- };
270
+ type PostStakingRolesGrantRoleResponse = PostStakingRolesGrantRoleResponses[keyof PostStakingRolesGrantRoleResponses];
271
+ type GetStakingRolesSearchRolesData = {
272
+ body?: never;
300
273
  path?: never;
301
- query?: never;
302
- url: '/staking/roles/searchRoles/v0';
274
+ query: {
275
+ skip: number;
276
+ limit: number;
277
+ chainId?: '11155111' | '84532' | '31337';
278
+ owner?: string;
279
+ platform?: string;
280
+ poolId?: string;
281
+ };
282
+ url: '/staking/roles/searchRoles';
303
283
  };
304
- type PostStakingRolesSearchRolesV0Responses = {
284
+ type GetStakingRolesSearchRolesResponses = {
305
285
  /**
306
286
  * Returns list of assignments within specified platforms and pools
307
287
  */
@@ -315,49 +295,46 @@ type PostStakingRolesSearchRolesV0Responses = {
315
295
  updatedAt: string;
316
296
  }>;
317
297
  };
318
- type PostStakingRolesSearchRolesV0Response = PostStakingRolesSearchRolesV0Responses[keyof PostStakingRolesSearchRolesV0Responses];
319
- type PostStakingRolesSearchRoleEventsV0Data = {
320
- body?: {
321
- page: {
322
- skip: number;
323
- limit: number;
324
- };
325
- filter: {
326
- chainId?: '11155111' | '84532' | '31337';
327
- owner?: string;
328
- platform?: string;
329
- poolId?: string;
330
- };
331
- };
298
+ type GetStakingRolesSearchRolesResponse = GetStakingRolesSearchRolesResponses[keyof GetStakingRolesSearchRolesResponses];
299
+ type GetStakingRolesSearchRoleEventsData = {
300
+ body?: never;
332
301
  path?: never;
333
- query?: never;
334
- url: '/staking/roles/searchRoleEvents/v0';
302
+ query: {
303
+ skip: number;
304
+ limit: number;
305
+ chainId?: '11155111' | '84532' | '31337';
306
+ owner?: string;
307
+ platform?: string;
308
+ poolId?: string;
309
+ };
310
+ url: '/staking/roles/searchRoleEvents';
335
311
  };
336
- type PostStakingRolesSearchRoleEventsV0Responses = {
312
+ type GetStakingRolesSearchRoleEventsResponses = {
337
313
  /**
338
314
  * Returns list of role events by some filter
339
315
  */
340
316
  200: Array<{
317
+ id: string;
318
+ roleId: string;
341
319
  chainId: '11155111' | '84532' | '31337';
342
320
  platform: string;
343
- roleId: string;
344
- poolId?: string;
321
+ txHash: string;
345
322
  owner: string;
346
- createdAt: string;
347
- updatedAt: string;
323
+ poolId?: string;
324
+ isRevoked: boolean;
348
325
  }>;
349
326
  };
350
- type PostStakingRolesSearchRoleEventsV0Response = PostStakingRolesSearchRoleEventsV0Responses[keyof PostStakingRolesSearchRoleEventsV0Responses];
351
- type GetStakingTemplatesReputationV0GetPlatformDeployEventData = {
327
+ type GetStakingRolesSearchRoleEventsResponse = GetStakingRolesSearchRoleEventsResponses[keyof GetStakingRolesSearchRoleEventsResponses];
328
+ type GetStakingTemplatesReputationGetPlatformDeployEventData = {
352
329
  body?: never;
353
330
  path?: never;
354
331
  query: {
355
332
  chainId: '1' | '11155111' | '84532' | '72080' | '31337';
356
333
  hash: string;
357
334
  };
358
- url: '/stakingTemplates/reputation/v0/getPlatformDeployEvent';
335
+ url: '/stakingTemplates/reputation/getPlatformDeployEvent';
359
336
  };
360
- type GetStakingTemplatesReputationV0GetPlatformDeployEventResponses = {
337
+ type GetStakingTemplatesReputationGetPlatformDeployEventResponses = {
361
338
  /**
362
339
  * Returns estimated gas or estimation error
363
340
  */
@@ -366,17 +343,17 @@ type GetStakingTemplatesReputationV0GetPlatformDeployEventResponses = {
366
343
  admin: string;
367
344
  };
368
345
  };
369
- type GetStakingTemplatesReputationV0GetPlatformDeployEventResponse = GetStakingTemplatesReputationV0GetPlatformDeployEventResponses[keyof GetStakingTemplatesReputationV0GetPlatformDeployEventResponses];
370
- type GetStakingTemplatesReputationV0GetStakeEventData = {
346
+ type GetStakingTemplatesReputationGetPlatformDeployEventResponse = GetStakingTemplatesReputationGetPlatformDeployEventResponses[keyof GetStakingTemplatesReputationGetPlatformDeployEventResponses];
347
+ type GetStakingTemplatesReputationGetStakeEventData = {
371
348
  body?: never;
372
349
  path?: never;
373
350
  query: {
374
351
  chainId: '1' | '11155111' | '84532' | '72080' | '31337';
375
352
  hash: string;
376
353
  };
377
- url: '/stakingTemplates/reputation/v0/getStakeEvent';
354
+ url: '/stakingTemplates/reputation/getStakeEvent';
378
355
  };
379
- type GetStakingTemplatesReputationV0GetStakeEventResponses = {
356
+ type GetStakingTemplatesReputationGetStakeEventResponses = {
380
357
  /**
381
358
  * Details of the created stake position
382
359
  */
@@ -385,19 +362,22 @@ type GetStakingTemplatesReputationV0GetStakeEventResponses = {
385
362
  stakeId: string;
386
363
  operator: string;
387
364
  owner: string;
365
+ inputPacketsStaked: string;
366
+ stakeStartActiveTimestamp: string;
367
+ unlockTimestamp: string;
388
368
  };
389
369
  };
390
- type GetStakingTemplatesReputationV0GetStakeEventResponse = GetStakingTemplatesReputationV0GetStakeEventResponses[keyof GetStakingTemplatesReputationV0GetStakeEventResponses];
391
- type GetStakingTemplatesReputationV0GetCreatePoolEventData = {
370
+ type GetStakingTemplatesReputationGetStakeEventResponse = GetStakingTemplatesReputationGetStakeEventResponses[keyof GetStakingTemplatesReputationGetStakeEventResponses];
371
+ type GetStakingTemplatesReputationGetCreatePoolEventData = {
392
372
  body?: never;
393
373
  path?: never;
394
374
  query: {
395
375
  chainId: '1' | '11155111' | '84532' | '72080' | '31337';
396
376
  hash: string;
397
377
  };
398
- url: '/stakingTemplates/reputation/v0/getCreatePoolEvent';
378
+ url: '/stakingTemplates/reputation/getCreatePoolEvent';
399
379
  };
400
- type GetStakingTemplatesReputationV0GetCreatePoolEventResponses = {
380
+ type GetStakingTemplatesReputationGetCreatePoolEventResponses = {
401
381
  /**
402
382
  * Details of the created pool
403
383
  */
@@ -407,17 +387,17 @@ type GetStakingTemplatesReputationV0GetCreatePoolEventResponses = {
407
387
  inputAssetKeeper: string;
408
388
  };
409
389
  };
410
- type GetStakingTemplatesReputationV0GetCreatePoolEventResponse = GetStakingTemplatesReputationV0GetCreatePoolEventResponses[keyof GetStakingTemplatesReputationV0GetCreatePoolEventResponses];
411
- type PostStakingTemplatesReputationV0GetRewardData = {
390
+ type GetStakingTemplatesReputationGetCreatePoolEventResponse = GetStakingTemplatesReputationGetCreatePoolEventResponses[keyof GetStakingTemplatesReputationGetCreatePoolEventResponses];
391
+ type PostStakingTemplatesReputationGetRewardData = {
412
392
  body?: {
413
393
  platform: string;
414
394
  stakeId: string;
415
395
  };
416
396
  path?: never;
417
397
  query?: never;
418
- url: '/stakingTemplates/reputation/v0/getReward';
398
+ url: '/stakingTemplates/reputation/getReward';
419
399
  };
420
- type PostStakingTemplatesReputationV0GetRewardResponses = {
400
+ type PostStakingTemplatesReputationGetRewardResponses = {
421
401
  /**
422
402
  * Compiled get rewards transaction details
423
403
  */
@@ -432,8 +412,8 @@ type PostStakingTemplatesReputationV0GetRewardResponses = {
432
412
  };
433
413
  };
434
414
  };
435
- type PostStakingTemplatesReputationV0GetRewardResponse = PostStakingTemplatesReputationV0GetRewardResponses[keyof PostStakingTemplatesReputationV0GetRewardResponses];
436
- type PostStakingTemplatesReputationV0PartialUnstakeData = {
415
+ type PostStakingTemplatesReputationGetRewardResponse = PostStakingTemplatesReputationGetRewardResponses[keyof PostStakingTemplatesReputationGetRewardResponses];
416
+ type PostStakingTemplatesReputationPartialUnstakeData = {
437
417
  body?: {
438
418
  platform: string;
439
419
  stakeId: string;
@@ -441,9 +421,9 @@ type PostStakingTemplatesReputationV0PartialUnstakeData = {
441
421
  };
442
422
  path?: never;
443
423
  query?: never;
444
- url: '/stakingTemplates/reputation/v0/partialUnstake';
424
+ url: '/stakingTemplates/reputation/partialUnstake';
445
425
  };
446
- type PostStakingTemplatesReputationV0PartialUnstakeResponses = {
426
+ type PostStakingTemplatesReputationPartialUnstakeResponses = {
447
427
  /**
448
428
  * Compiled partial unstake transaction details
449
429
  */
@@ -458,8 +438,8 @@ type PostStakingTemplatesReputationV0PartialUnstakeResponses = {
458
438
  };
459
439
  };
460
440
  };
461
- type PostStakingTemplatesReputationV0PartialUnstakeResponse = PostStakingTemplatesReputationV0PartialUnstakeResponses[keyof PostStakingTemplatesReputationV0PartialUnstakeResponses];
462
- type PostStakingTemplatesReputationV0RestakeData = {
441
+ type PostStakingTemplatesReputationPartialUnstakeResponse = PostStakingTemplatesReputationPartialUnstakeResponses[keyof PostStakingTemplatesReputationPartialUnstakeResponses];
442
+ type PostStakingTemplatesReputationRestakeData = {
463
443
  body?: {
464
444
  platform: string;
465
445
  poolId: string;
@@ -467,9 +447,9 @@ type PostStakingTemplatesReputationV0RestakeData = {
467
447
  };
468
448
  path?: never;
469
449
  query?: never;
470
- url: '/stakingTemplates/reputation/v0/restake';
450
+ url: '/stakingTemplates/reputation/restake';
471
451
  };
472
- type PostStakingTemplatesReputationV0RestakeResponses = {
452
+ type PostStakingTemplatesReputationRestakeResponses = {
473
453
  /**
474
454
  * Get the Stake transaction details
475
455
  */
@@ -484,8 +464,8 @@ type PostStakingTemplatesReputationV0RestakeResponses = {
484
464
  };
485
465
  };
486
466
  };
487
- type PostStakingTemplatesReputationV0RestakeResponse = PostStakingTemplatesReputationV0RestakeResponses[keyof PostStakingTemplatesReputationV0RestakeResponses];
488
- type PostStakingTemplatesReputationV0StakeData = {
467
+ type PostStakingTemplatesReputationRestakeResponse = PostStakingTemplatesReputationRestakeResponses[keyof PostStakingTemplatesReputationRestakeResponses];
468
+ type PostStakingTemplatesReputationStakeData = {
489
469
  body?: {
490
470
  platform: string;
491
471
  poolId: string;
@@ -493,9 +473,9 @@ type PostStakingTemplatesReputationV0StakeData = {
493
473
  };
494
474
  path?: never;
495
475
  query?: never;
496
- url: '/stakingTemplates/reputation/v0/stake';
476
+ url: '/stakingTemplates/reputation/stake';
497
477
  };
498
- type PostStakingTemplatesReputationV0StakeResponses = {
478
+ type PostStakingTemplatesReputationStakeResponses = {
499
479
  /**
500
480
  * Get the Stake transaction details
501
481
  */
@@ -510,17 +490,17 @@ type PostStakingTemplatesReputationV0StakeResponses = {
510
490
  };
511
491
  };
512
492
  };
513
- type PostStakingTemplatesReputationV0StakeResponse = PostStakingTemplatesReputationV0StakeResponses[keyof PostStakingTemplatesReputationV0StakeResponses];
514
- type PostStakingTemplatesReputationV0UnstakeData = {
493
+ type PostStakingTemplatesReputationStakeResponse = PostStakingTemplatesReputationStakeResponses[keyof PostStakingTemplatesReputationStakeResponses];
494
+ type PostStakingTemplatesReputationUnstakeData = {
515
495
  body?: {
516
496
  platform: string;
517
497
  stakeId: string;
518
498
  };
519
499
  path?: never;
520
500
  query?: never;
521
- url: '/stakingTemplates/reputation/v0/unstake';
501
+ url: '/stakingTemplates/reputation/unstake';
522
502
  };
523
- type PostStakingTemplatesReputationV0UnstakeResponses = {
503
+ type PostStakingTemplatesReputationUnstakeResponses = {
524
504
  /**
525
505
  * Compiled Unstake transaction details
526
506
  */
@@ -535,8 +515,8 @@ type PostStakingTemplatesReputationV0UnstakeResponses = {
535
515
  };
536
516
  };
537
517
  };
538
- type PostStakingTemplatesReputationV0UnstakeResponse = PostStakingTemplatesReputationV0UnstakeResponses[keyof PostStakingTemplatesReputationV0UnstakeResponses];
539
- type PostStakingTemplatesReputationV0CreatePoolData = {
518
+ type PostStakingTemplatesReputationUnstakeResponse = PostStakingTemplatesReputationUnstakeResponses[keyof PostStakingTemplatesReputationUnstakeResponses];
519
+ type PostStakingTemplatesReputationCreatePoolData = {
540
520
  body?: {
541
521
  platform: string;
542
522
  startDate: string;
@@ -560,9 +540,9 @@ type PostStakingTemplatesReputationV0CreatePoolData = {
560
540
  };
561
541
  path?: never;
562
542
  query?: never;
563
- url: '/stakingTemplates/reputation/v0/createPool';
543
+ url: '/stakingTemplates/reputation/createPool';
564
544
  };
565
- type PostStakingTemplatesReputationV0CreatePoolResponses = {
545
+ type PostStakingTemplatesReputationCreatePoolResponses = {
566
546
  /**
567
547
  * Compiled create pool transaction details
568
548
  */
@@ -577,8 +557,8 @@ type PostStakingTemplatesReputationV0CreatePoolResponses = {
577
557
  };
578
558
  };
579
559
  };
580
- type PostStakingTemplatesReputationV0CreatePoolResponse = PostStakingTemplatesReputationV0CreatePoolResponses[keyof PostStakingTemplatesReputationV0CreatePoolResponses];
581
- type PostStakingTemplatesReputationV0CreatePlatformData = {
560
+ type PostStakingTemplatesReputationCreatePoolResponse = PostStakingTemplatesReputationCreatePoolResponses[keyof PostStakingTemplatesReputationCreatePoolResponses];
561
+ type PostStakingTemplatesReputationCreatePlatformData = {
582
562
  body?: {
583
563
  chainId: '11155111' | '84532' | '31337';
584
564
  erc721: {
@@ -591,9 +571,9 @@ type PostStakingTemplatesReputationV0CreatePlatformData = {
591
571
  };
592
572
  path?: never;
593
573
  query?: never;
594
- url: '/stakingTemplates/reputation/v0/createPlatform';
574
+ url: '/stakingTemplates/reputation/createPlatform';
595
575
  };
596
- type PostStakingTemplatesReputationV0CreatePlatformResponses = {
576
+ type PostStakingTemplatesReputationCreatePlatformResponses = {
597
577
  /**
598
578
  * Compiled create platform transaction details
599
579
  */
@@ -608,17 +588,17 @@ type PostStakingTemplatesReputationV0CreatePlatformResponses = {
608
588
  };
609
589
  };
610
590
  };
611
- type PostStakingTemplatesReputationV0CreatePlatformResponse = PostStakingTemplatesReputationV0CreatePlatformResponses[keyof PostStakingTemplatesReputationV0CreatePlatformResponses];
612
- type GetStakingTemplatesReputationLockV0GetPlatformDeployEventData = {
591
+ type PostStakingTemplatesReputationCreatePlatformResponse = PostStakingTemplatesReputationCreatePlatformResponses[keyof PostStakingTemplatesReputationCreatePlatformResponses];
592
+ type GetStakingTemplatesReputationLockGetPlatformDeployEventData = {
613
593
  body?: never;
614
594
  path?: never;
615
595
  query: {
616
596
  chainId: '1' | '11155111' | '84532' | '72080' | '31337';
617
597
  hash: string;
618
598
  };
619
- url: '/stakingTemplates/reputationLock/v0/getPlatformDeployEvent';
599
+ url: '/stakingTemplates/reputationLock/getPlatformDeployEvent';
620
600
  };
621
- type GetStakingTemplatesReputationLockV0GetPlatformDeployEventResponses = {
601
+ type GetStakingTemplatesReputationLockGetPlatformDeployEventResponses = {
622
602
  /**
623
603
  * Returns estimated gas or estimation error
624
604
  */
@@ -627,17 +607,17 @@ type GetStakingTemplatesReputationLockV0GetPlatformDeployEventResponses = {
627
607
  admin: string;
628
608
  };
629
609
  };
630
- type GetStakingTemplatesReputationLockV0GetPlatformDeployEventResponse = GetStakingTemplatesReputationLockV0GetPlatformDeployEventResponses[keyof GetStakingTemplatesReputationLockV0GetPlatformDeployEventResponses];
631
- type GetStakingTemplatesReputationLockV0GetStakeEventData = {
610
+ type GetStakingTemplatesReputationLockGetPlatformDeployEventResponse = GetStakingTemplatesReputationLockGetPlatformDeployEventResponses[keyof GetStakingTemplatesReputationLockGetPlatformDeployEventResponses];
611
+ type GetStakingTemplatesReputationLockGetStakeEventData = {
632
612
  body?: never;
633
613
  path?: never;
634
614
  query: {
635
615
  chainId: '1' | '11155111' | '84532' | '72080' | '31337';
636
616
  hash: string;
637
617
  };
638
- url: '/stakingTemplates/reputationLock/v0/getStakeEvent';
618
+ url: '/stakingTemplates/reputationLock/getStakeEvent';
639
619
  };
640
- type GetStakingTemplatesReputationLockV0GetStakeEventResponses = {
620
+ type GetStakingTemplatesReputationLockGetStakeEventResponses = {
641
621
  /**
642
622
  * Details of the created stake position
643
623
  */
@@ -646,19 +626,22 @@ type GetStakingTemplatesReputationLockV0GetStakeEventResponses = {
646
626
  stakeId: string;
647
627
  operator: string;
648
628
  owner: string;
629
+ inputPacketsStaked: string;
630
+ stakeStartActiveTimestamp: string;
631
+ unlockTimestamp: string;
649
632
  };
650
633
  };
651
- type GetStakingTemplatesReputationLockV0GetStakeEventResponse = GetStakingTemplatesReputationLockV0GetStakeEventResponses[keyof GetStakingTemplatesReputationLockV0GetStakeEventResponses];
652
- type GetStakingTemplatesReputationLockV0GetCreatePoolEventData = {
634
+ type GetStakingTemplatesReputationLockGetStakeEventResponse = GetStakingTemplatesReputationLockGetStakeEventResponses[keyof GetStakingTemplatesReputationLockGetStakeEventResponses];
635
+ type GetStakingTemplatesReputationLockGetCreatePoolEventData = {
653
636
  body?: never;
654
637
  path?: never;
655
638
  query: {
656
639
  chainId: '1' | '11155111' | '84532' | '72080' | '31337';
657
640
  hash: string;
658
641
  };
659
- url: '/stakingTemplates/reputationLock/v0/getCreatePoolEvent';
642
+ url: '/stakingTemplates/reputationLock/getCreatePoolEvent';
660
643
  };
661
- type GetStakingTemplatesReputationLockV0GetCreatePoolEventResponses = {
644
+ type GetStakingTemplatesReputationLockGetCreatePoolEventResponses = {
662
645
  /**
663
646
  * Details of the created pool
664
647
  */
@@ -668,17 +651,17 @@ type GetStakingTemplatesReputationLockV0GetCreatePoolEventResponses = {
668
651
  inputAssetKeeper: string;
669
652
  };
670
653
  };
671
- type GetStakingTemplatesReputationLockV0GetCreatePoolEventResponse = GetStakingTemplatesReputationLockV0GetCreatePoolEventResponses[keyof GetStakingTemplatesReputationLockV0GetCreatePoolEventResponses];
672
- type PostStakingTemplatesReputationLockV0GetRewardData = {
654
+ type GetStakingTemplatesReputationLockGetCreatePoolEventResponse = GetStakingTemplatesReputationLockGetCreatePoolEventResponses[keyof GetStakingTemplatesReputationLockGetCreatePoolEventResponses];
655
+ type PostStakingTemplatesReputationLockGetRewardData = {
673
656
  body?: {
674
657
  platform: string;
675
658
  stakeId: string;
676
659
  };
677
660
  path?: never;
678
661
  query?: never;
679
- url: '/stakingTemplates/reputationLock/v0/getReward';
662
+ url: '/stakingTemplates/reputationLock/getReward';
680
663
  };
681
- type PostStakingTemplatesReputationLockV0GetRewardResponses = {
664
+ type PostStakingTemplatesReputationLockGetRewardResponses = {
682
665
  /**
683
666
  * Compiled get rewards transaction details
684
667
  */
@@ -693,8 +676,8 @@ type PostStakingTemplatesReputationLockV0GetRewardResponses = {
693
676
  };
694
677
  };
695
678
  };
696
- type PostStakingTemplatesReputationLockV0GetRewardResponse = PostStakingTemplatesReputationLockV0GetRewardResponses[keyof PostStakingTemplatesReputationLockV0GetRewardResponses];
697
- type PostStakingTemplatesReputationLockV0PartialUnstakeData = {
679
+ type PostStakingTemplatesReputationLockGetRewardResponse = PostStakingTemplatesReputationLockGetRewardResponses[keyof PostStakingTemplatesReputationLockGetRewardResponses];
680
+ type PostStakingTemplatesReputationLockPartialUnstakeData = {
698
681
  body?: {
699
682
  platform: string;
700
683
  stakeId: string;
@@ -702,9 +685,9 @@ type PostStakingTemplatesReputationLockV0PartialUnstakeData = {
702
685
  };
703
686
  path?: never;
704
687
  query?: never;
705
- url: '/stakingTemplates/reputationLock/v0/partialUnstake';
688
+ url: '/stakingTemplates/reputationLock/partialUnstake';
706
689
  };
707
- type PostStakingTemplatesReputationLockV0PartialUnstakeResponses = {
690
+ type PostStakingTemplatesReputationLockPartialUnstakeResponses = {
708
691
  /**
709
692
  * Compiled partial unstake transaction details
710
693
  */
@@ -719,8 +702,8 @@ type PostStakingTemplatesReputationLockV0PartialUnstakeResponses = {
719
702
  };
720
703
  };
721
704
  };
722
- type PostStakingTemplatesReputationLockV0PartialUnstakeResponse = PostStakingTemplatesReputationLockV0PartialUnstakeResponses[keyof PostStakingTemplatesReputationLockV0PartialUnstakeResponses];
723
- type PostStakingTemplatesReputationLockV0RestakeData = {
705
+ type PostStakingTemplatesReputationLockPartialUnstakeResponse = PostStakingTemplatesReputationLockPartialUnstakeResponses[keyof PostStakingTemplatesReputationLockPartialUnstakeResponses];
706
+ type PostStakingTemplatesReputationLockRestakeData = {
724
707
  body?: {
725
708
  platform: string;
726
709
  poolId: string;
@@ -729,9 +712,9 @@ type PostStakingTemplatesReputationLockV0RestakeData = {
729
712
  };
730
713
  path?: never;
731
714
  query?: never;
732
- url: '/stakingTemplates/reputationLock/v0/restake';
715
+ url: '/stakingTemplates/reputationLock/restake';
733
716
  };
734
- type PostStakingTemplatesReputationLockV0RestakeResponses = {
717
+ type PostStakingTemplatesReputationLockRestakeResponses = {
735
718
  /**
736
719
  * Get the Stake transaction details
737
720
  */
@@ -746,8 +729,8 @@ type PostStakingTemplatesReputationLockV0RestakeResponses = {
746
729
  };
747
730
  };
748
731
  };
749
- type PostStakingTemplatesReputationLockV0RestakeResponse = PostStakingTemplatesReputationLockV0RestakeResponses[keyof PostStakingTemplatesReputationLockV0RestakeResponses];
750
- type PostStakingTemplatesReputationLockV0StakeData = {
732
+ type PostStakingTemplatesReputationLockRestakeResponse = PostStakingTemplatesReputationLockRestakeResponses[keyof PostStakingTemplatesReputationLockRestakeResponses];
733
+ type PostStakingTemplatesReputationLockStakeData = {
751
734
  body?: {
752
735
  platform: string;
753
736
  poolId: string;
@@ -756,9 +739,9 @@ type PostStakingTemplatesReputationLockV0StakeData = {
756
739
  };
757
740
  path?: never;
758
741
  query?: never;
759
- url: '/stakingTemplates/reputationLock/v0/stake';
742
+ url: '/stakingTemplates/reputationLock/stake';
760
743
  };
761
- type PostStakingTemplatesReputationLockV0StakeResponses = {
744
+ type PostStakingTemplatesReputationLockStakeResponses = {
762
745
  /**
763
746
  * Get the Stake transaction details
764
747
  */
@@ -773,17 +756,17 @@ type PostStakingTemplatesReputationLockV0StakeResponses = {
773
756
  };
774
757
  };
775
758
  };
776
- type PostStakingTemplatesReputationLockV0StakeResponse = PostStakingTemplatesReputationLockV0StakeResponses[keyof PostStakingTemplatesReputationLockV0StakeResponses];
777
- type PostStakingTemplatesReputationLockV0UnstakeData = {
759
+ type PostStakingTemplatesReputationLockStakeResponse = PostStakingTemplatesReputationLockStakeResponses[keyof PostStakingTemplatesReputationLockStakeResponses];
760
+ type PostStakingTemplatesReputationLockUnstakeData = {
778
761
  body?: {
779
762
  platform: string;
780
763
  stakeId: string;
781
764
  };
782
765
  path?: never;
783
766
  query?: never;
784
- url: '/stakingTemplates/reputationLock/v0/unstake';
767
+ url: '/stakingTemplates/reputationLock/unstake';
785
768
  };
786
- type PostStakingTemplatesReputationLockV0UnstakeResponses = {
769
+ type PostStakingTemplatesReputationLockUnstakeResponses = {
787
770
  /**
788
771
  * Compiled Unstake transaction details
789
772
  */
@@ -798,8 +781,8 @@ type PostStakingTemplatesReputationLockV0UnstakeResponses = {
798
781
  };
799
782
  };
800
783
  };
801
- type PostStakingTemplatesReputationLockV0UnstakeResponse = PostStakingTemplatesReputationLockV0UnstakeResponses[keyof PostStakingTemplatesReputationLockV0UnstakeResponses];
802
- type PostStakingTemplatesReputationLockV0CreatePoolData = {
784
+ type PostStakingTemplatesReputationLockUnstakeResponse = PostStakingTemplatesReputationLockUnstakeResponses[keyof PostStakingTemplatesReputationLockUnstakeResponses];
785
+ type PostStakingTemplatesReputationLockCreatePoolData = {
803
786
  body?: {
804
787
  platform: string;
805
788
  startDate: string;
@@ -835,9 +818,9 @@ type PostStakingTemplatesReputationLockV0CreatePoolData = {
835
818
  };
836
819
  path?: never;
837
820
  query?: never;
838
- url: '/stakingTemplates/reputationLock/v0/createPool';
821
+ url: '/stakingTemplates/reputationLock/createPool';
839
822
  };
840
- type PostStakingTemplatesReputationLockV0CreatePoolResponses = {
823
+ type PostStakingTemplatesReputationLockCreatePoolResponses = {
841
824
  /**
842
825
  * Compiled create pool transaction details
843
826
  */
@@ -852,8 +835,8 @@ type PostStakingTemplatesReputationLockV0CreatePoolResponses = {
852
835
  };
853
836
  };
854
837
  };
855
- type PostStakingTemplatesReputationLockV0CreatePoolResponse = PostStakingTemplatesReputationLockV0CreatePoolResponses[keyof PostStakingTemplatesReputationLockV0CreatePoolResponses];
856
- type PostStakingTemplatesReputationLockV0CreatePlatformData = {
838
+ type PostStakingTemplatesReputationLockCreatePoolResponse = PostStakingTemplatesReputationLockCreatePoolResponses[keyof PostStakingTemplatesReputationLockCreatePoolResponses];
839
+ type PostStakingTemplatesReputationLockCreatePlatformData = {
857
840
  body?: {
858
841
  chainId: '11155111' | '84532' | '31337';
859
842
  erc721: {
@@ -866,9 +849,9 @@ type PostStakingTemplatesReputationLockV0CreatePlatformData = {
866
849
  };
867
850
  path?: never;
868
851
  query?: never;
869
- url: '/stakingTemplates/reputationLock/v0/createPlatform';
852
+ url: '/stakingTemplates/reputationLock/createPlatform';
870
853
  };
871
- type PostStakingTemplatesReputationLockV0CreatePlatformResponses = {
854
+ type PostStakingTemplatesReputationLockCreatePlatformResponses = {
872
855
  /**
873
856
  * Compiled create platform transaction details
874
857
  */
@@ -883,17 +866,17 @@ type PostStakingTemplatesReputationLockV0CreatePlatformResponses = {
883
866
  };
884
867
  };
885
868
  };
886
- type PostStakingTemplatesReputationLockV0CreatePlatformResponse = PostStakingTemplatesReputationLockV0CreatePlatformResponses[keyof PostStakingTemplatesReputationLockV0CreatePlatformResponses];
887
- type GetStakingTemplatesRwaV0GetPlatformDeployEventData = {
869
+ type PostStakingTemplatesReputationLockCreatePlatformResponse = PostStakingTemplatesReputationLockCreatePlatformResponses[keyof PostStakingTemplatesReputationLockCreatePlatformResponses];
870
+ type GetStakingTemplatesRwaGetPlatformDeployEventData = {
888
871
  body?: never;
889
872
  path?: never;
890
873
  query: {
891
874
  chainId: '1' | '11155111' | '84532' | '72080' | '31337';
892
875
  hash: string;
893
876
  };
894
- url: '/stakingTemplates/rwa/v0/getPlatformDeployEvent';
877
+ url: '/stakingTemplates/rwa/getPlatformDeployEvent';
895
878
  };
896
- type GetStakingTemplatesRwaV0GetPlatformDeployEventResponses = {
879
+ type GetStakingTemplatesRwaGetPlatformDeployEventResponses = {
897
880
  /**
898
881
  * Returns estimated gas or estimation error
899
882
  */
@@ -902,17 +885,17 @@ type GetStakingTemplatesRwaV0GetPlatformDeployEventResponses = {
902
885
  admin: string;
903
886
  };
904
887
  };
905
- type GetStakingTemplatesRwaV0GetPlatformDeployEventResponse = GetStakingTemplatesRwaV0GetPlatformDeployEventResponses[keyof GetStakingTemplatesRwaV0GetPlatformDeployEventResponses];
906
- type GetStakingTemplatesRwaV0GetStakeEventData = {
888
+ type GetStakingTemplatesRwaGetPlatformDeployEventResponse = GetStakingTemplatesRwaGetPlatformDeployEventResponses[keyof GetStakingTemplatesRwaGetPlatformDeployEventResponses];
889
+ type GetStakingTemplatesRwaGetStakeEventData = {
907
890
  body?: never;
908
891
  path?: never;
909
892
  query: {
910
893
  chainId: '1' | '11155111' | '84532' | '72080' | '31337';
911
894
  hash: string;
912
895
  };
913
- url: '/stakingTemplates/rwa/v0/getStakeEvent';
896
+ url: '/stakingTemplates/rwa/getStakeEvent';
914
897
  };
915
- type GetStakingTemplatesRwaV0GetStakeEventResponses = {
898
+ type GetStakingTemplatesRwaGetStakeEventResponses = {
916
899
  /**
917
900
  * Details of the created stake position
918
901
  */
@@ -921,19 +904,22 @@ type GetStakingTemplatesRwaV0GetStakeEventResponses = {
921
904
  stakeId: string;
922
905
  operator: string;
923
906
  owner: string;
907
+ inputPacketsStaked: string;
908
+ stakeStartActiveTimestamp: string;
909
+ unlockTimestamp: string;
924
910
  };
925
911
  };
926
- type GetStakingTemplatesRwaV0GetStakeEventResponse = GetStakingTemplatesRwaV0GetStakeEventResponses[keyof GetStakingTemplatesRwaV0GetStakeEventResponses];
927
- type GetStakingTemplatesRwaV0GetCreatePoolEventData = {
912
+ type GetStakingTemplatesRwaGetStakeEventResponse = GetStakingTemplatesRwaGetStakeEventResponses[keyof GetStakingTemplatesRwaGetStakeEventResponses];
913
+ type GetStakingTemplatesRwaGetCreatePoolEventData = {
928
914
  body?: never;
929
915
  path?: never;
930
916
  query: {
931
917
  chainId: '1' | '11155111' | '84532' | '72080' | '31337';
932
918
  hash: string;
933
919
  };
934
- url: '/stakingTemplates/rwa/v0/getCreatePoolEvent';
920
+ url: '/stakingTemplates/rwa/getCreatePoolEvent';
935
921
  };
936
- type GetStakingTemplatesRwaV0GetCreatePoolEventResponses = {
922
+ type GetStakingTemplatesRwaGetCreatePoolEventResponses = {
937
923
  /**
938
924
  * Details of the created pool
939
925
  */
@@ -943,17 +929,17 @@ type GetStakingTemplatesRwaV0GetCreatePoolEventResponses = {
943
929
  inputAssetKeeper: string;
944
930
  };
945
931
  };
946
- type GetStakingTemplatesRwaV0GetCreatePoolEventResponse = GetStakingTemplatesRwaV0GetCreatePoolEventResponses[keyof GetStakingTemplatesRwaV0GetCreatePoolEventResponses];
947
- type PostStakingTemplatesRwaV0GetRewardData = {
932
+ type GetStakingTemplatesRwaGetCreatePoolEventResponse = GetStakingTemplatesRwaGetCreatePoolEventResponses[keyof GetStakingTemplatesRwaGetCreatePoolEventResponses];
933
+ type PostStakingTemplatesRwaGetRewardData = {
948
934
  body?: {
949
935
  platform: string;
950
936
  stakeId: string;
951
937
  };
952
938
  path?: never;
953
939
  query?: never;
954
- url: '/stakingTemplates/rwa/v0/getReward';
940
+ url: '/stakingTemplates/rwa/getReward';
955
941
  };
956
- type PostStakingTemplatesRwaV0GetRewardResponses = {
942
+ type PostStakingTemplatesRwaGetRewardResponses = {
957
943
  /**
958
944
  * Compiled get rewards transaction details
959
945
  */
@@ -968,8 +954,8 @@ type PostStakingTemplatesRwaV0GetRewardResponses = {
968
954
  };
969
955
  };
970
956
  };
971
- type PostStakingTemplatesRwaV0GetRewardResponse = PostStakingTemplatesRwaV0GetRewardResponses[keyof PostStakingTemplatesRwaV0GetRewardResponses];
972
- type PostStakingTemplatesRwaV0PartialUnstakeData = {
957
+ type PostStakingTemplatesRwaGetRewardResponse = PostStakingTemplatesRwaGetRewardResponses[keyof PostStakingTemplatesRwaGetRewardResponses];
958
+ type PostStakingTemplatesRwaPartialUnstakeData = {
973
959
  body?: {
974
960
  platform: string;
975
961
  stakeId: string;
@@ -977,9 +963,9 @@ type PostStakingTemplatesRwaV0PartialUnstakeData = {
977
963
  };
978
964
  path?: never;
979
965
  query?: never;
980
- url: '/stakingTemplates/rwa/v0/partialUnstake';
966
+ url: '/stakingTemplates/rwa/partialUnstake';
981
967
  };
982
- type PostStakingTemplatesRwaV0PartialUnstakeResponses = {
968
+ type PostStakingTemplatesRwaPartialUnstakeResponses = {
983
969
  /**
984
970
  * Compiled partial unstake transaction details
985
971
  */
@@ -994,8 +980,8 @@ type PostStakingTemplatesRwaV0PartialUnstakeResponses = {
994
980
  };
995
981
  };
996
982
  };
997
- type PostStakingTemplatesRwaV0PartialUnstakeResponse = PostStakingTemplatesRwaV0PartialUnstakeResponses[keyof PostStakingTemplatesRwaV0PartialUnstakeResponses];
998
- type PostStakingTemplatesRwaV0RestakeData = {
983
+ type PostStakingTemplatesRwaPartialUnstakeResponse = PostStakingTemplatesRwaPartialUnstakeResponses[keyof PostStakingTemplatesRwaPartialUnstakeResponses];
984
+ type PostStakingTemplatesRwaRestakeData = {
999
985
  body?: {
1000
986
  platform: string;
1001
987
  poolId: string;
@@ -1003,9 +989,9 @@ type PostStakingTemplatesRwaV0RestakeData = {
1003
989
  };
1004
990
  path?: never;
1005
991
  query?: never;
1006
- url: '/stakingTemplates/rwa/v0/restake';
992
+ url: '/stakingTemplates/rwa/restake';
1007
993
  };
1008
- type PostStakingTemplatesRwaV0RestakeResponses = {
994
+ type PostStakingTemplatesRwaRestakeResponses = {
1009
995
  /**
1010
996
  * Get the Stake transaction details
1011
997
  */
@@ -1020,8 +1006,8 @@ type PostStakingTemplatesRwaV0RestakeResponses = {
1020
1006
  };
1021
1007
  };
1022
1008
  };
1023
- type PostStakingTemplatesRwaV0RestakeResponse = PostStakingTemplatesRwaV0RestakeResponses[keyof PostStakingTemplatesRwaV0RestakeResponses];
1024
- type PostStakingTemplatesRwaV0StakeData = {
1009
+ type PostStakingTemplatesRwaRestakeResponse = PostStakingTemplatesRwaRestakeResponses[keyof PostStakingTemplatesRwaRestakeResponses];
1010
+ type PostStakingTemplatesRwaStakeData = {
1025
1011
  body?: {
1026
1012
  platform: string;
1027
1013
  poolId: string;
@@ -1029,9 +1015,9 @@ type PostStakingTemplatesRwaV0StakeData = {
1029
1015
  };
1030
1016
  path?: never;
1031
1017
  query?: never;
1032
- url: '/stakingTemplates/rwa/v0/stake';
1018
+ url: '/stakingTemplates/rwa/stake';
1033
1019
  };
1034
- type PostStakingTemplatesRwaV0StakeResponses = {
1020
+ type PostStakingTemplatesRwaStakeResponses = {
1035
1021
  /**
1036
1022
  * Get the Stake transaction details
1037
1023
  */
@@ -1046,17 +1032,17 @@ type PostStakingTemplatesRwaV0StakeResponses = {
1046
1032
  };
1047
1033
  };
1048
1034
  };
1049
- type PostStakingTemplatesRwaV0StakeResponse = PostStakingTemplatesRwaV0StakeResponses[keyof PostStakingTemplatesRwaV0StakeResponses];
1050
- type PostStakingTemplatesRwaV0UnstakeData = {
1035
+ type PostStakingTemplatesRwaStakeResponse = PostStakingTemplatesRwaStakeResponses[keyof PostStakingTemplatesRwaStakeResponses];
1036
+ type PostStakingTemplatesRwaUnstakeData = {
1051
1037
  body?: {
1052
1038
  platform: string;
1053
1039
  stakeId: string;
1054
1040
  };
1055
1041
  path?: never;
1056
1042
  query?: never;
1057
- url: '/stakingTemplates/rwa/v0/unstake';
1043
+ url: '/stakingTemplates/rwa/unstake';
1058
1044
  };
1059
- type PostStakingTemplatesRwaV0UnstakeResponses = {
1045
+ type PostStakingTemplatesRwaUnstakeResponses = {
1060
1046
  /**
1061
1047
  * Compiled Unstake transaction details
1062
1048
  */
@@ -1071,8 +1057,8 @@ type PostStakingTemplatesRwaV0UnstakeResponses = {
1071
1057
  };
1072
1058
  };
1073
1059
  };
1074
- type PostStakingTemplatesRwaV0UnstakeResponse = PostStakingTemplatesRwaV0UnstakeResponses[keyof PostStakingTemplatesRwaV0UnstakeResponses];
1075
- type PostStakingTemplatesRwaV0CreatePoolData = {
1060
+ type PostStakingTemplatesRwaUnstakeResponse = PostStakingTemplatesRwaUnstakeResponses[keyof PostStakingTemplatesRwaUnstakeResponses];
1061
+ type PostStakingTemplatesRwaCreatePoolData = {
1076
1062
  body?: {
1077
1063
  platform: string;
1078
1064
  startDate: string;
@@ -1092,9 +1078,9 @@ type PostStakingTemplatesRwaV0CreatePoolData = {
1092
1078
  };
1093
1079
  path?: never;
1094
1080
  query?: never;
1095
- url: '/stakingTemplates/rwa/v0/createPool';
1081
+ url: '/stakingTemplates/rwa/createPool';
1096
1082
  };
1097
- type PostStakingTemplatesRwaV0CreatePoolResponses = {
1083
+ type PostStakingTemplatesRwaCreatePoolResponses = {
1098
1084
  /**
1099
1085
  * Compiled create pool transaction details
1100
1086
  */
@@ -1109,8 +1095,8 @@ type PostStakingTemplatesRwaV0CreatePoolResponses = {
1109
1095
  };
1110
1096
  };
1111
1097
  };
1112
- type PostStakingTemplatesRwaV0CreatePoolResponse = PostStakingTemplatesRwaV0CreatePoolResponses[keyof PostStakingTemplatesRwaV0CreatePoolResponses];
1113
- type PostStakingTemplatesRwaV0CreatePlatformData = {
1098
+ type PostStakingTemplatesRwaCreatePoolResponse = PostStakingTemplatesRwaCreatePoolResponses[keyof PostStakingTemplatesRwaCreatePoolResponses];
1099
+ type PostStakingTemplatesRwaCreatePlatformData = {
1114
1100
  body?: {
1115
1101
  chainId: '11155111' | '84532' | '31337';
1116
1102
  erc721: {
@@ -1123,9 +1109,9 @@ type PostStakingTemplatesRwaV0CreatePlatformData = {
1123
1109
  };
1124
1110
  path?: never;
1125
1111
  query?: never;
1126
- url: '/stakingTemplates/rwa/v0/createPlatform';
1112
+ url: '/stakingTemplates/rwa/createPlatform';
1127
1113
  };
1128
- type PostStakingTemplatesRwaV0CreatePlatformResponses = {
1114
+ type PostStakingTemplatesRwaCreatePlatformResponses = {
1129
1115
  /**
1130
1116
  * Compiled create platform transaction details
1131
1117
  */
@@ -1140,8 +1126,8 @@ type PostStakingTemplatesRwaV0CreatePlatformResponses = {
1140
1126
  };
1141
1127
  };
1142
1128
  };
1143
- type PostStakingTemplatesRwaV0CreatePlatformResponse = PostStakingTemplatesRwaV0CreatePlatformResponses[keyof PostStakingTemplatesRwaV0CreatePlatformResponses];
1144
- type PostStakingTemplatesRwaV0DistributeRewardsData = {
1129
+ type PostStakingTemplatesRwaCreatePlatformResponse = PostStakingTemplatesRwaCreatePlatformResponses[keyof PostStakingTemplatesRwaCreatePlatformResponses];
1130
+ type PostStakingTemplatesRwaDistributeRewardsData = {
1145
1131
  body?: {
1146
1132
  platform: string;
1147
1133
  poolId: string;
@@ -1149,9 +1135,9 @@ type PostStakingTemplatesRwaV0DistributeRewardsData = {
1149
1135
  };
1150
1136
  path?: never;
1151
1137
  query?: never;
1152
- url: '/stakingTemplates/rwa/v0/distributeRewards';
1138
+ url: '/stakingTemplates/rwa/distributeRewards';
1153
1139
  };
1154
- type PostStakingTemplatesRwaV0DistributeRewardsResponses = {
1140
+ type PostStakingTemplatesRwaDistributeRewardsResponses = {
1155
1141
  /**
1156
1142
  * Compiled reward notification transaction details
1157
1143
  */
@@ -1166,17 +1152,17 @@ type PostStakingTemplatesRwaV0DistributeRewardsResponses = {
1166
1152
  };
1167
1153
  };
1168
1154
  };
1169
- type PostStakingTemplatesRwaV0DistributeRewardsResponse = PostStakingTemplatesRwaV0DistributeRewardsResponses[keyof PostStakingTemplatesRwaV0DistributeRewardsResponses];
1170
- type GetV0FractionsMarketsGetData = {
1155
+ type PostStakingTemplatesRwaDistributeRewardsResponse = PostStakingTemplatesRwaDistributeRewardsResponses[keyof PostStakingTemplatesRwaDistributeRewardsResponses];
1156
+ type GetFractionsMarketsGetData = {
1171
1157
  body?: never;
1172
1158
  path?: never;
1173
1159
  query: {
1174
1160
  chainId: '1' | '11155111' | '84532' | '72080' | '31337';
1175
1161
  address: string;
1176
1162
  };
1177
- url: '/v0/fractions/markets/get';
1163
+ url: '/fractions/markets/get';
1178
1164
  };
1179
- type GetV0FractionsMarketsGetErrors = {
1165
+ type GetFractionsMarketsGetErrors = {
1180
1166
  /**
1181
1167
  * No market found
1182
1168
  */
@@ -1186,8 +1172,8 @@ type GetV0FractionsMarketsGetErrors = {
1186
1172
  name: string;
1187
1173
  };
1188
1174
  };
1189
- type GetV0FractionsMarketsGetError = GetV0FractionsMarketsGetErrors[keyof GetV0FractionsMarketsGetErrors];
1190
- type GetV0FractionsMarketsGetResponses = {
1175
+ type GetFractionsMarketsGetError = GetFractionsMarketsGetErrors[keyof GetFractionsMarketsGetErrors];
1176
+ type GetFractionsMarketsGetResponses = {
1191
1177
  /**
1192
1178
  * Market details
1193
1179
  */
@@ -1213,23 +1199,19 @@ type GetV0FractionsMarketsGetResponses = {
1213
1199
  updatedAt: string;
1214
1200
  };
1215
1201
  };
1216
- type GetV0FractionsMarketsGetResponse = GetV0FractionsMarketsGetResponses[keyof GetV0FractionsMarketsGetResponses];
1217
- type PostV0FractionsMarketsSearchData = {
1218
- body?: {
1219
- page: {
1220
- skip: number;
1221
- limit: number;
1222
- };
1223
- filter: {
1224
- chainId?: '1' | '11155111' | '84532' | '72080' | '31337';
1225
- owner?: string;
1226
- };
1227
- };
1202
+ type GetFractionsMarketsGetResponse = GetFractionsMarketsGetResponses[keyof GetFractionsMarketsGetResponses];
1203
+ type GetFractionsMarketsSearchData = {
1204
+ body?: never;
1228
1205
  path?: never;
1229
- query?: never;
1230
- url: '/v0/fractions/markets/search';
1206
+ query: {
1207
+ skip: number;
1208
+ limit: number;
1209
+ chainId?: '1' | '11155111' | '84532' | '72080' | '31337';
1210
+ owner?: string;
1211
+ };
1212
+ url: '/fractions/markets/search';
1231
1213
  };
1232
- type PostV0FractionsMarketsSearchResponses = {
1214
+ type GetFractionsMarketsSearchResponses = {
1233
1215
  /**
1234
1216
  * Returns list of platforms by specified filter
1235
1217
  */
@@ -1255,17 +1237,17 @@ type PostV0FractionsMarketsSearchResponses = {
1255
1237
  updatedAt: string;
1256
1238
  }>;
1257
1239
  };
1258
- type PostV0FractionsMarketsSearchResponse = PostV0FractionsMarketsSearchResponses[keyof PostV0FractionsMarketsSearchResponses];
1259
- type GetV0FractionsMarketsDeployEventData = {
1240
+ type GetFractionsMarketsSearchResponse = GetFractionsMarketsSearchResponses[keyof GetFractionsMarketsSearchResponses];
1241
+ type GetFractionsMarketsDeployEventData = {
1260
1242
  body?: never;
1261
1243
  path?: never;
1262
1244
  query: {
1263
1245
  chainId: '1' | '11155111' | '84532' | '72080' | '31337';
1264
1246
  hash: string;
1265
1247
  };
1266
- url: '/v0/fractions/markets/deployEvent';
1248
+ url: '/fractions/markets/deployEvent';
1267
1249
  };
1268
- type GetV0FractionsMarketsDeployEventResponses = {
1250
+ type GetFractionsMarketsDeployEventResponses = {
1269
1251
  /**
1270
1252
  * Returns parsed event log
1271
1253
  */
@@ -1275,8 +1257,8 @@ type GetV0FractionsMarketsDeployEventResponses = {
1275
1257
  wrapperAddress: string;
1276
1258
  };
1277
1259
  };
1278
- type GetV0FractionsMarketsDeployEventResponse = GetV0FractionsMarketsDeployEventResponses[keyof GetV0FractionsMarketsDeployEventResponses];
1279
- type PostV0FractionsMarketsDeployData = {
1260
+ type GetFractionsMarketsDeployEventResponse = GetFractionsMarketsDeployEventResponses[keyof GetFractionsMarketsDeployEventResponses];
1261
+ type PostFractionsMarketsDeployData = {
1280
1262
  body?: {
1281
1263
  chainId: '1' | '11155111' | '84532' | '72080' | '31337';
1282
1264
  /**
@@ -1327,9 +1309,9 @@ type PostV0FractionsMarketsDeployData = {
1327
1309
  };
1328
1310
  path?: never;
1329
1311
  query?: never;
1330
- url: '/v0/fractions/markets/deploy';
1312
+ url: '/fractions/markets/deploy';
1331
1313
  };
1332
- type PostV0FractionsMarketsDeployResponses = {
1314
+ type PostFractionsMarketsDeployResponses = {
1333
1315
  /**
1334
1316
  * Returns transaction data for deploying a vesting market that creates fraction sales to distribute ERC-20 tokens following a vesting schedule.
1335
1317
  */
@@ -1344,8 +1326,8 @@ type PostV0FractionsMarketsDeployResponses = {
1344
1326
  };
1345
1327
  };
1346
1328
  };
1347
- type PostV0FractionsMarketsDeployResponse = PostV0FractionsMarketsDeployResponses[keyof PostV0FractionsMarketsDeployResponses];
1348
- type PostV0FractionsMarketsDeployNidData = {
1329
+ type PostFractionsMarketsDeployResponse = PostFractionsMarketsDeployResponses[keyof PostFractionsMarketsDeployResponses];
1330
+ type PostFractionsMarketsDeployNidData = {
1349
1331
  body?: {
1350
1332
  chainId: '1' | '11155111' | '84532' | '72080' | '31337';
1351
1333
  /**
@@ -1396,9 +1378,9 @@ type PostV0FractionsMarketsDeployNidData = {
1396
1378
  };
1397
1379
  path?: never;
1398
1380
  query?: never;
1399
- url: '/v0/fractions/markets/deployNid';
1381
+ url: '/fractions/markets/deployNid';
1400
1382
  };
1401
- type PostV0FractionsMarketsDeployNidResponses = {
1383
+ type PostFractionsMarketsDeployNidResponses = {
1402
1384
  /**
1403
1385
  * Returns transaction data for deploying a compliance-gated vesting market that creates fraction sales to distribute ERC-20 tokens following a vesting schedule.
1404
1386
  */
@@ -1413,8 +1395,8 @@ type PostV0FractionsMarketsDeployNidResponses = {
1413
1395
  };
1414
1396
  };
1415
1397
  };
1416
- type PostV0FractionsMarketsDeployNidResponse = PostV0FractionsMarketsDeployNidResponses[keyof PostV0FractionsMarketsDeployNidResponses];
1417
- type PostV0FractionsMarketsDeployContinuousWithdrawData = {
1398
+ type PostFractionsMarketsDeployNidResponse = PostFractionsMarketsDeployNidResponses[keyof PostFractionsMarketsDeployNidResponses];
1399
+ type PostFractionsMarketsDeployContinuousWithdrawData = {
1418
1400
  body?: {
1419
1401
  chainId: '1' | '11155111' | '84532' | '72080' | '31337';
1420
1402
  /**
@@ -1465,9 +1447,9 @@ type PostV0FractionsMarketsDeployContinuousWithdrawData = {
1465
1447
  };
1466
1448
  path?: never;
1467
1449
  query?: never;
1468
- url: '/v0/fractions/markets/deployContinuousWithdraw';
1450
+ url: '/fractions/markets/deployContinuousWithdraw';
1469
1451
  };
1470
- type PostV0FractionsMarketsDeployContinuousWithdrawResponses = {
1452
+ type PostFractionsMarketsDeployContinuousWithdrawResponses = {
1471
1453
  /**
1472
1454
  * Returns transaction data for deploying a vesting market that creates fraction sales to distribute ERC-20 tokens following a vesting schedule. It forces issuers to have a soft capitalization of 1 fraction and allows them to withdraw funds during the sale.
1473
1455
  */
@@ -1482,8 +1464,8 @@ type PostV0FractionsMarketsDeployContinuousWithdrawResponses = {
1482
1464
  };
1483
1465
  };
1484
1466
  };
1485
- type PostV0FractionsMarketsDeployContinuousWithdrawResponse = PostV0FractionsMarketsDeployContinuousWithdrawResponses[keyof PostV0FractionsMarketsDeployContinuousWithdrawResponses];
1486
- type PostV0FractionsMarketsDeployContinuousWithdrawNidData = {
1467
+ type PostFractionsMarketsDeployContinuousWithdrawResponse = PostFractionsMarketsDeployContinuousWithdrawResponses[keyof PostFractionsMarketsDeployContinuousWithdrawResponses];
1468
+ type PostFractionsMarketsDeployContinuousWithdrawNidData = {
1487
1469
  body?: {
1488
1470
  chainId: '1' | '11155111' | '84532' | '72080' | '31337';
1489
1471
  /**
@@ -1534,9 +1516,9 @@ type PostV0FractionsMarketsDeployContinuousWithdrawNidData = {
1534
1516
  };
1535
1517
  path?: never;
1536
1518
  query?: never;
1537
- url: '/v0/fractions/markets/deployContinuousWithdrawNid';
1519
+ url: '/fractions/markets/deployContinuousWithdrawNid';
1538
1520
  };
1539
- type PostV0FractionsMarketsDeployContinuousWithdrawNidResponses = {
1521
+ type PostFractionsMarketsDeployContinuousWithdrawNidResponses = {
1540
1522
  /**
1541
1523
  * Returns transaction data for deploying a compliance-gated vesting market that creates fraction sales to distribute ERC-20 tokens following a vesting schedule. It forces issuers to have a soft capitalization of 1 fraction and allows them to withdraw funds during the sale.
1542
1524
  */
@@ -1551,8 +1533,8 @@ type PostV0FractionsMarketsDeployContinuousWithdrawNidResponses = {
1551
1533
  };
1552
1534
  };
1553
1535
  };
1554
- type PostV0FractionsMarketsDeployContinuousWithdrawNidResponse = PostV0FractionsMarketsDeployContinuousWithdrawNidResponses[keyof PostV0FractionsMarketsDeployContinuousWithdrawNidResponses];
1555
- type GetV0FractionsMarketsInitCompilotData = {
1536
+ type PostFractionsMarketsDeployContinuousWithdrawNidResponse = PostFractionsMarketsDeployContinuousWithdrawNidResponses[keyof PostFractionsMarketsDeployContinuousWithdrawNidResponses];
1537
+ type GetFractionsMarketsInitCompilotData = {
1556
1538
  body?: never;
1557
1539
  path?: never;
1558
1540
  query: {
@@ -1565,9 +1547,9 @@ type GetV0FractionsMarketsInitCompilotData = {
1565
1547
  */
1566
1548
  compilotSigner?: string;
1567
1549
  };
1568
- url: '/v0/fractions/markets/initCompilot';
1550
+ url: '/fractions/markets/initCompilot';
1569
1551
  };
1570
- type GetV0FractionsMarketsInitCompilotResponses = {
1552
+ type GetFractionsMarketsInitCompilotResponses = {
1571
1553
  /**
1572
1554
  * Returns transaction data for initializing the ComPilot signer on a share fraction market. This must be called after deploying the market to enable compliance gating.
1573
1555
  */
@@ -1582,14 +1564,14 @@ type GetV0FractionsMarketsInitCompilotResponses = {
1582
1564
  };
1583
1565
  };
1584
1566
  };
1585
- type GetV0FractionsMarketsInitCompilotResponse = GetV0FractionsMarketsInitCompilotResponses[keyof GetV0FractionsMarketsInitCompilotResponses];
1586
- type GetV0FractionsRolesData = {
1567
+ type GetFractionsMarketsInitCompilotResponse = GetFractionsMarketsInitCompilotResponses[keyof GetFractionsMarketsInitCompilotResponses];
1568
+ type GetFractionsRolesData = {
1587
1569
  body?: never;
1588
1570
  path?: never;
1589
1571
  query?: never;
1590
- url: '/v0/fractions/roles';
1572
+ url: '/fractions/roles';
1591
1573
  };
1592
- type GetV0FractionsRolesResponses = {
1574
+ type GetFractionsRolesResponses = {
1593
1575
  /**
1594
1576
  * List of available roles
1595
1577
  */
@@ -1598,8 +1580,8 @@ type GetV0FractionsRolesResponses = {
1598
1580
  value: string;
1599
1581
  }>;
1600
1582
  };
1601
- type GetV0FractionsRolesResponse = GetV0FractionsRolesResponses[keyof GetV0FractionsRolesResponses];
1602
- type PostV0FractionsRolesGrantData = {
1583
+ type GetFractionsRolesResponse = GetFractionsRolesResponses[keyof GetFractionsRolesResponses];
1584
+ type PostFractionsRolesGrantData = {
1603
1585
  body?: {
1604
1586
  /**
1605
1587
  * Market contract address
@@ -1616,9 +1598,9 @@ type PostV0FractionsRolesGrantData = {
1616
1598
  };
1617
1599
  path?: never;
1618
1600
  query?: never;
1619
- url: '/v0/fractions/roles/grant';
1601
+ url: '/fractions/roles/grant';
1620
1602
  };
1621
- type PostV0FractionsRolesGrantResponses = {
1603
+ type PostFractionsRolesGrantResponses = {
1622
1604
  /**
1623
1605
  * Returns transaction data for deploying a market
1624
1606
  */
@@ -1633,8 +1615,8 @@ type PostV0FractionsRolesGrantResponses = {
1633
1615
  };
1634
1616
  };
1635
1617
  };
1636
- type PostV0FractionsRolesGrantResponse = PostV0FractionsRolesGrantResponses[keyof PostV0FractionsRolesGrantResponses];
1637
- type PostV0FractionsSalesFractionsData = {
1618
+ type PostFractionsRolesGrantResponse = PostFractionsRolesGrantResponses[keyof PostFractionsRolesGrantResponses];
1619
+ type PostFractionsSalesFractionsData = {
1638
1620
  body?: {
1639
1621
  chainId: '1' | '11155111' | '84532' | '72080' | '31337';
1640
1622
  market: string;
@@ -1758,9 +1740,9 @@ type PostV0FractionsSalesFractionsData = {
1758
1740
  };
1759
1741
  path?: never;
1760
1742
  query?: never;
1761
- url: '/v0/fractions/sales/fractions';
1743
+ url: '/fractions/sales/fractions';
1762
1744
  };
1763
- type PostV0FractionsSalesFractionsResponses = {
1745
+ type PostFractionsSalesFractionsResponses = {
1764
1746
  /**
1765
1747
  * Returns transaction data for creating fractions
1766
1748
  */
@@ -1775,17 +1757,17 @@ type PostV0FractionsSalesFractionsResponses = {
1775
1757
  };
1776
1758
  };
1777
1759
  };
1778
- type PostV0FractionsSalesFractionsResponse = PostV0FractionsSalesFractionsResponses[keyof PostV0FractionsSalesFractionsResponses];
1779
- type GetV0FractionsSalesGetFractionsCreatedEventData = {
1760
+ type PostFractionsSalesFractionsResponse = PostFractionsSalesFractionsResponses[keyof PostFractionsSalesFractionsResponses];
1761
+ type GetFractionsSalesGetFractionsCreatedEventData = {
1780
1762
  body?: never;
1781
1763
  path?: never;
1782
1764
  query: {
1783
1765
  chainId: '1' | '11155111' | '84532' | '72080' | '31337';
1784
1766
  hash: string;
1785
1767
  };
1786
- url: '/v0/fractions/sales/getFractionsCreatedEvent';
1768
+ url: '/fractions/sales/getFractionsCreatedEvent';
1787
1769
  };
1788
- type GetV0FractionsSalesGetFractionsCreatedEventResponses = {
1770
+ type GetFractionsSalesGetFractionsCreatedEventResponses = {
1789
1771
  /**
1790
1772
  * Returns parsed event log
1791
1773
  */
@@ -1798,8 +1780,8 @@ type GetV0FractionsSalesGetFractionsCreatedEventResponses = {
1798
1780
  vaultAddress: string;
1799
1781
  };
1800
1782
  };
1801
- type GetV0FractionsSalesGetFractionsCreatedEventResponse = GetV0FractionsSalesGetFractionsCreatedEventResponses[keyof GetV0FractionsSalesGetFractionsCreatedEventResponses];
1802
- type PostV0FractionsSalesApproveData = {
1783
+ type GetFractionsSalesGetFractionsCreatedEventResponse = GetFractionsSalesGetFractionsCreatedEventResponses[keyof GetFractionsSalesGetFractionsCreatedEventResponses];
1784
+ type PostFractionsSalesApproveData = {
1803
1785
  body?: {
1804
1786
  campaign: {
1805
1787
  /**
@@ -1814,9 +1796,9 @@ type PostV0FractionsSalesApproveData = {
1814
1796
  };
1815
1797
  path?: never;
1816
1798
  query?: never;
1817
- url: '/v0/fractions/sales/approve';
1799
+ url: '/fractions/sales/approve';
1818
1800
  };
1819
- type PostV0FractionsSalesApproveResponses = {
1801
+ type PostFractionsSalesApproveResponses = {
1820
1802
  /**
1821
1803
  * Returns transaction data for approving a sale
1822
1804
  */
@@ -1831,8 +1813,8 @@ type PostV0FractionsSalesApproveResponses = {
1831
1813
  };
1832
1814
  };
1833
1815
  };
1834
- type PostV0FractionsSalesApproveResponse = PostV0FractionsSalesApproveResponses[keyof PostV0FractionsSalesApproveResponses];
1835
- type PostV0FractionsSalesRejectData = {
1816
+ type PostFractionsSalesApproveResponse = PostFractionsSalesApproveResponses[keyof PostFractionsSalesApproveResponses];
1817
+ type PostFractionsSalesRejectData = {
1836
1818
  body?: {
1837
1819
  /**
1838
1820
  * Address of the market
@@ -1845,9 +1827,9 @@ type PostV0FractionsSalesRejectData = {
1845
1827
  };
1846
1828
  path?: never;
1847
1829
  query?: never;
1848
- url: '/v0/fractions/sales/reject';
1830
+ url: '/fractions/sales/reject';
1849
1831
  };
1850
- type PostV0FractionsSalesRejectResponses = {
1832
+ type PostFractionsSalesRejectResponses = {
1851
1833
  /**
1852
1834
  * Returns transaction data for rejecting fractions
1853
1835
  */
@@ -1862,8 +1844,8 @@ type PostV0FractionsSalesRejectResponses = {
1862
1844
  };
1863
1845
  };
1864
1846
  };
1865
- type PostV0FractionsSalesRejectResponse = PostV0FractionsSalesRejectResponses[keyof PostV0FractionsSalesRejectResponses];
1866
- type PostV0FractionsSalesRecoverData = {
1847
+ type PostFractionsSalesRejectResponse = PostFractionsSalesRejectResponses[keyof PostFractionsSalesRejectResponses];
1848
+ type PostFractionsSalesRecoverData = {
1867
1849
  body?: {
1868
1850
  campaign: {
1869
1851
  /**
@@ -1894,9 +1876,9 @@ type PostV0FractionsSalesRecoverData = {
1894
1876
  };
1895
1877
  path?: never;
1896
1878
  query?: never;
1897
- url: '/v0/fractions/sales/recover';
1879
+ url: '/fractions/sales/recover';
1898
1880
  };
1899
- type PostV0FractionsSalesRecoverResponses = {
1881
+ type PostFractionsSalesRecoverResponses = {
1900
1882
  /**
1901
1883
  * Returns transaction data for recovering fractions
1902
1884
  */
@@ -1911,8 +1893,8 @@ type PostV0FractionsSalesRecoverResponses = {
1911
1893
  };
1912
1894
  };
1913
1895
  };
1914
- type PostV0FractionsSalesRecoverResponse = PostV0FractionsSalesRecoverResponses[keyof PostV0FractionsSalesRecoverResponses];
1915
- type PostV0FractionsSalesCompleteData = {
1896
+ type PostFractionsSalesRecoverResponse = PostFractionsSalesRecoverResponses[keyof PostFractionsSalesRecoverResponses];
1897
+ type PostFractionsSalesCompleteData = {
1916
1898
  body?: {
1917
1899
  campaign: {
1918
1900
  /**
@@ -1927,9 +1909,9 @@ type PostV0FractionsSalesCompleteData = {
1927
1909
  };
1928
1910
  path?: never;
1929
1911
  query?: never;
1930
- url: '/v0/fractions/sales/complete';
1912
+ url: '/fractions/sales/complete';
1931
1913
  };
1932
- type PostV0FractionsSalesCompleteResponses = {
1914
+ type PostFractionsSalesCompleteResponses = {
1933
1915
  /**
1934
1916
  * Returns transaction data for completing a sale
1935
1917
  */
@@ -1944,8 +1926,8 @@ type PostV0FractionsSalesCompleteResponses = {
1944
1926
  };
1945
1927
  };
1946
1928
  };
1947
- type PostV0FractionsSalesCompleteResponse = PostV0FractionsSalesCompleteResponses[keyof PostV0FractionsSalesCompleteResponses];
1948
- type PostV0FractionsSalesUnlockWrappedAssetsData = {
1929
+ type PostFractionsSalesCompleteResponse = PostFractionsSalesCompleteResponses[keyof PostFractionsSalesCompleteResponses];
1930
+ type PostFractionsSalesUnlockWrappedAssetsData = {
1949
1931
  body?: {
1950
1932
  campaign: {
1951
1933
  /**
@@ -1960,9 +1942,9 @@ type PostV0FractionsSalesUnlockWrappedAssetsData = {
1960
1942
  };
1961
1943
  path?: never;
1962
1944
  query?: never;
1963
- url: '/v0/fractions/sales/unlockWrappedAssets';
1945
+ url: '/fractions/sales/unlockWrappedAssets';
1964
1946
  };
1965
- type PostV0FractionsSalesUnlockWrappedAssetsResponses = {
1947
+ type PostFractionsSalesUnlockWrappedAssetsResponses = {
1966
1948
  /**
1967
1949
  * Returns transaction to unlock wrapped assets from a non-funded sale
1968
1950
  */
@@ -1977,8 +1959,8 @@ type PostV0FractionsSalesUnlockWrappedAssetsResponses = {
1977
1959
  };
1978
1960
  };
1979
1961
  };
1980
- type PostV0FractionsSalesUnlockWrappedAssetsResponse = PostV0FractionsSalesUnlockWrappedAssetsResponses[keyof PostV0FractionsSalesUnlockWrappedAssetsResponses];
1981
- type PostV0FractionsSalesPurchaseData = {
1962
+ type PostFractionsSalesUnlockWrappedAssetsResponse = PostFractionsSalesUnlockWrappedAssetsResponses[keyof PostFractionsSalesUnlockWrappedAssetsResponses];
1963
+ type PostFractionsSalesPurchaseData = {
1982
1964
  body?: {
1983
1965
  campaign: {
1984
1966
  /**
@@ -2006,9 +1988,9 @@ type PostV0FractionsSalesPurchaseData = {
2006
1988
  };
2007
1989
  path?: never;
2008
1990
  query?: never;
2009
- url: '/v0/fractions/sales/purchase';
1991
+ url: '/fractions/sales/purchase';
2010
1992
  };
2011
- type PostV0FractionsSalesPurchaseResponses = {
1993
+ type PostFractionsSalesPurchaseResponses = {
2012
1994
  /**
2013
1995
  * Returns transaction data for making a purchase
2014
1996
  */
@@ -2023,19 +2005,19 @@ type PostV0FractionsSalesPurchaseResponses = {
2023
2005
  };
2024
2006
  };
2025
2007
  };
2026
- type PostV0FractionsSalesPurchaseResponse = PostV0FractionsSalesPurchaseResponses[keyof PostV0FractionsSalesPurchaseResponses];
2027
- type PostV0FractionsSalesPurchaseStatisticsData = {
2028
- body?: {
2029
- chainId?: '1' | '11155111' | '84532' | '72080' | '31337';
2008
+ type PostFractionsSalesPurchaseResponse = PostFractionsSalesPurchaseResponses[keyof PostFractionsSalesPurchaseResponses];
2009
+ type GetFractionsSalesPurchaseStatisticsData = {
2010
+ body?: never;
2011
+ path?: never;
2012
+ query: {
2013
+ chainId: '1' | '11155111' | '84532' | '72080' | '31337';
2030
2014
  platform: string;
2031
2015
  campaignId: string;
2032
2016
  walletAddress: string;
2033
2017
  };
2034
- path?: never;
2035
- query?: never;
2036
- url: '/v0/fractions/sales/purchase/statistics';
2018
+ url: '/fractions/sales/purchase/statistics';
2037
2019
  };
2038
- type PostV0FractionsSalesPurchaseStatisticsResponses = {
2020
+ type GetFractionsSalesPurchaseStatisticsResponses = {
2039
2021
  /**
2040
2022
  * Aggregated purchase statistics for the specified campaign and investor.
2041
2023
  */
@@ -2050,24 +2032,20 @@ type PostV0FractionsSalesPurchaseStatisticsResponses = {
2050
2032
  }>;
2051
2033
  };
2052
2034
  };
2053
- type PostV0FractionsSalesPurchaseStatisticsResponse = PostV0FractionsSalesPurchaseStatisticsResponses[keyof PostV0FractionsSalesPurchaseStatisticsResponses];
2054
- type PostV0FractionsSalesWithdrawSearchData = {
2055
- body?: {
2056
- page: {
2057
- skip: number;
2058
- limit: number;
2059
- };
2060
- filter: {
2061
- chainId?: '1' | '11155111' | '84532' | '72080' | '31337';
2062
- platform?: string;
2063
- campaignId?: string;
2064
- };
2065
- };
2035
+ type GetFractionsSalesPurchaseStatisticsResponse = GetFractionsSalesPurchaseStatisticsResponses[keyof GetFractionsSalesPurchaseStatisticsResponses];
2036
+ type GetFractionsSalesWithdrawSearchData = {
2037
+ body?: never;
2066
2038
  path?: never;
2067
- query?: never;
2068
- url: '/v0/fractions/sales/withdraw/search';
2039
+ query: {
2040
+ skip: number;
2041
+ limit: number;
2042
+ chainId?: '1' | '11155111' | '84532' | '72080' | '31337';
2043
+ platform?: string;
2044
+ campaignId?: string;
2045
+ };
2046
+ url: '/fractions/sales/withdraw/search';
2069
2047
  };
2070
- type PostV0FractionsSalesWithdrawSearchResponses = {
2048
+ type GetFractionsSalesWithdrawSearchResponses = {
2071
2049
  /**
2072
2050
  * Returns list of withdrawal events within specified platforms and pools
2073
2051
  */
@@ -2138,8 +2116,8 @@ type PostV0FractionsSalesWithdrawSearchResponses = {
2138
2116
  updatedAt: string;
2139
2117
  }>;
2140
2118
  };
2141
- type PostV0FractionsSalesWithdrawSearchResponse = PostV0FractionsSalesWithdrawSearchResponses[keyof PostV0FractionsSalesWithdrawSearchResponses];
2142
- type PostV0FractionsSalesWithdrawPaymentTokenData = {
2119
+ type GetFractionsSalesWithdrawSearchResponse = GetFractionsSalesWithdrawSearchResponses[keyof GetFractionsSalesWithdrawSearchResponses];
2120
+ type PostFractionsSalesWithdrawPaymentTokenData = {
2143
2121
  body?: {
2144
2122
  campaign: {
2145
2123
  /**
@@ -2154,9 +2132,9 @@ type PostV0FractionsSalesWithdrawPaymentTokenData = {
2154
2132
  };
2155
2133
  path?: never;
2156
2134
  query?: never;
2157
- url: '/v0/fractions/sales/withdrawPaymentToken';
2135
+ url: '/fractions/sales/withdrawPaymentToken';
2158
2136
  };
2159
- type PostV0FractionsSalesWithdrawPaymentTokenResponses = {
2137
+ type PostFractionsSalesWithdrawPaymentTokenResponses = {
2160
2138
  /**
2161
2139
  * Returns transaction to withdraw payment tokens from a sale
2162
2140
  */
@@ -2171,8 +2149,8 @@ type PostV0FractionsSalesWithdrawPaymentTokenResponses = {
2171
2149
  };
2172
2150
  };
2173
2151
  };
2174
- type PostV0FractionsSalesWithdrawPaymentTokenResponse = PostV0FractionsSalesWithdrawPaymentTokenResponses[keyof PostV0FractionsSalesWithdrawPaymentTokenResponses];
2175
- type PostV0FractionsSalesReceiveFundsAfterNonFundedData = {
2152
+ type PostFractionsSalesWithdrawPaymentTokenResponse = PostFractionsSalesWithdrawPaymentTokenResponses[keyof PostFractionsSalesWithdrawPaymentTokenResponses];
2153
+ type PostFractionsSalesReceiveFundsAfterNonFundedData = {
2176
2154
  body?: {
2177
2155
  campaign: {
2178
2156
  /**
@@ -2191,9 +2169,9 @@ type PostV0FractionsSalesReceiveFundsAfterNonFundedData = {
2191
2169
  };
2192
2170
  path?: never;
2193
2171
  query?: never;
2194
- url: '/v0/fractions/sales/receiveFundsAfterNonFunded';
2172
+ url: '/fractions/sales/receiveFundsAfterNonFunded';
2195
2173
  };
2196
- type PostV0FractionsSalesReceiveFundsAfterNonFundedResponses = {
2174
+ type PostFractionsSalesReceiveFundsAfterNonFundedResponses = {
2197
2175
  /**
2198
2176
  * Returns transaction to receive funds after non funded state
2199
2177
  */
@@ -2208,8 +2186,8 @@ type PostV0FractionsSalesReceiveFundsAfterNonFundedResponses = {
2208
2186
  };
2209
2187
  };
2210
2188
  };
2211
- type PostV0FractionsSalesReceiveFundsAfterNonFundedResponse = PostV0FractionsSalesReceiveFundsAfterNonFundedResponses[keyof PostV0FractionsSalesReceiveFundsAfterNonFundedResponses];
2212
- type PostV0FractionsSalesReceiveFundsAfterNonFundedDiscountData = {
2189
+ type PostFractionsSalesReceiveFundsAfterNonFundedResponse = PostFractionsSalesReceiveFundsAfterNonFundedResponses[keyof PostFractionsSalesReceiveFundsAfterNonFundedResponses];
2190
+ type PostFractionsSalesReceiveFundsAfterNonFundedDiscountData = {
2213
2191
  body?: {
2214
2192
  campaign: {
2215
2193
  /**
@@ -2232,9 +2210,9 @@ type PostV0FractionsSalesReceiveFundsAfterNonFundedDiscountData = {
2232
2210
  };
2233
2211
  path?: never;
2234
2212
  query?: never;
2235
- url: '/v0/fractions/sales/receiveFundsAfterNonFundedDiscount';
2213
+ url: '/fractions/sales/receiveFundsAfterNonFundedDiscount';
2236
2214
  };
2237
- type PostV0FractionsSalesReceiveFundsAfterNonFundedDiscountResponses = {
2215
+ type PostFractionsSalesReceiveFundsAfterNonFundedDiscountResponses = {
2238
2216
  /**
2239
2217
  * Returns transaction to receive funds after non funded state with discount
2240
2218
  */
@@ -2249,8 +2227,8 @@ type PostV0FractionsSalesReceiveFundsAfterNonFundedDiscountResponses = {
2249
2227
  };
2250
2228
  };
2251
2229
  };
2252
- type PostV0FractionsSalesReceiveFundsAfterNonFundedDiscountResponse = PostV0FractionsSalesReceiveFundsAfterNonFundedDiscountResponses[keyof PostV0FractionsSalesReceiveFundsAfterNonFundedDiscountResponses];
2253
- type PostV0FractionsSalesCheckAndJumpToNonFundedData = {
2230
+ type PostFractionsSalesReceiveFundsAfterNonFundedDiscountResponse = PostFractionsSalesReceiveFundsAfterNonFundedDiscountResponses[keyof PostFractionsSalesReceiveFundsAfterNonFundedDiscountResponses];
2231
+ type PostFractionsSalesCheckAndJumpToNonFundedData = {
2254
2232
  body?: {
2255
2233
  campaign: {
2256
2234
  /**
@@ -2265,9 +2243,9 @@ type PostV0FractionsSalesCheckAndJumpToNonFundedData = {
2265
2243
  };
2266
2244
  path?: never;
2267
2245
  query?: never;
2268
- url: '/v0/fractions/sales/checkAndJumpToNonFunded';
2246
+ url: '/fractions/sales/checkAndJumpToNonFunded';
2269
2247
  };
2270
- type PostV0FractionsSalesCheckAndJumpToNonFundedResponses = {
2248
+ type PostFractionsSalesCheckAndJumpToNonFundedResponses = {
2271
2249
  /**
2272
2250
  * Returns transaction to check and jump to non funded state
2273
2251
  */
@@ -2282,8 +2260,8 @@ type PostV0FractionsSalesCheckAndJumpToNonFundedResponses = {
2282
2260
  };
2283
2261
  };
2284
2262
  };
2285
- type PostV0FractionsSalesCheckAndJumpToNonFundedResponse = PostV0FractionsSalesCheckAndJumpToNonFundedResponses[keyof PostV0FractionsSalesCheckAndJumpToNonFundedResponses];
2286
- type PostV0FractionsSalesReceiveNonPurchasedWrappedAssetsData = {
2263
+ type PostFractionsSalesCheckAndJumpToNonFundedResponse = PostFractionsSalesCheckAndJumpToNonFundedResponses[keyof PostFractionsSalesCheckAndJumpToNonFundedResponses];
2264
+ type PostFractionsSalesReceiveNonPurchasedWrappedAssetsData = {
2287
2265
  body?: {
2288
2266
  campaign: {
2289
2267
  /**
@@ -2298,9 +2276,9 @@ type PostV0FractionsSalesReceiveNonPurchasedWrappedAssetsData = {
2298
2276
  };
2299
2277
  path?: never;
2300
2278
  query?: never;
2301
- url: '/v0/fractions/sales/receiveNonPurchasedWrappedAssets';
2279
+ url: '/fractions/sales/receiveNonPurchasedWrappedAssets';
2302
2280
  };
2303
- type PostV0FractionsSalesReceiveNonPurchasedWrappedAssetsResponses = {
2281
+ type PostFractionsSalesReceiveNonPurchasedWrappedAssetsResponses = {
2304
2282
  /**
2305
2283
  * Returns transaction to receive non-purchased wrapped assets
2306
2284
  */
@@ -2315,8 +2293,8 @@ type PostV0FractionsSalesReceiveNonPurchasedWrappedAssetsResponses = {
2315
2293
  };
2316
2294
  };
2317
2295
  };
2318
- type PostV0FractionsSalesReceiveNonPurchasedWrappedAssetsResponse = PostV0FractionsSalesReceiveNonPurchasedWrappedAssetsResponses[keyof PostV0FractionsSalesReceiveNonPurchasedWrappedAssetsResponses];
2319
- type PostV0FractionsSalesVestingEditCliffData = {
2296
+ type PostFractionsSalesReceiveNonPurchasedWrappedAssetsResponse = PostFractionsSalesReceiveNonPurchasedWrappedAssetsResponses[keyof PostFractionsSalesReceiveNonPurchasedWrappedAssetsResponses];
2297
+ type PostFractionsSalesVestingEditCliffData = {
2320
2298
  body?: {
2321
2299
  /**
2322
2300
  * Address of the market
@@ -2333,9 +2311,9 @@ type PostV0FractionsSalesVestingEditCliffData = {
2333
2311
  };
2334
2312
  path?: never;
2335
2313
  query?: never;
2336
- url: '/v0/fractions/sales/vesting/editCliff';
2314
+ url: '/fractions/sales/vesting/editCliff';
2337
2315
  };
2338
- type PostV0FractionsSalesVestingEditCliffResponses = {
2316
+ type PostFractionsSalesVestingEditCliffResponses = {
2339
2317
  /**
2340
2318
  * Returns transaction data for editing the cliff date
2341
2319
  */
@@ -2350,8 +2328,8 @@ type PostV0FractionsSalesVestingEditCliffResponses = {
2350
2328
  };
2351
2329
  };
2352
2330
  };
2353
- type PostV0FractionsSalesVestingEditCliffResponse = PostV0FractionsSalesVestingEditCliffResponses[keyof PostV0FractionsSalesVestingEditCliffResponses];
2354
- type PostV0FractionsSalesVestingClaimData = {
2331
+ type PostFractionsSalesVestingEditCliffResponse = PostFractionsSalesVestingEditCliffResponses[keyof PostFractionsSalesVestingEditCliffResponses];
2332
+ type PostFractionsSalesVestingClaimData = {
2355
2333
  body?: {
2356
2334
  /**
2357
2335
  * Market contract address
@@ -2372,9 +2350,9 @@ type PostV0FractionsSalesVestingClaimData = {
2372
2350
  };
2373
2351
  path?: never;
2374
2352
  query?: never;
2375
- url: '/v0/fractions/sales/vesting/claim';
2353
+ url: '/fractions/sales/vesting/claim';
2376
2354
  };
2377
- type PostV0FractionsSalesVestingClaimResponses = {
2355
+ type PostFractionsSalesVestingClaimResponses = {
2378
2356
  /**
2379
2357
  * Returns transaction data for claiming vested tokens
2380
2358
  */
@@ -2389,19 +2367,19 @@ type PostV0FractionsSalesVestingClaimResponses = {
2389
2367
  };
2390
2368
  };
2391
2369
  };
2392
- type PostV0FractionsSalesVestingClaimResponse = PostV0FractionsSalesVestingClaimResponses[keyof PostV0FractionsSalesVestingClaimResponses];
2393
- type PostV0FractionsSalesVestingClaimStatisticsData = {
2394
- body?: {
2370
+ type PostFractionsSalesVestingClaimResponse = PostFractionsSalesVestingClaimResponses[keyof PostFractionsSalesVestingClaimResponses];
2371
+ type GetFractionsSalesVestingClaimStatisticsData = {
2372
+ body?: never;
2373
+ path?: never;
2374
+ query: {
2395
2375
  chainId: '1' | '11155111' | '84532' | '72080' | '31337';
2396
2376
  platform: string;
2397
2377
  campaignId: string;
2398
2378
  walletAddress: string;
2399
2379
  };
2400
- path?: never;
2401
- query?: never;
2402
- url: '/v0/fractions/sales/vesting/claim/statistics';
2380
+ url: '/fractions/sales/vesting/claim/statistics';
2403
2381
  };
2404
- type PostV0FractionsSalesVestingClaimStatisticsResponses = {
2382
+ type GetFractionsSalesVestingClaimStatisticsResponses = {
2405
2383
  /**
2406
2384
  * Returns claim statistics for the specified campaign and wallet address
2407
2385
  */
@@ -2417,17 +2395,17 @@ type PostV0FractionsSalesVestingClaimStatisticsResponses = {
2417
2395
  }>;
2418
2396
  };
2419
2397
  };
2420
- type PostV0FractionsSalesVestingClaimStatisticsResponse = PostV0FractionsSalesVestingClaimStatisticsResponses[keyof PostV0FractionsSalesVestingClaimStatisticsResponses];
2421
- type GetV0FractionsSalesVestingGetClaimVestedTokensEventData = {
2398
+ type GetFractionsSalesVestingClaimStatisticsResponse = GetFractionsSalesVestingClaimStatisticsResponses[keyof GetFractionsSalesVestingClaimStatisticsResponses];
2399
+ type GetFractionsSalesVestingGetClaimVestedTokensEventData = {
2422
2400
  body?: never;
2423
2401
  path?: never;
2424
2402
  query: {
2425
2403
  chainId: '1' | '11155111' | '84532' | '72080' | '31337';
2426
2404
  hash: string;
2427
2405
  };
2428
- url: '/v0/fractions/sales/vesting/getClaimVestedTokensEvent';
2406
+ url: '/fractions/sales/vesting/getClaimVestedTokensEvent';
2429
2407
  };
2430
- type GetV0FractionsSalesVestingGetClaimVestedTokensEventResponses = {
2408
+ type GetFractionsSalesVestingGetClaimVestedTokensEventResponses = {
2431
2409
  /**
2432
2410
  * Returns parsed event log
2433
2411
  */
@@ -2439,25 +2417,21 @@ type GetV0FractionsSalesVestingGetClaimVestedTokensEventResponses = {
2439
2417
  amountOfFractionsBurnt: string;
2440
2418
  };
2441
2419
  };
2442
- type GetV0FractionsSalesVestingGetClaimVestedTokensEventResponse = GetV0FractionsSalesVestingGetClaimVestedTokensEventResponses[keyof GetV0FractionsSalesVestingGetClaimVestedTokensEventResponses];
2443
- type PostV0FractionsSalesSearchData = {
2444
- body?: {
2445
- page: {
2446
- skip: number;
2447
- limit: number;
2448
- };
2449
- filter: {
2450
- chainId?: '1' | '11155111' | '84532' | '72080' | '31337';
2451
- owner?: string;
2452
- platform?: string;
2453
- campaignId?: string;
2454
- };
2455
- };
2420
+ type GetFractionsSalesVestingGetClaimVestedTokensEventResponse = GetFractionsSalesVestingGetClaimVestedTokensEventResponses[keyof GetFractionsSalesVestingGetClaimVestedTokensEventResponses];
2421
+ type GetFractionsSalesSearchData = {
2422
+ body?: never;
2456
2423
  path?: never;
2457
- query?: never;
2458
- url: '/v0/fractions/sales/search';
2424
+ query: {
2425
+ skip: number;
2426
+ limit: number;
2427
+ chainId?: '1' | '11155111' | '84532' | '72080' | '31337';
2428
+ owner?: string;
2429
+ platform?: string;
2430
+ campaignId?: string;
2431
+ };
2432
+ url: '/fractions/sales/search';
2459
2433
  };
2460
- type PostV0FractionsSalesSearchResponses = {
2434
+ type GetFractionsSalesSearchResponses = {
2461
2435
  /**
2462
2436
  * Returns list of sales events within specified platforms and pools
2463
2437
  */
@@ -2528,25 +2502,21 @@ type PostV0FractionsSalesSearchResponses = {
2528
2502
  updatedAt: string;
2529
2503
  }>;
2530
2504
  };
2531
- type PostV0FractionsSalesSearchResponse = PostV0FractionsSalesSearchResponses[keyof PostV0FractionsSalesSearchResponses];
2532
- type PostV0FractionsSalesActivityData = {
2533
- body?: {
2534
- page: {
2535
- skip: number;
2536
- limit: number;
2537
- };
2538
- filter: {
2539
- chainId?: '1' | '11155111' | '84532' | '72080' | '31337';
2540
- platform?: string;
2541
- campaignId?: string;
2542
- operationType?: 'created' | 'status_update' | 'purchase' | 'claim' | 'withdraw' | 'withdraw_non_wrapped' | 'refund' | 'epoch_purchase' | 'epoch_exchange' | 'withdrawal_requested' | 'withdrawal_completed' | 'epoch_price_set';
2543
- };
2544
- };
2505
+ type GetFractionsSalesSearchResponse = GetFractionsSalesSearchResponses[keyof GetFractionsSalesSearchResponses];
2506
+ type GetFractionsSalesActivityData = {
2507
+ body?: never;
2545
2508
  path?: never;
2546
- query?: never;
2547
- url: '/v0/fractions/sales/activity';
2509
+ query: {
2510
+ skip: number;
2511
+ limit: number;
2512
+ chainId?: '1' | '11155111' | '84532' | '72080' | '31337';
2513
+ platform?: string;
2514
+ campaignId?: string;
2515
+ operationType?: 'created' | 'status_update' | 'purchase' | 'claim' | 'withdraw' | 'withdraw_non_wrapped' | 'refund' | 'epoch_purchase' | 'epoch_exchange' | 'withdrawal_requested' | 'withdrawal_completed' | 'epoch_price_set';
2516
+ };
2517
+ url: '/fractions/sales/activity';
2548
2518
  };
2549
- type PostV0FractionsSalesActivityResponses = {
2519
+ type GetFractionsSalesActivityResponses = {
2550
2520
  /**
2551
2521
  * Returns list of activity events within specified platforms and pools
2552
2522
  */
@@ -2597,18 +2567,18 @@ type PostV0FractionsSalesActivityResponses = {
2597
2567
  };
2598
2568
  }>;
2599
2569
  };
2600
- type PostV0FractionsSalesActivityResponse = PostV0FractionsSalesActivityResponses[keyof PostV0FractionsSalesActivityResponses];
2601
- type PostV0FractionsSalesStatisticsData = {
2602
- body?: {
2570
+ type GetFractionsSalesActivityResponse = GetFractionsSalesActivityResponses[keyof GetFractionsSalesActivityResponses];
2571
+ type GetFractionsSalesStatisticsData = {
2572
+ body?: never;
2573
+ path?: never;
2574
+ query: {
2603
2575
  chainId: '1' | '11155111' | '84532' | '72080' | '31337';
2604
2576
  platform: string;
2605
2577
  campaignId: string;
2606
2578
  };
2607
- path?: never;
2608
- query?: never;
2609
- url: '/v0/fractions/sales/statistics';
2579
+ url: '/fractions/sales/statistics';
2610
2580
  };
2611
- type PostV0FractionsSalesStatisticsResponses = {
2581
+ type GetFractionsSalesStatisticsResponses = {
2612
2582
  200: {
2613
2583
  chainId: '1' | '11155111' | '84532' | '72080' | '31337';
2614
2584
  platform: string;
@@ -2620,8 +2590,8 @@ type PostV0FractionsSalesStatisticsResponses = {
2620
2590
  }>;
2621
2591
  };
2622
2592
  };
2623
- type PostV0FractionsSalesStatisticsResponse = PostV0FractionsSalesStatisticsResponses[keyof PostV0FractionsSalesStatisticsResponses];
2624
- type PostV0FractionsSalesSetFeeCapLimitData = {
2593
+ type GetFractionsSalesStatisticsResponse = GetFractionsSalesStatisticsResponses[keyof GetFractionsSalesStatisticsResponses];
2594
+ type PostFractionsSalesSetFeeCapLimitData = {
2625
2595
  body?: {
2626
2596
  campaign: {
2627
2597
  /**
@@ -2640,9 +2610,9 @@ type PostV0FractionsSalesSetFeeCapLimitData = {
2640
2610
  };
2641
2611
  path?: never;
2642
2612
  query?: never;
2643
- url: '/v0/fractions/sales/setFeeCapLimit';
2613
+ url: '/fractions/sales/setFeeCapLimit';
2644
2614
  };
2645
- type PostV0FractionsSalesSetFeeCapLimitResponses = {
2615
+ type PostFractionsSalesSetFeeCapLimitResponses = {
2646
2616
  /**
2647
2617
  * Returns transaction data for setting the fee cap limit
2648
2618
  */
@@ -2657,17 +2627,17 @@ type PostV0FractionsSalesSetFeeCapLimitResponses = {
2657
2627
  };
2658
2628
  };
2659
2629
  };
2660
- type PostV0FractionsSalesSetFeeCapLimitResponse = PostV0FractionsSalesSetFeeCapLimitResponses[keyof PostV0FractionsSalesSetFeeCapLimitResponses];
2661
- type GetV0FractionsSalesGetWithdrawEventData = {
2630
+ type PostFractionsSalesSetFeeCapLimitResponse = PostFractionsSalesSetFeeCapLimitResponses[keyof PostFractionsSalesSetFeeCapLimitResponses];
2631
+ type GetFractionsSalesGetWithdrawEventData = {
2662
2632
  body?: never;
2663
2633
  path?: never;
2664
2634
  query: {
2665
2635
  chainId: '1' | '11155111' | '84532' | '72080' | '31337';
2666
2636
  hash: string;
2667
2637
  };
2668
- url: '/v0/fractions/sales/getWithdrawEvent';
2638
+ url: '/fractions/sales/getWithdrawEvent';
2669
2639
  };
2670
- type GetV0FractionsSalesGetWithdrawEventResponses = {
2640
+ type GetFractionsSalesGetWithdrawEventResponses = {
2671
2641
  /**
2672
2642
  * Returns parsed event log
2673
2643
  */
@@ -2677,8 +2647,8 @@ type GetV0FractionsSalesGetWithdrawEventResponses = {
2677
2647
  packetsReceived: string;
2678
2648
  };
2679
2649
  };
2680
- type GetV0FractionsSalesGetWithdrawEventResponse = GetV0FractionsSalesGetWithdrawEventResponses[keyof GetV0FractionsSalesGetWithdrawEventResponses];
2681
- type GetV0FractionsSalesGetVaultAddressData = {
2650
+ type GetFractionsSalesGetWithdrawEventResponse = GetFractionsSalesGetWithdrawEventResponses[keyof GetFractionsSalesGetWithdrawEventResponses];
2651
+ type GetFractionsSalesGetVaultAddressData = {
2682
2652
  body?: never;
2683
2653
  path?: never;
2684
2654
  query: {
@@ -2686,18 +2656,18 @@ type GetV0FractionsSalesGetVaultAddressData = {
2686
2656
  platform: string;
2687
2657
  campaign: string;
2688
2658
  };
2689
- url: '/v0/fractions/sales/getVaultAddress';
2659
+ url: '/fractions/sales/getVaultAddress';
2690
2660
  };
2691
- type GetV0FractionsSalesGetVaultAddressResponses = {
2661
+ type GetFractionsSalesGetVaultAddressResponses = {
2692
2662
  /**
2693
2663
  * Returns address of vault
2694
2664
  */
2695
2665
  200: {
2696
- vault: string;
2666
+ vaultAddress: string;
2697
2667
  };
2698
2668
  };
2699
- type GetV0FractionsSalesGetVaultAddressResponse = GetV0FractionsSalesGetVaultAddressResponses[keyof GetV0FractionsSalesGetVaultAddressResponses];
2700
- type PostV0FractionsSalesApproveWrapperData = {
2669
+ type GetFractionsSalesGetVaultAddressResponse = GetFractionsSalesGetVaultAddressResponses[keyof GetFractionsSalesGetVaultAddressResponses];
2670
+ type PostFractionsSalesApproveWrapperData = {
2701
2671
  body?: {
2702
2672
  /**
2703
2673
  * Address of the market (diamond proxy)
@@ -2710,9 +2680,9 @@ type PostV0FractionsSalesApproveWrapperData = {
2710
2680
  };
2711
2681
  path?: never;
2712
2682
  query?: never;
2713
- url: '/v0/fractions/sales/approveWrapper';
2683
+ url: '/fractions/sales/approveWrapper';
2714
2684
  };
2715
- type PostV0FractionsSalesApproveWrapperResponses = {
2685
+ type PostFractionsSalesApproveWrapperResponses = {
2716
2686
  /**
2717
2687
  * Returns transaction data for approving a wrapper
2718
2688
  */
@@ -2727,8 +2697,8 @@ type PostV0FractionsSalesApproveWrapperResponses = {
2727
2697
  };
2728
2698
  };
2729
2699
  };
2730
- type PostV0FractionsSalesApproveWrapperResponse = PostV0FractionsSalesApproveWrapperResponses[keyof PostV0FractionsSalesApproveWrapperResponses];
2731
- type PostV0FractionsSigNonceData = {
2700
+ type PostFractionsSalesApproveWrapperResponse = PostFractionsSalesApproveWrapperResponses[keyof PostFractionsSalesApproveWrapperResponses];
2701
+ type PostFractionsSigNonceData = {
2732
2702
  body?: {
2733
2703
  marketAddress: string;
2734
2704
  userAddress: string;
@@ -2736,20 +2706,18 @@ type PostV0FractionsSigNonceData = {
2736
2706
  };
2737
2707
  path?: never;
2738
2708
  query?: never;
2739
- url: '/v0/fractions/sig/nonce';
2709
+ url: '/fractions/sig/nonce';
2740
2710
  };
2741
- type PostV0FractionsSigNonceResponses = {
2711
+ type PostFractionsSigNonceResponses = {
2742
2712
  /**
2743
2713
  * Returns transaction data for approving a sale
2744
2714
  */
2745
2715
  200: {
2746
- marketAddress: string;
2747
- userAddress: string;
2748
- chainId: '1' | '11155111' | '84532' | '72080' | '31337';
2716
+ nonce: string;
2749
2717
  };
2750
2718
  };
2751
- type PostV0FractionsSigNonceResponse = PostV0FractionsSigNonceResponses[keyof PostV0FractionsSigNonceResponses];
2752
- type PostV0FractionsSigAuthDataData = {
2719
+ type PostFractionsSigNonceResponse = PostFractionsSigNonceResponses[keyof PostFractionsSigNonceResponses];
2720
+ type PostFractionsSigAuthDataData = {
2753
2721
  body?: {
2754
2722
  marketAddress: string;
2755
2723
  userAddress: string;
@@ -2760,31 +2728,27 @@ type PostV0FractionsSigAuthDataData = {
2760
2728
  };
2761
2729
  path?: never;
2762
2730
  query?: never;
2763
- url: '/v0/fractions/sig/authData';
2731
+ url: '/fractions/sig/authData';
2764
2732
  };
2765
- type PostV0FractionsSigAuthDataResponses = {
2733
+ type PostFractionsSigAuthDataResponses = {
2766
2734
  /**
2767
2735
  * Returns TX auth data
2768
2736
  */
2769
2737
  200: {
2770
- marketAddress: string;
2771
- userAddress: string;
2772
- chainId: '1' | '11155111' | '84532' | '72080' | '31337';
2773
- nonce: string;
2738
+ messageToSign: string;
2774
2739
  blockExpiration: string;
2775
- callData: string;
2776
2740
  };
2777
2741
  };
2778
- type PostV0FractionsSigAuthDataResponse = PostV0FractionsSigAuthDataResponses[keyof PostV0FractionsSigAuthDataResponses];
2779
- type PostV0FractionsStatisticsHoldersData = {
2780
- body?: {
2742
+ type PostFractionsSigAuthDataResponse = PostFractionsSigAuthDataResponses[keyof PostFractionsSigAuthDataResponses];
2743
+ type GetFractionsStatisticsHoldersData = {
2744
+ body?: never;
2745
+ path?: never;
2746
+ query?: {
2781
2747
  chainId?: '1' | '11155111' | '84532' | '72080' | '31337';
2782
2748
  };
2783
- path?: never;
2784
- query?: never;
2785
- url: '/v0/fractions/statistics/holders';
2749
+ url: '/fractions/statistics/holders';
2786
2750
  };
2787
- type PostV0FractionsStatisticsHoldersResponses = {
2751
+ type GetFractionsStatisticsHoldersResponses = {
2788
2752
  /**
2789
2753
  * Number of unique fraction holders
2790
2754
  */
@@ -2794,16 +2758,16 @@ type PostV0FractionsStatisticsHoldersResponses = {
2794
2758
  [key: string]: string;
2795
2759
  };
2796
2760
  };
2797
- type PostV0FractionsStatisticsHoldersResponse = PostV0FractionsStatisticsHoldersResponses[keyof PostV0FractionsStatisticsHoldersResponses];
2798
- type PostV0FractionsStatisticsSalesData = {
2799
- body?: {
2761
+ type GetFractionsStatisticsHoldersResponse = GetFractionsStatisticsHoldersResponses[keyof GetFractionsStatisticsHoldersResponses];
2762
+ type GetFractionsStatisticsSalesData = {
2763
+ body?: never;
2764
+ path?: never;
2765
+ query?: {
2800
2766
  chainId?: '1' | '11155111' | '84532' | '72080' | '31337';
2801
2767
  };
2802
- path?: never;
2803
- query?: never;
2804
- url: '/v0/fractions/statistics/sales';
2768
+ url: '/fractions/statistics/sales';
2805
2769
  };
2806
- type PostV0FractionsStatisticsSalesResponses = {
2770
+ type GetFractionsStatisticsSalesResponses = {
2807
2771
  /**
2808
2772
  * Number of successful fraction sales
2809
2773
  */
@@ -2813,16 +2777,16 @@ type PostV0FractionsStatisticsSalesResponses = {
2813
2777
  [key: string]: string;
2814
2778
  };
2815
2779
  };
2816
- type PostV0FractionsStatisticsSalesResponse = PostV0FractionsStatisticsSalesResponses[keyof PostV0FractionsStatisticsSalesResponses];
2817
- type PostV0FractionsStatisticsTtvData = {
2818
- body?: {
2780
+ type GetFractionsStatisticsSalesResponse = GetFractionsStatisticsSalesResponses[keyof GetFractionsStatisticsSalesResponses];
2781
+ type GetFractionsStatisticsTtvData = {
2782
+ body?: never;
2783
+ path?: never;
2784
+ query?: {
2819
2785
  chainId?: '1' | '11155111' | '84532' | '72080' | '31337';
2820
2786
  };
2821
- path?: never;
2822
- query?: never;
2823
- url: '/v0/fractions/statistics/ttv';
2787
+ url: '/fractions/statistics/ttv';
2824
2788
  };
2825
- type PostV0FractionsStatisticsTtvResponses = {
2789
+ type GetFractionsStatisticsTtvResponses = {
2826
2790
  /**
2827
2791
  * Total Tokenized Value in USDC
2828
2792
  */
@@ -2832,16 +2796,16 @@ type PostV0FractionsStatisticsTtvResponses = {
2832
2796
  [key: string]: string;
2833
2797
  };
2834
2798
  };
2835
- type PostV0FractionsStatisticsTtvResponse = PostV0FractionsStatisticsTtvResponses[keyof PostV0FractionsStatisticsTtvResponses];
2836
- type PostV0FractionsStatisticsData = {
2837
- body?: {
2799
+ type GetFractionsStatisticsTtvResponse = GetFractionsStatisticsTtvResponses[keyof GetFractionsStatisticsTtvResponses];
2800
+ type GetFractionsStatisticsData = {
2801
+ body?: never;
2802
+ path?: never;
2803
+ query?: {
2838
2804
  chainId?: '1' | '11155111' | '84532' | '72080' | '31337';
2839
2805
  };
2840
- path?: never;
2841
- query?: never;
2842
- url: '/v0/fractions/statistics';
2806
+ url: '/fractions/statistics';
2843
2807
  };
2844
- type PostV0FractionsStatisticsResponses = {
2808
+ type GetFractionsStatisticsResponses = {
2845
2809
  /**
2846
2810
  * Network statistics including holders, sales, and TTV
2847
2811
  */
@@ -2859,19 +2823,19 @@ type PostV0FractionsStatisticsResponses = {
2859
2823
  };
2860
2824
  };
2861
2825
  };
2862
- type PostV0FractionsStatisticsResponse = PostV0FractionsStatisticsResponses[keyof PostV0FractionsStatisticsResponses];
2863
- type PostGeneralEstimateGasData = {
2864
- body?: {
2826
+ type GetFractionsStatisticsResponse = GetFractionsStatisticsResponses[keyof GetFractionsStatisticsResponses];
2827
+ type GetGeneralEstimateGasData = {
2828
+ body?: never;
2829
+ path?: never;
2830
+ query: {
2865
2831
  chainId: '11155111' | '84532' | '31337';
2866
2832
  data: string;
2867
2833
  from: string;
2868
2834
  to: string;
2869
2835
  };
2870
- path?: never;
2871
- query?: never;
2872
2836
  url: '/general/estimateGas';
2873
2837
  };
2874
- type PostGeneralEstimateGasResponses = {
2838
+ type GetGeneralEstimateGasResponses = {
2875
2839
  /**
2876
2840
  * Returns estimated gas or estimation error
2877
2841
  */
@@ -2879,7 +2843,7 @@ type PostGeneralEstimateGasResponses = {
2879
2843
  value: string;
2880
2844
  };
2881
2845
  };
2882
- type PostGeneralEstimateGasResponse = PostGeneralEstimateGasResponses[keyof PostGeneralEstimateGasResponses];
2846
+ type GetGeneralEstimateGasResponse = GetGeneralEstimateGasResponses[keyof GetGeneralEstimateGasResponses];
2883
2847
  type GetGeneralBalanceData = {
2884
2848
  body?: never;
2885
2849
  path?: never;
@@ -2899,17 +2863,17 @@ type GetGeneralBalanceResponses = {
2899
2863
  };
2900
2864
  };
2901
2865
  type GetGeneralBalanceResponse = GetGeneralBalanceResponses[keyof GetGeneralBalanceResponses];
2902
- type PostGeneralBalancesData = {
2903
- body?: {
2866
+ type GetGeneralBalancesData = {
2867
+ body?: never;
2868
+ path?: never;
2869
+ query: {
2904
2870
  chainId: '1' | '11155111' | '84532' | '72080' | '31337';
2905
2871
  address: string;
2906
2872
  contracts: Array<string>;
2907
2873
  };
2908
- path?: never;
2909
- query?: never;
2910
2874
  url: '/general/balances';
2911
2875
  };
2912
- type PostGeneralBalancesResponses = {
2876
+ type GetGeneralBalancesResponses = {
2913
2877
  /**
2914
2878
  * Returns ERC20 balances
2915
2879
  */
@@ -2924,37 +2888,36 @@ type PostGeneralBalancesResponses = {
2924
2888
  quantityOut: string;
2925
2889
  }>;
2926
2890
  };
2927
- type PostGeneralBalancesResponse = PostGeneralBalancesResponses[keyof PostGeneralBalancesResponses];
2928
- type PostGeneralSearchBalancesData = {
2929
- body?: {
2891
+ type GetGeneralBalancesResponse = GetGeneralBalancesResponses[keyof GetGeneralBalancesResponses];
2892
+ type GetGeneralSearchBalancesData = {
2893
+ body?: never;
2894
+ path?: never;
2895
+ query: {
2930
2896
  chainId: '1' | '11155111' | '84532' | '72080' | '31337';
2931
2897
  address: string;
2932
2898
  };
2933
- path?: never;
2934
- query?: never;
2935
2899
  url: '/general/searchBalances';
2936
2900
  };
2937
- type PostGeneralSearchBalancesResponses = {
2901
+ type GetGeneralSearchBalancesResponses = {
2938
2902
  /**
2939
2903
  * Returns ERC20 balances of a wallet
2940
2904
  */
2941
2905
  200: {
2942
2906
  balances: Array<{
2943
- address: string;
2944
- totalBalance: string;
2945
- tokenId?: string;
2946
- name: string | null;
2947
- symbol: string | null;
2948
- decimals: string | null;
2949
- quantityIn: string;
2950
- quantityOut: string;
2907
+ tokenAddress: string;
2908
+ balance: string;
2909
+ decimals: number;
2910
+ symbol: string;
2911
+ name: string;
2912
+ tokenId: string | null;
2913
+ type: ('ERC_1155' | 'ERC_721' | 'ERC_20') | null;
2951
2914
  }>;
2952
2915
  totalItems: number;
2953
2916
  totalPages: number;
2954
2917
  pageNumber: number;
2955
2918
  };
2956
2919
  };
2957
- type PostGeneralSearchBalancesResponse = PostGeneralSearchBalancesResponses[keyof PostGeneralSearchBalancesResponses];
2920
+ type GetGeneralSearchBalancesResponse = GetGeneralSearchBalancesResponses[keyof GetGeneralSearchBalancesResponses];
2958
2921
  type PostIssuanceErc20DeployData = {
2959
2922
  body?: {
2960
2923
  chainId: '11155111' | '84532' | '72080';
@@ -3136,19 +3099,19 @@ type GetIssuanceErc20DeployGatedSimpleResponses = {
3136
3099
  };
3137
3100
  };
3138
3101
  type GetIssuanceErc20DeployGatedSimpleResponse = GetIssuanceErc20DeployGatedSimpleResponses[keyof GetIssuanceErc20DeployGatedSimpleResponses];
3139
- type PostIssuanceErc20GetInitDataData = {
3140
- body?: {
3102
+ type GetIssuanceErc20GetInitDataData = {
3103
+ body?: never;
3104
+ path?: never;
3105
+ query: {
3141
3106
  tokenName: string;
3142
3107
  tokenSymbol: string;
3143
3108
  cap: string;
3144
3109
  defaultAdmin: string;
3145
3110
  minter: string;
3146
3111
  };
3147
- path?: never;
3148
- query?: never;
3149
3112
  url: '/issuance/erc20/getInitData';
3150
3113
  };
3151
- type PostIssuanceErc20GetInitDataResponses = {
3114
+ type GetIssuanceErc20GetInitDataResponses = {
3152
3115
  /**
3153
3116
  * Init function call data in hex format
3154
3117
  */
@@ -3156,7 +3119,7 @@ type PostIssuanceErc20GetInitDataResponses = {
3156
3119
  data: string;
3157
3120
  };
3158
3121
  };
3159
- type PostIssuanceErc20GetInitDataResponse = PostIssuanceErc20GetInitDataResponses[keyof PostIssuanceErc20GetInitDataResponses];
3122
+ type GetIssuanceErc20GetInitDataResponse = GetIssuanceErc20GetInitDataResponses[keyof GetIssuanceErc20GetInitDataResponses];
3160
3123
  type GetIssuanceErc20GetDeployEventGatedSimpleData = {
3161
3124
  body?: never;
3162
3125
  path?: never;
@@ -4351,22 +4314,21 @@ type IApiConfig = {
4351
4314
  declare const api: {
4352
4315
  createClient: (config: IApiConfig, overrides?: Config) => _hey_api_client_fetch.Client;
4353
4316
  general: {
4354
- searchBalances: <ThrowOnError extends boolean = false>(options?: Options<PostGeneralSearchBalancesData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4317
+ searchBalances: <ThrowOnError extends boolean = false>(options: Options<GetGeneralSearchBalancesData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4355
4318
  balances: Array<{
4356
- address: string;
4357
- totalBalance: string;
4358
- tokenId?: string;
4359
- name: string | null;
4360
- symbol: string | null;
4361
- decimals: string | null;
4362
- quantityIn: string;
4363
- quantityOut: string;
4319
+ tokenAddress: string;
4320
+ balance: string;
4321
+ decimals: number;
4322
+ symbol: string;
4323
+ name: string;
4324
+ tokenId: string | null;
4325
+ type: ("ERC_1155" | "ERC_721" | "ERC_20") | null;
4364
4326
  }>;
4365
4327
  totalItems: number;
4366
4328
  totalPages: number;
4367
4329
  pageNumber: number;
4368
4330
  }, unknown, ThrowOnError>;
4369
- getBalances: <ThrowOnError extends boolean = false>(options?: Options<PostGeneralBalancesData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4331
+ getBalances: <ThrowOnError extends boolean = false>(options: Options<GetGeneralBalancesData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4370
4332
  address: string;
4371
4333
  totalBalance: string;
4372
4334
  tokenId?: string;
@@ -4380,7 +4342,7 @@ declare const api: {
4380
4342
  address: string;
4381
4343
  balance: string;
4382
4344
  }, unknown, ThrowOnError>;
4383
- estimateGas: <ThrowOnError extends boolean = false>(options?: Options<PostGeneralEstimateGasData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4345
+ estimateGas: <ThrowOnError extends boolean = false>(options: Options<GetGeneralEstimateGasData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4384
4346
  value: string;
4385
4347
  }, unknown, ThrowOnError>;
4386
4348
  };
@@ -4390,7 +4352,7 @@ declare const api: {
4390
4352
  */
4391
4353
  stakingTemplates: {
4392
4354
  reputation: {
4393
- createPlatform: <ThrowOnError extends boolean = false>(options?: Options<PostStakingTemplatesReputationV0CreatePlatformData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4355
+ createPlatform: <ThrowOnError extends boolean = false>(options?: Options<PostStakingTemplatesReputationCreatePlatformData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4394
4356
  data: string;
4395
4357
  to: string;
4396
4358
  details: {
@@ -4400,7 +4362,7 @@ declare const api: {
4400
4362
  args: Array<unknown>;
4401
4363
  };
4402
4364
  }, unknown, ThrowOnError>;
4403
- createPool: <ThrowOnError extends boolean = false>(options?: Options<PostStakingTemplatesReputationV0CreatePoolData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4365
+ createPool: <ThrowOnError extends boolean = false>(options?: Options<PostStakingTemplatesReputationCreatePoolData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4404
4366
  data: string;
4405
4367
  to: string;
4406
4368
  details: {
@@ -4410,7 +4372,7 @@ declare const api: {
4410
4372
  args: Array<unknown>;
4411
4373
  };
4412
4374
  }, unknown, ThrowOnError>;
4413
- getReward: <ThrowOnError extends boolean = false>(options?: Options<PostStakingTemplatesReputationV0GetRewardData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4375
+ getReward: <ThrowOnError extends boolean = false>(options?: Options<PostStakingTemplatesReputationGetRewardData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4414
4376
  data: string;
4415
4377
  to: string;
4416
4378
  details: {
@@ -4420,7 +4382,7 @@ declare const api: {
4420
4382
  args: Array<unknown>;
4421
4383
  };
4422
4384
  }, unknown, ThrowOnError>;
4423
- partialUnstake: <ThrowOnError extends boolean = false>(options?: Options<PostStakingTemplatesReputationV0PartialUnstakeData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4385
+ partialUnstake: <ThrowOnError extends boolean = false>(options?: Options<PostStakingTemplatesReputationPartialUnstakeData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4424
4386
  data: string;
4425
4387
  to: string;
4426
4388
  details: {
@@ -4430,7 +4392,7 @@ declare const api: {
4430
4392
  args: Array<unknown>;
4431
4393
  };
4432
4394
  }, unknown, ThrowOnError>;
4433
- restake: <ThrowOnError extends boolean = false>(options?: Options<PostStakingTemplatesReputationV0RestakeData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4395
+ restake: <ThrowOnError extends boolean = false>(options?: Options<PostStakingTemplatesReputationRestakeData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4434
4396
  data: string;
4435
4397
  to: string;
4436
4398
  details: {
@@ -4440,7 +4402,7 @@ declare const api: {
4440
4402
  args: Array<unknown>;
4441
4403
  };
4442
4404
  }, unknown, ThrowOnError>;
4443
- stake: <ThrowOnError extends boolean = false>(options?: Options<PostStakingTemplatesReputationV0StakeData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4405
+ stake: <ThrowOnError extends boolean = false>(options?: Options<PostStakingTemplatesReputationStakeData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4444
4406
  data: string;
4445
4407
  to: string;
4446
4408
  details: {
@@ -4450,7 +4412,7 @@ declare const api: {
4450
4412
  args: Array<unknown>;
4451
4413
  };
4452
4414
  }, unknown, ThrowOnError>;
4453
- unstake: <ThrowOnError extends boolean = false>(options?: Options<PostStakingTemplatesReputationV0UnstakeData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4415
+ unstake: <ThrowOnError extends boolean = false>(options?: Options<PostStakingTemplatesReputationUnstakeData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4454
4416
  data: string;
4455
4417
  to: string;
4456
4418
  details: {
@@ -4460,24 +4422,27 @@ declare const api: {
4460
4422
  args: Array<unknown>;
4461
4423
  };
4462
4424
  }, unknown, ThrowOnError>;
4463
- getCreatePoolEvent: <ThrowOnError extends boolean = false>(options: Options<GetStakingTemplatesReputationV0GetCreatePoolEventData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4425
+ getCreatePoolEvent: <ThrowOnError extends boolean = false>(options: Options<GetStakingTemplatesReputationGetCreatePoolEventData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4464
4426
  poolId: string;
4465
4427
  rewardAssetHandler: string;
4466
4428
  inputAssetKeeper: string;
4467
4429
  }, unknown, ThrowOnError>;
4468
- getPlatformDeployEvent: <ThrowOnError extends boolean = false>(options: Options<GetStakingTemplatesReputationV0GetPlatformDeployEventData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4430
+ getPlatformDeployEvent: <ThrowOnError extends boolean = false>(options: Options<GetStakingTemplatesReputationGetPlatformDeployEventData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4469
4431
  diamondAddress: string;
4470
4432
  admin: string;
4471
4433
  }, unknown, ThrowOnError>;
4472
- getStakeEvent: <ThrowOnError extends boolean = false>(options: Options<GetStakingTemplatesReputationV0GetStakeEventData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4434
+ getStakeEvent: <ThrowOnError extends boolean = false>(options: Options<GetStakingTemplatesReputationGetStakeEventData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4473
4435
  poolId: string;
4474
4436
  stakeId: string;
4475
4437
  operator: string;
4476
4438
  owner: string;
4439
+ inputPacketsStaked: string;
4440
+ stakeStartActiveTimestamp: string;
4441
+ unlockTimestamp: string;
4477
4442
  }, unknown, ThrowOnError>;
4478
4443
  };
4479
4444
  reputationLock: {
4480
- createPlatform: <ThrowOnError extends boolean = false>(options?: Options<PostStakingTemplatesReputationLockV0CreatePlatformData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4445
+ createPlatform: <ThrowOnError extends boolean = false>(options?: Options<PostStakingTemplatesReputationLockCreatePlatformData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4481
4446
  data: string;
4482
4447
  to: string;
4483
4448
  details: {
@@ -4487,7 +4452,7 @@ declare const api: {
4487
4452
  args: Array<unknown>;
4488
4453
  };
4489
4454
  }, unknown, ThrowOnError>;
4490
- createPool: <ThrowOnError extends boolean = false>(options?: Options<PostStakingTemplatesReputationLockV0CreatePoolData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4455
+ createPool: <ThrowOnError extends boolean = false>(options?: Options<PostStakingTemplatesReputationLockCreatePoolData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4491
4456
  data: string;
4492
4457
  to: string;
4493
4458
  details: {
@@ -4497,7 +4462,7 @@ declare const api: {
4497
4462
  args: Array<unknown>;
4498
4463
  };
4499
4464
  }, unknown, ThrowOnError>;
4500
- getReward: <ThrowOnError extends boolean = false>(options?: Options<PostStakingTemplatesReputationLockV0GetRewardData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4465
+ getReward: <ThrowOnError extends boolean = false>(options?: Options<PostStakingTemplatesReputationLockGetRewardData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4501
4466
  data: string;
4502
4467
  to: string;
4503
4468
  details: {
@@ -4507,7 +4472,7 @@ declare const api: {
4507
4472
  args: Array<unknown>;
4508
4473
  };
4509
4474
  }, unknown, ThrowOnError>;
4510
- partialUnstake: <ThrowOnError extends boolean = false>(options?: Options<PostStakingTemplatesReputationLockV0PartialUnstakeData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4475
+ partialUnstake: <ThrowOnError extends boolean = false>(options?: Options<PostStakingTemplatesReputationLockPartialUnstakeData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4511
4476
  data: string;
4512
4477
  to: string;
4513
4478
  details: {
@@ -4517,7 +4482,7 @@ declare const api: {
4517
4482
  args: Array<unknown>;
4518
4483
  };
4519
4484
  }, unknown, ThrowOnError>;
4520
- restake: <ThrowOnError extends boolean = false>(options?: Options<PostStakingTemplatesReputationLockV0RestakeData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4485
+ restake: <ThrowOnError extends boolean = false>(options?: Options<PostStakingTemplatesReputationLockRestakeData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4521
4486
  data: string;
4522
4487
  to: string;
4523
4488
  details: {
@@ -4527,7 +4492,7 @@ declare const api: {
4527
4492
  args: Array<unknown>;
4528
4493
  };
4529
4494
  }, unknown, ThrowOnError>;
4530
- stake: <ThrowOnError extends boolean = false>(options?: Options<PostStakingTemplatesReputationLockV0StakeData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4495
+ stake: <ThrowOnError extends boolean = false>(options?: Options<PostStakingTemplatesReputationLockStakeData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4531
4496
  data: string;
4532
4497
  to: string;
4533
4498
  details: {
@@ -4537,7 +4502,7 @@ declare const api: {
4537
4502
  args: Array<unknown>;
4538
4503
  };
4539
4504
  }, unknown, ThrowOnError>;
4540
- unstake: <ThrowOnError extends boolean = false>(options?: Options<PostStakingTemplatesReputationLockV0UnstakeData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4505
+ unstake: <ThrowOnError extends boolean = false>(options?: Options<PostStakingTemplatesReputationLockUnstakeData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4541
4506
  data: string;
4542
4507
  to: string;
4543
4508
  details: {
@@ -4547,24 +4512,27 @@ declare const api: {
4547
4512
  args: Array<unknown>;
4548
4513
  };
4549
4514
  }, unknown, ThrowOnError>;
4550
- getCreatePoolEvent: <ThrowOnError extends boolean = false>(options: Options<GetStakingTemplatesReputationLockV0GetCreatePoolEventData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4515
+ getCreatePoolEvent: <ThrowOnError extends boolean = false>(options: Options<GetStakingTemplatesReputationLockGetCreatePoolEventData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4551
4516
  poolId: string;
4552
4517
  rewardAssetHandler: string;
4553
4518
  inputAssetKeeper: string;
4554
4519
  }, unknown, ThrowOnError>;
4555
- getPlatformDeployEvent: <ThrowOnError extends boolean = false>(options: Options<GetStakingTemplatesReputationLockV0GetPlatformDeployEventData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4520
+ getPlatformDeployEvent: <ThrowOnError extends boolean = false>(options: Options<GetStakingTemplatesReputationLockGetPlatformDeployEventData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4556
4521
  diamondAddress: string;
4557
4522
  admin: string;
4558
4523
  }, unknown, ThrowOnError>;
4559
- getStakeEvent: <ThrowOnError extends boolean = false>(options: Options<GetStakingTemplatesReputationLockV0GetStakeEventData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4524
+ getStakeEvent: <ThrowOnError extends boolean = false>(options: Options<GetStakingTemplatesReputationLockGetStakeEventData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4560
4525
  poolId: string;
4561
4526
  stakeId: string;
4562
4527
  operator: string;
4563
4528
  owner: string;
4529
+ inputPacketsStaked: string;
4530
+ stakeStartActiveTimestamp: string;
4531
+ unlockTimestamp: string;
4564
4532
  }, unknown, ThrowOnError>;
4565
4533
  };
4566
4534
  rwa: {
4567
- createPlatform: <ThrowOnError extends boolean = false>(options?: Options<PostStakingTemplatesRwaV0CreatePlatformData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4535
+ createPlatform: <ThrowOnError extends boolean = false>(options?: Options<PostStakingTemplatesRwaCreatePlatformData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4568
4536
  data: string;
4569
4537
  to: string;
4570
4538
  details: {
@@ -4574,7 +4542,7 @@ declare const api: {
4574
4542
  args: Array<unknown>;
4575
4543
  };
4576
4544
  }, unknown, ThrowOnError>;
4577
- createPool: <ThrowOnError extends boolean = false>(options?: Options<PostStakingTemplatesRwaV0CreatePoolData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4545
+ createPool: <ThrowOnError extends boolean = false>(options?: Options<PostStakingTemplatesRwaCreatePoolData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4578
4546
  data: string;
4579
4547
  to: string;
4580
4548
  details: {
@@ -4584,7 +4552,7 @@ declare const api: {
4584
4552
  args: Array<unknown>;
4585
4553
  };
4586
4554
  }, unknown, ThrowOnError>;
4587
- getReward: <ThrowOnError extends boolean = false>(options?: Options<PostStakingTemplatesRwaV0GetRewardData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4555
+ getReward: <ThrowOnError extends boolean = false>(options?: Options<PostStakingTemplatesRwaGetRewardData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4588
4556
  data: string;
4589
4557
  to: string;
4590
4558
  details: {
@@ -4594,7 +4562,7 @@ declare const api: {
4594
4562
  args: Array<unknown>;
4595
4563
  };
4596
4564
  }, unknown, ThrowOnError>;
4597
- distributeRewards: <ThrowOnError extends boolean = false>(options?: Options<PostStakingTemplatesRwaV0DistributeRewardsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4565
+ distributeRewards: <ThrowOnError extends boolean = false>(options?: Options<PostStakingTemplatesRwaDistributeRewardsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4598
4566
  data: string;
4599
4567
  to: string;
4600
4568
  details: {
@@ -4604,7 +4572,7 @@ declare const api: {
4604
4572
  args: Array<unknown>;
4605
4573
  };
4606
4574
  }, unknown, ThrowOnError>;
4607
- partialUnstake: <ThrowOnError extends boolean = false>(options?: Options<PostStakingTemplatesRwaV0PartialUnstakeData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4575
+ partialUnstake: <ThrowOnError extends boolean = false>(options?: Options<PostStakingTemplatesRwaPartialUnstakeData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4608
4576
  data: string;
4609
4577
  to: string;
4610
4578
  details: {
@@ -4614,7 +4582,7 @@ declare const api: {
4614
4582
  args: Array<unknown>;
4615
4583
  };
4616
4584
  }, unknown, ThrowOnError>;
4617
- restake: <ThrowOnError extends boolean = false>(options?: Options<PostStakingTemplatesRwaV0RestakeData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4585
+ restake: <ThrowOnError extends boolean = false>(options?: Options<PostStakingTemplatesRwaRestakeData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4618
4586
  data: string;
4619
4587
  to: string;
4620
4588
  details: {
@@ -4624,7 +4592,7 @@ declare const api: {
4624
4592
  args: Array<unknown>;
4625
4593
  };
4626
4594
  }, unknown, ThrowOnError>;
4627
- stake: <ThrowOnError extends boolean = false>(options?: Options<PostStakingTemplatesRwaV0StakeData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4595
+ stake: <ThrowOnError extends boolean = false>(options?: Options<PostStakingTemplatesRwaStakeData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4628
4596
  data: string;
4629
4597
  to: string;
4630
4598
  details: {
@@ -4634,7 +4602,7 @@ declare const api: {
4634
4602
  args: Array<unknown>;
4635
4603
  };
4636
4604
  }, unknown, ThrowOnError>;
4637
- unstake: <ThrowOnError extends boolean = false>(options?: Options<PostStakingTemplatesRwaV0UnstakeData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4605
+ unstake: <ThrowOnError extends boolean = false>(options?: Options<PostStakingTemplatesRwaUnstakeData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4638
4606
  data: string;
4639
4607
  to: string;
4640
4608
  details: {
@@ -4644,30 +4612,33 @@ declare const api: {
4644
4612
  args: Array<unknown>;
4645
4613
  };
4646
4614
  }, unknown, ThrowOnError>;
4647
- getCreatePoolEvent: <ThrowOnError extends boolean = false>(options: Options<GetStakingTemplatesRwaV0GetCreatePoolEventData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4615
+ getCreatePoolEvent: <ThrowOnError extends boolean = false>(options: Options<GetStakingTemplatesRwaGetCreatePoolEventData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4648
4616
  poolId: string;
4649
4617
  rewardAssetHandler: string;
4650
4618
  inputAssetKeeper: string;
4651
4619
  }, unknown, ThrowOnError>;
4652
- getPlatformDeployEvent: <ThrowOnError extends boolean = false>(options: Options<GetStakingTemplatesRwaV0GetPlatformDeployEventData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4620
+ getPlatformDeployEvent: <ThrowOnError extends boolean = false>(options: Options<GetStakingTemplatesRwaGetPlatformDeployEventData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4653
4621
  diamondAddress: string;
4654
4622
  admin: string;
4655
4623
  }, unknown, ThrowOnError>;
4656
- getStakeEvent: <ThrowOnError extends boolean = false>(options: Options<GetStakingTemplatesRwaV0GetStakeEventData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4624
+ getStakeEvent: <ThrowOnError extends boolean = false>(options: Options<GetStakingTemplatesRwaGetStakeEventData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4657
4625
  poolId: string;
4658
4626
  stakeId: string;
4659
4627
  operator: string;
4660
4628
  owner: string;
4629
+ inputPacketsStaked: string;
4630
+ stakeStartActiveTimestamp: string;
4631
+ unlockTimestamp: string;
4661
4632
  }, unknown, ThrowOnError>;
4662
4633
  };
4663
4634
  };
4664
4635
  staking: {
4665
4636
  roles: {
4666
- getRoles: <ThrowOnError extends boolean = false>(options?: Options<GetStakingRolesGetRolesV0Data, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4637
+ getRoles: <ThrowOnError extends boolean = false>(options?: Options<GetStakingRolesGetRolesData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4667
4638
  name: string;
4668
4639
  value: string;
4669
4640
  }[], unknown, ThrowOnError>;
4670
- grantRole: <ThrowOnError extends boolean = false>(options?: Options<PostStakingRolesGrantRoleV0Data, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4641
+ grantRole: <ThrowOnError extends boolean = false>(options?: Options<PostStakingRolesGrantRoleData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4671
4642
  data: string;
4672
4643
  to: string;
4673
4644
  details: {
@@ -4677,7 +4648,7 @@ declare const api: {
4677
4648
  args: Array<unknown>;
4678
4649
  };
4679
4650
  }, unknown, ThrowOnError>;
4680
- searchRoles: <ThrowOnError extends boolean = false>(options?: Options<PostStakingRolesSearchRolesV0Data, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4651
+ searchRoles: <ThrowOnError extends boolean = false>(options: Options<GetStakingRolesSearchRolesData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4681
4652
  chainId: "11155111" | "84532" | "31337";
4682
4653
  platform: string;
4683
4654
  roleId: string;
@@ -4686,18 +4657,19 @@ declare const api: {
4686
4657
  createdAt: string;
4687
4658
  updatedAt: string;
4688
4659
  }[], unknown, ThrowOnError>;
4689
- searchRoleEvents: <ThrowOnError extends boolean = false>(options?: Options<PostStakingRolesSearchRoleEventsV0Data, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4660
+ searchRoleEvents: <ThrowOnError extends boolean = false>(options: Options<GetStakingRolesSearchRoleEventsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4661
+ id: string;
4662
+ roleId: string;
4690
4663
  chainId: "11155111" | "84532" | "31337";
4691
4664
  platform: string;
4692
- roleId: string;
4693
- poolId?: string;
4665
+ txHash: string;
4694
4666
  owner: string;
4695
- createdAt: string;
4696
- updatedAt: string;
4667
+ poolId?: string;
4668
+ isRevoked: boolean;
4697
4669
  }[], unknown, ThrowOnError>;
4698
4670
  };
4699
4671
  stakes: {
4700
- getStake: <ThrowOnError extends boolean = false>(options: Options<GetStakingStakesGetStakeV0Data, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4672
+ getStake: <ThrowOnError extends boolean = false>(options: Options<GetStakingStakesGetStakeData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4701
4673
  chainId: "11155111" | "84532" | "31337";
4702
4674
  platform: string;
4703
4675
  poolId?: string;
@@ -4715,7 +4687,7 @@ declare const api: {
4715
4687
  message: string;
4716
4688
  name: string;
4717
4689
  }, ThrowOnError>;
4718
- searchStakes: <ThrowOnError extends boolean = false>(options?: Options<PostStakingStakesSearchStakesV0Data, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4690
+ searchStakes: <ThrowOnError extends boolean = false>(options: Options<GetStakingStakesSearchStakesData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4719
4691
  chainId: "11155111" | "84532" | "31337";
4720
4692
  platform: string;
4721
4693
  poolId?: string;
@@ -4729,7 +4701,7 @@ declare const api: {
4729
4701
  createdAt: string;
4730
4702
  updatedAt: string;
4731
4703
  }[], unknown, ThrowOnError>;
4732
- searchStakeEvents: <ThrowOnError extends boolean = false>(options?: Options<PostStakingStakesSearchStakeEventsV0Data, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4704
+ searchStakeEvents: <ThrowOnError extends boolean = false>(options: Options<GetStakingStakesSearchStakeEventsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4733
4705
  id: string;
4734
4706
  chainId: "11155111" | "84532" | "31337";
4735
4707
  platform: string;
@@ -4741,7 +4713,7 @@ declare const api: {
4741
4713
  }[], unknown, ThrowOnError>;
4742
4714
  };
4743
4715
  pools: {
4744
- getPool: <ThrowOnError extends boolean = false>(options: Options<GetStakingPoolsGetPoolV0Data, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4716
+ getPool: <ThrowOnError extends boolean = false>(options: Options<GetStakingPoolsGetPoolData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4745
4717
  chainId: "11155111" | "84532" | "31337";
4746
4718
  platform: string;
4747
4719
  rewardsHandler: string;
@@ -4754,7 +4726,7 @@ declare const api: {
4754
4726
  message: string;
4755
4727
  name: string;
4756
4728
  }, ThrowOnError>;
4757
- searchPools: <ThrowOnError extends boolean = false>(options?: Options<PostStakingPoolsSearchPoolsV0Data, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4729
+ searchPools: <ThrowOnError extends boolean = false>(options: Options<GetStakingPoolsSearchPoolsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4758
4730
  chainId: "11155111" | "84532" | "31337";
4759
4731
  platform: string;
4760
4732
  rewardsHandler: string;
@@ -4765,7 +4737,7 @@ declare const api: {
4765
4737
  }[], unknown, ThrowOnError>;
4766
4738
  };
4767
4739
  platforms: {
4768
- getPlatform: <ThrowOnError extends boolean = false>(options: Options<GetStakingPlatformsGetV0Data, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4740
+ getPlatform: <ThrowOnError extends boolean = false>(options: Options<GetStakingPlatformsGetData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4769
4741
  chainId: "11155111" | "84532" | "31337";
4770
4742
  transactionHash: string;
4771
4743
  createdAt: string;
@@ -4777,7 +4749,7 @@ declare const api: {
4777
4749
  message: string;
4778
4750
  name: string;
4779
4751
  }, ThrowOnError>;
4780
- searchPlatforms: <ThrowOnError extends boolean = false>(options?: Options<PostStakingPlatformsSearchV0Data, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4752
+ searchPlatforms: <ThrowOnError extends boolean = false>(options: Options<GetStakingPlatformsSearchData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4781
4753
  chainId: "11155111" | "84532" | "31337";
4782
4754
  transactionHash: string;
4783
4755
  createdAt: string;
@@ -4789,7 +4761,7 @@ declare const api: {
4789
4761
  };
4790
4762
  fractions: {
4791
4763
  market: {
4792
- deployMarket: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsMarketsDeployData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4764
+ deployMarket: <ThrowOnError extends boolean = false>(options?: Options<PostFractionsMarketsDeployData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4793
4765
  data: string;
4794
4766
  to: string;
4795
4767
  details: {
@@ -4799,7 +4771,7 @@ declare const api: {
4799
4771
  args: Array<unknown>;
4800
4772
  };
4801
4773
  }, unknown, ThrowOnError>;
4802
- deployNidMarket: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsMarketsDeployNidData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4774
+ deployNidMarket: <ThrowOnError extends boolean = false>(options?: Options<PostFractionsMarketsDeployNidData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4803
4775
  data: string;
4804
4776
  to: string;
4805
4777
  details: {
@@ -4809,7 +4781,7 @@ declare const api: {
4809
4781
  args: Array<unknown>;
4810
4782
  };
4811
4783
  }, unknown, ThrowOnError>;
4812
- deployContinousWithdrawal: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsMarketsDeployContinuousWithdrawData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4784
+ deployContinousWithdrawal: <ThrowOnError extends boolean = false>(options?: Options<PostFractionsMarketsDeployContinuousWithdrawData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4813
4785
  data: string;
4814
4786
  to: string;
4815
4787
  details: {
@@ -4819,7 +4791,7 @@ declare const api: {
4819
4791
  args: Array<unknown>;
4820
4792
  };
4821
4793
  }, unknown, ThrowOnError>;
4822
- deployContinousWithdrawalNid: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsMarketsDeployContinuousWithdrawNidData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4794
+ deployContinousWithdrawalNid: <ThrowOnError extends boolean = false>(options?: Options<PostFractionsMarketsDeployContinuousWithdrawNidData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4823
4795
  data: string;
4824
4796
  to: string;
4825
4797
  details: {
@@ -4829,12 +4801,12 @@ declare const api: {
4829
4801
  args: Array<unknown>;
4830
4802
  };
4831
4803
  }, unknown, ThrowOnError>;
4832
- getMarketDeployedEvent: <ThrowOnError extends boolean = false>(options: Options<GetV0FractionsMarketsDeployEventData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4804
+ getMarketDeployedEvent: <ThrowOnError extends boolean = false>(options: Options<GetFractionsMarketsDeployEventData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4833
4805
  diamondAddress: string;
4834
4806
  admin: string;
4835
4807
  wrapperAddress: string;
4836
4808
  }, unknown, ThrowOnError>;
4837
- search: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsMarketsSearchData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4809
+ search: <ThrowOnError extends boolean = false>(options: Options<GetFractionsMarketsSearchData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4838
4810
  chainId: "1" | "11155111" | "84532" | "72080" | "31337";
4839
4811
  transactionHash: string;
4840
4812
  template: "default" | "compilot" | "continuous-withdrawal" | "continuous-withdrawal-nid" | "lending" | "unknown";
@@ -4855,7 +4827,7 @@ declare const api: {
4855
4827
  createdAt: string;
4856
4828
  updatedAt: string;
4857
4829
  }[], unknown, ThrowOnError>;
4858
- get: <ThrowOnError extends boolean = false>(options: Options<GetV0FractionsMarketsGetData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4830
+ get: <ThrowOnError extends boolean = false>(options: Options<GetFractionsMarketsGetData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4859
4831
  chainId: "1" | "11155111" | "84532" | "72080" | "31337";
4860
4832
  transactionHash: string;
4861
4833
  template: "default" | "compilot" | "continuous-withdrawal" | "continuous-withdrawal-nid" | "lending" | "unknown";
@@ -4880,7 +4852,7 @@ declare const api: {
4880
4852
  message: string;
4881
4853
  name: string;
4882
4854
  }, ThrowOnError>;
4883
- initCompilot: <ThrowOnError extends boolean = false>(options: Options<GetV0FractionsMarketsInitCompilotData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4855
+ initCompilot: <ThrowOnError extends boolean = false>(options: Options<GetFractionsMarketsInitCompilotData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4884
4856
  data: string;
4885
4857
  to: string;
4886
4858
  details: {
@@ -4892,7 +4864,7 @@ declare const api: {
4892
4864
  }, unknown, ThrowOnError>;
4893
4865
  };
4894
4866
  roles: {
4895
- grantRole: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsRolesGrantData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4867
+ grantRole: <ThrowOnError extends boolean = false>(options?: Options<PostFractionsRolesGrantData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4896
4868
  data: string;
4897
4869
  to: string;
4898
4870
  details: {
@@ -4902,13 +4874,13 @@ declare const api: {
4902
4874
  args: Array<unknown>;
4903
4875
  };
4904
4876
  }, unknown, ThrowOnError>;
4905
- getRoles: <ThrowOnError extends boolean = false>(options?: Options<GetV0FractionsRolesData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4877
+ getRoles: <ThrowOnError extends boolean = false>(options?: Options<GetFractionsRolesData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4906
4878
  name: string;
4907
4879
  value: string;
4908
4880
  }[], unknown, ThrowOnError>;
4909
4881
  };
4910
4882
  sales: {
4911
- createFractions: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsSalesFractionsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4883
+ createFractions: <ThrowOnError extends boolean = false>(options?: Options<PostFractionsSalesFractionsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4912
4884
  data: string;
4913
4885
  to: string;
4914
4886
  details: {
@@ -4918,7 +4890,7 @@ declare const api: {
4918
4890
  args: Array<unknown>;
4919
4891
  };
4920
4892
  }, unknown, ThrowOnError>;
4921
- approveSale: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsSalesApproveData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4893
+ approveSale: <ThrowOnError extends boolean = false>(options?: Options<PostFractionsSalesApproveData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4922
4894
  data: string;
4923
4895
  to: string;
4924
4896
  details: {
@@ -4928,7 +4900,7 @@ declare const api: {
4928
4900
  args: Array<unknown>;
4929
4901
  };
4930
4902
  }, unknown, ThrowOnError>;
4931
- rejectSale: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsSalesRejectData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4903
+ rejectSale: <ThrowOnError extends boolean = false>(options?: Options<PostFractionsSalesRejectData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4932
4904
  data: string;
4933
4905
  to: string;
4934
4906
  details: {
@@ -4938,7 +4910,7 @@ declare const api: {
4938
4910
  args: Array<unknown>;
4939
4911
  };
4940
4912
  }, unknown, ThrowOnError>;
4941
- recover: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsSalesRecoverData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4913
+ recover: <ThrowOnError extends boolean = false>(options?: Options<PostFractionsSalesRecoverData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4942
4914
  data: string;
4943
4915
  to: string;
4944
4916
  details: {
@@ -4948,7 +4920,7 @@ declare const api: {
4948
4920
  args: Array<unknown>;
4949
4921
  };
4950
4922
  }, unknown, ThrowOnError>;
4951
- completeSale: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsSalesCompleteData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4923
+ completeSale: <ThrowOnError extends boolean = false>(options?: Options<PostFractionsSalesCompleteData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4952
4924
  data: string;
4953
4925
  to: string;
4954
4926
  details: {
@@ -4958,7 +4930,7 @@ declare const api: {
4958
4930
  args: Array<unknown>;
4959
4931
  };
4960
4932
  }, unknown, ThrowOnError>;
4961
- purchaseSale: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsSalesPurchaseData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4933
+ purchaseSale: <ThrowOnError extends boolean = false>(options?: Options<PostFractionsSalesPurchaseData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4962
4934
  data: string;
4963
4935
  to: string;
4964
4936
  details: {
@@ -4968,7 +4940,7 @@ declare const api: {
4968
4940
  args: Array<unknown>;
4969
4941
  };
4970
4942
  }, unknown, ThrowOnError>;
4971
- investorStatistics: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsSalesPurchaseStatisticsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4943
+ investorStatistics: <ThrowOnError extends boolean = false>(options: Options<GetFractionsSalesPurchaseStatisticsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4972
4944
  chainId: "1" | "11155111" | "84532" | "72080" | "31337";
4973
4945
  platform: string;
4974
4946
  campaignId: string;
@@ -4978,7 +4950,7 @@ declare const api: {
4978
4950
  purchases: number;
4979
4951
  }>;
4980
4952
  }, unknown, ThrowOnError>;
4981
- activity: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsSalesActivityData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4953
+ activity: <ThrowOnError extends boolean = false>(options: Options<GetFractionsSalesActivityData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4982
4954
  chainId: "1" | "11155111" | "84532" | "72080" | "31337";
4983
4955
  platform: string;
4984
4956
  campaignId: string;
@@ -5024,7 +4996,7 @@ declare const api: {
5024
4996
  }>;
5025
4997
  };
5026
4998
  }[], unknown, ThrowOnError>;
5027
- statistics: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsSalesStatisticsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
4999
+ statistics: <ThrowOnError extends boolean = false>(options: Options<GetFractionsSalesStatisticsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
5028
5000
  chainId: "1" | "11155111" | "84532" | "72080" | "31337";
5029
5001
  platform: string;
5030
5002
  campaignId: string;
@@ -5034,7 +5006,7 @@ declare const api: {
5034
5006
  purchases: number;
5035
5007
  }>;
5036
5008
  }, unknown, ThrowOnError>;
5037
- withdrawPaymentToken: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsSalesWithdrawPaymentTokenData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
5009
+ withdrawPaymentToken: <ThrowOnError extends boolean = false>(options?: Options<PostFractionsSalesWithdrawPaymentTokenData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
5038
5010
  data: string;
5039
5011
  to: string;
5040
5012
  details: {
@@ -5044,7 +5016,7 @@ declare const api: {
5044
5016
  args: Array<unknown>;
5045
5017
  };
5046
5018
  }, unknown, ThrowOnError>;
5047
- receiveFundsAfterNonFunded: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsSalesReceiveFundsAfterNonFundedData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
5019
+ receiveFundsAfterNonFunded: <ThrowOnError extends boolean = false>(options?: Options<PostFractionsSalesReceiveFundsAfterNonFundedData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
5048
5020
  data: string;
5049
5021
  to: string;
5050
5022
  details: {
@@ -5054,7 +5026,7 @@ declare const api: {
5054
5026
  args: Array<unknown>;
5055
5027
  };
5056
5028
  }, unknown, ThrowOnError>;
5057
- getFractionsCreatedEvent: <ThrowOnError extends boolean = false>(options: Options<GetV0FractionsSalesGetFractionsCreatedEventData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
5029
+ getFractionsCreatedEvent: <ThrowOnError extends boolean = false>(options: Options<GetFractionsSalesGetFractionsCreatedEventData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
5058
5030
  creator: string;
5059
5031
  nftId: string;
5060
5032
  campaignId: string;
@@ -5062,7 +5034,7 @@ declare const api: {
5062
5034
  fractionsAddress: string;
5063
5035
  vaultAddress: string;
5064
5036
  }, unknown, ThrowOnError>;
5065
- search: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsSalesSearchData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
5037
+ search: <ThrowOnError extends boolean = false>(options: Options<GetFractionsSalesSearchData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
5066
5038
  chainId: "1" | "11155111" | "84532" | "72080" | "31337";
5067
5039
  platform: string;
5068
5040
  campaignId: string;
@@ -5128,12 +5100,12 @@ declare const api: {
5128
5100
  createdAt: string;
5129
5101
  updatedAt: string;
5130
5102
  }[], unknown, ThrowOnError>;
5131
- getWithdrawEvent: <ThrowOnError extends boolean = false>(options: Options<GetV0FractionsSalesGetWithdrawEventData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
5103
+ getWithdrawEvent: <ThrowOnError extends boolean = false>(options: Options<GetFractionsSalesGetWithdrawEventData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
5132
5104
  campaignId: string;
5133
5105
  receiver: string;
5134
5106
  packetsReceived: string;
5135
5107
  }, unknown, ThrowOnError>;
5136
- setFeeCapLimit: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsSalesSetFeeCapLimitData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
5108
+ setFeeCapLimit: <ThrowOnError extends boolean = false>(options?: Options<PostFractionsSalesSetFeeCapLimitData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
5137
5109
  data: string;
5138
5110
  to: string;
5139
5111
  details: {
@@ -5143,7 +5115,7 @@ declare const api: {
5143
5115
  args: Array<unknown>;
5144
5116
  };
5145
5117
  }, unknown, ThrowOnError>;
5146
- unlockWrappedAssets: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsSalesUnlockWrappedAssetsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
5118
+ unlockWrappedAssets: <ThrowOnError extends boolean = false>(options?: Options<PostFractionsSalesUnlockWrappedAssetsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
5147
5119
  data: string;
5148
5120
  to: string;
5149
5121
  details: {
@@ -5153,7 +5125,7 @@ declare const api: {
5153
5125
  args: Array<unknown>;
5154
5126
  };
5155
5127
  }, unknown, ThrowOnError>;
5156
- checkAndJumpToNonFunded: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsSalesCheckAndJumpToNonFundedData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
5128
+ checkAndJumpToNonFunded: <ThrowOnError extends boolean = false>(options?: Options<PostFractionsSalesCheckAndJumpToNonFundedData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
5157
5129
  data: string;
5158
5130
  to: string;
5159
5131
  details: {
@@ -5163,7 +5135,7 @@ declare const api: {
5163
5135
  args: Array<unknown>;
5164
5136
  };
5165
5137
  }, unknown, ThrowOnError>;
5166
- receiveNonPurchased: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsSalesReceiveNonPurchasedWrappedAssetsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
5138
+ receiveNonPurchased: <ThrowOnError extends boolean = false>(options?: Options<PostFractionsSalesReceiveNonPurchasedWrappedAssetsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
5167
5139
  data: string;
5168
5140
  to: string;
5169
5141
  details: {
@@ -5174,7 +5146,7 @@ declare const api: {
5174
5146
  };
5175
5147
  }, unknown, ThrowOnError>;
5176
5148
  vesting: {
5177
- claim: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsSalesVestingClaimData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
5149
+ claim: <ThrowOnError extends boolean = false>(options?: Options<PostFractionsSalesVestingClaimData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
5178
5150
  data: string;
5179
5151
  to: string;
5180
5152
  details: {
@@ -5184,7 +5156,7 @@ declare const api: {
5184
5156
  args: Array<unknown>;
5185
5157
  };
5186
5158
  }, unknown, ThrowOnError>;
5187
- claimStatistics: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsSalesVestingClaimStatisticsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
5159
+ claimStatistics: <ThrowOnError extends boolean = false>(options: Options<GetFractionsSalesVestingClaimStatisticsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
5188
5160
  chainId: "1" | "11155111" | "84532" | "72080" | "31337";
5189
5161
  platform: string;
5190
5162
  campaignId: string;
@@ -5195,14 +5167,14 @@ declare const api: {
5195
5167
  amount: string;
5196
5168
  }>;
5197
5169
  }, unknown, ThrowOnError>;
5198
- getClaimVestedTokensEvent: <ThrowOnError extends boolean = false>(options: Options<GetV0FractionsSalesVestingGetClaimVestedTokensEventData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
5170
+ getClaimVestedTokensEvent: <ThrowOnError extends boolean = false>(options: Options<GetFractionsSalesVestingGetClaimVestedTokensEventData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
5199
5171
  campaignId: string;
5200
5172
  receiver: string;
5201
5173
  burnId: string;
5202
5174
  nextBurnId: string | null;
5203
5175
  amountOfFractionsBurnt: string;
5204
5176
  }, unknown, ThrowOnError>;
5205
- editCliff: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsSalesVestingEditCliffData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
5177
+ editCliff: <ThrowOnError extends boolean = false>(options?: Options<PostFractionsSalesVestingEditCliffData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
5206
5178
  data: string;
5207
5179
  to: string;
5208
5180
  details: {
@@ -5215,7 +5187,7 @@ declare const api: {
5215
5187
  };
5216
5188
  };
5217
5189
  approvals: {
5218
- approveWrapper: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsSalesApproveWrapperData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
5190
+ approveWrapper: <ThrowOnError extends boolean = false>(options?: Options<PostFractionsSalesApproveWrapperData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
5219
5191
  data: string;
5220
5192
  to: string;
5221
5193
  details: {
@@ -5227,18 +5199,12 @@ declare const api: {
5227
5199
  }, unknown, ThrowOnError>;
5228
5200
  };
5229
5201
  sig: {
5230
- getAuthData: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsSigAuthDataData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
5231
- marketAddress: string;
5232
- userAddress: string;
5233
- chainId: "1" | "11155111" | "84532" | "72080" | "31337";
5234
- nonce: string;
5202
+ getAuthData: <ThrowOnError extends boolean = false>(options?: Options<PostFractionsSigAuthDataData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
5203
+ messageToSign: string;
5235
5204
  blockExpiration: string;
5236
- callData: string;
5237
5205
  }, unknown, ThrowOnError>;
5238
- getNonce: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsSigNonceData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
5239
- marketAddress: string;
5240
- userAddress: string;
5241
- chainId: "1" | "11155111" | "84532" | "72080" | "31337";
5206
+ getNonce: <ThrowOnError extends boolean = false>(options?: Options<PostFractionsSigNonceData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
5207
+ nonce: string;
5242
5208
  }, unknown, ThrowOnError>;
5243
5209
  };
5244
5210
  issuance: {
@@ -5528,4 +5494,4 @@ type ApiResponse<T> = {
5528
5494
  };
5529
5495
  declare function handleApiResponse<T>(apiResponse: ApiResponse<T>): T;
5530
5496
 
5531
- export { type ApiClient, type ApiResponse, type ClientOptions, type GetGeneralBalanceData, type GetGeneralBalanceResponse, type GetGeneralBalanceResponses, type GetIssuanceErc1155GetDeployEventData, type GetIssuanceErc1155GetDeployEventGatedData, type GetIssuanceErc1155GetDeployEventGatedResponse, type GetIssuanceErc1155GetDeployEventGatedResponses, type GetIssuanceErc1155GetDeployEventResponse, type GetIssuanceErc1155GetDeployEventResponses, type GetIssuanceErc1155GetMintedTokenIdData, type GetIssuanceErc1155GetMintedTokenIdResponse, type GetIssuanceErc1155GetMintedTokenIdResponses, type GetIssuanceErc20DeployGatedSimpleData, type GetIssuanceErc20DeployGatedSimpleResponse, type GetIssuanceErc20DeployGatedSimpleResponses, type GetIssuanceErc20GetDeployEventData, type GetIssuanceErc20GetDeployEventGatedData, type GetIssuanceErc20GetDeployEventGatedResponse, type GetIssuanceErc20GetDeployEventGatedResponses, type GetIssuanceErc20GetDeployEventGatedSimpleData, type GetIssuanceErc20GetDeployEventGatedSimpleResponse, type GetIssuanceErc20GetDeployEventGatedSimpleResponses, type GetIssuanceErc20GetDeployEventResponse, type GetIssuanceErc20GetDeployEventResponses, type GetIssuanceErc721GetDeployEventData, type GetIssuanceErc721GetDeployEventGatedData, type GetIssuanceErc721GetDeployEventGatedResponse, type GetIssuanceErc721GetDeployEventGatedResponses, type GetIssuanceErc721GetDeployEventResponse, type GetIssuanceErc721GetDeployEventResponses, type GetIssuanceErc721GetMintedTokenIdData, type GetIssuanceErc721GetMintedTokenIdResponse, type GetIssuanceErc721GetMintedTokenIdResponses, type GetIssuanceProxyDeployProxyAdminData, type GetIssuanceProxyDeployProxyAdminResponse, type GetIssuanceProxyDeployProxyAdminResponses, type GetStakingPlatformsGetV0Data, type GetStakingPlatformsGetV0Error, type GetStakingPlatformsGetV0Errors, type GetStakingPlatformsGetV0Response, type GetStakingPlatformsGetV0Responses, type GetStakingPoolsGetPoolV0Data, type GetStakingPoolsGetPoolV0Error, type GetStakingPoolsGetPoolV0Errors, type GetStakingPoolsGetPoolV0Response, type GetStakingPoolsGetPoolV0Responses, type GetStakingRolesGetRolesV0Data, type GetStakingRolesGetRolesV0Response, type GetStakingRolesGetRolesV0Responses, type GetStakingStakesGetStakeV0Data, type GetStakingStakesGetStakeV0Error, type GetStakingStakesGetStakeV0Errors, type GetStakingStakesGetStakeV0Response, type GetStakingStakesGetStakeV0Responses, type GetStakingTemplatesReputationLockV0GetCreatePoolEventData, type GetStakingTemplatesReputationLockV0GetCreatePoolEventResponse, type GetStakingTemplatesReputationLockV0GetCreatePoolEventResponses, type GetStakingTemplatesReputationLockV0GetPlatformDeployEventData, type GetStakingTemplatesReputationLockV0GetPlatformDeployEventResponse, type GetStakingTemplatesReputationLockV0GetPlatformDeployEventResponses, type GetStakingTemplatesReputationLockV0GetStakeEventData, type GetStakingTemplatesReputationLockV0GetStakeEventResponse, type GetStakingTemplatesReputationLockV0GetStakeEventResponses, type GetStakingTemplatesReputationV0GetCreatePoolEventData, type GetStakingTemplatesReputationV0GetCreatePoolEventResponse, type GetStakingTemplatesReputationV0GetCreatePoolEventResponses, type GetStakingTemplatesReputationV0GetPlatformDeployEventData, type GetStakingTemplatesReputationV0GetPlatformDeployEventResponse, type GetStakingTemplatesReputationV0GetPlatformDeployEventResponses, type GetStakingTemplatesReputationV0GetStakeEventData, type GetStakingTemplatesReputationV0GetStakeEventResponse, type GetStakingTemplatesReputationV0GetStakeEventResponses, type GetStakingTemplatesRwaV0GetCreatePoolEventData, type GetStakingTemplatesRwaV0GetCreatePoolEventResponse, type GetStakingTemplatesRwaV0GetCreatePoolEventResponses, type GetStakingTemplatesRwaV0GetPlatformDeployEventData, type GetStakingTemplatesRwaV0GetPlatformDeployEventResponse, type GetStakingTemplatesRwaV0GetPlatformDeployEventResponses, type GetStakingTemplatesRwaV0GetStakeEventData, type GetStakingTemplatesRwaV0GetStakeEventResponse, type GetStakingTemplatesRwaV0GetStakeEventResponses, type GetV0FractionsMarketsDeployEventData, type GetV0FractionsMarketsDeployEventResponse, type GetV0FractionsMarketsDeployEventResponses, type GetV0FractionsMarketsGetData, type GetV0FractionsMarketsGetError, type GetV0FractionsMarketsGetErrors, type GetV0FractionsMarketsGetResponse, type GetV0FractionsMarketsGetResponses, type GetV0FractionsMarketsInitCompilotData, type GetV0FractionsMarketsInitCompilotResponse, type GetV0FractionsMarketsInitCompilotResponses, type GetV0FractionsRolesData, type GetV0FractionsRolesResponse, type GetV0FractionsRolesResponses, type GetV0FractionsSalesGetFractionsCreatedEventData, type GetV0FractionsSalesGetFractionsCreatedEventResponse, type GetV0FractionsSalesGetFractionsCreatedEventResponses, type GetV0FractionsSalesGetVaultAddressData, type GetV0FractionsSalesGetVaultAddressResponse, type GetV0FractionsSalesGetVaultAddressResponses, type GetV0FractionsSalesGetWithdrawEventData, type GetV0FractionsSalesGetWithdrawEventResponse, type GetV0FractionsSalesGetWithdrawEventResponses, type GetV0FractionsSalesVestingGetClaimVestedTokensEventData, type GetV0FractionsSalesVestingGetClaimVestedTokensEventResponse, type GetV0FractionsSalesVestingGetClaimVestedTokensEventResponses, type IApiConfig, type IEnv, type IEnvName, type PostGeneralBalancesData, type PostGeneralBalancesResponse, type PostGeneralBalancesResponses, type PostGeneralEstimateGasData, type PostGeneralEstimateGasResponse, type PostGeneralEstimateGasResponses, type PostGeneralSearchBalancesData, type PostGeneralSearchBalancesResponse, type PostGeneralSearchBalancesResponses, type PostIssuanceErc1155BurnData, type PostIssuanceErc1155BurnResponse, type PostIssuanceErc1155BurnResponses, type PostIssuanceErc1155DeployData, type PostIssuanceErc1155DeployGatedData, type PostIssuanceErc1155DeployGatedResponse, type PostIssuanceErc1155DeployGatedResponses, type PostIssuanceErc1155DeployResponse, type PostIssuanceErc1155DeployResponses, type PostIssuanceErc1155GrantRoleData, type PostIssuanceErc1155GrantRoleResponse, type PostIssuanceErc1155GrantRoleResponses, type PostIssuanceErc1155InitializeData, type PostIssuanceErc1155InitializeGatedData, type PostIssuanceErc1155InitializeGatedResponse, type PostIssuanceErc1155InitializeGatedResponses, type PostIssuanceErc1155InitializeResponse, type PostIssuanceErc1155InitializeResponses, type PostIssuanceErc1155MintData, type PostIssuanceErc1155MintResponse, type PostIssuanceErc1155MintResponses, type PostIssuanceErc1155RecoverData, type PostIssuanceErc1155RecoverResponse, type PostIssuanceErc1155RecoverResponses, type PostIssuanceErc1155RenounceRoleData, type PostIssuanceErc1155RenounceRoleResponse, type PostIssuanceErc1155RenounceRoleResponses, type PostIssuanceErc1155RevokeRoleData, type PostIssuanceErc1155RevokeRoleResponse, type PostIssuanceErc1155RevokeRoleResponses, type PostIssuanceErc1155SetApprovalForAllData, type PostIssuanceErc1155SetApprovalForAllResponse, type PostIssuanceErc1155SetApprovalForAllResponses, type PostIssuanceErc1155SetBaseUriData, type PostIssuanceErc1155SetBaseUriResponse, type PostIssuanceErc1155SetBaseUriResponses, type PostIssuanceErc1155SetTokenUriData, type PostIssuanceErc1155SetTokenUriResponse, type PostIssuanceErc1155SetTokenUriResponses, type PostIssuanceErc20ApproveData, type PostIssuanceErc20ApproveResponse, type PostIssuanceErc20ApproveResponses, type PostIssuanceErc20BurnData, type PostIssuanceErc20BurnResponse, type PostIssuanceErc20BurnResponses, type PostIssuanceErc20DeployData, type PostIssuanceErc20DeployGatedData, type PostIssuanceErc20DeployGatedResponse, type PostIssuanceErc20DeployGatedResponses, type PostIssuanceErc20DeployResponse, type PostIssuanceErc20DeployResponses, type PostIssuanceErc20GetInitDataData, type PostIssuanceErc20GetInitDataResponse, type PostIssuanceErc20GetInitDataResponses, type PostIssuanceErc20GrantRoleData, type PostIssuanceErc20GrantRoleResponse, type PostIssuanceErc20GrantRoleResponses, type PostIssuanceErc20InitializeData, type PostIssuanceErc20InitializeGatedData, type PostIssuanceErc20InitializeGatedResponse, type PostIssuanceErc20InitializeGatedResponses, type PostIssuanceErc20InitializeResponse, type PostIssuanceErc20InitializeResponses, type PostIssuanceErc20MintData, type PostIssuanceErc20MintResponse, type PostIssuanceErc20MintResponses, type PostIssuanceErc20RecoverData, type PostIssuanceErc20RecoverResponse, type PostIssuanceErc20RecoverResponses, type PostIssuanceErc20RenounceRoleData, type PostIssuanceErc20RenounceRoleResponse, type PostIssuanceErc20RenounceRoleResponses, type PostIssuanceErc20RevokeRoleData, type PostIssuanceErc20RevokeRoleResponse, type PostIssuanceErc20RevokeRoleResponses, type PostIssuanceErc20TransferData, type PostIssuanceErc20TransferFromData, type PostIssuanceErc20TransferFromResponse, type PostIssuanceErc20TransferFromResponses, type PostIssuanceErc20TransferResponse, type PostIssuanceErc20TransferResponses, type PostIssuanceErc721ApproveData, type PostIssuanceErc721ApproveResponse, type PostIssuanceErc721ApproveResponses, type PostIssuanceErc721BurnData, type PostIssuanceErc721BurnResponse, type PostIssuanceErc721BurnResponses, type PostIssuanceErc721DeployData, type PostIssuanceErc721DeployGatedData, type PostIssuanceErc721DeployGatedResponse, type PostIssuanceErc721DeployGatedResponses, type PostIssuanceErc721DeployResponse, type PostIssuanceErc721DeployResponses, type PostIssuanceErc721GrantRoleData, type PostIssuanceErc721GrantRoleResponse, type PostIssuanceErc721GrantRoleResponses, type PostIssuanceErc721InitializeData, type PostIssuanceErc721InitializeGatedData, type PostIssuanceErc721InitializeGatedResponse, type PostIssuanceErc721InitializeGatedResponses, type PostIssuanceErc721InitializeResponse, type PostIssuanceErc721InitializeResponses, type PostIssuanceErc721MintData, type PostIssuanceErc721MintResponse, type PostIssuanceErc721MintResponses, type PostIssuanceErc721RecoverData, type PostIssuanceErc721RecoverResponse, type PostIssuanceErc721RecoverResponses, type PostIssuanceErc721RenounceRoleData, type PostIssuanceErc721RenounceRoleResponse, type PostIssuanceErc721RenounceRoleResponses, type PostIssuanceErc721RevokeRoleData, type PostIssuanceErc721RevokeRoleResponse, type PostIssuanceErc721RevokeRoleResponses, type PostIssuanceErc721SetBaseUriData, type PostIssuanceErc721SetBaseUriResponse, type PostIssuanceErc721SetBaseUriResponses, type PostIssuanceErc721SetTokenUriData, type PostIssuanceErc721SetTokenUriResponse, type PostIssuanceErc721SetTokenUriResponses, type PostIssuanceErc721TransferFromData, type PostIssuanceErc721TransferFromResponse, type PostIssuanceErc721TransferFromResponses, type PostIssuanceProxyDeployTransparentProxyData, type PostIssuanceProxyDeployTransparentProxyResponse, type PostIssuanceProxyDeployTransparentProxyResponses, type PostIssuanceProxyUpgradeTransparentProxyData, type PostIssuanceProxyUpgradeTransparentProxyResponse, type PostIssuanceProxyUpgradeTransparentProxyResponses, type PostStakingPlatformsSearchV0Data, type PostStakingPlatformsSearchV0Response, type PostStakingPlatformsSearchV0Responses, type PostStakingPoolsSearchPoolsV0Data, type PostStakingPoolsSearchPoolsV0Response, type PostStakingPoolsSearchPoolsV0Responses, type PostStakingRolesGrantRoleV0Data, type PostStakingRolesGrantRoleV0Response, type PostStakingRolesGrantRoleV0Responses, type PostStakingRolesSearchRoleEventsV0Data, type PostStakingRolesSearchRoleEventsV0Response, type PostStakingRolesSearchRoleEventsV0Responses, type PostStakingRolesSearchRolesV0Data, type PostStakingRolesSearchRolesV0Response, type PostStakingRolesSearchRolesV0Responses, type PostStakingStakesSearchStakeEventsV0Data, type PostStakingStakesSearchStakeEventsV0Response, type PostStakingStakesSearchStakeEventsV0Responses, type PostStakingStakesSearchStakesV0Data, type PostStakingStakesSearchStakesV0Response, type PostStakingStakesSearchStakesV0Responses, type PostStakingTemplatesReputationLockV0CreatePlatformData, type PostStakingTemplatesReputationLockV0CreatePlatformResponse, type PostStakingTemplatesReputationLockV0CreatePlatformResponses, type PostStakingTemplatesReputationLockV0CreatePoolData, type PostStakingTemplatesReputationLockV0CreatePoolResponse, type PostStakingTemplatesReputationLockV0CreatePoolResponses, type PostStakingTemplatesReputationLockV0GetRewardData, type PostStakingTemplatesReputationLockV0GetRewardResponse, type PostStakingTemplatesReputationLockV0GetRewardResponses, type PostStakingTemplatesReputationLockV0PartialUnstakeData, type PostStakingTemplatesReputationLockV0PartialUnstakeResponse, type PostStakingTemplatesReputationLockV0PartialUnstakeResponses, type PostStakingTemplatesReputationLockV0RestakeData, type PostStakingTemplatesReputationLockV0RestakeResponse, type PostStakingTemplatesReputationLockV0RestakeResponses, type PostStakingTemplatesReputationLockV0StakeData, type PostStakingTemplatesReputationLockV0StakeResponse, type PostStakingTemplatesReputationLockV0StakeResponses, type PostStakingTemplatesReputationLockV0UnstakeData, type PostStakingTemplatesReputationLockV0UnstakeResponse, type PostStakingTemplatesReputationLockV0UnstakeResponses, type PostStakingTemplatesReputationV0CreatePlatformData, type PostStakingTemplatesReputationV0CreatePlatformResponse, type PostStakingTemplatesReputationV0CreatePlatformResponses, type PostStakingTemplatesReputationV0CreatePoolData, type PostStakingTemplatesReputationV0CreatePoolResponse, type PostStakingTemplatesReputationV0CreatePoolResponses, type PostStakingTemplatesReputationV0GetRewardData, type PostStakingTemplatesReputationV0GetRewardResponse, type PostStakingTemplatesReputationV0GetRewardResponses, type PostStakingTemplatesReputationV0PartialUnstakeData, type PostStakingTemplatesReputationV0PartialUnstakeResponse, type PostStakingTemplatesReputationV0PartialUnstakeResponses, type PostStakingTemplatesReputationV0RestakeData, type PostStakingTemplatesReputationV0RestakeResponse, type PostStakingTemplatesReputationV0RestakeResponses, type PostStakingTemplatesReputationV0StakeData, type PostStakingTemplatesReputationV0StakeResponse, type PostStakingTemplatesReputationV0StakeResponses, type PostStakingTemplatesReputationV0UnstakeData, type PostStakingTemplatesReputationV0UnstakeResponse, type PostStakingTemplatesReputationV0UnstakeResponses, type PostStakingTemplatesRwaV0CreatePlatformData, type PostStakingTemplatesRwaV0CreatePlatformResponse, type PostStakingTemplatesRwaV0CreatePlatformResponses, type PostStakingTemplatesRwaV0CreatePoolData, type PostStakingTemplatesRwaV0CreatePoolResponse, type PostStakingTemplatesRwaV0CreatePoolResponses, type PostStakingTemplatesRwaV0DistributeRewardsData, type PostStakingTemplatesRwaV0DistributeRewardsResponse, type PostStakingTemplatesRwaV0DistributeRewardsResponses, type PostStakingTemplatesRwaV0GetRewardData, type PostStakingTemplatesRwaV0GetRewardResponse, type PostStakingTemplatesRwaV0GetRewardResponses, type PostStakingTemplatesRwaV0PartialUnstakeData, type PostStakingTemplatesRwaV0PartialUnstakeResponse, type PostStakingTemplatesRwaV0PartialUnstakeResponses, type PostStakingTemplatesRwaV0RestakeData, type PostStakingTemplatesRwaV0RestakeResponse, type PostStakingTemplatesRwaV0RestakeResponses, type PostStakingTemplatesRwaV0StakeData, type PostStakingTemplatesRwaV0StakeResponse, type PostStakingTemplatesRwaV0StakeResponses, type PostStakingTemplatesRwaV0UnstakeData, type PostStakingTemplatesRwaV0UnstakeResponse, type PostStakingTemplatesRwaV0UnstakeResponses, type PostV0FractionsMarketsDeployContinuousWithdrawData, type PostV0FractionsMarketsDeployContinuousWithdrawNidData, type PostV0FractionsMarketsDeployContinuousWithdrawNidResponse, type PostV0FractionsMarketsDeployContinuousWithdrawNidResponses, type PostV0FractionsMarketsDeployContinuousWithdrawResponse, type PostV0FractionsMarketsDeployContinuousWithdrawResponses, type PostV0FractionsMarketsDeployData, type PostV0FractionsMarketsDeployNidData, type PostV0FractionsMarketsDeployNidResponse, type PostV0FractionsMarketsDeployNidResponses, type PostV0FractionsMarketsDeployResponse, type PostV0FractionsMarketsDeployResponses, type PostV0FractionsMarketsSearchData, type PostV0FractionsMarketsSearchResponse, type PostV0FractionsMarketsSearchResponses, type PostV0FractionsRolesGrantData, type PostV0FractionsRolesGrantResponse, type PostV0FractionsRolesGrantResponses, type PostV0FractionsSalesActivityData, type PostV0FractionsSalesActivityResponse, type PostV0FractionsSalesActivityResponses, type PostV0FractionsSalesApproveData, type PostV0FractionsSalesApproveResponse, type PostV0FractionsSalesApproveResponses, type PostV0FractionsSalesApproveWrapperData, type PostV0FractionsSalesApproveWrapperResponse, type PostV0FractionsSalesApproveWrapperResponses, type PostV0FractionsSalesCheckAndJumpToNonFundedData, type PostV0FractionsSalesCheckAndJumpToNonFundedResponse, type PostV0FractionsSalesCheckAndJumpToNonFundedResponses, type PostV0FractionsSalesCompleteData, type PostV0FractionsSalesCompleteResponse, type PostV0FractionsSalesCompleteResponses, type PostV0FractionsSalesFractionsData, type PostV0FractionsSalesFractionsResponse, type PostV0FractionsSalesFractionsResponses, type PostV0FractionsSalesPurchaseData, type PostV0FractionsSalesPurchaseResponse, type PostV0FractionsSalesPurchaseResponses, type PostV0FractionsSalesPurchaseStatisticsData, type PostV0FractionsSalesPurchaseStatisticsResponse, type PostV0FractionsSalesPurchaseStatisticsResponses, type PostV0FractionsSalesReceiveFundsAfterNonFundedData, type PostV0FractionsSalesReceiveFundsAfterNonFundedDiscountData, type PostV0FractionsSalesReceiveFundsAfterNonFundedDiscountResponse, type PostV0FractionsSalesReceiveFundsAfterNonFundedDiscountResponses, type PostV0FractionsSalesReceiveFundsAfterNonFundedResponse, type PostV0FractionsSalesReceiveFundsAfterNonFundedResponses, type PostV0FractionsSalesReceiveNonPurchasedWrappedAssetsData, type PostV0FractionsSalesReceiveNonPurchasedWrappedAssetsResponse, type PostV0FractionsSalesReceiveNonPurchasedWrappedAssetsResponses, type PostV0FractionsSalesRecoverData, type PostV0FractionsSalesRecoverResponse, type PostV0FractionsSalesRecoverResponses, type PostV0FractionsSalesRejectData, type PostV0FractionsSalesRejectResponse, type PostV0FractionsSalesRejectResponses, type PostV0FractionsSalesSearchData, type PostV0FractionsSalesSearchResponse, type PostV0FractionsSalesSearchResponses, type PostV0FractionsSalesSetFeeCapLimitData, type PostV0FractionsSalesSetFeeCapLimitResponse, type PostV0FractionsSalesSetFeeCapLimitResponses, type PostV0FractionsSalesStatisticsData, type PostV0FractionsSalesStatisticsResponse, type PostV0FractionsSalesStatisticsResponses, type PostV0FractionsSalesUnlockWrappedAssetsData, type PostV0FractionsSalesUnlockWrappedAssetsResponse, type PostV0FractionsSalesUnlockWrappedAssetsResponses, type PostV0FractionsSalesVestingClaimData, type PostV0FractionsSalesVestingClaimResponse, type PostV0FractionsSalesVestingClaimResponses, type PostV0FractionsSalesVestingClaimStatisticsData, type PostV0FractionsSalesVestingClaimStatisticsResponse, type PostV0FractionsSalesVestingClaimStatisticsResponses, type PostV0FractionsSalesVestingEditCliffData, type PostV0FractionsSalesVestingEditCliffResponse, type PostV0FractionsSalesVestingEditCliffResponses, type PostV0FractionsSalesWithdrawPaymentTokenData, type PostV0FractionsSalesWithdrawPaymentTokenResponse, type PostV0FractionsSalesWithdrawPaymentTokenResponses, type PostV0FractionsSalesWithdrawSearchData, type PostV0FractionsSalesWithdrawSearchResponse, type PostV0FractionsSalesWithdrawSearchResponses, type PostV0FractionsSigAuthDataData, type PostV0FractionsSigAuthDataResponse, type PostV0FractionsSigAuthDataResponses, type PostV0FractionsSigNonceData, type PostV0FractionsSigNonceResponse, type PostV0FractionsSigNonceResponses, type PostV0FractionsStatisticsData, type PostV0FractionsStatisticsHoldersData, type PostV0FractionsStatisticsHoldersResponse, type PostV0FractionsStatisticsHoldersResponses, type PostV0FractionsStatisticsResponse, type PostV0FractionsStatisticsResponses, type PostV0FractionsStatisticsSalesData, type PostV0FractionsStatisticsSalesResponse, type PostV0FractionsStatisticsSalesResponses, type PostV0FractionsStatisticsTtvData, type PostV0FractionsStatisticsTtvResponse, type PostV0FractionsStatisticsTtvResponses, api, envs, getEnv, handleApiResponse };
5497
+ export { type ApiClient, type ApiResponse, type ClientOptions, type GetFractionsMarketsDeployEventData, type GetFractionsMarketsDeployEventResponse, type GetFractionsMarketsDeployEventResponses, type GetFractionsMarketsGetData, type GetFractionsMarketsGetError, type GetFractionsMarketsGetErrors, type GetFractionsMarketsGetResponse, type GetFractionsMarketsGetResponses, type GetFractionsMarketsInitCompilotData, type GetFractionsMarketsInitCompilotResponse, type GetFractionsMarketsInitCompilotResponses, type GetFractionsMarketsSearchData, type GetFractionsMarketsSearchResponse, type GetFractionsMarketsSearchResponses, type GetFractionsRolesData, type GetFractionsRolesResponse, type GetFractionsRolesResponses, type GetFractionsSalesActivityData, type GetFractionsSalesActivityResponse, type GetFractionsSalesActivityResponses, type GetFractionsSalesGetFractionsCreatedEventData, type GetFractionsSalesGetFractionsCreatedEventResponse, type GetFractionsSalesGetFractionsCreatedEventResponses, type GetFractionsSalesGetVaultAddressData, type GetFractionsSalesGetVaultAddressResponse, type GetFractionsSalesGetVaultAddressResponses, type GetFractionsSalesGetWithdrawEventData, type GetFractionsSalesGetWithdrawEventResponse, type GetFractionsSalesGetWithdrawEventResponses, type GetFractionsSalesPurchaseStatisticsData, type GetFractionsSalesPurchaseStatisticsResponse, type GetFractionsSalesPurchaseStatisticsResponses, type GetFractionsSalesSearchData, type GetFractionsSalesSearchResponse, type GetFractionsSalesSearchResponses, type GetFractionsSalesStatisticsData, type GetFractionsSalesStatisticsResponse, type GetFractionsSalesStatisticsResponses, type GetFractionsSalesVestingClaimStatisticsData, type GetFractionsSalesVestingClaimStatisticsResponse, type GetFractionsSalesVestingClaimStatisticsResponses, type GetFractionsSalesVestingGetClaimVestedTokensEventData, type GetFractionsSalesVestingGetClaimVestedTokensEventResponse, type GetFractionsSalesVestingGetClaimVestedTokensEventResponses, type GetFractionsSalesWithdrawSearchData, type GetFractionsSalesWithdrawSearchResponse, type GetFractionsSalesWithdrawSearchResponses, type GetFractionsStatisticsData, type GetFractionsStatisticsHoldersData, type GetFractionsStatisticsHoldersResponse, type GetFractionsStatisticsHoldersResponses, type GetFractionsStatisticsResponse, type GetFractionsStatisticsResponses, type GetFractionsStatisticsSalesData, type GetFractionsStatisticsSalesResponse, type GetFractionsStatisticsSalesResponses, type GetFractionsStatisticsTtvData, type GetFractionsStatisticsTtvResponse, type GetFractionsStatisticsTtvResponses, type GetGeneralBalanceData, type GetGeneralBalanceResponse, type GetGeneralBalanceResponses, type GetGeneralBalancesData, type GetGeneralBalancesResponse, type GetGeneralBalancesResponses, type GetGeneralEstimateGasData, type GetGeneralEstimateGasResponse, type GetGeneralEstimateGasResponses, type GetGeneralSearchBalancesData, type GetGeneralSearchBalancesResponse, type GetGeneralSearchBalancesResponses, type GetIssuanceErc1155GetDeployEventData, type GetIssuanceErc1155GetDeployEventGatedData, type GetIssuanceErc1155GetDeployEventGatedResponse, type GetIssuanceErc1155GetDeployEventGatedResponses, type GetIssuanceErc1155GetDeployEventResponse, type GetIssuanceErc1155GetDeployEventResponses, type GetIssuanceErc1155GetMintedTokenIdData, type GetIssuanceErc1155GetMintedTokenIdResponse, type GetIssuanceErc1155GetMintedTokenIdResponses, type GetIssuanceErc20DeployGatedSimpleData, type GetIssuanceErc20DeployGatedSimpleResponse, type GetIssuanceErc20DeployGatedSimpleResponses, type GetIssuanceErc20GetDeployEventData, type GetIssuanceErc20GetDeployEventGatedData, type GetIssuanceErc20GetDeployEventGatedResponse, type GetIssuanceErc20GetDeployEventGatedResponses, type GetIssuanceErc20GetDeployEventGatedSimpleData, type GetIssuanceErc20GetDeployEventGatedSimpleResponse, type GetIssuanceErc20GetDeployEventGatedSimpleResponses, type GetIssuanceErc20GetDeployEventResponse, type GetIssuanceErc20GetDeployEventResponses, type GetIssuanceErc20GetInitDataData, type GetIssuanceErc20GetInitDataResponse, type GetIssuanceErc20GetInitDataResponses, type GetIssuanceErc721GetDeployEventData, type GetIssuanceErc721GetDeployEventGatedData, type GetIssuanceErc721GetDeployEventGatedResponse, type GetIssuanceErc721GetDeployEventGatedResponses, type GetIssuanceErc721GetDeployEventResponse, type GetIssuanceErc721GetDeployEventResponses, type GetIssuanceErc721GetMintedTokenIdData, type GetIssuanceErc721GetMintedTokenIdResponse, type GetIssuanceErc721GetMintedTokenIdResponses, type GetIssuanceProxyDeployProxyAdminData, type GetIssuanceProxyDeployProxyAdminResponse, type GetIssuanceProxyDeployProxyAdminResponses, type GetStakingPlatformsGetData, type GetStakingPlatformsGetError, type GetStakingPlatformsGetErrors, type GetStakingPlatformsGetResponse, type GetStakingPlatformsGetResponses, type GetStakingPlatformsSearchData, type GetStakingPlatformsSearchResponse, type GetStakingPlatformsSearchResponses, type GetStakingPoolsGetPoolData, type GetStakingPoolsGetPoolError, type GetStakingPoolsGetPoolErrors, type GetStakingPoolsGetPoolResponse, type GetStakingPoolsGetPoolResponses, type GetStakingPoolsSearchPoolsData, type GetStakingPoolsSearchPoolsResponse, type GetStakingPoolsSearchPoolsResponses, type GetStakingRolesGetRolesData, type GetStakingRolesGetRolesResponse, type GetStakingRolesGetRolesResponses, type GetStakingRolesSearchRoleEventsData, type GetStakingRolesSearchRoleEventsResponse, type GetStakingRolesSearchRoleEventsResponses, type GetStakingRolesSearchRolesData, type GetStakingRolesSearchRolesResponse, type GetStakingRolesSearchRolesResponses, type GetStakingStakesGetStakeData, type GetStakingStakesGetStakeError, type GetStakingStakesGetStakeErrors, type GetStakingStakesGetStakeResponse, type GetStakingStakesGetStakeResponses, type GetStakingStakesSearchStakeEventsData, type GetStakingStakesSearchStakeEventsResponse, type GetStakingStakesSearchStakeEventsResponses, type GetStakingStakesSearchStakesData, type GetStakingStakesSearchStakesResponse, type GetStakingStakesSearchStakesResponses, type GetStakingTemplatesReputationGetCreatePoolEventData, type GetStakingTemplatesReputationGetCreatePoolEventResponse, type GetStakingTemplatesReputationGetCreatePoolEventResponses, type GetStakingTemplatesReputationGetPlatformDeployEventData, type GetStakingTemplatesReputationGetPlatformDeployEventResponse, type GetStakingTemplatesReputationGetPlatformDeployEventResponses, type GetStakingTemplatesReputationGetStakeEventData, type GetStakingTemplatesReputationGetStakeEventResponse, type GetStakingTemplatesReputationGetStakeEventResponses, type GetStakingTemplatesReputationLockGetCreatePoolEventData, type GetStakingTemplatesReputationLockGetCreatePoolEventResponse, type GetStakingTemplatesReputationLockGetCreatePoolEventResponses, type GetStakingTemplatesReputationLockGetPlatformDeployEventData, type GetStakingTemplatesReputationLockGetPlatformDeployEventResponse, type GetStakingTemplatesReputationLockGetPlatformDeployEventResponses, type GetStakingTemplatesReputationLockGetStakeEventData, type GetStakingTemplatesReputationLockGetStakeEventResponse, type GetStakingTemplatesReputationLockGetStakeEventResponses, type GetStakingTemplatesRwaGetCreatePoolEventData, type GetStakingTemplatesRwaGetCreatePoolEventResponse, type GetStakingTemplatesRwaGetCreatePoolEventResponses, type GetStakingTemplatesRwaGetPlatformDeployEventData, type GetStakingTemplatesRwaGetPlatformDeployEventResponse, type GetStakingTemplatesRwaGetPlatformDeployEventResponses, type GetStakingTemplatesRwaGetStakeEventData, type GetStakingTemplatesRwaGetStakeEventResponse, type GetStakingTemplatesRwaGetStakeEventResponses, type IApiConfig, type IEnv, type IEnvName, type PostFractionsMarketsDeployContinuousWithdrawData, type PostFractionsMarketsDeployContinuousWithdrawNidData, type PostFractionsMarketsDeployContinuousWithdrawNidResponse, type PostFractionsMarketsDeployContinuousWithdrawNidResponses, type PostFractionsMarketsDeployContinuousWithdrawResponse, type PostFractionsMarketsDeployContinuousWithdrawResponses, type PostFractionsMarketsDeployData, type PostFractionsMarketsDeployNidData, type PostFractionsMarketsDeployNidResponse, type PostFractionsMarketsDeployNidResponses, type PostFractionsMarketsDeployResponse, type PostFractionsMarketsDeployResponses, type PostFractionsRolesGrantData, type PostFractionsRolesGrantResponse, type PostFractionsRolesGrantResponses, type PostFractionsSalesApproveData, type PostFractionsSalesApproveResponse, type PostFractionsSalesApproveResponses, type PostFractionsSalesApproveWrapperData, type PostFractionsSalesApproveWrapperResponse, type PostFractionsSalesApproveWrapperResponses, type PostFractionsSalesCheckAndJumpToNonFundedData, type PostFractionsSalesCheckAndJumpToNonFundedResponse, type PostFractionsSalesCheckAndJumpToNonFundedResponses, type PostFractionsSalesCompleteData, type PostFractionsSalesCompleteResponse, type PostFractionsSalesCompleteResponses, type PostFractionsSalesFractionsData, type PostFractionsSalesFractionsResponse, type PostFractionsSalesFractionsResponses, type PostFractionsSalesPurchaseData, type PostFractionsSalesPurchaseResponse, type PostFractionsSalesPurchaseResponses, type PostFractionsSalesReceiveFundsAfterNonFundedData, type PostFractionsSalesReceiveFundsAfterNonFundedDiscountData, type PostFractionsSalesReceiveFundsAfterNonFundedDiscountResponse, type PostFractionsSalesReceiveFundsAfterNonFundedDiscountResponses, type PostFractionsSalesReceiveFundsAfterNonFundedResponse, type PostFractionsSalesReceiveFundsAfterNonFundedResponses, type PostFractionsSalesReceiveNonPurchasedWrappedAssetsData, type PostFractionsSalesReceiveNonPurchasedWrappedAssetsResponse, type PostFractionsSalesReceiveNonPurchasedWrappedAssetsResponses, type PostFractionsSalesRecoverData, type PostFractionsSalesRecoverResponse, type PostFractionsSalesRecoverResponses, type PostFractionsSalesRejectData, type PostFractionsSalesRejectResponse, type PostFractionsSalesRejectResponses, type PostFractionsSalesSetFeeCapLimitData, type PostFractionsSalesSetFeeCapLimitResponse, type PostFractionsSalesSetFeeCapLimitResponses, type PostFractionsSalesUnlockWrappedAssetsData, type PostFractionsSalesUnlockWrappedAssetsResponse, type PostFractionsSalesUnlockWrappedAssetsResponses, type PostFractionsSalesVestingClaimData, type PostFractionsSalesVestingClaimResponse, type PostFractionsSalesVestingClaimResponses, type PostFractionsSalesVestingEditCliffData, type PostFractionsSalesVestingEditCliffResponse, type PostFractionsSalesVestingEditCliffResponses, type PostFractionsSalesWithdrawPaymentTokenData, type PostFractionsSalesWithdrawPaymentTokenResponse, type PostFractionsSalesWithdrawPaymentTokenResponses, type PostFractionsSigAuthDataData, type PostFractionsSigAuthDataResponse, type PostFractionsSigAuthDataResponses, type PostFractionsSigNonceData, type PostFractionsSigNonceResponse, type PostFractionsSigNonceResponses, type PostIssuanceErc1155BurnData, type PostIssuanceErc1155BurnResponse, type PostIssuanceErc1155BurnResponses, type PostIssuanceErc1155DeployData, type PostIssuanceErc1155DeployGatedData, type PostIssuanceErc1155DeployGatedResponse, type PostIssuanceErc1155DeployGatedResponses, type PostIssuanceErc1155DeployResponse, type PostIssuanceErc1155DeployResponses, type PostIssuanceErc1155GrantRoleData, type PostIssuanceErc1155GrantRoleResponse, type PostIssuanceErc1155GrantRoleResponses, type PostIssuanceErc1155InitializeData, type PostIssuanceErc1155InitializeGatedData, type PostIssuanceErc1155InitializeGatedResponse, type PostIssuanceErc1155InitializeGatedResponses, type PostIssuanceErc1155InitializeResponse, type PostIssuanceErc1155InitializeResponses, type PostIssuanceErc1155MintData, type PostIssuanceErc1155MintResponse, type PostIssuanceErc1155MintResponses, type PostIssuanceErc1155RecoverData, type PostIssuanceErc1155RecoverResponse, type PostIssuanceErc1155RecoverResponses, type PostIssuanceErc1155RenounceRoleData, type PostIssuanceErc1155RenounceRoleResponse, type PostIssuanceErc1155RenounceRoleResponses, type PostIssuanceErc1155RevokeRoleData, type PostIssuanceErc1155RevokeRoleResponse, type PostIssuanceErc1155RevokeRoleResponses, type PostIssuanceErc1155SetApprovalForAllData, type PostIssuanceErc1155SetApprovalForAllResponse, type PostIssuanceErc1155SetApprovalForAllResponses, type PostIssuanceErc1155SetBaseUriData, type PostIssuanceErc1155SetBaseUriResponse, type PostIssuanceErc1155SetBaseUriResponses, type PostIssuanceErc1155SetTokenUriData, type PostIssuanceErc1155SetTokenUriResponse, type PostIssuanceErc1155SetTokenUriResponses, type PostIssuanceErc20ApproveData, type PostIssuanceErc20ApproveResponse, type PostIssuanceErc20ApproveResponses, type PostIssuanceErc20BurnData, type PostIssuanceErc20BurnResponse, type PostIssuanceErc20BurnResponses, type PostIssuanceErc20DeployData, type PostIssuanceErc20DeployGatedData, type PostIssuanceErc20DeployGatedResponse, type PostIssuanceErc20DeployGatedResponses, type PostIssuanceErc20DeployResponse, type PostIssuanceErc20DeployResponses, type PostIssuanceErc20GrantRoleData, type PostIssuanceErc20GrantRoleResponse, type PostIssuanceErc20GrantRoleResponses, type PostIssuanceErc20InitializeData, type PostIssuanceErc20InitializeGatedData, type PostIssuanceErc20InitializeGatedResponse, type PostIssuanceErc20InitializeGatedResponses, type PostIssuanceErc20InitializeResponse, type PostIssuanceErc20InitializeResponses, type PostIssuanceErc20MintData, type PostIssuanceErc20MintResponse, type PostIssuanceErc20MintResponses, type PostIssuanceErc20RecoverData, type PostIssuanceErc20RecoverResponse, type PostIssuanceErc20RecoverResponses, type PostIssuanceErc20RenounceRoleData, type PostIssuanceErc20RenounceRoleResponse, type PostIssuanceErc20RenounceRoleResponses, type PostIssuanceErc20RevokeRoleData, type PostIssuanceErc20RevokeRoleResponse, type PostIssuanceErc20RevokeRoleResponses, type PostIssuanceErc20TransferData, type PostIssuanceErc20TransferFromData, type PostIssuanceErc20TransferFromResponse, type PostIssuanceErc20TransferFromResponses, type PostIssuanceErc20TransferResponse, type PostIssuanceErc20TransferResponses, type PostIssuanceErc721ApproveData, type PostIssuanceErc721ApproveResponse, type PostIssuanceErc721ApproveResponses, type PostIssuanceErc721BurnData, type PostIssuanceErc721BurnResponse, type PostIssuanceErc721BurnResponses, type PostIssuanceErc721DeployData, type PostIssuanceErc721DeployGatedData, type PostIssuanceErc721DeployGatedResponse, type PostIssuanceErc721DeployGatedResponses, type PostIssuanceErc721DeployResponse, type PostIssuanceErc721DeployResponses, type PostIssuanceErc721GrantRoleData, type PostIssuanceErc721GrantRoleResponse, type PostIssuanceErc721GrantRoleResponses, type PostIssuanceErc721InitializeData, type PostIssuanceErc721InitializeGatedData, type PostIssuanceErc721InitializeGatedResponse, type PostIssuanceErc721InitializeGatedResponses, type PostIssuanceErc721InitializeResponse, type PostIssuanceErc721InitializeResponses, type PostIssuanceErc721MintData, type PostIssuanceErc721MintResponse, type PostIssuanceErc721MintResponses, type PostIssuanceErc721RecoverData, type PostIssuanceErc721RecoverResponse, type PostIssuanceErc721RecoverResponses, type PostIssuanceErc721RenounceRoleData, type PostIssuanceErc721RenounceRoleResponse, type PostIssuanceErc721RenounceRoleResponses, type PostIssuanceErc721RevokeRoleData, type PostIssuanceErc721RevokeRoleResponse, type PostIssuanceErc721RevokeRoleResponses, type PostIssuanceErc721SetBaseUriData, type PostIssuanceErc721SetBaseUriResponse, type PostIssuanceErc721SetBaseUriResponses, type PostIssuanceErc721SetTokenUriData, type PostIssuanceErc721SetTokenUriResponse, type PostIssuanceErc721SetTokenUriResponses, type PostIssuanceErc721TransferFromData, type PostIssuanceErc721TransferFromResponse, type PostIssuanceErc721TransferFromResponses, type PostIssuanceProxyDeployTransparentProxyData, type PostIssuanceProxyDeployTransparentProxyResponse, type PostIssuanceProxyDeployTransparentProxyResponses, type PostIssuanceProxyUpgradeTransparentProxyData, type PostIssuanceProxyUpgradeTransparentProxyResponse, type PostIssuanceProxyUpgradeTransparentProxyResponses, type PostStakingRolesGrantRoleData, type PostStakingRolesGrantRoleResponse, type PostStakingRolesGrantRoleResponses, type PostStakingTemplatesReputationCreatePlatformData, type PostStakingTemplatesReputationCreatePlatformResponse, type PostStakingTemplatesReputationCreatePlatformResponses, type PostStakingTemplatesReputationCreatePoolData, type PostStakingTemplatesReputationCreatePoolResponse, type PostStakingTemplatesReputationCreatePoolResponses, type PostStakingTemplatesReputationGetRewardData, type PostStakingTemplatesReputationGetRewardResponse, type PostStakingTemplatesReputationGetRewardResponses, type PostStakingTemplatesReputationLockCreatePlatformData, type PostStakingTemplatesReputationLockCreatePlatformResponse, type PostStakingTemplatesReputationLockCreatePlatformResponses, type PostStakingTemplatesReputationLockCreatePoolData, type PostStakingTemplatesReputationLockCreatePoolResponse, type PostStakingTemplatesReputationLockCreatePoolResponses, type PostStakingTemplatesReputationLockGetRewardData, type PostStakingTemplatesReputationLockGetRewardResponse, type PostStakingTemplatesReputationLockGetRewardResponses, type PostStakingTemplatesReputationLockPartialUnstakeData, type PostStakingTemplatesReputationLockPartialUnstakeResponse, type PostStakingTemplatesReputationLockPartialUnstakeResponses, type PostStakingTemplatesReputationLockRestakeData, type PostStakingTemplatesReputationLockRestakeResponse, type PostStakingTemplatesReputationLockRestakeResponses, type PostStakingTemplatesReputationLockStakeData, type PostStakingTemplatesReputationLockStakeResponse, type PostStakingTemplatesReputationLockStakeResponses, type PostStakingTemplatesReputationLockUnstakeData, type PostStakingTemplatesReputationLockUnstakeResponse, type PostStakingTemplatesReputationLockUnstakeResponses, type PostStakingTemplatesReputationPartialUnstakeData, type PostStakingTemplatesReputationPartialUnstakeResponse, type PostStakingTemplatesReputationPartialUnstakeResponses, type PostStakingTemplatesReputationRestakeData, type PostStakingTemplatesReputationRestakeResponse, type PostStakingTemplatesReputationRestakeResponses, type PostStakingTemplatesReputationStakeData, type PostStakingTemplatesReputationStakeResponse, type PostStakingTemplatesReputationStakeResponses, type PostStakingTemplatesReputationUnstakeData, type PostStakingTemplatesReputationUnstakeResponse, type PostStakingTemplatesReputationUnstakeResponses, type PostStakingTemplatesRwaCreatePlatformData, type PostStakingTemplatesRwaCreatePlatformResponse, type PostStakingTemplatesRwaCreatePlatformResponses, type PostStakingTemplatesRwaCreatePoolData, type PostStakingTemplatesRwaCreatePoolResponse, type PostStakingTemplatesRwaCreatePoolResponses, type PostStakingTemplatesRwaDistributeRewardsData, type PostStakingTemplatesRwaDistributeRewardsResponse, type PostStakingTemplatesRwaDistributeRewardsResponses, type PostStakingTemplatesRwaGetRewardData, type PostStakingTemplatesRwaGetRewardResponse, type PostStakingTemplatesRwaGetRewardResponses, type PostStakingTemplatesRwaPartialUnstakeData, type PostStakingTemplatesRwaPartialUnstakeResponse, type PostStakingTemplatesRwaPartialUnstakeResponses, type PostStakingTemplatesRwaRestakeData, type PostStakingTemplatesRwaRestakeResponse, type PostStakingTemplatesRwaRestakeResponses, type PostStakingTemplatesRwaStakeData, type PostStakingTemplatesRwaStakeResponse, type PostStakingTemplatesRwaStakeResponses, type PostStakingTemplatesRwaUnstakeData, type PostStakingTemplatesRwaUnstakeResponse, type PostStakingTemplatesRwaUnstakeResponses, api, envs, getEnv, handleApiResponse };