@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.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +601 -635
- package/dist/index.d.ts +601 -635
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +5 -5
package/dist/index.d.ts
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
|
|
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
|
|
12
|
+
url: '/staking/platforms/get';
|
|
13
13
|
};
|
|
14
|
-
type
|
|
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
|
|
25
|
-
type
|
|
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
|
|
39
|
-
type
|
|
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
|
|
52
|
-
|
|
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
|
|
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
|
|
68
|
-
type
|
|
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
|
|
81
|
-
|
|
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
|
|
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
|
|
98
|
-
type
|
|
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
|
|
98
|
+
url: '/staking/pools/getPool';
|
|
107
99
|
};
|
|
108
|
-
type
|
|
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
|
|
119
|
-
type
|
|
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
|
|
134
|
-
type
|
|
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
|
|
149
|
-
|
|
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
|
|
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
|
|
171
|
-
type
|
|
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
|
|
186
|
-
|
|
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
|
|
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
|
|
204
|
-
type
|
|
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
|
|
196
|
+
url: '/staking/stakes/getStake';
|
|
213
197
|
};
|
|
214
|
-
type
|
|
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
|
|
225
|
-
type
|
|
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
|
|
245
|
-
type
|
|
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
|
|
233
|
+
url: '/staking/roles/getRoles';
|
|
250
234
|
};
|
|
251
|
-
type
|
|
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
|
|
261
|
-
type
|
|
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
|
|
253
|
+
url: '/staking/roles/grantRole';
|
|
270
254
|
};
|
|
271
|
-
type
|
|
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
|
|
287
|
-
type
|
|
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
|
|
302
|
-
|
|
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
|
|
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
|
|
319
|
-
type
|
|
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
|
|
334
|
-
|
|
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
|
|
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
|
-
|
|
344
|
-
poolId?: string;
|
|
321
|
+
txHash: string;
|
|
345
322
|
owner: string;
|
|
346
|
-
|
|
347
|
-
|
|
323
|
+
poolId?: string;
|
|
324
|
+
isRevoked: boolean;
|
|
348
325
|
}>;
|
|
349
326
|
};
|
|
350
|
-
type
|
|
351
|
-
type
|
|
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/
|
|
335
|
+
url: '/stakingTemplates/reputation/getPlatformDeployEvent';
|
|
359
336
|
};
|
|
360
|
-
type
|
|
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
|
|
370
|
-
type
|
|
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/
|
|
354
|
+
url: '/stakingTemplates/reputation/getStakeEvent';
|
|
378
355
|
};
|
|
379
|
-
type
|
|
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
|
|
391
|
-
type
|
|
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/
|
|
378
|
+
url: '/stakingTemplates/reputation/getCreatePoolEvent';
|
|
399
379
|
};
|
|
400
|
-
type
|
|
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
|
|
411
|
-
type
|
|
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/
|
|
398
|
+
url: '/stakingTemplates/reputation/getReward';
|
|
419
399
|
};
|
|
420
|
-
type
|
|
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
|
|
436
|
-
type
|
|
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/
|
|
424
|
+
url: '/stakingTemplates/reputation/partialUnstake';
|
|
445
425
|
};
|
|
446
|
-
type
|
|
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
|
|
462
|
-
type
|
|
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/
|
|
450
|
+
url: '/stakingTemplates/reputation/restake';
|
|
471
451
|
};
|
|
472
|
-
type
|
|
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
|
|
488
|
-
type
|
|
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/
|
|
476
|
+
url: '/stakingTemplates/reputation/stake';
|
|
497
477
|
};
|
|
498
|
-
type
|
|
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
|
|
514
|
-
type
|
|
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/
|
|
501
|
+
url: '/stakingTemplates/reputation/unstake';
|
|
522
502
|
};
|
|
523
|
-
type
|
|
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
|
|
539
|
-
type
|
|
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/
|
|
543
|
+
url: '/stakingTemplates/reputation/createPool';
|
|
564
544
|
};
|
|
565
|
-
type
|
|
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
|
|
581
|
-
type
|
|
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/
|
|
574
|
+
url: '/stakingTemplates/reputation/createPlatform';
|
|
595
575
|
};
|
|
596
|
-
type
|
|
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
|
|
612
|
-
type
|
|
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/
|
|
599
|
+
url: '/stakingTemplates/reputationLock/getPlatformDeployEvent';
|
|
620
600
|
};
|
|
621
|
-
type
|
|
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
|
|
631
|
-
type
|
|
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/
|
|
618
|
+
url: '/stakingTemplates/reputationLock/getStakeEvent';
|
|
639
619
|
};
|
|
640
|
-
type
|
|
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
|
|
652
|
-
type
|
|
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/
|
|
642
|
+
url: '/stakingTemplates/reputationLock/getCreatePoolEvent';
|
|
660
643
|
};
|
|
661
|
-
type
|
|
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
|
|
672
|
-
type
|
|
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/
|
|
662
|
+
url: '/stakingTemplates/reputationLock/getReward';
|
|
680
663
|
};
|
|
681
|
-
type
|
|
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
|
|
697
|
-
type
|
|
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/
|
|
688
|
+
url: '/stakingTemplates/reputationLock/partialUnstake';
|
|
706
689
|
};
|
|
707
|
-
type
|
|
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
|
|
723
|
-
type
|
|
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/
|
|
715
|
+
url: '/stakingTemplates/reputationLock/restake';
|
|
733
716
|
};
|
|
734
|
-
type
|
|
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
|
|
750
|
-
type
|
|
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/
|
|
742
|
+
url: '/stakingTemplates/reputationLock/stake';
|
|
760
743
|
};
|
|
761
|
-
type
|
|
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
|
|
777
|
-
type
|
|
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/
|
|
767
|
+
url: '/stakingTemplates/reputationLock/unstake';
|
|
785
768
|
};
|
|
786
|
-
type
|
|
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
|
|
802
|
-
type
|
|
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/
|
|
821
|
+
url: '/stakingTemplates/reputationLock/createPool';
|
|
839
822
|
};
|
|
840
|
-
type
|
|
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
|
|
856
|
-
type
|
|
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/
|
|
852
|
+
url: '/stakingTemplates/reputationLock/createPlatform';
|
|
870
853
|
};
|
|
871
|
-
type
|
|
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
|
|
887
|
-
type
|
|
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/
|
|
877
|
+
url: '/stakingTemplates/rwa/getPlatformDeployEvent';
|
|
895
878
|
};
|
|
896
|
-
type
|
|
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
|
|
906
|
-
type
|
|
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/
|
|
896
|
+
url: '/stakingTemplates/rwa/getStakeEvent';
|
|
914
897
|
};
|
|
915
|
-
type
|
|
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
|
|
927
|
-
type
|
|
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/
|
|
920
|
+
url: '/stakingTemplates/rwa/getCreatePoolEvent';
|
|
935
921
|
};
|
|
936
|
-
type
|
|
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
|
|
947
|
-
type
|
|
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/
|
|
940
|
+
url: '/stakingTemplates/rwa/getReward';
|
|
955
941
|
};
|
|
956
|
-
type
|
|
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
|
|
972
|
-
type
|
|
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/
|
|
966
|
+
url: '/stakingTemplates/rwa/partialUnstake';
|
|
981
967
|
};
|
|
982
|
-
type
|
|
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
|
|
998
|
-
type
|
|
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/
|
|
992
|
+
url: '/stakingTemplates/rwa/restake';
|
|
1007
993
|
};
|
|
1008
|
-
type
|
|
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
|
|
1024
|
-
type
|
|
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/
|
|
1018
|
+
url: '/stakingTemplates/rwa/stake';
|
|
1033
1019
|
};
|
|
1034
|
-
type
|
|
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
|
|
1050
|
-
type
|
|
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/
|
|
1043
|
+
url: '/stakingTemplates/rwa/unstake';
|
|
1058
1044
|
};
|
|
1059
|
-
type
|
|
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
|
|
1075
|
-
type
|
|
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/
|
|
1081
|
+
url: '/stakingTemplates/rwa/createPool';
|
|
1096
1082
|
};
|
|
1097
|
-
type
|
|
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
|
|
1113
|
-
type
|
|
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/
|
|
1112
|
+
url: '/stakingTemplates/rwa/createPlatform';
|
|
1127
1113
|
};
|
|
1128
|
-
type
|
|
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
|
|
1144
|
-
type
|
|
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/
|
|
1138
|
+
url: '/stakingTemplates/rwa/distributeRewards';
|
|
1153
1139
|
};
|
|
1154
|
-
type
|
|
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
|
|
1170
|
-
type
|
|
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: '/
|
|
1163
|
+
url: '/fractions/markets/get';
|
|
1178
1164
|
};
|
|
1179
|
-
type
|
|
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
|
|
1190
|
-
type
|
|
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
|
|
1217
|
-
type
|
|
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
|
|
1230
|
-
|
|
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
|
|
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
|
|
1259
|
-
type
|
|
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: '/
|
|
1248
|
+
url: '/fractions/markets/deployEvent';
|
|
1267
1249
|
};
|
|
1268
|
-
type
|
|
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
|
|
1279
|
-
type
|
|
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: '/
|
|
1312
|
+
url: '/fractions/markets/deploy';
|
|
1331
1313
|
};
|
|
1332
|
-
type
|
|
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
|
|
1348
|
-
type
|
|
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: '/
|
|
1381
|
+
url: '/fractions/markets/deployNid';
|
|
1400
1382
|
};
|
|
1401
|
-
type
|
|
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
|
|
1417
|
-
type
|
|
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: '/
|
|
1450
|
+
url: '/fractions/markets/deployContinuousWithdraw';
|
|
1469
1451
|
};
|
|
1470
|
-
type
|
|
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
|
|
1486
|
-
type
|
|
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: '/
|
|
1519
|
+
url: '/fractions/markets/deployContinuousWithdrawNid';
|
|
1538
1520
|
};
|
|
1539
|
-
type
|
|
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
|
|
1555
|
-
type
|
|
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: '/
|
|
1550
|
+
url: '/fractions/markets/initCompilot';
|
|
1569
1551
|
};
|
|
1570
|
-
type
|
|
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
|
|
1586
|
-
type
|
|
1567
|
+
type GetFractionsMarketsInitCompilotResponse = GetFractionsMarketsInitCompilotResponses[keyof GetFractionsMarketsInitCompilotResponses];
|
|
1568
|
+
type GetFractionsRolesData = {
|
|
1587
1569
|
body?: never;
|
|
1588
1570
|
path?: never;
|
|
1589
1571
|
query?: never;
|
|
1590
|
-
url: '/
|
|
1572
|
+
url: '/fractions/roles';
|
|
1591
1573
|
};
|
|
1592
|
-
type
|
|
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
|
|
1602
|
-
type
|
|
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: '/
|
|
1601
|
+
url: '/fractions/roles/grant';
|
|
1620
1602
|
};
|
|
1621
|
-
type
|
|
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
|
|
1637
|
-
type
|
|
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: '/
|
|
1743
|
+
url: '/fractions/sales/fractions';
|
|
1762
1744
|
};
|
|
1763
|
-
type
|
|
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
|
|
1779
|
-
type
|
|
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: '/
|
|
1768
|
+
url: '/fractions/sales/getFractionsCreatedEvent';
|
|
1787
1769
|
};
|
|
1788
|
-
type
|
|
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
|
|
1802
|
-
type
|
|
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: '/
|
|
1799
|
+
url: '/fractions/sales/approve';
|
|
1818
1800
|
};
|
|
1819
|
-
type
|
|
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
|
|
1835
|
-
type
|
|
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: '/
|
|
1830
|
+
url: '/fractions/sales/reject';
|
|
1849
1831
|
};
|
|
1850
|
-
type
|
|
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
|
|
1866
|
-
type
|
|
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: '/
|
|
1879
|
+
url: '/fractions/sales/recover';
|
|
1898
1880
|
};
|
|
1899
|
-
type
|
|
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
|
|
1915
|
-
type
|
|
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: '/
|
|
1912
|
+
url: '/fractions/sales/complete';
|
|
1931
1913
|
};
|
|
1932
|
-
type
|
|
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
|
|
1948
|
-
type
|
|
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: '/
|
|
1945
|
+
url: '/fractions/sales/unlockWrappedAssets';
|
|
1964
1946
|
};
|
|
1965
|
-
type
|
|
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
|
|
1981
|
-
type
|
|
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: '/
|
|
1991
|
+
url: '/fractions/sales/purchase';
|
|
2010
1992
|
};
|
|
2011
|
-
type
|
|
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
|
|
2027
|
-
type
|
|
2028
|
-
body?:
|
|
2029
|
-
|
|
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
|
-
|
|
2035
|
-
query?: never;
|
|
2036
|
-
url: '/v0/fractions/sales/purchase/statistics';
|
|
2018
|
+
url: '/fractions/sales/purchase/statistics';
|
|
2037
2019
|
};
|
|
2038
|
-
type
|
|
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
|
|
2054
|
-
type
|
|
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
|
|
2068
|
-
|
|
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
|
|
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
|
|
2142
|
-
type
|
|
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: '/
|
|
2135
|
+
url: '/fractions/sales/withdrawPaymentToken';
|
|
2158
2136
|
};
|
|
2159
|
-
type
|
|
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
|
|
2175
|
-
type
|
|
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: '/
|
|
2172
|
+
url: '/fractions/sales/receiveFundsAfterNonFunded';
|
|
2195
2173
|
};
|
|
2196
|
-
type
|
|
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
|
|
2212
|
-
type
|
|
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: '/
|
|
2213
|
+
url: '/fractions/sales/receiveFundsAfterNonFundedDiscount';
|
|
2236
2214
|
};
|
|
2237
|
-
type
|
|
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
|
|
2253
|
-
type
|
|
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: '/
|
|
2246
|
+
url: '/fractions/sales/checkAndJumpToNonFunded';
|
|
2269
2247
|
};
|
|
2270
|
-
type
|
|
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
|
|
2286
|
-
type
|
|
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: '/
|
|
2279
|
+
url: '/fractions/sales/receiveNonPurchasedWrappedAssets';
|
|
2302
2280
|
};
|
|
2303
|
-
type
|
|
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
|
|
2319
|
-
type
|
|
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: '/
|
|
2314
|
+
url: '/fractions/sales/vesting/editCliff';
|
|
2337
2315
|
};
|
|
2338
|
-
type
|
|
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
|
|
2354
|
-
type
|
|
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: '/
|
|
2353
|
+
url: '/fractions/sales/vesting/claim';
|
|
2376
2354
|
};
|
|
2377
|
-
type
|
|
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
|
|
2393
|
-
type
|
|
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
|
-
|
|
2401
|
-
query?: never;
|
|
2402
|
-
url: '/v0/fractions/sales/vesting/claim/statistics';
|
|
2380
|
+
url: '/fractions/sales/vesting/claim/statistics';
|
|
2403
2381
|
};
|
|
2404
|
-
type
|
|
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
|
|
2421
|
-
type
|
|
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: '/
|
|
2406
|
+
url: '/fractions/sales/vesting/getClaimVestedTokensEvent';
|
|
2429
2407
|
};
|
|
2430
|
-
type
|
|
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
|
|
2443
|
-
type
|
|
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
|
|
2458
|
-
|
|
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
|
|
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
|
|
2532
|
-
type
|
|
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
|
|
2547
|
-
|
|
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
|
|
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
|
|
2601
|
-
type
|
|
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
|
-
|
|
2608
|
-
query?: never;
|
|
2609
|
-
url: '/v0/fractions/sales/statistics';
|
|
2579
|
+
url: '/fractions/sales/statistics';
|
|
2610
2580
|
};
|
|
2611
|
-
type
|
|
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
|
|
2624
|
-
type
|
|
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: '/
|
|
2613
|
+
url: '/fractions/sales/setFeeCapLimit';
|
|
2644
2614
|
};
|
|
2645
|
-
type
|
|
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
|
|
2661
|
-
type
|
|
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: '/
|
|
2638
|
+
url: '/fractions/sales/getWithdrawEvent';
|
|
2669
2639
|
};
|
|
2670
|
-
type
|
|
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
|
|
2681
|
-
type
|
|
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: '/
|
|
2659
|
+
url: '/fractions/sales/getVaultAddress';
|
|
2690
2660
|
};
|
|
2691
|
-
type
|
|
2661
|
+
type GetFractionsSalesGetVaultAddressResponses = {
|
|
2692
2662
|
/**
|
|
2693
2663
|
* Returns address of vault
|
|
2694
2664
|
*/
|
|
2695
2665
|
200: {
|
|
2696
|
-
|
|
2666
|
+
vaultAddress: string;
|
|
2697
2667
|
};
|
|
2698
2668
|
};
|
|
2699
|
-
type
|
|
2700
|
-
type
|
|
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: '/
|
|
2683
|
+
url: '/fractions/sales/approveWrapper';
|
|
2714
2684
|
};
|
|
2715
|
-
type
|
|
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
|
|
2731
|
-
type
|
|
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: '/
|
|
2709
|
+
url: '/fractions/sig/nonce';
|
|
2740
2710
|
};
|
|
2741
|
-
type
|
|
2711
|
+
type PostFractionsSigNonceResponses = {
|
|
2742
2712
|
/**
|
|
2743
2713
|
* Returns transaction data for approving a sale
|
|
2744
2714
|
*/
|
|
2745
2715
|
200: {
|
|
2746
|
-
|
|
2747
|
-
userAddress: string;
|
|
2748
|
-
chainId: '1' | '11155111' | '84532' | '72080' | '31337';
|
|
2716
|
+
nonce: string;
|
|
2749
2717
|
};
|
|
2750
2718
|
};
|
|
2751
|
-
type
|
|
2752
|
-
type
|
|
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: '/
|
|
2731
|
+
url: '/fractions/sig/authData';
|
|
2764
2732
|
};
|
|
2765
|
-
type
|
|
2733
|
+
type PostFractionsSigAuthDataResponses = {
|
|
2766
2734
|
/**
|
|
2767
2735
|
* Returns TX auth data
|
|
2768
2736
|
*/
|
|
2769
2737
|
200: {
|
|
2770
|
-
|
|
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
|
|
2779
|
-
type
|
|
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
|
-
|
|
2784
|
-
query?: never;
|
|
2785
|
-
url: '/v0/fractions/statistics/holders';
|
|
2749
|
+
url: '/fractions/statistics/holders';
|
|
2786
2750
|
};
|
|
2787
|
-
type
|
|
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
|
|
2798
|
-
type
|
|
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
|
-
|
|
2803
|
-
query?: never;
|
|
2804
|
-
url: '/v0/fractions/statistics/sales';
|
|
2768
|
+
url: '/fractions/statistics/sales';
|
|
2805
2769
|
};
|
|
2806
|
-
type
|
|
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
|
|
2817
|
-
type
|
|
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
|
-
|
|
2822
|
-
query?: never;
|
|
2823
|
-
url: '/v0/fractions/statistics/ttv';
|
|
2787
|
+
url: '/fractions/statistics/ttv';
|
|
2824
2788
|
};
|
|
2825
|
-
type
|
|
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
|
|
2836
|
-
type
|
|
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
|
-
|
|
2841
|
-
query?: never;
|
|
2842
|
-
url: '/v0/fractions/statistics';
|
|
2806
|
+
url: '/fractions/statistics';
|
|
2843
2807
|
};
|
|
2844
|
-
type
|
|
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
|
|
2863
|
-
type
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
2928
|
-
type
|
|
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
|
|
2901
|
+
type GetGeneralSearchBalancesResponses = {
|
|
2938
2902
|
/**
|
|
2939
2903
|
* Returns ERC20 balances of a wallet
|
|
2940
2904
|
*/
|
|
2941
2905
|
200: {
|
|
2942
2906
|
balances: Array<{
|
|
2943
|
-
|
|
2944
|
-
|
|
2945
|
-
|
|
2946
|
-
|
|
2947
|
-
|
|
2948
|
-
|
|
2949
|
-
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
4317
|
+
searchBalances: <ThrowOnError extends boolean = false>(options: Options<GetGeneralSearchBalancesData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
|
|
4355
4318
|
balances: Array<{
|
|
4356
|
-
|
|
4357
|
-
|
|
4358
|
-
|
|
4359
|
-
|
|
4360
|
-
|
|
4361
|
-
|
|
4362
|
-
|
|
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
|
|
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
|
|
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<
|
|
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<
|
|
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<
|
|
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<
|
|
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<
|
|
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<
|
|
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<
|
|
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<
|
|
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<
|
|
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<
|
|
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<
|
|
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<
|
|
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<
|
|
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<
|
|
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<
|
|
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<
|
|
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<
|
|
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<
|
|
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<
|
|
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<
|
|
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<
|
|
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<
|
|
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<
|
|
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<
|
|
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<
|
|
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<
|
|
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<
|
|
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<
|
|
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<
|
|
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<
|
|
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<
|
|
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<
|
|
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<
|
|
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
|
|
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
|
|
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
|
-
|
|
4693
|
-
poolId?: string;
|
|
4665
|
+
txHash: string;
|
|
4694
4666
|
owner: string;
|
|
4695
|
-
|
|
4696
|
-
|
|
4667
|
+
poolId?: string;
|
|
4668
|
+
isRevoked: boolean;
|
|
4697
4669
|
}[], unknown, ThrowOnError>;
|
|
4698
4670
|
};
|
|
4699
4671
|
stakes: {
|
|
4700
|
-
getStake: <ThrowOnError extends boolean = false>(options: Options<
|
|
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
|
|
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
|
|
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<
|
|
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
|
|
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<
|
|
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
|
|
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<
|
|
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<
|
|
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<
|
|
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<
|
|
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<
|
|
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
|
|
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<
|
|
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<
|
|
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<
|
|
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<
|
|
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<
|
|
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<
|
|
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<
|
|
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<
|
|
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<
|
|
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<
|
|
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
|
|
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
|
|
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
|
|
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<
|
|
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<
|
|
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<
|
|
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
|
|
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<
|
|
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<
|
|
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<
|
|
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<
|
|
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<
|
|
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<
|
|
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
|
|
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<
|
|
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<
|
|
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<
|
|
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<
|
|
5231
|
-
|
|
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<
|
|
5239
|
-
|
|
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 };
|