@evergonlabs/tmi-protocol-api-client 0.22.0-rc.0 → 0.22.0-rc.2
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 +709 -1408
- package/dist/index.d.ts +709 -1408
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +5 -5
package/dist/index.d.cts
CHANGED
|
@@ -6,7 +6,7 @@ type GetStakingPlatformsGetV0Data = {
|
|
|
6
6
|
body?: never;
|
|
7
7
|
path?: never;
|
|
8
8
|
query: {
|
|
9
|
-
chainId: 11155111 | 84532 | 31337;
|
|
9
|
+
chainId: '11155111' | '84532' | '31337';
|
|
10
10
|
address: string;
|
|
11
11
|
};
|
|
12
12
|
url: '/staking/platforms/get/v0';
|
|
@@ -27,12 +27,12 @@ type GetStakingPlatformsGetV0Responses = {
|
|
|
27
27
|
* Platform details
|
|
28
28
|
*/
|
|
29
29
|
200: {
|
|
30
|
-
chainId: 11155111 | 84532 | 31337;
|
|
30
|
+
chainId: '11155111' | '84532' | '31337';
|
|
31
31
|
transactionHash: string;
|
|
32
|
-
createdAt:
|
|
32
|
+
createdAt: string;
|
|
33
33
|
contractAddress: string;
|
|
34
34
|
adminAddress: string;
|
|
35
|
-
updatedAt:
|
|
35
|
+
updatedAt: string;
|
|
36
36
|
};
|
|
37
37
|
};
|
|
38
38
|
type GetStakingPlatformsGetV0Response = GetStakingPlatformsGetV0Responses[keyof GetStakingPlatformsGetV0Responses];
|
|
@@ -43,7 +43,7 @@ type PostStakingPlatformsSearchV0Data = {
|
|
|
43
43
|
limit: number;
|
|
44
44
|
};
|
|
45
45
|
filter: {
|
|
46
|
-
chainId?: 11155111 | 84532 | 31337;
|
|
46
|
+
chainId?: '11155111' | '84532' | '31337';
|
|
47
47
|
owner?: string;
|
|
48
48
|
};
|
|
49
49
|
};
|
|
@@ -56,12 +56,12 @@ type PostStakingPlatformsSearchV0Responses = {
|
|
|
56
56
|
* Returns list of platforms by specified filter
|
|
57
57
|
*/
|
|
58
58
|
200: Array<{
|
|
59
|
-
chainId: 11155111 | 84532 | 31337;
|
|
59
|
+
chainId: '11155111' | '84532' | '31337';
|
|
60
60
|
transactionHash: string;
|
|
61
|
-
createdAt:
|
|
61
|
+
createdAt: string;
|
|
62
62
|
contractAddress: string;
|
|
63
63
|
adminAddress: string;
|
|
64
|
-
updatedAt:
|
|
64
|
+
updatedAt: string;
|
|
65
65
|
}>;
|
|
66
66
|
};
|
|
67
67
|
type PostStakingPlatformsSearchV0Response = PostStakingPlatformsSearchV0Responses[keyof PostStakingPlatformsSearchV0Responses];
|
|
@@ -72,7 +72,7 @@ type PostStakingPoolsSearchPoolsV0Data = {
|
|
|
72
72
|
limit: number;
|
|
73
73
|
};
|
|
74
74
|
filter: {
|
|
75
|
-
chainId?: 11155111 | 84532 | 31337;
|
|
75
|
+
chainId?: '11155111' | '84532' | '31337';
|
|
76
76
|
platform?: string;
|
|
77
77
|
};
|
|
78
78
|
};
|
|
@@ -85,13 +85,13 @@ type PostStakingPoolsSearchPoolsV0Responses = {
|
|
|
85
85
|
* Returns list of pools by specified filter
|
|
86
86
|
*/
|
|
87
87
|
200: Array<{
|
|
88
|
-
chainId: 11155111 | 84532 | 31337;
|
|
88
|
+
chainId: '11155111' | '84532' | '31337';
|
|
89
89
|
platform: string;
|
|
90
90
|
rewardsHandler: string;
|
|
91
91
|
assetHandler: string;
|
|
92
92
|
txHash: string;
|
|
93
93
|
poolId: string;
|
|
94
|
-
createdAt:
|
|
94
|
+
createdAt: string;
|
|
95
95
|
}>;
|
|
96
96
|
};
|
|
97
97
|
type PostStakingPoolsSearchPoolsV0Response = PostStakingPoolsSearchPoolsV0Responses[keyof PostStakingPoolsSearchPoolsV0Responses];
|
|
@@ -99,7 +99,7 @@ type GetStakingPoolsGetPoolV0Data = {
|
|
|
99
99
|
body?: never;
|
|
100
100
|
path?: never;
|
|
101
101
|
query: {
|
|
102
|
-
chainId: 11155111 | 84532 | 31337;
|
|
102
|
+
chainId: '11155111' | '84532' | '31337';
|
|
103
103
|
poolId: string;
|
|
104
104
|
platform: string;
|
|
105
105
|
};
|
|
@@ -121,13 +121,13 @@ type GetStakingPoolsGetPoolV0Responses = {
|
|
|
121
121
|
* List platforms
|
|
122
122
|
*/
|
|
123
123
|
200: {
|
|
124
|
-
chainId: 11155111 | 84532 | 31337;
|
|
124
|
+
chainId: '11155111' | '84532' | '31337';
|
|
125
125
|
platform: string;
|
|
126
126
|
rewardsHandler: string;
|
|
127
127
|
assetHandler: string;
|
|
128
128
|
txHash: string;
|
|
129
129
|
poolId: string;
|
|
130
|
-
createdAt:
|
|
130
|
+
createdAt: string;
|
|
131
131
|
};
|
|
132
132
|
};
|
|
133
133
|
type GetStakingPoolsGetPoolV0Response = GetStakingPoolsGetPoolV0Responses[keyof GetStakingPoolsGetPoolV0Responses];
|
|
@@ -138,7 +138,7 @@ type PostStakingStakesSearchStakesV0Data = {
|
|
|
138
138
|
limit: number;
|
|
139
139
|
};
|
|
140
140
|
filter: {
|
|
141
|
-
chainId?: 11155111 | 84532 | 31337;
|
|
141
|
+
chainId?: '11155111' | '84532' | '31337';
|
|
142
142
|
owner?: string;
|
|
143
143
|
platform?: string;
|
|
144
144
|
poolId?: string;
|
|
@@ -153,7 +153,7 @@ type PostStakingStakesSearchStakesV0Responses = {
|
|
|
153
153
|
* Returns list of stakes within specified platforms and pools
|
|
154
154
|
*/
|
|
155
155
|
200: Array<{
|
|
156
|
-
chainId: 11155111 | 84532 | 31337;
|
|
156
|
+
chainId: '11155111' | '84532' | '31337';
|
|
157
157
|
platform: string;
|
|
158
158
|
poolId?: string;
|
|
159
159
|
owner: string;
|
|
@@ -161,10 +161,10 @@ type PostStakingStakesSearchStakesV0Responses = {
|
|
|
161
161
|
activePackets: string;
|
|
162
162
|
rewardsClaimed: string;
|
|
163
163
|
isActive: boolean;
|
|
164
|
-
unlockTimestamp:
|
|
165
|
-
startTimestamp:
|
|
166
|
-
createdAt:
|
|
167
|
-
updatedAt:
|
|
164
|
+
unlockTimestamp: string;
|
|
165
|
+
startTimestamp: string;
|
|
166
|
+
createdAt: string;
|
|
167
|
+
updatedAt: string;
|
|
168
168
|
}>;
|
|
169
169
|
};
|
|
170
170
|
type PostStakingStakesSearchStakesV0Response = PostStakingStakesSearchStakesV0Responses[keyof PostStakingStakesSearchStakesV0Responses];
|
|
@@ -175,7 +175,7 @@ type PostStakingStakesSearchStakeEventsV0Data = {
|
|
|
175
175
|
limit: number;
|
|
176
176
|
};
|
|
177
177
|
filter: {
|
|
178
|
-
chainId?: 11155111 | 84532 | 31337;
|
|
178
|
+
chainId?: '11155111' | '84532' | '31337';
|
|
179
179
|
owner?: string;
|
|
180
180
|
platform?: string;
|
|
181
181
|
poolId?: string;
|
|
@@ -191,12 +191,12 @@ type PostStakingStakesSearchStakeEventsV0Responses = {
|
|
|
191
191
|
*/
|
|
192
192
|
200: Array<{
|
|
193
193
|
id: string;
|
|
194
|
-
chainId: 11155111 | 84532 | 31337;
|
|
194
|
+
chainId: '11155111' | '84532' | '31337';
|
|
195
195
|
platform: string;
|
|
196
196
|
poolId?: string;
|
|
197
197
|
owner: string;
|
|
198
198
|
stakeId: string;
|
|
199
|
-
createdAt:
|
|
199
|
+
createdAt: string;
|
|
200
200
|
txHash: string;
|
|
201
201
|
}>;
|
|
202
202
|
};
|
|
@@ -205,7 +205,7 @@ type GetStakingStakesGetStakeV0Data = {
|
|
|
205
205
|
body?: never;
|
|
206
206
|
path?: never;
|
|
207
207
|
query: {
|
|
208
|
-
chainId: 11155111 | 84532 | 31337;
|
|
208
|
+
chainId: '11155111' | '84532' | '31337';
|
|
209
209
|
platform: string;
|
|
210
210
|
stakeId: string;
|
|
211
211
|
};
|
|
@@ -227,7 +227,7 @@ type GetStakingStakesGetStakeV0Responses = {
|
|
|
227
227
|
* Stake details
|
|
228
228
|
*/
|
|
229
229
|
200: {
|
|
230
|
-
chainId: 11155111 | 84532 | 31337;
|
|
230
|
+
chainId: '11155111' | '84532' | '31337';
|
|
231
231
|
platform: string;
|
|
232
232
|
poolId?: string;
|
|
233
233
|
owner: string;
|
|
@@ -235,10 +235,10 @@ type GetStakingStakesGetStakeV0Responses = {
|
|
|
235
235
|
activePackets: string;
|
|
236
236
|
rewardsClaimed: string;
|
|
237
237
|
isActive: boolean;
|
|
238
|
-
unlockTimestamp:
|
|
239
|
-
startTimestamp:
|
|
240
|
-
createdAt:
|
|
241
|
-
updatedAt:
|
|
238
|
+
unlockTimestamp: string;
|
|
239
|
+
startTimestamp: string;
|
|
240
|
+
createdAt: string;
|
|
241
|
+
updatedAt: string;
|
|
242
242
|
};
|
|
243
243
|
};
|
|
244
244
|
type GetStakingStakesGetStakeV0Response = GetStakingStakesGetStakeV0Responses[keyof GetStakingStakesGetStakeV0Responses];
|
|
@@ -291,7 +291,7 @@ type PostStakingRolesSearchRolesV0Data = {
|
|
|
291
291
|
limit: number;
|
|
292
292
|
};
|
|
293
293
|
filter: {
|
|
294
|
-
chainId?: 11155111 | 84532 | 31337;
|
|
294
|
+
chainId?: '11155111' | '84532' | '31337';
|
|
295
295
|
owner?: string;
|
|
296
296
|
platform?: string;
|
|
297
297
|
poolId?: string;
|
|
@@ -306,13 +306,13 @@ type PostStakingRolesSearchRolesV0Responses = {
|
|
|
306
306
|
* Returns list of assignments within specified platforms and pools
|
|
307
307
|
*/
|
|
308
308
|
200: Array<{
|
|
309
|
-
chainId: 11155111 | 84532 | 31337;
|
|
309
|
+
chainId: '11155111' | '84532' | '31337';
|
|
310
310
|
platform: string;
|
|
311
311
|
roleId: string;
|
|
312
312
|
poolId?: string;
|
|
313
313
|
owner: string;
|
|
314
|
-
createdAt:
|
|
315
|
-
updatedAt:
|
|
314
|
+
createdAt: string;
|
|
315
|
+
updatedAt: string;
|
|
316
316
|
}>;
|
|
317
317
|
};
|
|
318
318
|
type PostStakingRolesSearchRolesV0Response = PostStakingRolesSearchRolesV0Responses[keyof PostStakingRolesSearchRolesV0Responses];
|
|
@@ -323,7 +323,7 @@ type PostStakingRolesSearchRoleEventsV0Data = {
|
|
|
323
323
|
limit: number;
|
|
324
324
|
};
|
|
325
325
|
filter: {
|
|
326
|
-
chainId?: 11155111 | 84532 | 31337;
|
|
326
|
+
chainId?: '11155111' | '84532' | '31337';
|
|
327
327
|
owner?: string;
|
|
328
328
|
platform?: string;
|
|
329
329
|
poolId?: string;
|
|
@@ -338,13 +338,13 @@ type PostStakingRolesSearchRoleEventsV0Responses = {
|
|
|
338
338
|
* Returns list of role events by some filter
|
|
339
339
|
*/
|
|
340
340
|
200: Array<{
|
|
341
|
-
chainId: 11155111 | 84532 | 31337;
|
|
341
|
+
chainId: '11155111' | '84532' | '31337';
|
|
342
342
|
platform: string;
|
|
343
343
|
roleId: string;
|
|
344
344
|
poolId?: string;
|
|
345
345
|
owner: string;
|
|
346
|
-
createdAt:
|
|
347
|
-
updatedAt:
|
|
346
|
+
createdAt: string;
|
|
347
|
+
updatedAt: string;
|
|
348
348
|
}>;
|
|
349
349
|
};
|
|
350
350
|
type PostStakingRolesSearchRoleEventsV0Response = PostStakingRolesSearchRoleEventsV0Responses[keyof PostStakingRolesSearchRoleEventsV0Responses];
|
|
@@ -352,7 +352,7 @@ type GetStakingTemplatesReputationV0GetPlatformDeployEventData = {
|
|
|
352
352
|
body?: never;
|
|
353
353
|
path?: never;
|
|
354
354
|
query: {
|
|
355
|
-
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
355
|
+
chainId: '1' | '11155111' | '84532' | '72080' | '31337';
|
|
356
356
|
hash: string;
|
|
357
357
|
};
|
|
358
358
|
url: '/stakingTemplates/reputation/v0/getPlatformDeployEvent';
|
|
@@ -371,7 +371,7 @@ type GetStakingTemplatesReputationV0GetStakeEventData = {
|
|
|
371
371
|
body?: never;
|
|
372
372
|
path?: never;
|
|
373
373
|
query: {
|
|
374
|
-
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
374
|
+
chainId: '1' | '11155111' | '84532' | '72080' | '31337';
|
|
375
375
|
hash: string;
|
|
376
376
|
};
|
|
377
377
|
url: '/stakingTemplates/reputation/v0/getStakeEvent';
|
|
@@ -392,7 +392,7 @@ type GetStakingTemplatesReputationV0GetCreatePoolEventData = {
|
|
|
392
392
|
body?: never;
|
|
393
393
|
path?: never;
|
|
394
394
|
query: {
|
|
395
|
-
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
395
|
+
chainId: '1' | '11155111' | '84532' | '72080' | '31337';
|
|
396
396
|
hash: string;
|
|
397
397
|
};
|
|
398
398
|
url: '/stakingTemplates/reputation/v0/getCreatePoolEvent';
|
|
@@ -539,7 +539,7 @@ type PostStakingTemplatesReputationV0UnstakeResponse = PostStakingTemplatesReput
|
|
|
539
539
|
type PostStakingTemplatesReputationV0CreatePoolData = {
|
|
540
540
|
body?: {
|
|
541
541
|
platform: string;
|
|
542
|
-
startDate:
|
|
542
|
+
startDate: string;
|
|
543
543
|
amount: {
|
|
544
544
|
minAmount: string;
|
|
545
545
|
maxAmount: string;
|
|
@@ -580,7 +580,7 @@ type PostStakingTemplatesReputationV0CreatePoolResponses = {
|
|
|
580
580
|
type PostStakingTemplatesReputationV0CreatePoolResponse = PostStakingTemplatesReputationV0CreatePoolResponses[keyof PostStakingTemplatesReputationV0CreatePoolResponses];
|
|
581
581
|
type PostStakingTemplatesReputationV0CreatePlatformData = {
|
|
582
582
|
body?: {
|
|
583
|
-
chainId: 11155111 | 84532 | 31337;
|
|
583
|
+
chainId: '11155111' | '84532' | '31337';
|
|
584
584
|
erc721: {
|
|
585
585
|
symbol: string;
|
|
586
586
|
name: string;
|
|
@@ -613,7 +613,7 @@ type GetStakingTemplatesReputationLockV0GetPlatformDeployEventData = {
|
|
|
613
613
|
body?: never;
|
|
614
614
|
path?: never;
|
|
615
615
|
query: {
|
|
616
|
-
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
616
|
+
chainId: '1' | '11155111' | '84532' | '72080' | '31337';
|
|
617
617
|
hash: string;
|
|
618
618
|
};
|
|
619
619
|
url: '/stakingTemplates/reputationLock/v0/getPlatformDeployEvent';
|
|
@@ -632,7 +632,7 @@ type GetStakingTemplatesReputationLockV0GetStakeEventData = {
|
|
|
632
632
|
body?: never;
|
|
633
633
|
path?: never;
|
|
634
634
|
query: {
|
|
635
|
-
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
635
|
+
chainId: '1' | '11155111' | '84532' | '72080' | '31337';
|
|
636
636
|
hash: string;
|
|
637
637
|
};
|
|
638
638
|
url: '/stakingTemplates/reputationLock/v0/getStakeEvent';
|
|
@@ -653,7 +653,7 @@ type GetStakingTemplatesReputationLockV0GetCreatePoolEventData = {
|
|
|
653
653
|
body?: never;
|
|
654
654
|
path?: never;
|
|
655
655
|
query: {
|
|
656
|
-
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
656
|
+
chainId: '1' | '11155111' | '84532' | '72080' | '31337';
|
|
657
657
|
hash: string;
|
|
658
658
|
};
|
|
659
659
|
url: '/stakingTemplates/reputationLock/v0/getCreatePoolEvent';
|
|
@@ -802,7 +802,7 @@ type PostStakingTemplatesReputationLockV0UnstakeResponse = PostStakingTemplatesR
|
|
|
802
802
|
type PostStakingTemplatesReputationLockV0CreatePoolData = {
|
|
803
803
|
body?: {
|
|
804
804
|
platform: string;
|
|
805
|
-
startDate:
|
|
805
|
+
startDate: string;
|
|
806
806
|
amount: {
|
|
807
807
|
minAmount: string;
|
|
808
808
|
maxAmount: string;
|
|
@@ -855,7 +855,7 @@ type PostStakingTemplatesReputationLockV0CreatePoolResponses = {
|
|
|
855
855
|
type PostStakingTemplatesReputationLockV0CreatePoolResponse = PostStakingTemplatesReputationLockV0CreatePoolResponses[keyof PostStakingTemplatesReputationLockV0CreatePoolResponses];
|
|
856
856
|
type PostStakingTemplatesReputationLockV0CreatePlatformData = {
|
|
857
857
|
body?: {
|
|
858
|
-
chainId: 11155111 | 84532 | 31337;
|
|
858
|
+
chainId: '11155111' | '84532' | '31337';
|
|
859
859
|
erc721: {
|
|
860
860
|
symbol: string;
|
|
861
861
|
name: string;
|
|
@@ -888,7 +888,7 @@ type GetStakingTemplatesRwaV0GetPlatformDeployEventData = {
|
|
|
888
888
|
body?: never;
|
|
889
889
|
path?: never;
|
|
890
890
|
query: {
|
|
891
|
-
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
891
|
+
chainId: '1' | '11155111' | '84532' | '72080' | '31337';
|
|
892
892
|
hash: string;
|
|
893
893
|
};
|
|
894
894
|
url: '/stakingTemplates/rwa/v0/getPlatformDeployEvent';
|
|
@@ -907,7 +907,7 @@ type GetStakingTemplatesRwaV0GetStakeEventData = {
|
|
|
907
907
|
body?: never;
|
|
908
908
|
path?: never;
|
|
909
909
|
query: {
|
|
910
|
-
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
910
|
+
chainId: '1' | '11155111' | '84532' | '72080' | '31337';
|
|
911
911
|
hash: string;
|
|
912
912
|
};
|
|
913
913
|
url: '/stakingTemplates/rwa/v0/getStakeEvent';
|
|
@@ -928,7 +928,7 @@ type GetStakingTemplatesRwaV0GetCreatePoolEventData = {
|
|
|
928
928
|
body?: never;
|
|
929
929
|
path?: never;
|
|
930
930
|
query: {
|
|
931
|
-
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
931
|
+
chainId: '1' | '11155111' | '84532' | '72080' | '31337';
|
|
932
932
|
hash: string;
|
|
933
933
|
};
|
|
934
934
|
url: '/stakingTemplates/rwa/v0/getCreatePoolEvent';
|
|
@@ -1075,7 +1075,7 @@ type PostStakingTemplatesRwaV0UnstakeResponse = PostStakingTemplatesRwaV0Unstake
|
|
|
1075
1075
|
type PostStakingTemplatesRwaV0CreatePoolData = {
|
|
1076
1076
|
body?: {
|
|
1077
1077
|
platform: string;
|
|
1078
|
-
startDate:
|
|
1078
|
+
startDate: string;
|
|
1079
1079
|
hardcapAmount: string;
|
|
1080
1080
|
distribution: {
|
|
1081
1081
|
duration: string;
|
|
@@ -1112,7 +1112,7 @@ type PostStakingTemplatesRwaV0CreatePoolResponses = {
|
|
|
1112
1112
|
type PostStakingTemplatesRwaV0CreatePoolResponse = PostStakingTemplatesRwaV0CreatePoolResponses[keyof PostStakingTemplatesRwaV0CreatePoolResponses];
|
|
1113
1113
|
type PostStakingTemplatesRwaV0CreatePlatformData = {
|
|
1114
1114
|
body?: {
|
|
1115
|
-
chainId: 11155111 | 84532 | 31337;
|
|
1115
|
+
chainId: '11155111' | '84532' | '31337';
|
|
1116
1116
|
erc721: {
|
|
1117
1117
|
symbol: string;
|
|
1118
1118
|
name: string;
|
|
@@ -1171,7 +1171,7 @@ type GetV0FractionsMarketsGetData = {
|
|
|
1171
1171
|
body?: never;
|
|
1172
1172
|
path?: never;
|
|
1173
1173
|
query: {
|
|
1174
|
-
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
1174
|
+
chainId: '1' | '11155111' | '84532' | '72080' | '31337';
|
|
1175
1175
|
address: string;
|
|
1176
1176
|
};
|
|
1177
1177
|
url: '/v0/fractions/markets/get';
|
|
@@ -1192,14 +1192,14 @@ type GetV0FractionsMarketsGetResponses = {
|
|
|
1192
1192
|
* Market details
|
|
1193
1193
|
*/
|
|
1194
1194
|
200: {
|
|
1195
|
-
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
1195
|
+
chainId: '1' | '11155111' | '84532' | '72080' | '31337';
|
|
1196
1196
|
transactionHash: string;
|
|
1197
1197
|
template: 'default' | 'compilot' | 'continuous-withdrawal' | 'continuous-withdrawal-nid' | 'lending' | 'unknown';
|
|
1198
1198
|
contractAddress: string;
|
|
1199
1199
|
adminAddress: string;
|
|
1200
1200
|
wrapperAddress: string | null;
|
|
1201
1201
|
burnAsset: {
|
|
1202
|
-
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
1202
|
+
chainId: '1' | '11155111' | '84532' | '72080' | '31337';
|
|
1203
1203
|
address: string;
|
|
1204
1204
|
type: string;
|
|
1205
1205
|
symbol: string;
|
|
@@ -1209,8 +1209,8 @@ type GetV0FractionsMarketsGetResponses = {
|
|
|
1209
1209
|
burnable?: boolean;
|
|
1210
1210
|
} | null;
|
|
1211
1211
|
feesBps: number | null;
|
|
1212
|
-
createdAt:
|
|
1213
|
-
updatedAt:
|
|
1212
|
+
createdAt: string;
|
|
1213
|
+
updatedAt: string;
|
|
1214
1214
|
};
|
|
1215
1215
|
};
|
|
1216
1216
|
type GetV0FractionsMarketsGetResponse = GetV0FractionsMarketsGetResponses[keyof GetV0FractionsMarketsGetResponses];
|
|
@@ -1221,7 +1221,7 @@ type PostV0FractionsMarketsSearchData = {
|
|
|
1221
1221
|
limit: number;
|
|
1222
1222
|
};
|
|
1223
1223
|
filter: {
|
|
1224
|
-
chainId?: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
1224
|
+
chainId?: '1' | '11155111' | '84532' | '72080' | '31337';
|
|
1225
1225
|
owner?: string;
|
|
1226
1226
|
};
|
|
1227
1227
|
};
|
|
@@ -1234,14 +1234,14 @@ type PostV0FractionsMarketsSearchResponses = {
|
|
|
1234
1234
|
* Returns list of platforms by specified filter
|
|
1235
1235
|
*/
|
|
1236
1236
|
200: Array<{
|
|
1237
|
-
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
1237
|
+
chainId: '1' | '11155111' | '84532' | '72080' | '31337';
|
|
1238
1238
|
transactionHash: string;
|
|
1239
1239
|
template: 'default' | 'compilot' | 'continuous-withdrawal' | 'continuous-withdrawal-nid' | 'lending' | 'unknown';
|
|
1240
1240
|
contractAddress: string;
|
|
1241
1241
|
adminAddress: string;
|
|
1242
1242
|
wrapperAddress: string | null;
|
|
1243
1243
|
burnAsset: {
|
|
1244
|
-
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
1244
|
+
chainId: '1' | '11155111' | '84532' | '72080' | '31337';
|
|
1245
1245
|
address: string;
|
|
1246
1246
|
type: string;
|
|
1247
1247
|
symbol: string;
|
|
@@ -1251,8 +1251,8 @@ type PostV0FractionsMarketsSearchResponses = {
|
|
|
1251
1251
|
burnable?: boolean;
|
|
1252
1252
|
} | null;
|
|
1253
1253
|
feesBps: number | null;
|
|
1254
|
-
createdAt:
|
|
1255
|
-
updatedAt:
|
|
1254
|
+
createdAt: string;
|
|
1255
|
+
updatedAt: string;
|
|
1256
1256
|
}>;
|
|
1257
1257
|
};
|
|
1258
1258
|
type PostV0FractionsMarketsSearchResponse = PostV0FractionsMarketsSearchResponses[keyof PostV0FractionsMarketsSearchResponses];
|
|
@@ -1260,7 +1260,7 @@ type GetV0FractionsMarketsDeployEventData = {
|
|
|
1260
1260
|
body?: never;
|
|
1261
1261
|
path?: never;
|
|
1262
1262
|
query: {
|
|
1263
|
-
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
1263
|
+
chainId: '1' | '11155111' | '84532' | '72080' | '31337';
|
|
1264
1264
|
hash: string;
|
|
1265
1265
|
};
|
|
1266
1266
|
url: '/v0/fractions/markets/deployEvent';
|
|
@@ -1276,30 +1276,60 @@ type GetV0FractionsMarketsDeployEventResponses = {
|
|
|
1276
1276
|
};
|
|
1277
1277
|
};
|
|
1278
1278
|
type GetV0FractionsMarketsDeployEventResponse = GetV0FractionsMarketsDeployEventResponses[keyof GetV0FractionsMarketsDeployEventResponses];
|
|
1279
|
-
type
|
|
1279
|
+
type PostV0FractionsMarketsDeployData = {
|
|
1280
1280
|
body?: {
|
|
1281
|
-
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
1281
|
+
chainId: '1' | '11155111' | '84532' | '72080' | '31337';
|
|
1282
|
+
/**
|
|
1283
|
+
* Admin address of the market
|
|
1284
|
+
*/
|
|
1282
1285
|
adminAddress: string;
|
|
1286
|
+
/**
|
|
1287
|
+
* Owner address of the market. If not provided then `adminAddress` will be used
|
|
1288
|
+
*/
|
|
1283
1289
|
ownerAddress?: string;
|
|
1290
|
+
/**
|
|
1291
|
+
* Optional discount configuration
|
|
1292
|
+
*/
|
|
1284
1293
|
discount?: {
|
|
1285
1294
|
burnForDiscount: {
|
|
1295
|
+
/**
|
|
1296
|
+
* Address of the token to burn for discount
|
|
1297
|
+
*/
|
|
1286
1298
|
burnableTokenAddress: string;
|
|
1287
1299
|
};
|
|
1288
1300
|
};
|
|
1301
|
+
/**
|
|
1302
|
+
* Optional hard cap configuration
|
|
1303
|
+
*/
|
|
1289
1304
|
cap?: {
|
|
1305
|
+
/**
|
|
1306
|
+
* Maximum hard cap for the market
|
|
1307
|
+
*/
|
|
1290
1308
|
maxHardCap: string;
|
|
1291
1309
|
};
|
|
1310
|
+
/**
|
|
1311
|
+
* Optional fee configuration
|
|
1312
|
+
*/
|
|
1292
1313
|
fee?: {
|
|
1293
|
-
|
|
1314
|
+
/**
|
|
1315
|
+
* Fee percentage in basis points
|
|
1316
|
+
*/
|
|
1317
|
+
percent: string;
|
|
1318
|
+
/**
|
|
1319
|
+
* Address that collects the fees
|
|
1320
|
+
*/
|
|
1294
1321
|
collectorAddress: string;
|
|
1322
|
+
/**
|
|
1323
|
+
* Address authorised to manage fee configuration
|
|
1324
|
+
*/
|
|
1295
1325
|
feeAdmin: string;
|
|
1296
1326
|
};
|
|
1297
1327
|
};
|
|
1298
1328
|
path?: never;
|
|
1299
1329
|
query?: never;
|
|
1300
|
-
url: '/v0/fractions/
|
|
1330
|
+
url: '/v0/fractions/markets/deploy';
|
|
1301
1331
|
};
|
|
1302
|
-
type
|
|
1332
|
+
type PostV0FractionsMarketsDeployResponses = {
|
|
1303
1333
|
/**
|
|
1304
1334
|
* Returns transaction data for deploying a vesting market that creates fraction sales to distribute ERC-20 tokens following a vesting schedule.
|
|
1305
1335
|
*/
|
|
@@ -1314,31 +1344,61 @@ type PostV0FractionsPlatformsDeployResponses = {
|
|
|
1314
1344
|
};
|
|
1315
1345
|
};
|
|
1316
1346
|
};
|
|
1317
|
-
type
|
|
1318
|
-
type
|
|
1347
|
+
type PostV0FractionsMarketsDeployResponse = PostV0FractionsMarketsDeployResponses[keyof PostV0FractionsMarketsDeployResponses];
|
|
1348
|
+
type PostV0FractionsMarketsDeployNidData = {
|
|
1319
1349
|
body?: {
|
|
1320
|
-
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
1350
|
+
chainId: '1' | '11155111' | '84532' | '72080' | '31337';
|
|
1351
|
+
/**
|
|
1352
|
+
* Admin address of the market
|
|
1353
|
+
*/
|
|
1321
1354
|
adminAddress: string;
|
|
1355
|
+
/**
|
|
1356
|
+
* Owner address of the market. If not provided then `adminAddress` will be used
|
|
1357
|
+
*/
|
|
1322
1358
|
ownerAddress?: string;
|
|
1359
|
+
/**
|
|
1360
|
+
* Optional discount configuration
|
|
1361
|
+
*/
|
|
1323
1362
|
discount?: {
|
|
1324
1363
|
burnForDiscount: {
|
|
1364
|
+
/**
|
|
1365
|
+
* Address of the token to burn for discount
|
|
1366
|
+
*/
|
|
1325
1367
|
burnableTokenAddress: string;
|
|
1326
1368
|
};
|
|
1327
1369
|
};
|
|
1370
|
+
/**
|
|
1371
|
+
* Optional hard cap configuration
|
|
1372
|
+
*/
|
|
1328
1373
|
cap?: {
|
|
1374
|
+
/**
|
|
1375
|
+
* Maximum hard cap for the market
|
|
1376
|
+
*/
|
|
1329
1377
|
maxHardCap: string;
|
|
1330
1378
|
};
|
|
1379
|
+
/**
|
|
1380
|
+
* Optional fee configuration
|
|
1381
|
+
*/
|
|
1331
1382
|
fee?: {
|
|
1332
|
-
|
|
1383
|
+
/**
|
|
1384
|
+
* Fee percentage in basis points
|
|
1385
|
+
*/
|
|
1386
|
+
percent: string;
|
|
1387
|
+
/**
|
|
1388
|
+
* Address that collects the fees
|
|
1389
|
+
*/
|
|
1333
1390
|
collectorAddress: string;
|
|
1391
|
+
/**
|
|
1392
|
+
* Address authorised to manage fee configuration
|
|
1393
|
+
*/
|
|
1334
1394
|
feeAdmin: string;
|
|
1335
1395
|
};
|
|
1336
1396
|
};
|
|
1337
1397
|
path?: never;
|
|
1338
1398
|
query?: never;
|
|
1339
|
-
url: '/v0/fractions/
|
|
1399
|
+
url: '/v0/fractions/markets/deployNid';
|
|
1340
1400
|
};
|
|
1341
|
-
type
|
|
1401
|
+
type PostV0FractionsMarketsDeployNidResponses = {
|
|
1342
1402
|
/**
|
|
1343
1403
|
* Returns transaction data for deploying a compliance-gated vesting market that creates fraction sales to distribute ERC-20 tokens following a vesting schedule.
|
|
1344
1404
|
*/
|
|
@@ -1353,31 +1413,61 @@ type PostV0FractionsPlatformsDeployNidResponses = {
|
|
|
1353
1413
|
};
|
|
1354
1414
|
};
|
|
1355
1415
|
};
|
|
1356
|
-
type
|
|
1357
|
-
type
|
|
1416
|
+
type PostV0FractionsMarketsDeployNidResponse = PostV0FractionsMarketsDeployNidResponses[keyof PostV0FractionsMarketsDeployNidResponses];
|
|
1417
|
+
type PostV0FractionsMarketsDeployContinuousWithdrawData = {
|
|
1358
1418
|
body?: {
|
|
1359
|
-
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
1419
|
+
chainId: '1' | '11155111' | '84532' | '72080' | '31337';
|
|
1420
|
+
/**
|
|
1421
|
+
* Admin address of the market
|
|
1422
|
+
*/
|
|
1360
1423
|
adminAddress: string;
|
|
1424
|
+
/**
|
|
1425
|
+
* Owner address of the market. If not provided then `adminAddress` will be used
|
|
1426
|
+
*/
|
|
1361
1427
|
ownerAddress?: string;
|
|
1428
|
+
/**
|
|
1429
|
+
* Optional discount configuration
|
|
1430
|
+
*/
|
|
1362
1431
|
discount?: {
|
|
1363
1432
|
burnForDiscount: {
|
|
1433
|
+
/**
|
|
1434
|
+
* Address of the token to burn for discount
|
|
1435
|
+
*/
|
|
1364
1436
|
burnableTokenAddress: string;
|
|
1365
1437
|
};
|
|
1366
1438
|
};
|
|
1439
|
+
/**
|
|
1440
|
+
* Optional hard cap configuration
|
|
1441
|
+
*/
|
|
1367
1442
|
cap?: {
|
|
1443
|
+
/**
|
|
1444
|
+
* Maximum hard cap for the market
|
|
1445
|
+
*/
|
|
1368
1446
|
maxHardCap: string;
|
|
1369
1447
|
};
|
|
1448
|
+
/**
|
|
1449
|
+
* Optional fee configuration
|
|
1450
|
+
*/
|
|
1370
1451
|
fee?: {
|
|
1371
|
-
|
|
1452
|
+
/**
|
|
1453
|
+
* Fee percentage in basis points
|
|
1454
|
+
*/
|
|
1455
|
+
percent: string;
|
|
1456
|
+
/**
|
|
1457
|
+
* Address that collects the fees
|
|
1458
|
+
*/
|
|
1372
1459
|
collectorAddress: string;
|
|
1460
|
+
/**
|
|
1461
|
+
* Address authorised to manage fee configuration
|
|
1462
|
+
*/
|
|
1373
1463
|
feeAdmin: string;
|
|
1374
1464
|
};
|
|
1375
1465
|
};
|
|
1376
1466
|
path?: never;
|
|
1377
1467
|
query?: never;
|
|
1378
|
-
url: '/v0/fractions/
|
|
1468
|
+
url: '/v0/fractions/markets/deployContinuousWithdraw';
|
|
1379
1469
|
};
|
|
1380
|
-
type
|
|
1470
|
+
type PostV0FractionsMarketsDeployContinuousWithdrawResponses = {
|
|
1381
1471
|
/**
|
|
1382
1472
|
* 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.
|
|
1383
1473
|
*/
|
|
@@ -1392,31 +1482,61 @@ type PostV0FractionsPlatformsDeployContinuousWithdrawResponses = {
|
|
|
1392
1482
|
};
|
|
1393
1483
|
};
|
|
1394
1484
|
};
|
|
1395
|
-
type
|
|
1396
|
-
type
|
|
1485
|
+
type PostV0FractionsMarketsDeployContinuousWithdrawResponse = PostV0FractionsMarketsDeployContinuousWithdrawResponses[keyof PostV0FractionsMarketsDeployContinuousWithdrawResponses];
|
|
1486
|
+
type PostV0FractionsMarketsDeployContinuousWithdrawNidData = {
|
|
1397
1487
|
body?: {
|
|
1398
|
-
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
1488
|
+
chainId: '1' | '11155111' | '84532' | '72080' | '31337';
|
|
1489
|
+
/**
|
|
1490
|
+
* Admin address of the market
|
|
1491
|
+
*/
|
|
1399
1492
|
adminAddress: string;
|
|
1493
|
+
/**
|
|
1494
|
+
* Owner address of the market. If not provided then `adminAddress` will be used
|
|
1495
|
+
*/
|
|
1400
1496
|
ownerAddress?: string;
|
|
1497
|
+
/**
|
|
1498
|
+
* Optional discount configuration
|
|
1499
|
+
*/
|
|
1401
1500
|
discount?: {
|
|
1402
1501
|
burnForDiscount: {
|
|
1502
|
+
/**
|
|
1503
|
+
* Address of the token to burn for discount
|
|
1504
|
+
*/
|
|
1403
1505
|
burnableTokenAddress: string;
|
|
1404
1506
|
};
|
|
1405
1507
|
};
|
|
1508
|
+
/**
|
|
1509
|
+
* Optional hard cap configuration
|
|
1510
|
+
*/
|
|
1406
1511
|
cap?: {
|
|
1512
|
+
/**
|
|
1513
|
+
* Maximum hard cap for the market
|
|
1514
|
+
*/
|
|
1407
1515
|
maxHardCap: string;
|
|
1408
1516
|
};
|
|
1517
|
+
/**
|
|
1518
|
+
* Optional fee configuration
|
|
1519
|
+
*/
|
|
1409
1520
|
fee?: {
|
|
1410
|
-
|
|
1521
|
+
/**
|
|
1522
|
+
* Fee percentage in basis points
|
|
1523
|
+
*/
|
|
1524
|
+
percent: string;
|
|
1525
|
+
/**
|
|
1526
|
+
* Address that collects the fees
|
|
1527
|
+
*/
|
|
1411
1528
|
collectorAddress: string;
|
|
1529
|
+
/**
|
|
1530
|
+
* Address authorised to manage fee configuration
|
|
1531
|
+
*/
|
|
1412
1532
|
feeAdmin: string;
|
|
1413
1533
|
};
|
|
1414
1534
|
};
|
|
1415
1535
|
path?: never;
|
|
1416
1536
|
query?: never;
|
|
1417
|
-
url: '/v0/fractions/
|
|
1537
|
+
url: '/v0/fractions/markets/deployContinuousWithdrawNid';
|
|
1418
1538
|
};
|
|
1419
|
-
type
|
|
1539
|
+
type PostV0FractionsMarketsDeployContinuousWithdrawNidResponses = {
|
|
1420
1540
|
/**
|
|
1421
1541
|
* 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.
|
|
1422
1542
|
*/
|
|
@@ -1431,23 +1551,23 @@ type PostV0FractionsPlatformsDeployContinuousWithdrawNidResponses = {
|
|
|
1431
1551
|
};
|
|
1432
1552
|
};
|
|
1433
1553
|
};
|
|
1434
|
-
type
|
|
1435
|
-
type
|
|
1554
|
+
type PostV0FractionsMarketsDeployContinuousWithdrawNidResponse = PostV0FractionsMarketsDeployContinuousWithdrawNidResponses[keyof PostV0FractionsMarketsDeployContinuousWithdrawNidResponses];
|
|
1555
|
+
type GetV0FractionsMarketsInitCompilotData = {
|
|
1436
1556
|
body?: never;
|
|
1437
1557
|
path?: never;
|
|
1438
1558
|
query: {
|
|
1439
1559
|
/**
|
|
1440
|
-
* Address of the
|
|
1560
|
+
* Address of the market
|
|
1441
1561
|
*/
|
|
1442
1562
|
market: string;
|
|
1443
1563
|
/**
|
|
1444
1564
|
* Optional: Override default ComPilot signer address
|
|
1445
1565
|
*/
|
|
1446
|
-
|
|
1566
|
+
compilotSigner?: string;
|
|
1447
1567
|
};
|
|
1448
|
-
url: '/v0/fractions/
|
|
1568
|
+
url: '/v0/fractions/markets/initCompilot';
|
|
1449
1569
|
};
|
|
1450
|
-
type
|
|
1570
|
+
type GetV0FractionsMarketsInitCompilotResponses = {
|
|
1451
1571
|
/**
|
|
1452
1572
|
* 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.
|
|
1453
1573
|
*/
|
|
@@ -1462,7 +1582,7 @@ type GetV0FractionsPlatformsInitCompilotResponses = {
|
|
|
1462
1582
|
};
|
|
1463
1583
|
};
|
|
1464
1584
|
};
|
|
1465
|
-
type
|
|
1585
|
+
type GetV0FractionsMarketsInitCompilotResponse = GetV0FractionsMarketsInitCompilotResponses[keyof GetV0FractionsMarketsInitCompilotResponses];
|
|
1466
1586
|
type GetV0FractionsRolesData = {
|
|
1467
1587
|
body?: never;
|
|
1468
1588
|
path?: never;
|
|
@@ -1481,9 +1601,17 @@ type GetV0FractionsRolesResponses = {
|
|
|
1481
1601
|
type GetV0FractionsRolesResponse = GetV0FractionsRolesResponses[keyof GetV0FractionsRolesResponses];
|
|
1482
1602
|
type PostV0FractionsRolesGrantData = {
|
|
1483
1603
|
body?: {
|
|
1484
|
-
|
|
1604
|
+
/**
|
|
1605
|
+
* Market contract address
|
|
1606
|
+
*/
|
|
1485
1607
|
marketAddress: string;
|
|
1608
|
+
/**
|
|
1609
|
+
* Addresses to grant the role to
|
|
1610
|
+
*/
|
|
1486
1611
|
users: Array<string>;
|
|
1612
|
+
/**
|
|
1613
|
+
* Role to grant
|
|
1614
|
+
*/
|
|
1487
1615
|
role: 'ISSUER' | 'INVESTOR';
|
|
1488
1616
|
};
|
|
1489
1617
|
path?: never;
|
|
@@ -1508,53 +1636,121 @@ type PostV0FractionsRolesGrantResponses = {
|
|
|
1508
1636
|
type PostV0FractionsRolesGrantResponse = PostV0FractionsRolesGrantResponses[keyof PostV0FractionsRolesGrantResponses];
|
|
1509
1637
|
type PostV0FractionsSalesFractionsData = {
|
|
1510
1638
|
body?: {
|
|
1511
|
-
chainId:
|
|
1639
|
+
chainId: number;
|
|
1512
1640
|
market: string;
|
|
1513
1641
|
fractions: {
|
|
1514
1642
|
/**
|
|
1515
|
-
*
|
|
1643
|
+
* Fraction token symbol
|
|
1516
1644
|
*/
|
|
1517
|
-
token?: string;
|
|
1518
1645
|
symbol: string;
|
|
1646
|
+
/**
|
|
1647
|
+
* Fraction token name
|
|
1648
|
+
*/
|
|
1519
1649
|
name: string;
|
|
1650
|
+
/**
|
|
1651
|
+
* Total amount of fractions to mint
|
|
1652
|
+
*/
|
|
1520
1653
|
amount: string;
|
|
1521
1654
|
};
|
|
1522
1655
|
timeBoundary: {
|
|
1523
|
-
|
|
1524
|
-
|
|
1656
|
+
/**
|
|
1657
|
+
* Sale start date (ISO 8601)
|
|
1658
|
+
*/
|
|
1659
|
+
start: string;
|
|
1660
|
+
/**
|
|
1661
|
+
* Sale end date (ISO 8601)
|
|
1662
|
+
*/
|
|
1663
|
+
end: string;
|
|
1525
1664
|
};
|
|
1526
1665
|
cap: {
|
|
1666
|
+
/**
|
|
1667
|
+
* Soft cap — minimum funding target
|
|
1668
|
+
*/
|
|
1527
1669
|
soft: string;
|
|
1670
|
+
/**
|
|
1671
|
+
* Hard cap — maximum funding limit
|
|
1672
|
+
*/
|
|
1528
1673
|
hard: string;
|
|
1674
|
+
/**
|
|
1675
|
+
* Per-account soft cap
|
|
1676
|
+
*/
|
|
1529
1677
|
softPerAccount?: string;
|
|
1678
|
+
/**
|
|
1679
|
+
* Per-account hard cap
|
|
1680
|
+
*/
|
|
1530
1681
|
hardPerAccount?: string;
|
|
1531
1682
|
};
|
|
1532
1683
|
wrapped: Array<{
|
|
1533
1684
|
type: 'ERC20';
|
|
1685
|
+
/**
|
|
1686
|
+
* ERC-20 token contract address
|
|
1687
|
+
*/
|
|
1534
1688
|
address: string;
|
|
1689
|
+
/**
|
|
1690
|
+
* Token amounts to wrap
|
|
1691
|
+
*/
|
|
1535
1692
|
values: Array<string>;
|
|
1536
1693
|
} | {
|
|
1537
1694
|
type: 'ERC721';
|
|
1695
|
+
/**
|
|
1696
|
+
* ERC-721 token contract address
|
|
1697
|
+
*/
|
|
1538
1698
|
address: string;
|
|
1699
|
+
/**
|
|
1700
|
+
* Token IDs to wrap
|
|
1701
|
+
*/
|
|
1539
1702
|
tokenIds: Array<string>;
|
|
1540
1703
|
} | {
|
|
1541
1704
|
type: 'ERC1155';
|
|
1705
|
+
/**
|
|
1706
|
+
* ERC-1155 token contract address
|
|
1707
|
+
*/
|
|
1542
1708
|
address: string;
|
|
1709
|
+
/**
|
|
1710
|
+
* Token IDs to wrap
|
|
1711
|
+
*/
|
|
1543
1712
|
tokenIds: Array<string>;
|
|
1713
|
+
/**
|
|
1714
|
+
* Amounts per token ID to wrap
|
|
1715
|
+
*/
|
|
1544
1716
|
values: Array<string>;
|
|
1545
1717
|
}>;
|
|
1546
1718
|
funding: Array<{
|
|
1719
|
+
/**
|
|
1720
|
+
* Payment token contract address
|
|
1721
|
+
*/
|
|
1547
1722
|
token: string;
|
|
1723
|
+
/**
|
|
1724
|
+
* Payment amount required per packet
|
|
1725
|
+
*/
|
|
1548
1726
|
amountPerPacket: string;
|
|
1549
1727
|
}>;
|
|
1550
1728
|
discounts?: {
|
|
1729
|
+
/**
|
|
1730
|
+
* Address of the token to burn for discount
|
|
1731
|
+
*/
|
|
1551
1732
|
burnableTokenAddress: string;
|
|
1733
|
+
/**
|
|
1734
|
+
* Amount of tokens to burn per purchase
|
|
1735
|
+
*/
|
|
1552
1736
|
amountToBurn: string;
|
|
1553
|
-
|
|
1737
|
+
/**
|
|
1738
|
+
* Discount applied in basis points
|
|
1739
|
+
*/
|
|
1740
|
+
percentDiscount: string;
|
|
1554
1741
|
};
|
|
1555
1742
|
vesting?: {
|
|
1556
|
-
|
|
1743
|
+
/**
|
|
1744
|
+
* Vesting cliff date (ISO 8601)
|
|
1745
|
+
*/
|
|
1746
|
+
cliff: string;
|
|
1747
|
+
/**
|
|
1748
|
+
* Total vesting duration in milliseconds
|
|
1749
|
+
*/
|
|
1557
1750
|
totalVestingPeriod: number;
|
|
1751
|
+
/**
|
|
1752
|
+
* Interval at which portions vest in milliseconds
|
|
1753
|
+
*/
|
|
1558
1754
|
portionPeriod: number;
|
|
1559
1755
|
};
|
|
1560
1756
|
refundAddress: string;
|
|
@@ -1584,7 +1780,7 @@ type GetV0FractionsSalesGetFractionsCreatedEventData = {
|
|
|
1584
1780
|
body?: never;
|
|
1585
1781
|
path?: never;
|
|
1586
1782
|
query: {
|
|
1587
|
-
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
1783
|
+
chainId: '1' | '11155111' | '84532' | '72080' | '31337';
|
|
1588
1784
|
hash: string;
|
|
1589
1785
|
};
|
|
1590
1786
|
url: '/v0/fractions/sales/getFractionsCreatedEvent';
|
|
@@ -1605,8 +1801,16 @@ type GetV0FractionsSalesGetFractionsCreatedEventResponses = {
|
|
|
1605
1801
|
type GetV0FractionsSalesGetFractionsCreatedEventResponse = GetV0FractionsSalesGetFractionsCreatedEventResponses[keyof GetV0FractionsSalesGetFractionsCreatedEventResponses];
|
|
1606
1802
|
type PostV0FractionsSalesApproveData = {
|
|
1607
1803
|
body?: {
|
|
1608
|
-
|
|
1609
|
-
|
|
1804
|
+
campaign: {
|
|
1805
|
+
/**
|
|
1806
|
+
* Address of the market
|
|
1807
|
+
*/
|
|
1808
|
+
market: string;
|
|
1809
|
+
/**
|
|
1810
|
+
* Campaign ID
|
|
1811
|
+
*/
|
|
1812
|
+
campaignId: string;
|
|
1813
|
+
};
|
|
1610
1814
|
};
|
|
1611
1815
|
path?: never;
|
|
1612
1816
|
query?: never;
|
|
@@ -1630,7 +1834,13 @@ type PostV0FractionsSalesApproveResponses = {
|
|
|
1630
1834
|
type PostV0FractionsSalesApproveResponse = PostV0FractionsSalesApproveResponses[keyof PostV0FractionsSalesApproveResponses];
|
|
1631
1835
|
type PostV0FractionsSalesRejectData = {
|
|
1632
1836
|
body?: {
|
|
1633
|
-
|
|
1837
|
+
/**
|
|
1838
|
+
* Address of the market
|
|
1839
|
+
*/
|
|
1840
|
+
market: string;
|
|
1841
|
+
/**
|
|
1842
|
+
* Sale ID to reject
|
|
1843
|
+
*/
|
|
1634
1844
|
saleId: string;
|
|
1635
1845
|
};
|
|
1636
1846
|
path?: never;
|
|
@@ -1655,11 +1865,31 @@ type PostV0FractionsSalesRejectResponses = {
|
|
|
1655
1865
|
type PostV0FractionsSalesRejectResponse = PostV0FractionsSalesRejectResponses[keyof PostV0FractionsSalesRejectResponses];
|
|
1656
1866
|
type PostV0FractionsSalesRecoverData = {
|
|
1657
1867
|
body?: {
|
|
1658
|
-
|
|
1659
|
-
|
|
1868
|
+
campaign: {
|
|
1869
|
+
/**
|
|
1870
|
+
* Address of the market
|
|
1871
|
+
*/
|
|
1872
|
+
market: string;
|
|
1873
|
+
/**
|
|
1874
|
+
* Campaign ID
|
|
1875
|
+
*/
|
|
1876
|
+
campaignId: string;
|
|
1877
|
+
};
|
|
1878
|
+
/**
|
|
1879
|
+
* Address of the account that lost the fractions
|
|
1880
|
+
*/
|
|
1660
1881
|
lostAccount: string;
|
|
1882
|
+
/**
|
|
1883
|
+
* Address to recover the fractions to
|
|
1884
|
+
*/
|
|
1661
1885
|
recoveryAddress: string;
|
|
1886
|
+
/**
|
|
1887
|
+
* Amount of fractions to recover
|
|
1888
|
+
*/
|
|
1662
1889
|
amountOfFractions: string;
|
|
1890
|
+
/**
|
|
1891
|
+
* ID of the fraction token
|
|
1892
|
+
*/
|
|
1663
1893
|
fractionId: string;
|
|
1664
1894
|
};
|
|
1665
1895
|
path?: never;
|
|
@@ -1684,8 +1914,16 @@ type PostV0FractionsSalesRecoverResponses = {
|
|
|
1684
1914
|
type PostV0FractionsSalesRecoverResponse = PostV0FractionsSalesRecoverResponses[keyof PostV0FractionsSalesRecoverResponses];
|
|
1685
1915
|
type PostV0FractionsSalesCompleteData = {
|
|
1686
1916
|
body?: {
|
|
1687
|
-
|
|
1688
|
-
|
|
1917
|
+
campaign: {
|
|
1918
|
+
/**
|
|
1919
|
+
* Address of the market
|
|
1920
|
+
*/
|
|
1921
|
+
market: string;
|
|
1922
|
+
/**
|
|
1923
|
+
* Campaign ID
|
|
1924
|
+
*/
|
|
1925
|
+
campaignId: string;
|
|
1926
|
+
};
|
|
1689
1927
|
};
|
|
1690
1928
|
path?: never;
|
|
1691
1929
|
query?: never;
|
|
@@ -1709,8 +1947,16 @@ type PostV0FractionsSalesCompleteResponses = {
|
|
|
1709
1947
|
type PostV0FractionsSalesCompleteResponse = PostV0FractionsSalesCompleteResponses[keyof PostV0FractionsSalesCompleteResponses];
|
|
1710
1948
|
type PostV0FractionsSalesUnlockWrappedAssetsData = {
|
|
1711
1949
|
body?: {
|
|
1712
|
-
|
|
1713
|
-
|
|
1950
|
+
campaign: {
|
|
1951
|
+
/**
|
|
1952
|
+
* Address of the market
|
|
1953
|
+
*/
|
|
1954
|
+
market: string;
|
|
1955
|
+
/**
|
|
1956
|
+
* Campaign ID
|
|
1957
|
+
*/
|
|
1958
|
+
campaignId: string;
|
|
1959
|
+
};
|
|
1714
1960
|
};
|
|
1715
1961
|
path?: never;
|
|
1716
1962
|
query?: never;
|
|
@@ -1734,11 +1980,29 @@ type PostV0FractionsSalesUnlockWrappedAssetsResponses = {
|
|
|
1734
1980
|
type PostV0FractionsSalesUnlockWrappedAssetsResponse = PostV0FractionsSalesUnlockWrappedAssetsResponses[keyof PostV0FractionsSalesUnlockWrappedAssetsResponses];
|
|
1735
1981
|
type PostV0FractionsSalesPurchaseData = {
|
|
1736
1982
|
body?: {
|
|
1737
|
-
|
|
1738
|
-
|
|
1739
|
-
|
|
1983
|
+
campaign: {
|
|
1984
|
+
/**
|
|
1985
|
+
* Address of the market
|
|
1986
|
+
*/
|
|
1987
|
+
market: string;
|
|
1988
|
+
/**
|
|
1989
|
+
* Campaign ID
|
|
1990
|
+
*/
|
|
1991
|
+
campaignId: string;
|
|
1992
|
+
};
|
|
1993
|
+
chainId: '1' | '11155111' | '84532' | '72080' | '31337';
|
|
1994
|
+
/**
|
|
1995
|
+
* Number of fractions to purchase
|
|
1996
|
+
*/
|
|
1740
1997
|
amountToBuy: string;
|
|
1741
|
-
|
|
1998
|
+
/**
|
|
1999
|
+
* Token ID of the fraction (for ERC-1155 fractions)
|
|
2000
|
+
*/
|
|
2001
|
+
tokenId?: string;
|
|
2002
|
+
/**
|
|
2003
|
+
* Amount of tokens to burn for discount
|
|
2004
|
+
*/
|
|
2005
|
+
burnForDiscount?: string;
|
|
1742
2006
|
};
|
|
1743
2007
|
path?: never;
|
|
1744
2008
|
query?: never;
|
|
@@ -1762,7 +2026,7 @@ type PostV0FractionsSalesPurchaseResponses = {
|
|
|
1762
2026
|
type PostV0FractionsSalesPurchaseResponse = PostV0FractionsSalesPurchaseResponses[keyof PostV0FractionsSalesPurchaseResponses];
|
|
1763
2027
|
type PostV0FractionsSalesPurchaseStatisticsData = {
|
|
1764
2028
|
body?: {
|
|
1765
|
-
chainId?: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
2029
|
+
chainId?: '1' | '11155111' | '84532' | '72080' | '31337';
|
|
1766
2030
|
platform: string;
|
|
1767
2031
|
campaignId: string;
|
|
1768
2032
|
walletAddress: string;
|
|
@@ -1776,7 +2040,7 @@ type PostV0FractionsSalesPurchaseStatisticsResponses = {
|
|
|
1776
2040
|
* Aggregated purchase statistics for the specified campaign and investor.
|
|
1777
2041
|
*/
|
|
1778
2042
|
200: {
|
|
1779
|
-
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
2043
|
+
chainId: '1' | '11155111' | '84532' | '72080' | '31337';
|
|
1780
2044
|
platform: string;
|
|
1781
2045
|
campaignId: string;
|
|
1782
2046
|
statistics: Array<{
|
|
@@ -1794,7 +2058,7 @@ type PostV0FractionsSalesWithdrawSearchData = {
|
|
|
1794
2058
|
limit: number;
|
|
1795
2059
|
};
|
|
1796
2060
|
filter: {
|
|
1797
|
-
chainId?: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
2061
|
+
chainId?: '1' | '11155111' | '84532' | '72080' | '31337';
|
|
1798
2062
|
platform?: string;
|
|
1799
2063
|
campaignId?: string;
|
|
1800
2064
|
};
|
|
@@ -1808,7 +2072,7 @@ type PostV0FractionsSalesWithdrawSearchResponses = {
|
|
|
1808
2072
|
* Returns list of withdrawal events within specified platforms and pools
|
|
1809
2073
|
*/
|
|
1810
2074
|
200: Array<{
|
|
1811
|
-
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
2075
|
+
chainId: '1' | '11155111' | '84532' | '72080' | '31337';
|
|
1812
2076
|
platform: string;
|
|
1813
2077
|
campaignId: string;
|
|
1814
2078
|
nftId: string;
|
|
@@ -1816,7 +2080,7 @@ type PostV0FractionsSalesWithdrawSearchResponses = {
|
|
|
1816
2080
|
owner: string;
|
|
1817
2081
|
fractions: {
|
|
1818
2082
|
asset: {
|
|
1819
|
-
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
2083
|
+
chainId: '1' | '11155111' | '84532' | '72080' | '31337';
|
|
1820
2084
|
address: string;
|
|
1821
2085
|
type: string;
|
|
1822
2086
|
symbol: string;
|
|
@@ -1835,17 +2099,17 @@ type PostV0FractionsSalesWithdrawSearchResponses = {
|
|
|
1835
2099
|
softCapPerAccount: string | null;
|
|
1836
2100
|
} | null;
|
|
1837
2101
|
timeline: {
|
|
1838
|
-
startDate:
|
|
1839
|
-
endDate:
|
|
2102
|
+
startDate: string;
|
|
2103
|
+
endDate: string | null;
|
|
1840
2104
|
} | null;
|
|
1841
2105
|
vesting: {
|
|
1842
|
-
cliffDate:
|
|
2106
|
+
cliffDate: string;
|
|
1843
2107
|
totalVestingPeriod: number;
|
|
1844
2108
|
portionPeriod: number;
|
|
1845
2109
|
} | null;
|
|
1846
2110
|
wrappedAssets: Array<{
|
|
1847
2111
|
asset: {
|
|
1848
|
-
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
2112
|
+
chainId: '1' | '11155111' | '84532' | '72080' | '31337';
|
|
1849
2113
|
address: string;
|
|
1850
2114
|
type: string;
|
|
1851
2115
|
symbol: string;
|
|
@@ -1858,7 +2122,7 @@ type PostV0FractionsSalesWithdrawSearchResponses = {
|
|
|
1858
2122
|
}>;
|
|
1859
2123
|
fundingAssets: Array<{
|
|
1860
2124
|
asset: {
|
|
1861
|
-
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
2125
|
+
chainId: '1' | '11155111' | '84532' | '72080' | '31337';
|
|
1862
2126
|
address: string;
|
|
1863
2127
|
type: string;
|
|
1864
2128
|
symbol: string;
|
|
@@ -1870,15 +2134,23 @@ type PostV0FractionsSalesWithdrawSearchResponses = {
|
|
|
1870
2134
|
amountPerPacket: string;
|
|
1871
2135
|
}>;
|
|
1872
2136
|
transactionHash: string;
|
|
1873
|
-
createdAt:
|
|
1874
|
-
updatedAt:
|
|
2137
|
+
createdAt: string;
|
|
2138
|
+
updatedAt: string;
|
|
1875
2139
|
}>;
|
|
1876
2140
|
};
|
|
1877
2141
|
type PostV0FractionsSalesWithdrawSearchResponse = PostV0FractionsSalesWithdrawSearchResponses[keyof PostV0FractionsSalesWithdrawSearchResponses];
|
|
1878
2142
|
type PostV0FractionsSalesWithdrawPaymentTokenData = {
|
|
1879
2143
|
body?: {
|
|
1880
|
-
|
|
1881
|
-
|
|
2144
|
+
campaign: {
|
|
2145
|
+
/**
|
|
2146
|
+
* Address of the market
|
|
2147
|
+
*/
|
|
2148
|
+
market: string;
|
|
2149
|
+
/**
|
|
2150
|
+
* Campaign ID
|
|
2151
|
+
*/
|
|
2152
|
+
campaignId: string;
|
|
2153
|
+
};
|
|
1882
2154
|
};
|
|
1883
2155
|
path?: never;
|
|
1884
2156
|
query?: never;
|
|
@@ -1902,11 +2174,20 @@ type PostV0FractionsSalesWithdrawPaymentTokenResponses = {
|
|
|
1902
2174
|
type PostV0FractionsSalesWithdrawPaymentTokenResponse = PostV0FractionsSalesWithdrawPaymentTokenResponses[keyof PostV0FractionsSalesWithdrawPaymentTokenResponses];
|
|
1903
2175
|
type PostV0FractionsSalesReceiveFundsAfterNonFundedData = {
|
|
1904
2176
|
body?: {
|
|
1905
|
-
|
|
2177
|
+
campaign: {
|
|
2178
|
+
/**
|
|
2179
|
+
* Address of the market
|
|
2180
|
+
*/
|
|
2181
|
+
market: string;
|
|
2182
|
+
/**
|
|
2183
|
+
* Campaign ID
|
|
2184
|
+
*/
|
|
2185
|
+
campaignId: string;
|
|
2186
|
+
};
|
|
2187
|
+
/**
|
|
2188
|
+
* Amount of fractions to receive
|
|
2189
|
+
*/
|
|
1906
2190
|
amountOfFractions: string;
|
|
1907
|
-
isDiscounted: boolean;
|
|
1908
|
-
market: string;
|
|
1909
|
-
campaignId: string;
|
|
1910
2191
|
};
|
|
1911
2192
|
path?: never;
|
|
1912
2193
|
query?: never;
|
|
@@ -1928,10 +2209,59 @@ type PostV0FractionsSalesReceiveFundsAfterNonFundedResponses = {
|
|
|
1928
2209
|
};
|
|
1929
2210
|
};
|
|
1930
2211
|
type PostV0FractionsSalesReceiveFundsAfterNonFundedResponse = PostV0FractionsSalesReceiveFundsAfterNonFundedResponses[keyof PostV0FractionsSalesReceiveFundsAfterNonFundedResponses];
|
|
2212
|
+
type PostV0FractionsSalesReceiveFundsAfterNonFundedDiscountData = {
|
|
2213
|
+
body?: {
|
|
2214
|
+
campaign: {
|
|
2215
|
+
/**
|
|
2216
|
+
* Address of the market
|
|
2217
|
+
*/
|
|
2218
|
+
market: string;
|
|
2219
|
+
/**
|
|
2220
|
+
* Campaign ID
|
|
2221
|
+
*/
|
|
2222
|
+
campaignId: string;
|
|
2223
|
+
};
|
|
2224
|
+
/**
|
|
2225
|
+
* Upper genesis ID for discount calculation
|
|
2226
|
+
*/
|
|
2227
|
+
upperGenesisId: string;
|
|
2228
|
+
/**
|
|
2229
|
+
* Amount of fractions to receive
|
|
2230
|
+
*/
|
|
2231
|
+
amountOfFractions: string;
|
|
2232
|
+
};
|
|
2233
|
+
path?: never;
|
|
2234
|
+
query?: never;
|
|
2235
|
+
url: '/v0/fractions/sales/receiveFundsAfterNonFundedDiscount';
|
|
2236
|
+
};
|
|
2237
|
+
type PostV0FractionsSalesReceiveFundsAfterNonFundedDiscountResponses = {
|
|
2238
|
+
/**
|
|
2239
|
+
* Returns transaction to receive funds after non funded state with discount
|
|
2240
|
+
*/
|
|
2241
|
+
200: {
|
|
2242
|
+
data: string;
|
|
2243
|
+
to: string;
|
|
2244
|
+
details: {
|
|
2245
|
+
functionName: string;
|
|
2246
|
+
address: string;
|
|
2247
|
+
abi: Array<unknown>;
|
|
2248
|
+
args: Array<unknown>;
|
|
2249
|
+
};
|
|
2250
|
+
};
|
|
2251
|
+
};
|
|
2252
|
+
type PostV0FractionsSalesReceiveFundsAfterNonFundedDiscountResponse = PostV0FractionsSalesReceiveFundsAfterNonFundedDiscountResponses[keyof PostV0FractionsSalesReceiveFundsAfterNonFundedDiscountResponses];
|
|
1931
2253
|
type PostV0FractionsSalesCheckAndJumpToNonFundedData = {
|
|
1932
2254
|
body?: {
|
|
1933
|
-
|
|
1934
|
-
|
|
2255
|
+
campaign: {
|
|
2256
|
+
/**
|
|
2257
|
+
* Address of the market
|
|
2258
|
+
*/
|
|
2259
|
+
market: string;
|
|
2260
|
+
/**
|
|
2261
|
+
* Campaign ID
|
|
2262
|
+
*/
|
|
2263
|
+
campaignId: string;
|
|
2264
|
+
};
|
|
1935
2265
|
};
|
|
1936
2266
|
path?: never;
|
|
1937
2267
|
query?: never;
|
|
@@ -1955,8 +2285,16 @@ type PostV0FractionsSalesCheckAndJumpToNonFundedResponses = {
|
|
|
1955
2285
|
type PostV0FractionsSalesCheckAndJumpToNonFundedResponse = PostV0FractionsSalesCheckAndJumpToNonFundedResponses[keyof PostV0FractionsSalesCheckAndJumpToNonFundedResponses];
|
|
1956
2286
|
type PostV0FractionsSalesReceiveNonPurchasedWrappedAssetsData = {
|
|
1957
2287
|
body?: {
|
|
1958
|
-
|
|
1959
|
-
|
|
2288
|
+
campaign: {
|
|
2289
|
+
/**
|
|
2290
|
+
* Address of the market
|
|
2291
|
+
*/
|
|
2292
|
+
market: string;
|
|
2293
|
+
/**
|
|
2294
|
+
* Campaign ID
|
|
2295
|
+
*/
|
|
2296
|
+
campaignId: string;
|
|
2297
|
+
};
|
|
1960
2298
|
};
|
|
1961
2299
|
path?: never;
|
|
1962
2300
|
query?: never;
|
|
@@ -1980,9 +2318,18 @@ type PostV0FractionsSalesReceiveNonPurchasedWrappedAssetsResponses = {
|
|
|
1980
2318
|
type PostV0FractionsSalesReceiveNonPurchasedWrappedAssetsResponse = PostV0FractionsSalesReceiveNonPurchasedWrappedAssetsResponses[keyof PostV0FractionsSalesReceiveNonPurchasedWrappedAssetsResponses];
|
|
1981
2319
|
type PostV0FractionsSalesVestingEditCliffData = {
|
|
1982
2320
|
body?: {
|
|
1983
|
-
|
|
2321
|
+
/**
|
|
2322
|
+
* Address of the market
|
|
2323
|
+
*/
|
|
2324
|
+
market: string;
|
|
2325
|
+
/**
|
|
2326
|
+
* Sale ID
|
|
2327
|
+
*/
|
|
1984
2328
|
saleId: string;
|
|
1985
|
-
|
|
2329
|
+
/**
|
|
2330
|
+
* New cliff date (must be in the future)
|
|
2331
|
+
*/
|
|
2332
|
+
newCliffDate: string;
|
|
1986
2333
|
};
|
|
1987
2334
|
path?: never;
|
|
1988
2335
|
query?: never;
|
|
@@ -2006,9 +2353,21 @@ type PostV0FractionsSalesVestingEditCliffResponses = {
|
|
|
2006
2353
|
type PostV0FractionsSalesVestingEditCliffResponse = PostV0FractionsSalesVestingEditCliffResponses[keyof PostV0FractionsSalesVestingEditCliffResponses];
|
|
2007
2354
|
type PostV0FractionsSalesVestingClaimData = {
|
|
2008
2355
|
body?: {
|
|
2356
|
+
/**
|
|
2357
|
+
* Market contract address
|
|
2358
|
+
*/
|
|
2009
2359
|
address: string;
|
|
2360
|
+
/**
|
|
2361
|
+
* Campaign ID
|
|
2362
|
+
*/
|
|
2010
2363
|
campaignId: string;
|
|
2364
|
+
/**
|
|
2365
|
+
* Number of fractions to claim
|
|
2366
|
+
*/
|
|
2011
2367
|
amountOfFractions: string;
|
|
2368
|
+
/**
|
|
2369
|
+
* Amount of investment tokens to burn
|
|
2370
|
+
*/
|
|
2012
2371
|
itToBurn: string;
|
|
2013
2372
|
};
|
|
2014
2373
|
path?: never;
|
|
@@ -2033,7 +2392,7 @@ type PostV0FractionsSalesVestingClaimResponses = {
|
|
|
2033
2392
|
type PostV0FractionsSalesVestingClaimResponse = PostV0FractionsSalesVestingClaimResponses[keyof PostV0FractionsSalesVestingClaimResponses];
|
|
2034
2393
|
type PostV0FractionsSalesVestingClaimStatisticsData = {
|
|
2035
2394
|
body?: {
|
|
2036
|
-
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
2395
|
+
chainId: '1' | '11155111' | '84532' | '72080' | '31337';
|
|
2037
2396
|
platform: string;
|
|
2038
2397
|
campaignId: string;
|
|
2039
2398
|
walletAddress: string;
|
|
@@ -2047,7 +2406,7 @@ type PostV0FractionsSalesVestingClaimStatisticsResponses = {
|
|
|
2047
2406
|
* Returns claim statistics for the specified campaign and wallet address
|
|
2048
2407
|
*/
|
|
2049
2408
|
200: {
|
|
2050
|
-
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
2409
|
+
chainId: '1' | '11155111' | '84532' | '72080' | '31337';
|
|
2051
2410
|
platform: string;
|
|
2052
2411
|
campaignId: string;
|
|
2053
2412
|
totalClaims: number;
|
|
@@ -2063,7 +2422,7 @@ type GetV0FractionsSalesVestingGetClaimVestedTokensEventData = {
|
|
|
2063
2422
|
body?: never;
|
|
2064
2423
|
path?: never;
|
|
2065
2424
|
query: {
|
|
2066
|
-
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
2425
|
+
chainId: '1' | '11155111' | '84532' | '72080' | '31337';
|
|
2067
2426
|
hash: string;
|
|
2068
2427
|
};
|
|
2069
2428
|
url: '/v0/fractions/sales/vesting/getClaimVestedTokensEvent';
|
|
@@ -2088,7 +2447,7 @@ type PostV0FractionsSalesSearchData = {
|
|
|
2088
2447
|
limit: number;
|
|
2089
2448
|
};
|
|
2090
2449
|
filter: {
|
|
2091
|
-
chainId?: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
2450
|
+
chainId?: '1' | '11155111' | '84532' | '72080' | '31337';
|
|
2092
2451
|
owner?: string;
|
|
2093
2452
|
platform?: string;
|
|
2094
2453
|
campaignId?: string;
|
|
@@ -2103,7 +2462,7 @@ type PostV0FractionsSalesSearchResponses = {
|
|
|
2103
2462
|
* Returns list of sales events within specified platforms and pools
|
|
2104
2463
|
*/
|
|
2105
2464
|
200: Array<{
|
|
2106
|
-
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
2465
|
+
chainId: '1' | '11155111' | '84532' | '72080' | '31337';
|
|
2107
2466
|
platform: string;
|
|
2108
2467
|
campaignId: string;
|
|
2109
2468
|
nftId: string;
|
|
@@ -2111,7 +2470,7 @@ type PostV0FractionsSalesSearchResponses = {
|
|
|
2111
2470
|
owner: string;
|
|
2112
2471
|
fractions: {
|
|
2113
2472
|
asset: {
|
|
2114
|
-
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
2473
|
+
chainId: '1' | '11155111' | '84532' | '72080' | '31337';
|
|
2115
2474
|
address: string;
|
|
2116
2475
|
type: string;
|
|
2117
2476
|
symbol: string;
|
|
@@ -2130,17 +2489,17 @@ type PostV0FractionsSalesSearchResponses = {
|
|
|
2130
2489
|
softCapPerAccount: string | null;
|
|
2131
2490
|
} | null;
|
|
2132
2491
|
timeline: {
|
|
2133
|
-
startDate:
|
|
2134
|
-
endDate:
|
|
2492
|
+
startDate: string;
|
|
2493
|
+
endDate: string | null;
|
|
2135
2494
|
} | null;
|
|
2136
2495
|
vesting: {
|
|
2137
|
-
cliffDate:
|
|
2496
|
+
cliffDate: string;
|
|
2138
2497
|
totalVestingPeriod: number;
|
|
2139
2498
|
portionPeriod: number;
|
|
2140
2499
|
} | null;
|
|
2141
2500
|
wrappedAssets: Array<{
|
|
2142
2501
|
asset: {
|
|
2143
|
-
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
2502
|
+
chainId: '1' | '11155111' | '84532' | '72080' | '31337';
|
|
2144
2503
|
address: string;
|
|
2145
2504
|
type: string;
|
|
2146
2505
|
symbol: string;
|
|
@@ -2153,7 +2512,7 @@ type PostV0FractionsSalesSearchResponses = {
|
|
|
2153
2512
|
}>;
|
|
2154
2513
|
fundingAssets: Array<{
|
|
2155
2514
|
asset: {
|
|
2156
|
-
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
2515
|
+
chainId: '1' | '11155111' | '84532' | '72080' | '31337';
|
|
2157
2516
|
address: string;
|
|
2158
2517
|
type: string;
|
|
2159
2518
|
symbol: string;
|
|
@@ -2165,8 +2524,8 @@ type PostV0FractionsSalesSearchResponses = {
|
|
|
2165
2524
|
amountPerPacket: string;
|
|
2166
2525
|
}>;
|
|
2167
2526
|
transactionHash: string;
|
|
2168
|
-
createdAt:
|
|
2169
|
-
updatedAt:
|
|
2527
|
+
createdAt: string;
|
|
2528
|
+
updatedAt: string;
|
|
2170
2529
|
}>;
|
|
2171
2530
|
};
|
|
2172
2531
|
type PostV0FractionsSalesSearchResponse = PostV0FractionsSalesSearchResponses[keyof PostV0FractionsSalesSearchResponses];
|
|
@@ -2177,7 +2536,7 @@ type PostV0FractionsSalesActivityData = {
|
|
|
2177
2536
|
limit: number;
|
|
2178
2537
|
};
|
|
2179
2538
|
filter: {
|
|
2180
|
-
chainId?: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
2539
|
+
chainId?: '1' | '11155111' | '84532' | '72080' | '31337';
|
|
2181
2540
|
platform?: string;
|
|
2182
2541
|
campaignId?: string;
|
|
2183
2542
|
operationType?: 'created' | 'status_update' | 'purchase' | 'claim' | 'withdraw' | 'withdraw_non_wrapped' | 'refund' | 'epoch_purchase' | 'epoch_exchange' | 'withdrawal_requested' | 'withdrawal_completed' | 'epoch_price_set';
|
|
@@ -2192,13 +2551,13 @@ type PostV0FractionsSalesActivityResponses = {
|
|
|
2192
2551
|
* Returns list of activity events within specified platforms and pools
|
|
2193
2552
|
*/
|
|
2194
2553
|
200: Array<{
|
|
2195
|
-
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
2554
|
+
chainId: '1' | '11155111' | '84532' | '72080' | '31337';
|
|
2196
2555
|
platform: string;
|
|
2197
2556
|
campaignId: string;
|
|
2198
2557
|
transactionHash: string;
|
|
2199
2558
|
from: string;
|
|
2200
|
-
createdAt:
|
|
2201
|
-
updatedAt:
|
|
2559
|
+
createdAt: string;
|
|
2560
|
+
updatedAt: string;
|
|
2202
2561
|
metadata: {
|
|
2203
2562
|
type: 'created';
|
|
2204
2563
|
} | {
|
|
@@ -2241,7 +2600,7 @@ type PostV0FractionsSalesActivityResponses = {
|
|
|
2241
2600
|
type PostV0FractionsSalesActivityResponse = PostV0FractionsSalesActivityResponses[keyof PostV0FractionsSalesActivityResponses];
|
|
2242
2601
|
type PostV0FractionsSalesStatisticsData = {
|
|
2243
2602
|
body?: {
|
|
2244
|
-
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
2603
|
+
chainId: '1' | '11155111' | '84532' | '72080' | '31337';
|
|
2245
2604
|
platform: string;
|
|
2246
2605
|
campaignId: string;
|
|
2247
2606
|
};
|
|
@@ -2251,7 +2610,7 @@ type PostV0FractionsSalesStatisticsData = {
|
|
|
2251
2610
|
};
|
|
2252
2611
|
type PostV0FractionsSalesStatisticsResponses = {
|
|
2253
2612
|
200: {
|
|
2254
|
-
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
2613
|
+
chainId: '1' | '11155111' | '84532' | '72080' | '31337';
|
|
2255
2614
|
platform: string;
|
|
2256
2615
|
campaignId: string;
|
|
2257
2616
|
statistics: Array<{
|
|
@@ -2264,8 +2623,19 @@ type PostV0FractionsSalesStatisticsResponses = {
|
|
|
2264
2623
|
type PostV0FractionsSalesStatisticsResponse = PostV0FractionsSalesStatisticsResponses[keyof PostV0FractionsSalesStatisticsResponses];
|
|
2265
2624
|
type PostV0FractionsSalesSetFeeCapLimitData = {
|
|
2266
2625
|
body?: {
|
|
2267
|
-
|
|
2268
|
-
|
|
2626
|
+
campaign: {
|
|
2627
|
+
/**
|
|
2628
|
+
* Address of the market
|
|
2629
|
+
*/
|
|
2630
|
+
market: string;
|
|
2631
|
+
/**
|
|
2632
|
+
* Campaign ID
|
|
2633
|
+
*/
|
|
2634
|
+
campaignId: string;
|
|
2635
|
+
};
|
|
2636
|
+
/**
|
|
2637
|
+
* Maximum number of fee packets for this campaign
|
|
2638
|
+
*/
|
|
2269
2639
|
packetsLimit: string;
|
|
2270
2640
|
};
|
|
2271
2641
|
path?: never;
|
|
@@ -2292,7 +2662,7 @@ type GetV0FractionsSalesGetWithdrawEventData = {
|
|
|
2292
2662
|
body?: never;
|
|
2293
2663
|
path?: never;
|
|
2294
2664
|
query: {
|
|
2295
|
-
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
2665
|
+
chainId: '1' | '11155111' | '84532' | '72080' | '31337';
|
|
2296
2666
|
hash: string;
|
|
2297
2667
|
};
|
|
2298
2668
|
url: '/v0/fractions/sales/getWithdrawEvent';
|
|
@@ -2312,7 +2682,7 @@ type GetV0FractionsSalesGetVaultAddressData = {
|
|
|
2312
2682
|
body?: never;
|
|
2313
2683
|
path?: never;
|
|
2314
2684
|
query: {
|
|
2315
|
-
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
2685
|
+
chainId: '1' | '11155111' | '84532' | '72080' | '31337';
|
|
2316
2686
|
platform: string;
|
|
2317
2687
|
campaign: string;
|
|
2318
2688
|
};
|
|
@@ -2329,8 +2699,14 @@ type GetV0FractionsSalesGetVaultAddressResponses = {
|
|
|
2329
2699
|
type GetV0FractionsSalesGetVaultAddressResponse = GetV0FractionsSalesGetVaultAddressResponses[keyof GetV0FractionsSalesGetVaultAddressResponses];
|
|
2330
2700
|
type PostV0FractionsSalesApproveWrapperData = {
|
|
2331
2701
|
body?: {
|
|
2332
|
-
|
|
2333
|
-
|
|
2702
|
+
/**
|
|
2703
|
+
* Address of the market (diamond proxy)
|
|
2704
|
+
*/
|
|
2705
|
+
market: string;
|
|
2706
|
+
/**
|
|
2707
|
+
* Address of the wrapper contract
|
|
2708
|
+
*/
|
|
2709
|
+
wrapper: string;
|
|
2334
2710
|
};
|
|
2335
2711
|
path?: never;
|
|
2336
2712
|
query?: never;
|
|
@@ -2356,7 +2732,7 @@ type PostV0FractionsSigNonceData = {
|
|
|
2356
2732
|
body?: {
|
|
2357
2733
|
marketAddress: string;
|
|
2358
2734
|
userAddress: string;
|
|
2359
|
-
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
2735
|
+
chainId: '1' | '11155111' | '84532' | '72080' | '31337';
|
|
2360
2736
|
};
|
|
2361
2737
|
path?: never;
|
|
2362
2738
|
query?: never;
|
|
@@ -2369,7 +2745,7 @@ type PostV0FractionsSigNonceResponses = {
|
|
|
2369
2745
|
200: {
|
|
2370
2746
|
marketAddress: string;
|
|
2371
2747
|
userAddress: string;
|
|
2372
|
-
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
2748
|
+
chainId: '1' | '11155111' | '84532' | '72080' | '31337';
|
|
2373
2749
|
};
|
|
2374
2750
|
};
|
|
2375
2751
|
type PostV0FractionsSigNonceResponse = PostV0FractionsSigNonceResponses[keyof PostV0FractionsSigNonceResponses];
|
|
@@ -2377,7 +2753,7 @@ type PostV0FractionsSigAuthDataData = {
|
|
|
2377
2753
|
body?: {
|
|
2378
2754
|
marketAddress: string;
|
|
2379
2755
|
userAddress: string;
|
|
2380
|
-
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
2756
|
+
chainId: '1' | '11155111' | '84532' | '72080' | '31337';
|
|
2381
2757
|
nonce: string;
|
|
2382
2758
|
blockExpiration: string;
|
|
2383
2759
|
callData: string;
|
|
@@ -2393,7 +2769,7 @@ type PostV0FractionsSigAuthDataResponses = {
|
|
|
2393
2769
|
200: {
|
|
2394
2770
|
marketAddress: string;
|
|
2395
2771
|
userAddress: string;
|
|
2396
|
-
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
2772
|
+
chainId: '1' | '11155111' | '84532' | '72080' | '31337';
|
|
2397
2773
|
nonce: string;
|
|
2398
2774
|
blockExpiration: string;
|
|
2399
2775
|
callData: string;
|
|
@@ -2402,7 +2778,7 @@ type PostV0FractionsSigAuthDataResponses = {
|
|
|
2402
2778
|
type PostV0FractionsSigAuthDataResponse = PostV0FractionsSigAuthDataResponses[keyof PostV0FractionsSigAuthDataResponses];
|
|
2403
2779
|
type PostV0FractionsStatisticsHoldersData = {
|
|
2404
2780
|
body?: {
|
|
2405
|
-
chainId?: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
2781
|
+
chainId?: '1' | '11155111' | '84532' | '72080' | '31337';
|
|
2406
2782
|
};
|
|
2407
2783
|
path?: never;
|
|
2408
2784
|
query?: never;
|
|
@@ -2421,7 +2797,7 @@ type PostV0FractionsStatisticsHoldersResponses = {
|
|
|
2421
2797
|
type PostV0FractionsStatisticsHoldersResponse = PostV0FractionsStatisticsHoldersResponses[keyof PostV0FractionsStatisticsHoldersResponses];
|
|
2422
2798
|
type PostV0FractionsStatisticsSalesData = {
|
|
2423
2799
|
body?: {
|
|
2424
|
-
chainId?: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
2800
|
+
chainId?: '1' | '11155111' | '84532' | '72080' | '31337';
|
|
2425
2801
|
};
|
|
2426
2802
|
path?: never;
|
|
2427
2803
|
query?: never;
|
|
@@ -2440,7 +2816,7 @@ type PostV0FractionsStatisticsSalesResponses = {
|
|
|
2440
2816
|
type PostV0FractionsStatisticsSalesResponse = PostV0FractionsStatisticsSalesResponses[keyof PostV0FractionsStatisticsSalesResponses];
|
|
2441
2817
|
type PostV0FractionsStatisticsTtvData = {
|
|
2442
2818
|
body?: {
|
|
2443
|
-
chainId?: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
2819
|
+
chainId?: '1' | '11155111' | '84532' | '72080' | '31337';
|
|
2444
2820
|
};
|
|
2445
2821
|
path?: never;
|
|
2446
2822
|
query?: never;
|
|
@@ -2459,7 +2835,7 @@ type PostV0FractionsStatisticsTtvResponses = {
|
|
|
2459
2835
|
type PostV0FractionsStatisticsTtvResponse = PostV0FractionsStatisticsTtvResponses[keyof PostV0FractionsStatisticsTtvResponses];
|
|
2460
2836
|
type PostV0FractionsStatisticsData = {
|
|
2461
2837
|
body?: {
|
|
2462
|
-
chainId?: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
2838
|
+
chainId?: '1' | '11155111' | '84532' | '72080' | '31337';
|
|
2463
2839
|
};
|
|
2464
2840
|
path?: never;
|
|
2465
2841
|
query?: never;
|
|
@@ -2486,7 +2862,7 @@ type PostV0FractionsStatisticsResponses = {
|
|
|
2486
2862
|
type PostV0FractionsStatisticsResponse = PostV0FractionsStatisticsResponses[keyof PostV0FractionsStatisticsResponses];
|
|
2487
2863
|
type PostGeneralEstimateGasData = {
|
|
2488
2864
|
body?: {
|
|
2489
|
-
chainId: 11155111 | 84532 | 31337;
|
|
2865
|
+
chainId: '11155111' | '84532' | '31337';
|
|
2490
2866
|
data: string;
|
|
2491
2867
|
from: string;
|
|
2492
2868
|
to: string;
|
|
@@ -2508,7 +2884,7 @@ type GetGeneralBalanceData = {
|
|
|
2508
2884
|
body?: never;
|
|
2509
2885
|
path?: never;
|
|
2510
2886
|
query: {
|
|
2511
|
-
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
2887
|
+
chainId: '1' | '11155111' | '84532' | '72080' | '31337';
|
|
2512
2888
|
address: string;
|
|
2513
2889
|
};
|
|
2514
2890
|
url: '/general/balance';
|
|
@@ -2525,7 +2901,7 @@ type GetGeneralBalanceResponses = {
|
|
|
2525
2901
|
type GetGeneralBalanceResponse = GetGeneralBalanceResponses[keyof GetGeneralBalanceResponses];
|
|
2526
2902
|
type PostGeneralBalancesData = {
|
|
2527
2903
|
body?: {
|
|
2528
|
-
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
2904
|
+
chainId: '1' | '11155111' | '84532' | '72080' | '31337';
|
|
2529
2905
|
address: string;
|
|
2530
2906
|
contracts: Array<string>;
|
|
2531
2907
|
};
|
|
@@ -2551,7 +2927,7 @@ type PostGeneralBalancesResponses = {
|
|
|
2551
2927
|
type PostGeneralBalancesResponse = PostGeneralBalancesResponses[keyof PostGeneralBalancesResponses];
|
|
2552
2928
|
type PostGeneralSearchBalancesData = {
|
|
2553
2929
|
body?: {
|
|
2554
|
-
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
2930
|
+
chainId: '1' | '11155111' | '84532' | '72080' | '31337';
|
|
2555
2931
|
address: string;
|
|
2556
2932
|
};
|
|
2557
2933
|
path?: never;
|
|
@@ -2581,7 +2957,7 @@ type PostGeneralSearchBalancesResponses = {
|
|
|
2581
2957
|
type PostGeneralSearchBalancesResponse = PostGeneralSearchBalancesResponses[keyof PostGeneralSearchBalancesResponses];
|
|
2582
2958
|
type PostIssuanceErc20DeployData = {
|
|
2583
2959
|
body?: {
|
|
2584
|
-
chainId: 11155111 | 84532 | 72080;
|
|
2960
|
+
chainId: '11155111' | '84532' | '72080';
|
|
2585
2961
|
tokenName: string;
|
|
2586
2962
|
tokenSymbol: string;
|
|
2587
2963
|
supplyCap: string;
|
|
@@ -2641,7 +3017,7 @@ type GetIssuanceErc20GetDeployEventData = {
|
|
|
2641
3017
|
body?: never;
|
|
2642
3018
|
path?: never;
|
|
2643
3019
|
query: {
|
|
2644
|
-
chainId: 11155111 | 84532 | 72080;
|
|
3020
|
+
chainId: '11155111' | '84532' | '72080';
|
|
2645
3021
|
hash: string;
|
|
2646
3022
|
};
|
|
2647
3023
|
url: '/issuance/erc20/getDeployEvent';
|
|
@@ -2662,7 +3038,7 @@ type GetIssuanceErc20GetDeployEventResponses = {
|
|
|
2662
3038
|
type GetIssuanceErc20GetDeployEventResponse = GetIssuanceErc20GetDeployEventResponses[keyof GetIssuanceErc20GetDeployEventResponses];
|
|
2663
3039
|
type PostIssuanceErc20DeployGatedData = {
|
|
2664
3040
|
body?: {
|
|
2665
|
-
chainId: 11155111 | 84532 | 72080;
|
|
3041
|
+
chainId: '11155111' | '84532' | '72080';
|
|
2666
3042
|
tokenName: string;
|
|
2667
3043
|
tokenSymbol: string;
|
|
2668
3044
|
supplyCap: string;
|
|
@@ -2724,7 +3100,7 @@ type GetIssuanceErc20GetDeployEventGatedData = {
|
|
|
2724
3100
|
body?: never;
|
|
2725
3101
|
path?: never;
|
|
2726
3102
|
query: {
|
|
2727
|
-
chainId: 11155111 | 84532 | 72080;
|
|
3103
|
+
chainId: '11155111' | '84532' | '72080';
|
|
2728
3104
|
hash: string;
|
|
2729
3105
|
};
|
|
2730
3106
|
url: '/issuance/erc20/getDeployEventGated';
|
|
@@ -2785,7 +3161,7 @@ type GetIssuanceErc20GetDeployEventGatedSimpleData = {
|
|
|
2785
3161
|
body?: never;
|
|
2786
3162
|
path?: never;
|
|
2787
3163
|
query: {
|
|
2788
|
-
chainId: 11155111 | 84532 | 72080;
|
|
3164
|
+
chainId: '11155111' | '84532' | '72080';
|
|
2789
3165
|
hash: string;
|
|
2790
3166
|
};
|
|
2791
3167
|
url: '/issuance/erc20/getDeployEventGatedSimple';
|
|
@@ -3037,7 +3413,7 @@ type PostIssuanceErc20RenounceRoleResponses = {
|
|
|
3037
3413
|
type PostIssuanceErc20RenounceRoleResponse = PostIssuanceErc20RenounceRoleResponses[keyof PostIssuanceErc20RenounceRoleResponses];
|
|
3038
3414
|
type PostIssuanceErc721DeployData = {
|
|
3039
3415
|
body?: {
|
|
3040
|
-
chainId: 11155111 | 84532 | 72080;
|
|
3416
|
+
chainId: '11155111' | '84532' | '72080';
|
|
3041
3417
|
tokenName: string;
|
|
3042
3418
|
tokenSymbol: string;
|
|
3043
3419
|
baseURI: string;
|
|
@@ -3097,7 +3473,7 @@ type GetIssuanceErc721GetDeployEventData = {
|
|
|
3097
3473
|
body?: never;
|
|
3098
3474
|
path?: never;
|
|
3099
3475
|
query: {
|
|
3100
|
-
chainId: 11155111 | 84532 | 72080;
|
|
3476
|
+
chainId: '11155111' | '84532' | '72080';
|
|
3101
3477
|
hash: string;
|
|
3102
3478
|
};
|
|
3103
3479
|
url: '/issuance/erc721/getDeployEvent';
|
|
@@ -3118,7 +3494,7 @@ type GetIssuanceErc721GetDeployEventResponses = {
|
|
|
3118
3494
|
type GetIssuanceErc721GetDeployEventResponse = GetIssuanceErc721GetDeployEventResponses[keyof GetIssuanceErc721GetDeployEventResponses];
|
|
3119
3495
|
type PostIssuanceErc721DeployGatedData = {
|
|
3120
3496
|
body?: {
|
|
3121
|
-
chainId: 11155111 | 84532 | 72080;
|
|
3497
|
+
chainId: '11155111' | '84532' | '72080';
|
|
3122
3498
|
tokenName: string;
|
|
3123
3499
|
tokenSymbol: string;
|
|
3124
3500
|
baseURI: string;
|
|
@@ -3180,7 +3556,7 @@ type GetIssuanceErc721GetDeployEventGatedData = {
|
|
|
3180
3556
|
body?: never;
|
|
3181
3557
|
path?: never;
|
|
3182
3558
|
query: {
|
|
3183
|
-
chainId: 11155111 | 84532 | 72080;
|
|
3559
|
+
chainId: '11155111' | '84532' | '72080';
|
|
3184
3560
|
hash: string;
|
|
3185
3561
|
};
|
|
3186
3562
|
url: '/issuance/erc721/getDeployEventGated';
|
|
@@ -3462,7 +3838,7 @@ type GetIssuanceErc721GetMintedTokenIdData = {
|
|
|
3462
3838
|
body?: never;
|
|
3463
3839
|
path?: never;
|
|
3464
3840
|
query: {
|
|
3465
|
-
chainId: 11155111 | 84532 | 72080;
|
|
3841
|
+
chainId: '11155111' | '84532' | '72080';
|
|
3466
3842
|
hash: string;
|
|
3467
3843
|
};
|
|
3468
3844
|
url: '/issuance/erc721/getMintedTokenId';
|
|
@@ -3478,7 +3854,7 @@ type GetIssuanceErc721GetMintedTokenIdResponses = {
|
|
|
3478
3854
|
type GetIssuanceErc721GetMintedTokenIdResponse = GetIssuanceErc721GetMintedTokenIdResponses[keyof GetIssuanceErc721GetMintedTokenIdResponses];
|
|
3479
3855
|
type PostIssuanceErc1155DeployData = {
|
|
3480
3856
|
body?: {
|
|
3481
|
-
chainId: 11155111 | 84532 | 72080;
|
|
3857
|
+
chainId: '11155111' | '84532' | '72080';
|
|
3482
3858
|
baseURI: string;
|
|
3483
3859
|
defaultTokenAdmin: string;
|
|
3484
3860
|
minter: string;
|
|
@@ -3534,7 +3910,7 @@ type GetIssuanceErc1155GetDeployEventData = {
|
|
|
3534
3910
|
body?: never;
|
|
3535
3911
|
path?: never;
|
|
3536
3912
|
query: {
|
|
3537
|
-
chainId: 11155111 | 84532 | 72080;
|
|
3913
|
+
chainId: '11155111' | '84532' | '72080';
|
|
3538
3914
|
hash: string;
|
|
3539
3915
|
};
|
|
3540
3916
|
url: '/issuance/erc1155/getDeployEvent';
|
|
@@ -3553,7 +3929,7 @@ type GetIssuanceErc1155GetDeployEventResponses = {
|
|
|
3553
3929
|
type GetIssuanceErc1155GetDeployEventResponse = GetIssuanceErc1155GetDeployEventResponses[keyof GetIssuanceErc1155GetDeployEventResponses];
|
|
3554
3930
|
type PostIssuanceErc1155DeployGatedData = {
|
|
3555
3931
|
body?: {
|
|
3556
|
-
chainId: 11155111 | 84532 | 72080;
|
|
3932
|
+
chainId: '11155111' | '84532' | '72080';
|
|
3557
3933
|
baseURI: string;
|
|
3558
3934
|
defaultTokenAdmin: string;
|
|
3559
3935
|
minter: string;
|
|
@@ -3611,7 +3987,7 @@ type GetIssuanceErc1155GetDeployEventGatedData = {
|
|
|
3611
3987
|
body?: never;
|
|
3612
3988
|
path?: never;
|
|
3613
3989
|
query: {
|
|
3614
|
-
chainId: 11155111 | 84532 | 72080;
|
|
3990
|
+
chainId: '11155111' | '84532' | '72080';
|
|
3615
3991
|
hash: string;
|
|
3616
3992
|
};
|
|
3617
3993
|
url: '/issuance/erc1155/getDeployEventGated';
|
|
@@ -3741,906 +4117,11 @@ type PostIssuanceErc1155SetTokenUriData = {
|
|
|
3741
4117
|
};
|
|
3742
4118
|
path?: never;
|
|
3743
4119
|
query?: never;
|
|
3744
|
-
url: '/issuance/erc1155/setTokenURI';
|
|
3745
|
-
};
|
|
3746
|
-
type PostIssuanceErc1155SetTokenUriResponses = {
|
|
3747
|
-
/**
|
|
3748
|
-
* Returns transaction data for setting token URI
|
|
3749
|
-
*/
|
|
3750
|
-
200: {
|
|
3751
|
-
data: string;
|
|
3752
|
-
to: string;
|
|
3753
|
-
details: {
|
|
3754
|
-
functionName: string;
|
|
3755
|
-
address: string;
|
|
3756
|
-
abi: Array<unknown>;
|
|
3757
|
-
args: Array<unknown>;
|
|
3758
|
-
};
|
|
3759
|
-
};
|
|
3760
|
-
};
|
|
3761
|
-
type PostIssuanceErc1155SetTokenUriResponse = PostIssuanceErc1155SetTokenUriResponses[keyof PostIssuanceErc1155SetTokenUriResponses];
|
|
3762
|
-
type PostIssuanceErc1155RecoverData = {
|
|
3763
|
-
body?: {
|
|
3764
|
-
tokenAddress: string;
|
|
3765
|
-
from: string;
|
|
3766
|
-
to: string;
|
|
3767
|
-
id: string;
|
|
3768
|
-
amount: string;
|
|
3769
|
-
};
|
|
3770
|
-
path?: never;
|
|
3771
|
-
query?: never;
|
|
3772
|
-
url: '/issuance/erc1155/recover';
|
|
3773
|
-
};
|
|
3774
|
-
type PostIssuanceErc1155RecoverResponses = {
|
|
3775
|
-
/**
|
|
3776
|
-
* Returns transaction data for recovering ERC1155 tokens
|
|
3777
|
-
*/
|
|
3778
|
-
200: {
|
|
3779
|
-
data: string;
|
|
3780
|
-
to: string;
|
|
3781
|
-
details: {
|
|
3782
|
-
functionName: string;
|
|
3783
|
-
address: string;
|
|
3784
|
-
abi: Array<unknown>;
|
|
3785
|
-
args: Array<unknown>;
|
|
3786
|
-
};
|
|
3787
|
-
};
|
|
3788
|
-
};
|
|
3789
|
-
type PostIssuanceErc1155RecoverResponse = PostIssuanceErc1155RecoverResponses[keyof PostIssuanceErc1155RecoverResponses];
|
|
3790
|
-
type PostIssuanceErc1155GrantRoleData = {
|
|
3791
|
-
body?: {
|
|
3792
|
-
tokenAddress: string;
|
|
3793
|
-
role: 'DEFAULT_ADMIN_ROLE' | 'MINTER_ROLE' | 'PAUSER_ROLE' | 'RECOVER_ROLE';
|
|
3794
|
-
account: string;
|
|
3795
|
-
};
|
|
3796
|
-
path?: never;
|
|
3797
|
-
query?: never;
|
|
3798
|
-
url: '/issuance/erc1155/grantRole';
|
|
3799
|
-
};
|
|
3800
|
-
type PostIssuanceErc1155GrantRoleResponses = {
|
|
3801
|
-
/**
|
|
3802
|
-
* Returns transaction data for granting a role
|
|
3803
|
-
*/
|
|
3804
|
-
200: {
|
|
3805
|
-
data: string;
|
|
3806
|
-
to: string;
|
|
3807
|
-
details: {
|
|
3808
|
-
functionName: string;
|
|
3809
|
-
address: string;
|
|
3810
|
-
abi: Array<unknown>;
|
|
3811
|
-
args: Array<unknown>;
|
|
3812
|
-
};
|
|
3813
|
-
};
|
|
3814
|
-
};
|
|
3815
|
-
type PostIssuanceErc1155GrantRoleResponse = PostIssuanceErc1155GrantRoleResponses[keyof PostIssuanceErc1155GrantRoleResponses];
|
|
3816
|
-
type PostIssuanceErc1155RevokeRoleData = {
|
|
3817
|
-
body?: {
|
|
3818
|
-
tokenAddress: string;
|
|
3819
|
-
role: 'DEFAULT_ADMIN_ROLE' | 'MINTER_ROLE' | 'PAUSER_ROLE' | 'RECOVER_ROLE';
|
|
3820
|
-
account: string;
|
|
3821
|
-
};
|
|
3822
|
-
path?: never;
|
|
3823
|
-
query?: never;
|
|
3824
|
-
url: '/issuance/erc1155/revokeRole';
|
|
3825
|
-
};
|
|
3826
|
-
type PostIssuanceErc1155RevokeRoleResponses = {
|
|
3827
|
-
/**
|
|
3828
|
-
* Returns transaction data for revoking a role
|
|
3829
|
-
*/
|
|
3830
|
-
200: {
|
|
3831
|
-
data: string;
|
|
3832
|
-
to: string;
|
|
3833
|
-
details: {
|
|
3834
|
-
functionName: string;
|
|
3835
|
-
address: string;
|
|
3836
|
-
abi: Array<unknown>;
|
|
3837
|
-
args: Array<unknown>;
|
|
3838
|
-
};
|
|
3839
|
-
};
|
|
3840
|
-
};
|
|
3841
|
-
type PostIssuanceErc1155RevokeRoleResponse = PostIssuanceErc1155RevokeRoleResponses[keyof PostIssuanceErc1155RevokeRoleResponses];
|
|
3842
|
-
type PostIssuanceErc1155RenounceRoleData = {
|
|
3843
|
-
body?: {
|
|
3844
|
-
tokenAddress: string;
|
|
3845
|
-
role: 'DEFAULT_ADMIN_ROLE' | 'MINTER_ROLE' | 'PAUSER_ROLE' | 'RECOVER_ROLE';
|
|
3846
|
-
callerConfirmation: string;
|
|
3847
|
-
};
|
|
3848
|
-
path?: never;
|
|
3849
|
-
query?: never;
|
|
3850
|
-
url: '/issuance/erc1155/renounceRole';
|
|
3851
|
-
};
|
|
3852
|
-
type PostIssuanceErc1155RenounceRoleResponses = {
|
|
3853
|
-
/**
|
|
3854
|
-
* Returns transaction data for renouncing a role
|
|
3855
|
-
*/
|
|
3856
|
-
200: {
|
|
3857
|
-
data: string;
|
|
3858
|
-
to: string;
|
|
3859
|
-
details: {
|
|
3860
|
-
functionName: string;
|
|
3861
|
-
address: string;
|
|
3862
|
-
abi: Array<unknown>;
|
|
3863
|
-
args: Array<unknown>;
|
|
3864
|
-
};
|
|
3865
|
-
};
|
|
3866
|
-
};
|
|
3867
|
-
type PostIssuanceErc1155RenounceRoleResponse = PostIssuanceErc1155RenounceRoleResponses[keyof PostIssuanceErc1155RenounceRoleResponses];
|
|
3868
|
-
type GetIssuanceErc1155GetMintedTokenIdData = {
|
|
3869
|
-
body?: never;
|
|
3870
|
-
path?: never;
|
|
3871
|
-
query: {
|
|
3872
|
-
chainId: 11155111 | 84532 | 72080;
|
|
3873
|
-
hash: string;
|
|
3874
|
-
};
|
|
3875
|
-
url: '/issuance/erc1155/getMintedTokenId';
|
|
3876
|
-
};
|
|
3877
|
-
type GetIssuanceErc1155GetMintedTokenIdResponses = {
|
|
3878
|
-
/**
|
|
3879
|
-
* Returns the minted token ID
|
|
3880
|
-
*/
|
|
3881
|
-
200: {
|
|
3882
|
-
tokenId: string;
|
|
3883
|
-
};
|
|
3884
|
-
};
|
|
3885
|
-
type GetIssuanceErc1155GetMintedTokenIdResponse = GetIssuanceErc1155GetMintedTokenIdResponses[keyof GetIssuanceErc1155GetMintedTokenIdResponses];
|
|
3886
|
-
type GetIssuanceProxyDeployProxyAdminData = {
|
|
3887
|
-
body?: never;
|
|
3888
|
-
path?: never;
|
|
3889
|
-
query?: never;
|
|
3890
|
-
url: '/issuance/proxy/deployProxyAdmin';
|
|
3891
|
-
};
|
|
3892
|
-
type GetIssuanceProxyDeployProxyAdminResponses = {
|
|
3893
|
-
/**
|
|
3894
|
-
* Returns transaction data for deploying a ProxyAdmin contract
|
|
3895
|
-
*/
|
|
3896
|
-
200: {
|
|
3897
|
-
bytecode: string;
|
|
3898
|
-
abi: Array<unknown>;
|
|
3899
|
-
args?: Array<unknown>;
|
|
3900
|
-
};
|
|
3901
|
-
};
|
|
3902
|
-
type GetIssuanceProxyDeployProxyAdminResponse = GetIssuanceProxyDeployProxyAdminResponses[keyof GetIssuanceProxyDeployProxyAdminResponses];
|
|
3903
|
-
type PostIssuanceProxyDeployTransparentProxyData = {
|
|
3904
|
-
body?: {
|
|
3905
|
-
implementation: string;
|
|
3906
|
-
proxyAdminOwner: string;
|
|
3907
|
-
initData: string;
|
|
3908
|
-
};
|
|
3909
|
-
path?: never;
|
|
3910
|
-
query?: never;
|
|
3911
|
-
url: '/issuance/proxy/deployTransparentProxy';
|
|
3912
|
-
};
|
|
3913
|
-
type PostIssuanceProxyDeployTransparentProxyResponses = {
|
|
3914
|
-
/**
|
|
3915
|
-
* Returns transaction data for deploying a TransparentUpgradeableProxy
|
|
3916
|
-
*/
|
|
3917
|
-
200: {
|
|
3918
|
-
bytecode: string;
|
|
3919
|
-
abi: Array<unknown>;
|
|
3920
|
-
args?: Array<unknown>;
|
|
3921
|
-
};
|
|
3922
|
-
};
|
|
3923
|
-
type PostIssuanceProxyDeployTransparentProxyResponse = PostIssuanceProxyDeployTransparentProxyResponses[keyof PostIssuanceProxyDeployTransparentProxyResponses];
|
|
3924
|
-
type PostIssuanceProxyUpgradeTransparentProxyData = {
|
|
3925
|
-
body?: {
|
|
3926
|
-
proxyAdminAddress: string;
|
|
3927
|
-
proxyAddress: string;
|
|
3928
|
-
newImplementation: string;
|
|
3929
|
-
data?: string;
|
|
3930
|
-
};
|
|
3931
|
-
path?: never;
|
|
3932
|
-
query?: never;
|
|
3933
|
-
url: '/issuance/proxy/upgradeTransparentProxy';
|
|
3934
|
-
};
|
|
3935
|
-
type PostIssuanceProxyUpgradeTransparentProxyResponses = {
|
|
3936
|
-
/**
|
|
3937
|
-
* Returns transaction data for upgrading transparent proxy implementation via ProxyAdmin
|
|
3938
|
-
*/
|
|
3939
|
-
200: {
|
|
3940
|
-
data: string;
|
|
3941
|
-
to: string;
|
|
3942
|
-
details: {
|
|
3943
|
-
functionName: string;
|
|
3944
|
-
address: string;
|
|
3945
|
-
abi: Array<unknown>;
|
|
3946
|
-
args: Array<unknown>;
|
|
3947
|
-
};
|
|
3948
|
-
};
|
|
3949
|
-
};
|
|
3950
|
-
type PostIssuanceProxyUpgradeTransparentProxyResponse = PostIssuanceProxyUpgradeTransparentProxyResponses[keyof PostIssuanceProxyUpgradeTransparentProxyResponses];
|
|
3951
|
-
type PostNextFractionsPlatformsDeployNftFractionsData = {
|
|
3952
|
-
body?: {
|
|
3953
|
-
/**
|
|
3954
|
-
* Chain ID where the market will be deployed
|
|
3955
|
-
*/
|
|
3956
|
-
chainId: 11155111 | 84532 | 72080 | 31337;
|
|
3957
|
-
/**
|
|
3958
|
-
* Address of the market administrator
|
|
3959
|
-
*/
|
|
3960
|
-
adminAddress: string;
|
|
3961
|
-
/**
|
|
3962
|
-
* Address of the market owner. Defaults to adminAddress if not provided
|
|
3963
|
-
*/
|
|
3964
|
-
ownerAddress?: string;
|
|
3965
|
-
/**
|
|
3966
|
-
* Optional cap configuration
|
|
3967
|
-
*/
|
|
3968
|
-
cap?: {
|
|
3969
|
-
/**
|
|
3970
|
-
* Maximum hard cap for the market
|
|
3971
|
-
*/
|
|
3972
|
-
maxHardCap: string;
|
|
3973
|
-
};
|
|
3974
|
-
/**
|
|
3975
|
-
* Optional fee configuration
|
|
3976
|
-
*/
|
|
3977
|
-
fee?: {
|
|
3978
|
-
percent: number;
|
|
3979
|
-
collectorAddress: string;
|
|
3980
|
-
feeAdmin: string;
|
|
3981
|
-
};
|
|
3982
|
-
/**
|
|
3983
|
-
* Accepted funding token addresses
|
|
3984
|
-
*/
|
|
3985
|
-
acceptedFundingTokens: Array<string>;
|
|
3986
|
-
};
|
|
3987
|
-
path?: never;
|
|
3988
|
-
query?: never;
|
|
3989
|
-
url: '/next/fractions/platforms/deployNftFractions';
|
|
3990
|
-
};
|
|
3991
|
-
type PostNextFractionsPlatformsDeployNftFractionsResponses = {
|
|
3992
|
-
/**
|
|
3993
|
-
* Returns transaction data for deploying an NFT Fractions market
|
|
3994
|
-
*/
|
|
3995
|
-
200: {
|
|
3996
|
-
data: string;
|
|
3997
|
-
to: string;
|
|
3998
|
-
details: {
|
|
3999
|
-
functionName: string;
|
|
4000
|
-
address: string;
|
|
4001
|
-
abi: Array<unknown>;
|
|
4002
|
-
args: Array<unknown>;
|
|
4003
|
-
};
|
|
4004
|
-
};
|
|
4005
|
-
};
|
|
4006
|
-
type PostNextFractionsPlatformsDeployNftFractionsResponse = PostNextFractionsPlatformsDeployNftFractionsResponses[keyof PostNextFractionsPlatformsDeployNftFractionsResponses];
|
|
4007
|
-
type PostNextFractionsPlatformsDeployNftFractionsGatedData = {
|
|
4008
|
-
body?: {
|
|
4009
|
-
/**
|
|
4010
|
-
* Chain ID where the market will be deployed
|
|
4011
|
-
*/
|
|
4012
|
-
chainId: 11155111 | 84532 | 72080 | 31337;
|
|
4013
|
-
/**
|
|
4014
|
-
* Address of the market administrator
|
|
4015
|
-
*/
|
|
4016
|
-
adminAddress: string;
|
|
4017
|
-
/**
|
|
4018
|
-
* Address of the market owner. Defaults to adminAddress if not provided
|
|
4019
|
-
*/
|
|
4020
|
-
ownerAddress?: string;
|
|
4021
|
-
/**
|
|
4022
|
-
* ComPilot signer address. Uses platform default if not provided
|
|
4023
|
-
*/
|
|
4024
|
-
compilotSignerAddress?: string;
|
|
4025
|
-
/**
|
|
4026
|
-
* Optional cap configuration
|
|
4027
|
-
*/
|
|
4028
|
-
cap?: {
|
|
4029
|
-
/**
|
|
4030
|
-
* Maximum hard cap for the market
|
|
4031
|
-
*/
|
|
4032
|
-
maxHardCap: string;
|
|
4033
|
-
};
|
|
4034
|
-
/**
|
|
4035
|
-
* Optional fee configuration
|
|
4036
|
-
*/
|
|
4037
|
-
fee?: {
|
|
4038
|
-
percent: number;
|
|
4039
|
-
collectorAddress: string;
|
|
4040
|
-
feeAdmin: string;
|
|
4041
|
-
};
|
|
4042
|
-
/**
|
|
4043
|
-
* Accepted funding token addresses
|
|
4044
|
-
*/
|
|
4045
|
-
acceptedFundingTokens: Array<string>;
|
|
4046
|
-
};
|
|
4047
|
-
path?: never;
|
|
4048
|
-
query?: never;
|
|
4049
|
-
url: '/next/fractions/platforms/deployNftFractionsGated';
|
|
4050
|
-
};
|
|
4051
|
-
type PostNextFractionsPlatformsDeployNftFractionsGatedResponses = {
|
|
4052
|
-
/**
|
|
4053
|
-
* Returns transaction data for deploying a gated NFT Fractions market
|
|
4054
|
-
*/
|
|
4055
|
-
200: {
|
|
4056
|
-
data: string;
|
|
4057
|
-
to: string;
|
|
4058
|
-
details: {
|
|
4059
|
-
functionName: string;
|
|
4060
|
-
address: string;
|
|
4061
|
-
abi: Array<unknown>;
|
|
4062
|
-
args: Array<unknown>;
|
|
4063
|
-
};
|
|
4064
|
-
};
|
|
4065
|
-
};
|
|
4066
|
-
type PostNextFractionsPlatformsDeployNftFractionsGatedResponse = PostNextFractionsPlatformsDeployNftFractionsGatedResponses[keyof PostNextFractionsPlatformsDeployNftFractionsGatedResponses];
|
|
4067
|
-
type PostNextFractionsSalesNftFractionsData = {
|
|
4068
|
-
body?: {
|
|
4069
|
-
/**
|
|
4070
|
-
* Chain ID where the market is deployed
|
|
4071
|
-
*/
|
|
4072
|
-
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
4073
|
-
/**
|
|
4074
|
-
* Address of the NFT Fractions market
|
|
4075
|
-
*/
|
|
4076
|
-
market: string;
|
|
4077
|
-
/**
|
|
4078
|
-
* Wrapped asset details to include in the sale
|
|
4079
|
-
*/
|
|
4080
|
-
wrapped: Array<{
|
|
4081
|
-
type: 'ERC20';
|
|
4082
|
-
address: string;
|
|
4083
|
-
values: Array<string>;
|
|
4084
|
-
} | {
|
|
4085
|
-
type: 'ERC721';
|
|
4086
|
-
address: string;
|
|
4087
|
-
tokenIds: Array<string>;
|
|
4088
|
-
} | {
|
|
4089
|
-
type: 'ERC1155';
|
|
4090
|
-
address: string;
|
|
4091
|
-
tokenIds: Array<string>;
|
|
4092
|
-
values: Array<string>;
|
|
4093
|
-
}>;
|
|
4094
|
-
/**
|
|
4095
|
-
* Fraction token configuration
|
|
4096
|
-
*/
|
|
4097
|
-
fractions: {
|
|
4098
|
-
/**
|
|
4099
|
-
* Fraction token name
|
|
4100
|
-
*/
|
|
4101
|
-
name: string;
|
|
4102
|
-
/**
|
|
4103
|
-
* Fraction token symbol
|
|
4104
|
-
*/
|
|
4105
|
-
symbol: string;
|
|
4106
|
-
/**
|
|
4107
|
-
* Total supply of fractions to mint
|
|
4108
|
-
*/
|
|
4109
|
-
amount: string;
|
|
4110
|
-
};
|
|
4111
|
-
/**
|
|
4112
|
-
* Purchase time window
|
|
4113
|
-
*/
|
|
4114
|
-
timeBoundary: {
|
|
4115
|
-
/**
|
|
4116
|
-
* Sale start date
|
|
4117
|
-
*/
|
|
4118
|
-
start: Date;
|
|
4119
|
-
/**
|
|
4120
|
-
* Sale end date
|
|
4121
|
-
*/
|
|
4122
|
-
end: Date;
|
|
4123
|
-
};
|
|
4124
|
-
/**
|
|
4125
|
-
* Capitalization limits
|
|
4126
|
-
*/
|
|
4127
|
-
cap: {
|
|
4128
|
-
/**
|
|
4129
|
-
* Soft cap - minimum funding target
|
|
4130
|
-
*/
|
|
4131
|
-
soft: string;
|
|
4132
|
-
/**
|
|
4133
|
-
* Hard cap - maximum funding limit
|
|
4134
|
-
*/
|
|
4135
|
-
hard: string;
|
|
4136
|
-
/**
|
|
4137
|
-
* Optional soft cap per account
|
|
4138
|
-
*/
|
|
4139
|
-
softPerAccount?: string;
|
|
4140
|
-
/**
|
|
4141
|
-
* Optional hard cap per account
|
|
4142
|
-
*/
|
|
4143
|
-
hardPerAccount?: string;
|
|
4144
|
-
};
|
|
4145
|
-
/**
|
|
4146
|
-
* Payment token configuration
|
|
4147
|
-
*/
|
|
4148
|
-
funding: Array<{
|
|
4149
|
-
/**
|
|
4150
|
-
* Payment token address (e.g., USDC)
|
|
4151
|
-
*/
|
|
4152
|
-
token: string;
|
|
4153
|
-
/**
|
|
4154
|
-
* Amount of payment token per packet
|
|
4155
|
-
*/
|
|
4156
|
-
amountPerPacket: string;
|
|
4157
|
-
}>;
|
|
4158
|
-
/**
|
|
4159
|
-
* Number of funding packets per fraction
|
|
4160
|
-
*/
|
|
4161
|
-
amountOfPacketsPerFraction: string;
|
|
4162
|
-
/**
|
|
4163
|
-
* Optional vesting configuration
|
|
4164
|
-
*/
|
|
4165
|
-
vesting?: {
|
|
4166
|
-
/**
|
|
4167
|
-
* Cliff date after which vesting begins
|
|
4168
|
-
*/
|
|
4169
|
-
cliff: Date;
|
|
4170
|
-
/**
|
|
4171
|
-
* Total vesting period in seconds
|
|
4172
|
-
*/
|
|
4173
|
-
totalVestingPeriod: number;
|
|
4174
|
-
/**
|
|
4175
|
-
* Period between vesting portions in seconds
|
|
4176
|
-
*/
|
|
4177
|
-
portionPeriod: number;
|
|
4178
|
-
};
|
|
4179
|
-
/**
|
|
4180
|
-
* Address to receive refunds
|
|
4181
|
-
*/
|
|
4182
|
-
refundAddress: string;
|
|
4183
|
-
};
|
|
4184
|
-
path?: never;
|
|
4185
|
-
query?: never;
|
|
4186
|
-
url: '/next/fractions/sales/nftFractions';
|
|
4187
|
-
};
|
|
4188
|
-
type PostNextFractionsSalesNftFractionsResponses = {
|
|
4189
|
-
/**
|
|
4190
|
-
* Returns transaction data for creating NFT fractions
|
|
4191
|
-
*/
|
|
4192
|
-
200: {
|
|
4193
|
-
data: string;
|
|
4194
|
-
to: string;
|
|
4195
|
-
details: {
|
|
4196
|
-
functionName: string;
|
|
4197
|
-
address: string;
|
|
4198
|
-
abi: Array<unknown>;
|
|
4199
|
-
args: Array<unknown>;
|
|
4200
|
-
};
|
|
4201
|
-
};
|
|
4202
|
-
};
|
|
4203
|
-
type PostNextFractionsSalesNftFractionsResponse = PostNextFractionsSalesNftFractionsResponses[keyof PostNextFractionsSalesNftFractionsResponses];
|
|
4204
|
-
type GetNextFractionsSalesGetFractionsCreatedEventData = {
|
|
4205
|
-
body?: never;
|
|
4206
|
-
path?: never;
|
|
4207
|
-
query: {
|
|
4208
|
-
chainId: 11155111 | 84532 | 72080 | 31337;
|
|
4209
|
-
hash: string;
|
|
4210
|
-
};
|
|
4211
|
-
url: '/next/fractions/sales/getFractionsCreatedEvent';
|
|
4212
|
-
};
|
|
4213
|
-
type GetNextFractionsSalesGetFractionsCreatedEventResponses = {
|
|
4214
|
-
/**
|
|
4215
|
-
* Returns parsed event log
|
|
4216
|
-
*/
|
|
4217
|
-
200: {
|
|
4218
|
-
creator: string;
|
|
4219
|
-
nftId: string;
|
|
4220
|
-
campaignId: string;
|
|
4221
|
-
fractionsCreated: string;
|
|
4222
|
-
fractionsAddress: string;
|
|
4223
|
-
vaultAddress: string;
|
|
4224
|
-
};
|
|
4225
|
-
};
|
|
4226
|
-
type GetNextFractionsSalesGetFractionsCreatedEventResponse = GetNextFractionsSalesGetFractionsCreatedEventResponses[keyof GetNextFractionsSalesGetFractionsCreatedEventResponses];
|
|
4227
|
-
type PostNextFractionsSalesPurchaseData = {
|
|
4228
|
-
body?: {
|
|
4229
|
-
market: string;
|
|
4230
|
-
campaignId: string;
|
|
4231
|
-
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
4232
|
-
amountToBuy: string;
|
|
4233
|
-
applyDiscount: boolean;
|
|
4234
|
-
};
|
|
4235
|
-
path?: never;
|
|
4236
|
-
query?: never;
|
|
4237
|
-
url: '/next/fractions/sales/purchase';
|
|
4238
|
-
};
|
|
4239
|
-
type PostNextFractionsSalesPurchaseResponses = {
|
|
4240
|
-
/**
|
|
4241
|
-
* Returns transaction data for making a purchase
|
|
4242
|
-
*/
|
|
4243
|
-
200: {
|
|
4244
|
-
data: string;
|
|
4245
|
-
to: string;
|
|
4246
|
-
details: {
|
|
4247
|
-
functionName: string;
|
|
4248
|
-
address: string;
|
|
4249
|
-
abi: Array<unknown>;
|
|
4250
|
-
args: Array<unknown>;
|
|
4251
|
-
};
|
|
4252
|
-
};
|
|
4253
|
-
};
|
|
4254
|
-
type PostNextFractionsSalesPurchaseResponse = PostNextFractionsSalesPurchaseResponses[keyof PostNextFractionsSalesPurchaseResponses];
|
|
4255
|
-
type PostNextFractionsLendingDeployData = {
|
|
4256
|
-
body?: {
|
|
4257
|
-
chainId: 11155111 | 84532 | 72080 | 31337;
|
|
4258
|
-
adminAddress: string;
|
|
4259
|
-
ownerAddress?: string;
|
|
4260
|
-
discount?: {
|
|
4261
|
-
burnForDiscount: {
|
|
4262
|
-
burnableTokenAddress: string;
|
|
4263
|
-
};
|
|
4264
|
-
};
|
|
4265
|
-
cap?: {
|
|
4266
|
-
maxHardCap: string;
|
|
4267
|
-
};
|
|
4268
|
-
fee?: {
|
|
4269
|
-
percent: number;
|
|
4270
|
-
collectorAddress: string;
|
|
4271
|
-
feeAdmin: string;
|
|
4272
|
-
};
|
|
4273
|
-
minInterest: number;
|
|
4274
|
-
maxInterest: number;
|
|
4275
|
-
minDuration: string;
|
|
4276
|
-
maxDuration: string;
|
|
4277
|
-
minimumProportionOverObligation: string;
|
|
4278
|
-
};
|
|
4279
|
-
path?: never;
|
|
4280
|
-
query?: never;
|
|
4281
|
-
url: '/next/fractions/lending/deploy';
|
|
4282
|
-
};
|
|
4283
|
-
type PostNextFractionsLendingDeployResponses = {
|
|
4284
|
-
/**
|
|
4285
|
-
* Returns transaction data for deploying a financing market
|
|
4286
|
-
*/
|
|
4287
|
-
200: {
|
|
4288
|
-
data: string;
|
|
4289
|
-
to: string;
|
|
4290
|
-
details: {
|
|
4291
|
-
functionName: string;
|
|
4292
|
-
address: string;
|
|
4293
|
-
abi: Array<unknown>;
|
|
4294
|
-
args: Array<unknown>;
|
|
4295
|
-
};
|
|
4296
|
-
};
|
|
4297
|
-
};
|
|
4298
|
-
type PostNextFractionsLendingDeployResponse = PostNextFractionsLendingDeployResponses[keyof PostNextFractionsLendingDeployResponses];
|
|
4299
|
-
type PostNextFractionsLendingCreateSaleData = {
|
|
4300
|
-
body?: {
|
|
4301
|
-
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
4302
|
-
market: string;
|
|
4303
|
-
fractions: {
|
|
4304
|
-
/**
|
|
4305
|
-
* DO NOT USE. This field will be removed
|
|
4306
|
-
*/
|
|
4307
|
-
token?: string;
|
|
4308
|
-
symbol: string;
|
|
4309
|
-
name: string;
|
|
4310
|
-
amount: string;
|
|
4311
|
-
};
|
|
4312
|
-
timeBoundary: {
|
|
4313
|
-
start: Date;
|
|
4314
|
-
end: Date;
|
|
4315
|
-
};
|
|
4316
|
-
cap: {
|
|
4317
|
-
soft: string;
|
|
4318
|
-
hard: string;
|
|
4319
|
-
softPerAccount?: string;
|
|
4320
|
-
hardPerAccount?: string;
|
|
4321
|
-
};
|
|
4322
|
-
wrapped: Array<{
|
|
4323
|
-
type: 'ERC20';
|
|
4324
|
-
address: string;
|
|
4325
|
-
values: Array<string>;
|
|
4326
|
-
} | {
|
|
4327
|
-
type: 'ERC721';
|
|
4328
|
-
address: string;
|
|
4329
|
-
tokenIds: Array<string>;
|
|
4330
|
-
} | {
|
|
4331
|
-
type: 'ERC1155';
|
|
4332
|
-
address: string;
|
|
4333
|
-
tokenIds: Array<string>;
|
|
4334
|
-
values: Array<string>;
|
|
4335
|
-
}>;
|
|
4336
|
-
funding: Array<{
|
|
4337
|
-
token: string;
|
|
4338
|
-
amountPerPacket: string;
|
|
4339
|
-
}>;
|
|
4340
|
-
discounts?: {
|
|
4341
|
-
burnableTokenAddress: string;
|
|
4342
|
-
amountToBurn: string;
|
|
4343
|
-
percentDiscount: number;
|
|
4344
|
-
};
|
|
4345
|
-
refundAddress: string;
|
|
4346
|
-
amountOfPacketsPerFraction: string;
|
|
4347
|
-
buyback: {
|
|
4348
|
-
durationSeconds: number;
|
|
4349
|
-
interestPercentage: number;
|
|
4350
|
-
liquidationLimitPercentage: number;
|
|
4351
|
-
marginCallLimitPercentage: number;
|
|
4352
|
-
};
|
|
4353
|
-
};
|
|
4354
|
-
path?: never;
|
|
4355
|
-
query?: never;
|
|
4356
|
-
url: '/next/fractions/lending/createSale';
|
|
4357
|
-
};
|
|
4358
|
-
type PostNextFractionsLendingCreateSaleResponses = {
|
|
4359
|
-
/**
|
|
4360
|
-
* Returns transaction data for creating financing sale fractions
|
|
4361
|
-
*/
|
|
4362
|
-
200: {
|
|
4363
|
-
data: string;
|
|
4364
|
-
to: string;
|
|
4365
|
-
details: {
|
|
4366
|
-
functionName: string;
|
|
4367
|
-
address: string;
|
|
4368
|
-
abi: Array<unknown>;
|
|
4369
|
-
args: Array<unknown>;
|
|
4370
|
-
};
|
|
4371
|
-
};
|
|
4372
|
-
};
|
|
4373
|
-
type PostNextFractionsLendingCreateSaleResponse = PostNextFractionsLendingCreateSaleResponses[keyof PostNextFractionsLendingCreateSaleResponses];
|
|
4374
|
-
type PostNextFractionsLendingPurchaseData = {
|
|
4375
|
-
body?: {
|
|
4376
|
-
market: string;
|
|
4377
|
-
campaignId: string;
|
|
4378
|
-
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
4379
|
-
amountToBuy: string;
|
|
4380
|
-
applyDiscount: boolean;
|
|
4381
|
-
};
|
|
4382
|
-
path?: never;
|
|
4383
|
-
query?: never;
|
|
4384
|
-
url: '/next/fractions/lending/purchase';
|
|
4385
|
-
};
|
|
4386
|
-
type PostNextFractionsLendingPurchaseResponses = {
|
|
4387
|
-
/**
|
|
4388
|
-
* Returns transaction data for making a purchase
|
|
4389
|
-
*/
|
|
4390
|
-
200: {
|
|
4391
|
-
data: string;
|
|
4392
|
-
to: string;
|
|
4393
|
-
details: {
|
|
4394
|
-
functionName: string;
|
|
4395
|
-
address: string;
|
|
4396
|
-
abi: Array<unknown>;
|
|
4397
|
-
args: Array<unknown>;
|
|
4398
|
-
};
|
|
4399
|
-
};
|
|
4400
|
-
};
|
|
4401
|
-
type PostNextFractionsLendingPurchaseResponse = PostNextFractionsLendingPurchaseResponses[keyof PostNextFractionsLendingPurchaseResponses];
|
|
4402
|
-
type PostNextFractionsLendingSetCollateralPriceData = {
|
|
4403
|
-
body?: {
|
|
4404
|
-
collateralPriceInFundingPackets: string;
|
|
4405
|
-
market: string;
|
|
4406
|
-
campaignId: string;
|
|
4407
|
-
};
|
|
4408
|
-
path?: never;
|
|
4409
|
-
query?: never;
|
|
4410
|
-
url: '/next/fractions/lending/setCollateralPrice';
|
|
4411
|
-
};
|
|
4412
|
-
type PostNextFractionsLendingSetCollateralPriceResponses = {
|
|
4413
|
-
/**
|
|
4414
|
-
* Returns transaction data for setting collateral price
|
|
4415
|
-
*/
|
|
4416
|
-
200: {
|
|
4417
|
-
data: string;
|
|
4418
|
-
to: string;
|
|
4419
|
-
details: {
|
|
4420
|
-
functionName: string;
|
|
4421
|
-
address: string;
|
|
4422
|
-
abi: Array<unknown>;
|
|
4423
|
-
args: Array<unknown>;
|
|
4424
|
-
};
|
|
4425
|
-
};
|
|
4426
|
-
};
|
|
4427
|
-
type PostNextFractionsLendingSetCollateralPriceResponse = PostNextFractionsLendingSetCollateralPriceResponses[keyof PostNextFractionsLendingSetCollateralPriceResponses];
|
|
4428
|
-
type PostNextFractionsLendingBuybackData = {
|
|
4429
|
-
body?: {
|
|
4430
|
-
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
4431
|
-
buybackPacketsAmount: string;
|
|
4432
|
-
market: string;
|
|
4433
|
-
campaignId: string;
|
|
4434
|
-
};
|
|
4435
|
-
path?: never;
|
|
4436
|
-
query?: never;
|
|
4437
|
-
url: '/next/fractions/lending/buyback';
|
|
4438
|
-
};
|
|
4439
|
-
type PostNextFractionsLendingBuybackResponses = {
|
|
4440
|
-
/**
|
|
4441
|
-
* Returns transaction data for buy back operation
|
|
4442
|
-
*/
|
|
4443
|
-
200: {
|
|
4444
|
-
data: string;
|
|
4445
|
-
to: string;
|
|
4446
|
-
details: {
|
|
4447
|
-
functionName: string;
|
|
4448
|
-
address: string;
|
|
4449
|
-
abi: Array<unknown>;
|
|
4450
|
-
args: Array<unknown>;
|
|
4451
|
-
};
|
|
4452
|
-
};
|
|
4453
|
-
};
|
|
4454
|
-
type PostNextFractionsLendingBuybackResponse = PostNextFractionsLendingBuybackResponses[keyof PostNextFractionsLendingBuybackResponses];
|
|
4455
|
-
type PostNextFractionsVestingRedemptionDynamicDeployMarketData = {
|
|
4456
|
-
body?: {
|
|
4457
|
-
/**
|
|
4458
|
-
* Chain ID where the market will be deployed
|
|
4459
|
-
*/
|
|
4460
|
-
chainId: 11155111 | 84532 | 72080 | 31337;
|
|
4461
|
-
/**
|
|
4462
|
-
* Address of the market administrator. Also used as the approval authority for campaigns.
|
|
4463
|
-
*/
|
|
4464
|
-
adminAddress: string;
|
|
4465
|
-
/**
|
|
4466
|
-
* Diamond owner address. Defaults to adminAddress if not provided.
|
|
4467
|
-
*/
|
|
4468
|
-
ownerAddress?: string;
|
|
4469
|
-
/**
|
|
4470
|
-
* ERC-20 token addresses accepted as payment.
|
|
4471
|
-
*/
|
|
4472
|
-
acceptedFundingTokens: Array<string>;
|
|
4473
|
-
/**
|
|
4474
|
-
* Platform-wide entry fee applied to all purchase transactions.
|
|
4475
|
-
*/
|
|
4476
|
-
platformEntryFee?: {
|
|
4477
|
-
/**
|
|
4478
|
-
* Address that receives the fee
|
|
4479
|
-
*/
|
|
4480
|
-
collectorAddress: string;
|
|
4481
|
-
/**
|
|
4482
|
-
* Fee in basis points (1 = 0.01%, 10000 = 100%)
|
|
4483
|
-
*/
|
|
4484
|
-
basisPoints: number;
|
|
4485
|
-
};
|
|
4486
|
-
/**
|
|
4487
|
-
* Platform-wide exit fee applied to all epoch price updates (withdrawals).
|
|
4488
|
-
*/
|
|
4489
|
-
platformExitFee?: {
|
|
4490
|
-
/**
|
|
4491
|
-
* Address that receives the fee
|
|
4492
|
-
*/
|
|
4493
|
-
collectorAddress: string;
|
|
4494
|
-
/**
|
|
4495
|
-
* Fee in basis points (1 = 0.01%, 10000 = 100%)
|
|
4496
|
-
*/
|
|
4497
|
-
basisPoints: number;
|
|
4498
|
-
};
|
|
4499
|
-
/**
|
|
4500
|
-
* Custom receipt NFT metadata. Defaults to 'VRD Receipt' / 'VRD'.
|
|
4501
|
-
*/
|
|
4502
|
-
receiptNft?: {
|
|
4503
|
-
/**
|
|
4504
|
-
* Base name for receipt NFTs (used for purchase and withdrawal receipts)
|
|
4505
|
-
*/
|
|
4506
|
-
baseName: string;
|
|
4507
|
-
/**
|
|
4508
|
-
* Base symbol for receipt NFTs
|
|
4509
|
-
*/
|
|
4510
|
-
baseSymbol: string;
|
|
4511
|
-
};
|
|
4512
|
-
};
|
|
4513
|
-
path?: never;
|
|
4514
|
-
query?: never;
|
|
4515
|
-
url: '/next/fractions/vestingRedemptionDynamic/deployMarket';
|
|
4516
|
-
};
|
|
4517
|
-
type PostNextFractionsVestingRedemptionDynamicDeployMarketResponses = {
|
|
4518
|
-
/**
|
|
4519
|
-
* Returns transaction data for deploying the market diamond
|
|
4520
|
-
*/
|
|
4521
|
-
200: {
|
|
4522
|
-
data: string;
|
|
4523
|
-
to: string;
|
|
4524
|
-
details: {
|
|
4525
|
-
functionName: string;
|
|
4526
|
-
address: string;
|
|
4527
|
-
abi: Array<unknown>;
|
|
4528
|
-
args: Array<unknown>;
|
|
4529
|
-
};
|
|
4530
|
-
};
|
|
4531
|
-
};
|
|
4532
|
-
type PostNextFractionsVestingRedemptionDynamicDeployMarketResponse = PostNextFractionsVestingRedemptionDynamicDeployMarketResponses[keyof PostNextFractionsVestingRedemptionDynamicDeployMarketResponses];
|
|
4533
|
-
type PostNextFractionsVestingRedemptionDynamicCreateCampaignData = {
|
|
4534
|
-
body?: {
|
|
4535
|
-
/**
|
|
4536
|
-
* Chain ID where the market is deployed
|
|
4537
|
-
*/
|
|
4538
|
-
chainId: 11155111 | 84532 | 72080 | 31337;
|
|
4539
|
-
/**
|
|
4540
|
-
* Address of the deployed Vesting & Redemption Dynamic market
|
|
4541
|
-
*/
|
|
4542
|
-
market: string;
|
|
4543
|
-
/**
|
|
4544
|
-
* ERC-721 NFT to wrap as the underlying collateral
|
|
4545
|
-
*/
|
|
4546
|
-
nft: {
|
|
4547
|
-
/**
|
|
4548
|
-
* ERC-721 contract address
|
|
4549
|
-
*/
|
|
4550
|
-
contractAddress: string;
|
|
4551
|
-
/**
|
|
4552
|
-
* Token ID of the NFT to wrap
|
|
4553
|
-
*/
|
|
4554
|
-
tokenId: string;
|
|
4555
|
-
};
|
|
4556
|
-
/**
|
|
4557
|
-
* ERC-20 fraction token metadata
|
|
4558
|
-
*/
|
|
4559
|
-
fractions: {
|
|
4560
|
-
/**
|
|
4561
|
-
* ERC-20 fraction token name
|
|
4562
|
-
*/
|
|
4563
|
-
name: string;
|
|
4564
|
-
/**
|
|
4565
|
-
* ERC-20 fraction token symbol
|
|
4566
|
-
*/
|
|
4567
|
-
symbol: string;
|
|
4568
|
-
};
|
|
4569
|
-
/**
|
|
4570
|
-
* Address that receives refunds if the campaign is incorrectly set up
|
|
4571
|
-
*/
|
|
4572
|
-
refundAddress: string;
|
|
4573
|
-
/**
|
|
4574
|
-
* Payment token configuration
|
|
4575
|
-
*/
|
|
4576
|
-
funding: {
|
|
4577
|
-
/**
|
|
4578
|
-
* ERC-20 payment token address (must be an accepted funding token of the market)
|
|
4579
|
-
*/
|
|
4580
|
-
token: string;
|
|
4581
|
-
/**
|
|
4582
|
-
* Amount of payment token per funding packet (in raw token units, e.g. 1e6 for 1 USDC with 6 decimals)
|
|
4583
|
-
*/
|
|
4584
|
-
amountPerPacket: string;
|
|
4585
|
-
};
|
|
4586
|
-
/**
|
|
4587
|
-
* Campaign start date in ISO 8601 format. No purchases can be made before this time.
|
|
4588
|
-
*/
|
|
4589
|
-
startDate: Date;
|
|
4590
|
-
/**
|
|
4591
|
-
* Minimum number of funding packets per single purchase call
|
|
4592
|
-
*/
|
|
4593
|
-
softCapPerPurchase: string;
|
|
4594
|
-
/**
|
|
4595
|
-
* Maximum total funding packets an investor may provide across all purchases
|
|
4596
|
-
*/
|
|
4597
|
-
hardCapPerAccount: string;
|
|
4598
|
-
/**
|
|
4599
|
-
* Address that receives the funds provided by investors (the issuer or fund manager wallet)
|
|
4600
|
-
*/
|
|
4601
|
-
fundsReceiver: string;
|
|
4602
|
-
/**
|
|
4603
|
-
* Address authorised to call setPrice and advance the epoch
|
|
4604
|
-
*/
|
|
4605
|
-
priceSetter: string;
|
|
4606
|
-
/**
|
|
4607
|
-
* Address that must supply withdrawal funds when the price setter advances the epoch. Typically the same as priceSetter.
|
|
4608
|
-
*/
|
|
4609
|
-
fundsProvider: string;
|
|
4610
|
-
/**
|
|
4611
|
-
* Issuer-provided entry fee applied on top of the platform-wide purchase fee
|
|
4612
|
-
*/
|
|
4613
|
-
issuerEntryFee?: {
|
|
4614
|
-
/**
|
|
4615
|
-
* Address that collects the fee
|
|
4616
|
-
*/
|
|
4617
|
-
collectorAddress: string;
|
|
4618
|
-
/**
|
|
4619
|
-
* Fee proportion in 10^6 fixed-point (e.g. 40000 = 4%, 10000 = 1%). The total fee applied = platform-wide fee + this issuer fee.
|
|
4620
|
-
*/
|
|
4621
|
-
proportion: string;
|
|
4622
|
-
};
|
|
4623
|
-
/**
|
|
4624
|
-
* Issuer-provided exit fee applied on top of the platform-wide withdrawal fee
|
|
4625
|
-
*/
|
|
4626
|
-
issuerExitFee?: {
|
|
4627
|
-
/**
|
|
4628
|
-
* Address that collects the fee
|
|
4629
|
-
*/
|
|
4630
|
-
collectorAddress: string;
|
|
4631
|
-
/**
|
|
4632
|
-
* Fee proportion in 10^6 fixed-point (e.g. 40000 = 4%, 10000 = 1%). The total fee applied = platform-wide fee + this issuer fee.
|
|
4633
|
-
*/
|
|
4634
|
-
proportion: string;
|
|
4635
|
-
};
|
|
4636
|
-
};
|
|
4637
|
-
path?: never;
|
|
4638
|
-
query?: never;
|
|
4639
|
-
url: '/next/fractions/vestingRedemptionDynamic/createCampaign';
|
|
4120
|
+
url: '/issuance/erc1155/setTokenURI';
|
|
4640
4121
|
};
|
|
4641
|
-
type
|
|
4122
|
+
type PostIssuanceErc1155SetTokenUriResponses = {
|
|
4642
4123
|
/**
|
|
4643
|
-
* Returns transaction data for
|
|
4124
|
+
* Returns transaction data for setting token URI
|
|
4644
4125
|
*/
|
|
4645
4126
|
200: {
|
|
4646
4127
|
data: string;
|
|
@@ -4653,25 +4134,22 @@ type PostNextFractionsVestingRedemptionDynamicCreateCampaignResponses = {
|
|
|
4653
4134
|
};
|
|
4654
4135
|
};
|
|
4655
4136
|
};
|
|
4656
|
-
type
|
|
4657
|
-
type
|
|
4137
|
+
type PostIssuanceErc1155SetTokenUriResponse = PostIssuanceErc1155SetTokenUriResponses[keyof PostIssuanceErc1155SetTokenUriResponses];
|
|
4138
|
+
type PostIssuanceErc1155RecoverData = {
|
|
4658
4139
|
body?: {
|
|
4659
|
-
|
|
4660
|
-
|
|
4661
|
-
|
|
4662
|
-
|
|
4663
|
-
|
|
4664
|
-
* Campaign ID to approve
|
|
4665
|
-
*/
|
|
4666
|
-
campaignId: string;
|
|
4140
|
+
tokenAddress: string;
|
|
4141
|
+
from: string;
|
|
4142
|
+
to: string;
|
|
4143
|
+
id: string;
|
|
4144
|
+
amount: string;
|
|
4667
4145
|
};
|
|
4668
4146
|
path?: never;
|
|
4669
4147
|
query?: never;
|
|
4670
|
-
url: '/
|
|
4148
|
+
url: '/issuance/erc1155/recover';
|
|
4671
4149
|
};
|
|
4672
|
-
type
|
|
4150
|
+
type PostIssuanceErc1155RecoverResponses = {
|
|
4673
4151
|
/**
|
|
4674
|
-
* Returns transaction data for
|
|
4152
|
+
* Returns transaction data for recovering ERC1155 tokens
|
|
4675
4153
|
*/
|
|
4676
4154
|
200: {
|
|
4677
4155
|
data: string;
|
|
@@ -4684,29 +4162,20 @@ type PostNextFractionsVestingRedemptionDynamicApproveCampaignResponses = {
|
|
|
4684
4162
|
};
|
|
4685
4163
|
};
|
|
4686
4164
|
};
|
|
4687
|
-
type
|
|
4688
|
-
type
|
|
4165
|
+
type PostIssuanceErc1155RecoverResponse = PostIssuanceErc1155RecoverResponses[keyof PostIssuanceErc1155RecoverResponses];
|
|
4166
|
+
type PostIssuanceErc1155GrantRoleData = {
|
|
4689
4167
|
body?: {
|
|
4690
|
-
|
|
4691
|
-
|
|
4692
|
-
|
|
4693
|
-
market: string;
|
|
4694
|
-
/**
|
|
4695
|
-
* Campaign ID
|
|
4696
|
-
*/
|
|
4697
|
-
campaignId: string;
|
|
4698
|
-
/**
|
|
4699
|
-
* Price in funding packets per 10^18 fraction token units. For example if 1 packet buys 100 fractions (1e20), price = 1e18 / 100 = 1e16. Each call to setPrice advances the epoch; purchases in epoch N can be exchanged starting from epoch N+1.
|
|
4700
|
-
*/
|
|
4701
|
-
price: string;
|
|
4168
|
+
tokenAddress: string;
|
|
4169
|
+
role: 'DEFAULT_ADMIN_ROLE' | 'MINTER_ROLE' | 'PAUSER_ROLE' | 'RECOVER_ROLE';
|
|
4170
|
+
account: string;
|
|
4702
4171
|
};
|
|
4703
4172
|
path?: never;
|
|
4704
4173
|
query?: never;
|
|
4705
|
-
url: '/
|
|
4174
|
+
url: '/issuance/erc1155/grantRole';
|
|
4706
4175
|
};
|
|
4707
|
-
type
|
|
4176
|
+
type PostIssuanceErc1155GrantRoleResponses = {
|
|
4708
4177
|
/**
|
|
4709
|
-
* Returns transaction data for
|
|
4178
|
+
* Returns transaction data for granting a role
|
|
4710
4179
|
*/
|
|
4711
4180
|
200: {
|
|
4712
4181
|
data: string;
|
|
@@ -4719,68 +4188,46 @@ type PostNextFractionsVestingRedemptionDynamicSetEpochPriceResponses = {
|
|
|
4719
4188
|
};
|
|
4720
4189
|
};
|
|
4721
4190
|
};
|
|
4722
|
-
type
|
|
4723
|
-
type
|
|
4724
|
-
body?:
|
|
4725
|
-
|
|
4726
|
-
|
|
4727
|
-
|
|
4728
|
-
market: string;
|
|
4729
|
-
campaignId: string;
|
|
4730
|
-
};
|
|
4731
|
-
url: '/next/fractions/vestingRedemptionDynamic/getCurrentEpoch';
|
|
4732
|
-
};
|
|
4733
|
-
type GetNextFractionsVestingRedemptionDynamicGetCurrentEpochResponses = {
|
|
4734
|
-
/**
|
|
4735
|
-
* Returns the current epoch number
|
|
4736
|
-
*/
|
|
4737
|
-
200: {
|
|
4738
|
-
currentEpoch: string;
|
|
4191
|
+
type PostIssuanceErc1155GrantRoleResponse = PostIssuanceErc1155GrantRoleResponses[keyof PostIssuanceErc1155GrantRoleResponses];
|
|
4192
|
+
type PostIssuanceErc1155RevokeRoleData = {
|
|
4193
|
+
body?: {
|
|
4194
|
+
tokenAddress: string;
|
|
4195
|
+
role: 'DEFAULT_ADMIN_ROLE' | 'MINTER_ROLE' | 'PAUSER_ROLE' | 'RECOVER_ROLE';
|
|
4196
|
+
account: string;
|
|
4739
4197
|
};
|
|
4740
|
-
};
|
|
4741
|
-
type GetNextFractionsVestingRedemptionDynamicGetCurrentEpochResponse = GetNextFractionsVestingRedemptionDynamicGetCurrentEpochResponses[keyof GetNextFractionsVestingRedemptionDynamicGetCurrentEpochResponses];
|
|
4742
|
-
type GetNextFractionsVestingRedemptionDynamicGetPurchasePriceForEpochData = {
|
|
4743
|
-
body?: never;
|
|
4744
4198
|
path?: never;
|
|
4745
|
-
query
|
|
4746
|
-
|
|
4747
|
-
market: string;
|
|
4748
|
-
campaignId: string;
|
|
4749
|
-
epoch: string;
|
|
4750
|
-
};
|
|
4751
|
-
url: '/next/fractions/vestingRedemptionDynamic/getPurchasePriceForEpoch';
|
|
4199
|
+
query?: never;
|
|
4200
|
+
url: '/issuance/erc1155/revokeRole';
|
|
4752
4201
|
};
|
|
4753
|
-
type
|
|
4202
|
+
type PostIssuanceErc1155RevokeRoleResponses = {
|
|
4754
4203
|
/**
|
|
4755
|
-
* Returns
|
|
4204
|
+
* Returns transaction data for revoking a role
|
|
4756
4205
|
*/
|
|
4757
4206
|
200: {
|
|
4758
|
-
|
|
4207
|
+
data: string;
|
|
4208
|
+
to: string;
|
|
4209
|
+
details: {
|
|
4210
|
+
functionName: string;
|
|
4211
|
+
address: string;
|
|
4212
|
+
abi: Array<unknown>;
|
|
4213
|
+
args: Array<unknown>;
|
|
4214
|
+
};
|
|
4759
4215
|
};
|
|
4760
4216
|
};
|
|
4761
|
-
type
|
|
4762
|
-
type
|
|
4217
|
+
type PostIssuanceErc1155RevokeRoleResponse = PostIssuanceErc1155RevokeRoleResponses[keyof PostIssuanceErc1155RevokeRoleResponses];
|
|
4218
|
+
type PostIssuanceErc1155RenounceRoleData = {
|
|
4763
4219
|
body?: {
|
|
4764
|
-
|
|
4765
|
-
|
|
4766
|
-
|
|
4767
|
-
market: string;
|
|
4768
|
-
/**
|
|
4769
|
-
* Campaign ID
|
|
4770
|
-
*/
|
|
4771
|
-
campaignId: string;
|
|
4772
|
-
/**
|
|
4773
|
-
* Number of funding packets to provide (must satisfy softCapPerPurchase ≤ value ≤ remaining hardCapPerAccount). The market transfers amountToProvide × amountPerPacket tokens from the caller.
|
|
4774
|
-
*/
|
|
4775
|
-
amountToProvide: string;
|
|
4220
|
+
tokenAddress: string;
|
|
4221
|
+
role: 'DEFAULT_ADMIN_ROLE' | 'MINTER_ROLE' | 'PAUSER_ROLE' | 'RECOVER_ROLE';
|
|
4222
|
+
callerConfirmation: string;
|
|
4776
4223
|
};
|
|
4777
4224
|
path?: never;
|
|
4778
4225
|
query?: never;
|
|
4779
|
-
url: '/
|
|
4226
|
+
url: '/issuance/erc1155/renounceRole';
|
|
4780
4227
|
};
|
|
4781
|
-
type
|
|
4228
|
+
type PostIssuanceErc1155RenounceRoleResponses = {
|
|
4782
4229
|
/**
|
|
4783
|
-
* Returns transaction data for
|
|
4230
|
+
* Returns transaction data for renouncing a role
|
|
4784
4231
|
*/
|
|
4785
4232
|
200: {
|
|
4786
4233
|
data: string;
|
|
@@ -4793,143 +4240,77 @@ type PostNextFractionsVestingRedemptionDynamicPurchaseResponses = {
|
|
|
4793
4240
|
};
|
|
4794
4241
|
};
|
|
4795
4242
|
};
|
|
4796
|
-
type
|
|
4797
|
-
type
|
|
4243
|
+
type PostIssuanceErc1155RenounceRoleResponse = PostIssuanceErc1155RenounceRoleResponses[keyof PostIssuanceErc1155RenounceRoleResponses];
|
|
4244
|
+
type GetIssuanceErc1155GetMintedTokenIdData = {
|
|
4798
4245
|
body?: never;
|
|
4799
4246
|
path?: never;
|
|
4800
4247
|
query: {
|
|
4801
|
-
chainId: 11155111 | 84532 | 72080
|
|
4248
|
+
chainId: '11155111' | '84532' | '72080';
|
|
4802
4249
|
hash: string;
|
|
4803
4250
|
};
|
|
4804
|
-
url: '/
|
|
4251
|
+
url: '/issuance/erc1155/getMintedTokenId';
|
|
4805
4252
|
};
|
|
4806
|
-
type
|
|
4253
|
+
type GetIssuanceErc1155GetMintedTokenIdResponses = {
|
|
4807
4254
|
/**
|
|
4808
|
-
* Returns
|
|
4255
|
+
* Returns the minted token ID
|
|
4809
4256
|
*/
|
|
4810
4257
|
200: {
|
|
4811
|
-
|
|
4812
|
-
nftId: string;
|
|
4813
|
-
purchaser: string;
|
|
4814
|
-
amountProvided: string;
|
|
4815
|
-
amountAfterFees: string;
|
|
4816
|
-
epochPurchased: string;
|
|
4258
|
+
tokenId: string;
|
|
4817
4259
|
};
|
|
4818
4260
|
};
|
|
4819
|
-
type
|
|
4820
|
-
type
|
|
4821
|
-
body?:
|
|
4822
|
-
/**
|
|
4823
|
-
* Address of the Vesting & Redemption Dynamic market
|
|
4824
|
-
*/
|
|
4825
|
-
market: string;
|
|
4826
|
-
/**
|
|
4827
|
-
* Campaign ID
|
|
4828
|
-
*/
|
|
4829
|
-
campaignId: string;
|
|
4830
|
-
/**
|
|
4831
|
-
* ID of the purchase receipt NFT (emitted in the NftPurchased event from step 1)
|
|
4832
|
-
*/
|
|
4833
|
-
nftId: string;
|
|
4834
|
-
};
|
|
4261
|
+
type GetIssuanceErc1155GetMintedTokenIdResponse = GetIssuanceErc1155GetMintedTokenIdResponses[keyof GetIssuanceErc1155GetMintedTokenIdResponses];
|
|
4262
|
+
type GetIssuanceProxyDeployProxyAdminData = {
|
|
4263
|
+
body?: never;
|
|
4835
4264
|
path?: never;
|
|
4836
4265
|
query?: never;
|
|
4837
|
-
url: '/
|
|
4266
|
+
url: '/issuance/proxy/deployProxyAdmin';
|
|
4838
4267
|
};
|
|
4839
|
-
type
|
|
4268
|
+
type GetIssuanceProxyDeployProxyAdminResponses = {
|
|
4840
4269
|
/**
|
|
4841
|
-
* Returns transaction data for
|
|
4270
|
+
* Returns transaction data for deploying a ProxyAdmin contract
|
|
4842
4271
|
*/
|
|
4843
4272
|
200: {
|
|
4844
|
-
|
|
4845
|
-
|
|
4846
|
-
|
|
4847
|
-
functionName: string;
|
|
4848
|
-
address: string;
|
|
4849
|
-
abi: Array<unknown>;
|
|
4850
|
-
args: Array<unknown>;
|
|
4851
|
-
};
|
|
4273
|
+
bytecode: string;
|
|
4274
|
+
abi: Array<unknown>;
|
|
4275
|
+
args?: Array<unknown>;
|
|
4852
4276
|
};
|
|
4853
4277
|
};
|
|
4854
|
-
type
|
|
4855
|
-
type
|
|
4278
|
+
type GetIssuanceProxyDeployProxyAdminResponse = GetIssuanceProxyDeployProxyAdminResponses[keyof GetIssuanceProxyDeployProxyAdminResponses];
|
|
4279
|
+
type PostIssuanceProxyDeployTransparentProxyData = {
|
|
4856
4280
|
body?: {
|
|
4857
|
-
|
|
4858
|
-
|
|
4859
|
-
|
|
4860
|
-
market: string;
|
|
4861
|
-
/**
|
|
4862
|
-
* Campaign ID
|
|
4863
|
-
*/
|
|
4864
|
-
campaignId: string;
|
|
4865
|
-
/**
|
|
4866
|
-
* Number of ERC-20 fractions to burn (in raw token units with 18 decimals). The fractions are burned and a withdrawal receipt NFT is issued.
|
|
4867
|
-
*/
|
|
4868
|
-
amountOfFractions: string;
|
|
4281
|
+
implementation: string;
|
|
4282
|
+
proxyAdminOwner: string;
|
|
4283
|
+
initData: string;
|
|
4869
4284
|
};
|
|
4870
4285
|
path?: never;
|
|
4871
4286
|
query?: never;
|
|
4872
|
-
url: '/
|
|
4873
|
-
};
|
|
4874
|
-
type PostNextFractionsVestingRedemptionDynamicRequestWithdrawalResponses = {
|
|
4875
|
-
/**
|
|
4876
|
-
* Returns transaction data for requesting a withdrawal
|
|
4877
|
-
*/
|
|
4878
|
-
200: {
|
|
4879
|
-
data: string;
|
|
4880
|
-
to: string;
|
|
4881
|
-
details: {
|
|
4882
|
-
functionName: string;
|
|
4883
|
-
address: string;
|
|
4884
|
-
abi: Array<unknown>;
|
|
4885
|
-
args: Array<unknown>;
|
|
4886
|
-
};
|
|
4887
|
-
};
|
|
4888
|
-
};
|
|
4889
|
-
type PostNextFractionsVestingRedemptionDynamicRequestWithdrawalResponse = PostNextFractionsVestingRedemptionDynamicRequestWithdrawalResponses[keyof PostNextFractionsVestingRedemptionDynamicRequestWithdrawalResponses];
|
|
4890
|
-
type GetNextFractionsVestingRedemptionDynamicGetWithdrawalRequestedEventData = {
|
|
4891
|
-
body?: never;
|
|
4892
|
-
path?: never;
|
|
4893
|
-
query: {
|
|
4894
|
-
chainId: 11155111 | 84532 | 72080 | 31337;
|
|
4895
|
-
hash: string;
|
|
4896
|
-
};
|
|
4897
|
-
url: '/next/fractions/vestingRedemptionDynamic/getWithdrawalRequestedEvent';
|
|
4287
|
+
url: '/issuance/proxy/deployTransparentProxy';
|
|
4898
4288
|
};
|
|
4899
|
-
type
|
|
4289
|
+
type PostIssuanceProxyDeployTransparentProxyResponses = {
|
|
4900
4290
|
/**
|
|
4901
|
-
* Returns
|
|
4291
|
+
* Returns transaction data for deploying a TransparentUpgradeableProxy
|
|
4902
4292
|
*/
|
|
4903
4293
|
200: {
|
|
4904
|
-
|
|
4905
|
-
|
|
4906
|
-
|
|
4907
|
-
amountOfFractions: string;
|
|
4294
|
+
bytecode: string;
|
|
4295
|
+
abi: Array<unknown>;
|
|
4296
|
+
args?: Array<unknown>;
|
|
4908
4297
|
};
|
|
4909
4298
|
};
|
|
4910
|
-
type
|
|
4911
|
-
type
|
|
4299
|
+
type PostIssuanceProxyDeployTransparentProxyResponse = PostIssuanceProxyDeployTransparentProxyResponses[keyof PostIssuanceProxyDeployTransparentProxyResponses];
|
|
4300
|
+
type PostIssuanceProxyUpgradeTransparentProxyData = {
|
|
4912
4301
|
body?: {
|
|
4913
|
-
|
|
4914
|
-
|
|
4915
|
-
|
|
4916
|
-
|
|
4917
|
-
/**
|
|
4918
|
-
* Campaign ID
|
|
4919
|
-
*/
|
|
4920
|
-
campaignId: string;
|
|
4921
|
-
/**
|
|
4922
|
-
* ID of the withdrawal receipt NFT (emitted in the event from step 1)
|
|
4923
|
-
*/
|
|
4924
|
-
nftId: string;
|
|
4302
|
+
proxyAdminAddress: string;
|
|
4303
|
+
proxyAddress: string;
|
|
4304
|
+
newImplementation: string;
|
|
4305
|
+
data?: string;
|
|
4925
4306
|
};
|
|
4926
4307
|
path?: never;
|
|
4927
4308
|
query?: never;
|
|
4928
|
-
url: '/
|
|
4309
|
+
url: '/issuance/proxy/upgradeTransparentProxy';
|
|
4929
4310
|
};
|
|
4930
|
-
type
|
|
4311
|
+
type PostIssuanceProxyUpgradeTransparentProxyResponses = {
|
|
4931
4312
|
/**
|
|
4932
|
-
* Returns transaction data for
|
|
4313
|
+
* Returns transaction data for upgrading transparent proxy implementation via ProxyAdmin
|
|
4933
4314
|
*/
|
|
4934
4315
|
200: {
|
|
4935
4316
|
data: string;
|
|
@@ -4942,7 +4323,7 @@ type PostNextFractionsVestingRedemptionDynamicWithdrawResponses = {
|
|
|
4942
4323
|
};
|
|
4943
4324
|
};
|
|
4944
4325
|
};
|
|
4945
|
-
type
|
|
4326
|
+
type PostIssuanceProxyUpgradeTransparentProxyResponse = PostIssuanceProxyUpgradeTransparentProxyResponses[keyof PostIssuanceProxyUpgradeTransparentProxyResponses];
|
|
4946
4327
|
type ClientOptions = {
|
|
4947
4328
|
baseUrl: 'http://localhost:3000' | (string & {});
|
|
4948
4329
|
};
|
|
@@ -5297,27 +4678,27 @@ declare const api: {
|
|
|
5297
4678
|
};
|
|
5298
4679
|
}, unknown, ThrowOnError>;
|
|
5299
4680
|
searchRoles: <ThrowOnError extends boolean = false>(options?: Options<PostStakingRolesSearchRolesV0Data, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
|
|
5300
|
-
chainId: 11155111 | 84532 | 31337;
|
|
4681
|
+
chainId: "11155111" | "84532" | "31337";
|
|
5301
4682
|
platform: string;
|
|
5302
4683
|
roleId: string;
|
|
5303
4684
|
poolId?: string;
|
|
5304
4685
|
owner: string;
|
|
5305
|
-
createdAt:
|
|
5306
|
-
updatedAt:
|
|
4686
|
+
createdAt: string;
|
|
4687
|
+
updatedAt: string;
|
|
5307
4688
|
}[], unknown, ThrowOnError>;
|
|
5308
4689
|
searchRoleEvents: <ThrowOnError extends boolean = false>(options?: Options<PostStakingRolesSearchRoleEventsV0Data, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
|
|
5309
|
-
chainId: 11155111 | 84532 | 31337;
|
|
4690
|
+
chainId: "11155111" | "84532" | "31337";
|
|
5310
4691
|
platform: string;
|
|
5311
4692
|
roleId: string;
|
|
5312
4693
|
poolId?: string;
|
|
5313
4694
|
owner: string;
|
|
5314
|
-
createdAt:
|
|
5315
|
-
updatedAt:
|
|
4695
|
+
createdAt: string;
|
|
4696
|
+
updatedAt: string;
|
|
5316
4697
|
}[], unknown, ThrowOnError>;
|
|
5317
4698
|
};
|
|
5318
4699
|
stakes: {
|
|
5319
4700
|
getStake: <ThrowOnError extends boolean = false>(options: Options<GetStakingStakesGetStakeV0Data, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
|
|
5320
|
-
chainId: 11155111 | 84532 | 31337;
|
|
4701
|
+
chainId: "11155111" | "84532" | "31337";
|
|
5321
4702
|
platform: string;
|
|
5322
4703
|
poolId?: string;
|
|
5323
4704
|
owner: string;
|
|
@@ -5325,17 +4706,17 @@ declare const api: {
|
|
|
5325
4706
|
activePackets: string;
|
|
5326
4707
|
rewardsClaimed: string;
|
|
5327
4708
|
isActive: boolean;
|
|
5328
|
-
unlockTimestamp:
|
|
5329
|
-
startTimestamp:
|
|
5330
|
-
createdAt:
|
|
5331
|
-
updatedAt:
|
|
4709
|
+
unlockTimestamp: string;
|
|
4710
|
+
startTimestamp: string;
|
|
4711
|
+
createdAt: string;
|
|
4712
|
+
updatedAt: string;
|
|
5332
4713
|
}, {
|
|
5333
4714
|
success: false;
|
|
5334
4715
|
message: string;
|
|
5335
4716
|
name: string;
|
|
5336
4717
|
}, ThrowOnError>;
|
|
5337
4718
|
searchStakes: <ThrowOnError extends boolean = false>(options?: Options<PostStakingStakesSearchStakesV0Data, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
|
|
5338
|
-
chainId: 11155111 | 84532 | 31337;
|
|
4719
|
+
chainId: "11155111" | "84532" | "31337";
|
|
5339
4720
|
platform: string;
|
|
5340
4721
|
poolId?: string;
|
|
5341
4722
|
owner: string;
|
|
@@ -5343,72 +4724,72 @@ declare const api: {
|
|
|
5343
4724
|
activePackets: string;
|
|
5344
4725
|
rewardsClaimed: string;
|
|
5345
4726
|
isActive: boolean;
|
|
5346
|
-
unlockTimestamp:
|
|
5347
|
-
startTimestamp:
|
|
5348
|
-
createdAt:
|
|
5349
|
-
updatedAt:
|
|
4727
|
+
unlockTimestamp: string;
|
|
4728
|
+
startTimestamp: string;
|
|
4729
|
+
createdAt: string;
|
|
4730
|
+
updatedAt: string;
|
|
5350
4731
|
}[], unknown, ThrowOnError>;
|
|
5351
4732
|
searchStakeEvents: <ThrowOnError extends boolean = false>(options?: Options<PostStakingStakesSearchStakeEventsV0Data, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
|
|
5352
4733
|
id: string;
|
|
5353
|
-
chainId: 11155111 | 84532 | 31337;
|
|
4734
|
+
chainId: "11155111" | "84532" | "31337";
|
|
5354
4735
|
platform: string;
|
|
5355
4736
|
poolId?: string;
|
|
5356
4737
|
owner: string;
|
|
5357
4738
|
stakeId: string;
|
|
5358
|
-
createdAt:
|
|
4739
|
+
createdAt: string;
|
|
5359
4740
|
txHash: string;
|
|
5360
4741
|
}[], unknown, ThrowOnError>;
|
|
5361
4742
|
};
|
|
5362
4743
|
pools: {
|
|
5363
4744
|
getPool: <ThrowOnError extends boolean = false>(options: Options<GetStakingPoolsGetPoolV0Data, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
|
|
5364
|
-
chainId: 11155111 | 84532 | 31337;
|
|
4745
|
+
chainId: "11155111" | "84532" | "31337";
|
|
5365
4746
|
platform: string;
|
|
5366
4747
|
rewardsHandler: string;
|
|
5367
4748
|
assetHandler: string;
|
|
5368
4749
|
txHash: string;
|
|
5369
4750
|
poolId: string;
|
|
5370
|
-
createdAt:
|
|
4751
|
+
createdAt: string;
|
|
5371
4752
|
}, {
|
|
5372
4753
|
success: false;
|
|
5373
4754
|
message: string;
|
|
5374
4755
|
name: string;
|
|
5375
4756
|
}, ThrowOnError>;
|
|
5376
4757
|
searchPools: <ThrowOnError extends boolean = false>(options?: Options<PostStakingPoolsSearchPoolsV0Data, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
|
|
5377
|
-
chainId: 11155111 | 84532 | 31337;
|
|
4758
|
+
chainId: "11155111" | "84532" | "31337";
|
|
5378
4759
|
platform: string;
|
|
5379
4760
|
rewardsHandler: string;
|
|
5380
4761
|
assetHandler: string;
|
|
5381
4762
|
txHash: string;
|
|
5382
4763
|
poolId: string;
|
|
5383
|
-
createdAt:
|
|
4764
|
+
createdAt: string;
|
|
5384
4765
|
}[], unknown, ThrowOnError>;
|
|
5385
4766
|
};
|
|
5386
4767
|
platforms: {
|
|
5387
4768
|
getPlatform: <ThrowOnError extends boolean = false>(options: Options<GetStakingPlatformsGetV0Data, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
|
|
5388
|
-
chainId: 11155111 | 84532 | 31337;
|
|
4769
|
+
chainId: "11155111" | "84532" | "31337";
|
|
5389
4770
|
transactionHash: string;
|
|
5390
|
-
createdAt:
|
|
4771
|
+
createdAt: string;
|
|
5391
4772
|
contractAddress: string;
|
|
5392
4773
|
adminAddress: string;
|
|
5393
|
-
updatedAt:
|
|
4774
|
+
updatedAt: string;
|
|
5394
4775
|
}, {
|
|
5395
4776
|
success: false;
|
|
5396
4777
|
message: string;
|
|
5397
4778
|
name: string;
|
|
5398
4779
|
}, ThrowOnError>;
|
|
5399
4780
|
searchPlatforms: <ThrowOnError extends boolean = false>(options?: Options<PostStakingPlatformsSearchV0Data, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
|
|
5400
|
-
chainId: 11155111 | 84532 | 31337;
|
|
4781
|
+
chainId: "11155111" | "84532" | "31337";
|
|
5401
4782
|
transactionHash: string;
|
|
5402
|
-
createdAt:
|
|
4783
|
+
createdAt: string;
|
|
5403
4784
|
contractAddress: string;
|
|
5404
4785
|
adminAddress: string;
|
|
5405
|
-
updatedAt:
|
|
4786
|
+
updatedAt: string;
|
|
5406
4787
|
}[], unknown, ThrowOnError>;
|
|
5407
4788
|
};
|
|
5408
4789
|
};
|
|
5409
4790
|
fractions: {
|
|
5410
4791
|
market: {
|
|
5411
|
-
deployMarket: <ThrowOnError extends boolean = false>(options?: Options<
|
|
4792
|
+
deployMarket: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsMarketsDeployData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
|
|
5412
4793
|
data: string;
|
|
5413
4794
|
to: string;
|
|
5414
4795
|
details: {
|
|
@@ -5418,7 +4799,7 @@ declare const api: {
|
|
|
5418
4799
|
args: Array<unknown>;
|
|
5419
4800
|
};
|
|
5420
4801
|
}, unknown, ThrowOnError>;
|
|
5421
|
-
deployNidMarket: <ThrowOnError extends boolean = false>(options?: Options<
|
|
4802
|
+
deployNidMarket: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsMarketsDeployNidData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
|
|
5422
4803
|
data: string;
|
|
5423
4804
|
to: string;
|
|
5424
4805
|
details: {
|
|
@@ -5428,7 +4809,7 @@ declare const api: {
|
|
|
5428
4809
|
args: Array<unknown>;
|
|
5429
4810
|
};
|
|
5430
4811
|
}, unknown, ThrowOnError>;
|
|
5431
|
-
deployContinousWithdrawal: <ThrowOnError extends boolean = false>(options?: Options<
|
|
4812
|
+
deployContinousWithdrawal: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsMarketsDeployContinuousWithdrawData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
|
|
5432
4813
|
data: string;
|
|
5433
4814
|
to: string;
|
|
5434
4815
|
details: {
|
|
@@ -5438,7 +4819,7 @@ declare const api: {
|
|
|
5438
4819
|
args: Array<unknown>;
|
|
5439
4820
|
};
|
|
5440
4821
|
}, unknown, ThrowOnError>;
|
|
5441
|
-
deployContinousWithdrawalNid: <ThrowOnError extends boolean = false>(options?: Options<
|
|
4822
|
+
deployContinousWithdrawalNid: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsMarketsDeployContinuousWithdrawNidData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
|
|
5442
4823
|
data: string;
|
|
5443
4824
|
to: string;
|
|
5444
4825
|
details: {
|
|
@@ -5454,14 +4835,14 @@ declare const api: {
|
|
|
5454
4835
|
wrapperAddress: string;
|
|
5455
4836
|
}, unknown, ThrowOnError>;
|
|
5456
4837
|
search: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsMarketsSearchData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
|
|
5457
|
-
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
4838
|
+
chainId: "1" | "11155111" | "84532" | "72080" | "31337";
|
|
5458
4839
|
transactionHash: string;
|
|
5459
4840
|
template: "default" | "compilot" | "continuous-withdrawal" | "continuous-withdrawal-nid" | "lending" | "unknown";
|
|
5460
4841
|
contractAddress: string;
|
|
5461
4842
|
adminAddress: string;
|
|
5462
4843
|
wrapperAddress: string | null;
|
|
5463
4844
|
burnAsset: {
|
|
5464
|
-
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
4845
|
+
chainId: "1" | "11155111" | "84532" | "72080" | "31337";
|
|
5465
4846
|
address: string;
|
|
5466
4847
|
type: string;
|
|
5467
4848
|
symbol: string;
|
|
@@ -5471,18 +4852,18 @@ declare const api: {
|
|
|
5471
4852
|
burnable?: boolean;
|
|
5472
4853
|
} | null;
|
|
5473
4854
|
feesBps: number | null;
|
|
5474
|
-
createdAt:
|
|
5475
|
-
updatedAt:
|
|
4855
|
+
createdAt: string;
|
|
4856
|
+
updatedAt: string;
|
|
5476
4857
|
}[], unknown, ThrowOnError>;
|
|
5477
4858
|
get: <ThrowOnError extends boolean = false>(options: Options<GetV0FractionsMarketsGetData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
|
|
5478
|
-
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
4859
|
+
chainId: "1" | "11155111" | "84532" | "72080" | "31337";
|
|
5479
4860
|
transactionHash: string;
|
|
5480
4861
|
template: "default" | "compilot" | "continuous-withdrawal" | "continuous-withdrawal-nid" | "lending" | "unknown";
|
|
5481
4862
|
contractAddress: string;
|
|
5482
4863
|
adminAddress: string;
|
|
5483
4864
|
wrapperAddress: string | null;
|
|
5484
4865
|
burnAsset: {
|
|
5485
|
-
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
4866
|
+
chainId: "1" | "11155111" | "84532" | "72080" | "31337";
|
|
5486
4867
|
address: string;
|
|
5487
4868
|
type: string;
|
|
5488
4869
|
symbol: string;
|
|
@@ -5492,14 +4873,14 @@ declare const api: {
|
|
|
5492
4873
|
burnable?: boolean;
|
|
5493
4874
|
} | null;
|
|
5494
4875
|
feesBps: number | null;
|
|
5495
|
-
createdAt:
|
|
5496
|
-
updatedAt:
|
|
4876
|
+
createdAt: string;
|
|
4877
|
+
updatedAt: string;
|
|
5497
4878
|
}, {
|
|
5498
4879
|
success: false;
|
|
5499
4880
|
message: string;
|
|
5500
4881
|
name: string;
|
|
5501
4882
|
}, ThrowOnError>;
|
|
5502
|
-
initCompilot: <ThrowOnError extends boolean = false>(options: Options<
|
|
4883
|
+
initCompilot: <ThrowOnError extends boolean = false>(options: Options<GetV0FractionsMarketsInitCompilotData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
|
|
5503
4884
|
data: string;
|
|
5504
4885
|
to: string;
|
|
5505
4886
|
details: {
|
|
@@ -5588,7 +4969,7 @@ declare const api: {
|
|
|
5588
4969
|
};
|
|
5589
4970
|
}, unknown, ThrowOnError>;
|
|
5590
4971
|
investorStatistics: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsSalesPurchaseStatisticsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
|
|
5591
|
-
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
4972
|
+
chainId: "1" | "11155111" | "84532" | "72080" | "31337";
|
|
5592
4973
|
platform: string;
|
|
5593
4974
|
campaignId: string;
|
|
5594
4975
|
statistics: Array<{
|
|
@@ -5598,13 +4979,13 @@ declare const api: {
|
|
|
5598
4979
|
}>;
|
|
5599
4980
|
}, unknown, ThrowOnError>;
|
|
5600
4981
|
activity: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsSalesActivityData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
|
|
5601
|
-
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
4982
|
+
chainId: "1" | "11155111" | "84532" | "72080" | "31337";
|
|
5602
4983
|
platform: string;
|
|
5603
4984
|
campaignId: string;
|
|
5604
4985
|
transactionHash: string;
|
|
5605
4986
|
from: string;
|
|
5606
|
-
createdAt:
|
|
5607
|
-
updatedAt:
|
|
4987
|
+
createdAt: string;
|
|
4988
|
+
updatedAt: string;
|
|
5608
4989
|
metadata: {
|
|
5609
4990
|
type: "created";
|
|
5610
4991
|
} | {
|
|
@@ -5644,7 +5025,7 @@ declare const api: {
|
|
|
5644
5025
|
};
|
|
5645
5026
|
}[], unknown, ThrowOnError>;
|
|
5646
5027
|
statistics: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsSalesStatisticsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
|
|
5647
|
-
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
5028
|
+
chainId: "1" | "11155111" | "84532" | "72080" | "31337";
|
|
5648
5029
|
platform: string;
|
|
5649
5030
|
campaignId: string;
|
|
5650
5031
|
statistics: Array<{
|
|
@@ -5682,7 +5063,7 @@ declare const api: {
|
|
|
5682
5063
|
vaultAddress: string;
|
|
5683
5064
|
}, unknown, ThrowOnError>;
|
|
5684
5065
|
search: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsSalesSearchData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
|
|
5685
|
-
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
5066
|
+
chainId: "1" | "11155111" | "84532" | "72080" | "31337";
|
|
5686
5067
|
platform: string;
|
|
5687
5068
|
campaignId: string;
|
|
5688
5069
|
nftId: string;
|
|
@@ -5690,7 +5071,7 @@ declare const api: {
|
|
|
5690
5071
|
owner: string;
|
|
5691
5072
|
fractions: {
|
|
5692
5073
|
asset: {
|
|
5693
|
-
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
5074
|
+
chainId: "1" | "11155111" | "84532" | "72080" | "31337";
|
|
5694
5075
|
address: string;
|
|
5695
5076
|
type: string;
|
|
5696
5077
|
symbol: string;
|
|
@@ -5709,17 +5090,17 @@ declare const api: {
|
|
|
5709
5090
|
softCapPerAccount: string | null;
|
|
5710
5091
|
} | null;
|
|
5711
5092
|
timeline: {
|
|
5712
|
-
startDate:
|
|
5713
|
-
endDate:
|
|
5093
|
+
startDate: string;
|
|
5094
|
+
endDate: string | null;
|
|
5714
5095
|
} | null;
|
|
5715
5096
|
vesting: {
|
|
5716
|
-
cliffDate:
|
|
5097
|
+
cliffDate: string;
|
|
5717
5098
|
totalVestingPeriod: number;
|
|
5718
5099
|
portionPeriod: number;
|
|
5719
5100
|
} | null;
|
|
5720
5101
|
wrappedAssets: Array<{
|
|
5721
5102
|
asset: {
|
|
5722
|
-
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
5103
|
+
chainId: "1" | "11155111" | "84532" | "72080" | "31337";
|
|
5723
5104
|
address: string;
|
|
5724
5105
|
type: string;
|
|
5725
5106
|
symbol: string;
|
|
@@ -5732,7 +5113,7 @@ declare const api: {
|
|
|
5732
5113
|
}>;
|
|
5733
5114
|
fundingAssets: Array<{
|
|
5734
5115
|
asset: {
|
|
5735
|
-
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
5116
|
+
chainId: "1" | "11155111" | "84532" | "72080" | "31337";
|
|
5736
5117
|
address: string;
|
|
5737
5118
|
type: string;
|
|
5738
5119
|
symbol: string;
|
|
@@ -5744,8 +5125,8 @@ declare const api: {
|
|
|
5744
5125
|
amountPerPacket: string;
|
|
5745
5126
|
}>;
|
|
5746
5127
|
transactionHash: string;
|
|
5747
|
-
createdAt:
|
|
5748
|
-
updatedAt:
|
|
5128
|
+
createdAt: string;
|
|
5129
|
+
updatedAt: string;
|
|
5749
5130
|
}[], unknown, ThrowOnError>;
|
|
5750
5131
|
getWithdrawEvent: <ThrowOnError extends boolean = false>(options: Options<GetV0FractionsSalesGetWithdrawEventData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
|
|
5751
5132
|
campaignId: string;
|
|
@@ -5804,7 +5185,7 @@ declare const api: {
|
|
|
5804
5185
|
};
|
|
5805
5186
|
}, unknown, ThrowOnError>;
|
|
5806
5187
|
claimStatistics: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsSalesVestingClaimStatisticsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
|
|
5807
|
-
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
5188
|
+
chainId: "1" | "11155111" | "84532" | "72080" | "31337";
|
|
5808
5189
|
platform: string;
|
|
5809
5190
|
campaignId: string;
|
|
5810
5191
|
totalClaims: number;
|
|
@@ -5849,7 +5230,7 @@ declare const api: {
|
|
|
5849
5230
|
getAuthData: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsSigAuthDataData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
|
|
5850
5231
|
marketAddress: string;
|
|
5851
5232
|
userAddress: string;
|
|
5852
|
-
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
5233
|
+
chainId: "1" | "11155111" | "84532" | "72080" | "31337";
|
|
5853
5234
|
nonce: string;
|
|
5854
5235
|
blockExpiration: string;
|
|
5855
5236
|
callData: string;
|
|
@@ -5857,7 +5238,7 @@ declare const api: {
|
|
|
5857
5238
|
getNonce: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsSigNonceData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
|
|
5858
5239
|
marketAddress: string;
|
|
5859
5240
|
userAddress: string;
|
|
5860
|
-
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
5241
|
+
chainId: "1" | "11155111" | "84532" | "72080" | "31337";
|
|
5861
5242
|
}, unknown, ThrowOnError>;
|
|
5862
5243
|
};
|
|
5863
5244
|
issuance: {
|
|
@@ -6119,86 +5500,6 @@ declare const api: {
|
|
|
6119
5500
|
};
|
|
6120
5501
|
};
|
|
6121
5502
|
};
|
|
6122
|
-
next: {
|
|
6123
|
-
fractions: {
|
|
6124
|
-
platforms: {
|
|
6125
|
-
deployNftFractionsMarket: <ThrowOnError extends boolean = false>(options?: Options<PostNextFractionsPlatformsDeployNftFractionsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
|
|
6126
|
-
data: string;
|
|
6127
|
-
to: string;
|
|
6128
|
-
details: {
|
|
6129
|
-
functionName: string;
|
|
6130
|
-
address: string;
|
|
6131
|
-
abi: Array<unknown>;
|
|
6132
|
-
args: Array<unknown>;
|
|
6133
|
-
};
|
|
6134
|
-
}, unknown, ThrowOnError>;
|
|
6135
|
-
};
|
|
6136
|
-
sales: {
|
|
6137
|
-
createNftFractions: <ThrowOnError extends boolean = false>(options?: Options<PostNextFractionsSalesNftFractionsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
|
|
6138
|
-
data: string;
|
|
6139
|
-
to: string;
|
|
6140
|
-
details: {
|
|
6141
|
-
functionName: string;
|
|
6142
|
-
address: string;
|
|
6143
|
-
abi: Array<unknown>;
|
|
6144
|
-
args: Array<unknown>;
|
|
6145
|
-
};
|
|
6146
|
-
}, unknown, ThrowOnError>;
|
|
6147
|
-
};
|
|
6148
|
-
lending: {
|
|
6149
|
-
deploy: <ThrowOnError extends boolean = false>(options?: Options<PostNextFractionsLendingDeployData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
|
|
6150
|
-
data: string;
|
|
6151
|
-
to: string;
|
|
6152
|
-
details: {
|
|
6153
|
-
functionName: string;
|
|
6154
|
-
address: string;
|
|
6155
|
-
abi: Array<unknown>;
|
|
6156
|
-
args: Array<unknown>;
|
|
6157
|
-
};
|
|
6158
|
-
}, unknown, ThrowOnError>;
|
|
6159
|
-
createSale: <ThrowOnError extends boolean = false>(options?: Options<PostNextFractionsLendingCreateSaleData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
|
|
6160
|
-
data: string;
|
|
6161
|
-
to: string;
|
|
6162
|
-
details: {
|
|
6163
|
-
functionName: string;
|
|
6164
|
-
address: string;
|
|
6165
|
-
abi: Array<unknown>;
|
|
6166
|
-
args: Array<unknown>;
|
|
6167
|
-
};
|
|
6168
|
-
}, unknown, ThrowOnError>;
|
|
6169
|
-
buyback: <ThrowOnError extends boolean = false>(options?: Options<PostNextFractionsLendingBuybackData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
|
|
6170
|
-
data: string;
|
|
6171
|
-
to: string;
|
|
6172
|
-
details: {
|
|
6173
|
-
functionName: string;
|
|
6174
|
-
address: string;
|
|
6175
|
-
abi: Array<unknown>;
|
|
6176
|
-
args: Array<unknown>;
|
|
6177
|
-
};
|
|
6178
|
-
}, unknown, ThrowOnError>;
|
|
6179
|
-
setCollateralPrice: <ThrowOnError extends boolean = false>(options?: Options<PostNextFractionsLendingSetCollateralPriceData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
|
|
6180
|
-
data: string;
|
|
6181
|
-
to: string;
|
|
6182
|
-
details: {
|
|
6183
|
-
functionName: string;
|
|
6184
|
-
address: string;
|
|
6185
|
-
abi: Array<unknown>;
|
|
6186
|
-
args: Array<unknown>;
|
|
6187
|
-
};
|
|
6188
|
-
}, unknown, ThrowOnError>;
|
|
6189
|
-
purchase: <ThrowOnError extends boolean = false>(options?: Options<PostNextFractionsLendingPurchaseData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
|
|
6190
|
-
data: string;
|
|
6191
|
-
to: string;
|
|
6192
|
-
details: {
|
|
6193
|
-
functionName: string;
|
|
6194
|
-
address: string;
|
|
6195
|
-
abi: Array<unknown>;
|
|
6196
|
-
args: Array<unknown>;
|
|
6197
|
-
};
|
|
6198
|
-
}, unknown, ThrowOnError>;
|
|
6199
|
-
};
|
|
6200
|
-
};
|
|
6201
|
-
};
|
|
6202
5503
|
};
|
|
6203
5504
|
type ApiClient = ReturnType<(typeof api)["createClient"]>;
|
|
6204
5505
|
|
|
@@ -6227,4 +5528,4 @@ type ApiResponse<T> = {
|
|
|
6227
5528
|
};
|
|
6228
5529
|
declare function handleApiResponse<T>(apiResponse: ApiResponse<T>): T;
|
|
6229
5530
|
|
|
6230
|
-
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 GetNextFractionsSalesGetFractionsCreatedEventData, type GetNextFractionsSalesGetFractionsCreatedEventResponse, type GetNextFractionsSalesGetFractionsCreatedEventResponses, type GetNextFractionsVestingRedemptionDynamicGetCurrentEpochData, type GetNextFractionsVestingRedemptionDynamicGetCurrentEpochResponse, type GetNextFractionsVestingRedemptionDynamicGetCurrentEpochResponses, type GetNextFractionsVestingRedemptionDynamicGetEpochPurchaseEventData, type GetNextFractionsVestingRedemptionDynamicGetEpochPurchaseEventResponse, type GetNextFractionsVestingRedemptionDynamicGetEpochPurchaseEventResponses, type GetNextFractionsVestingRedemptionDynamicGetPurchasePriceForEpochData, type GetNextFractionsVestingRedemptionDynamicGetPurchasePriceForEpochResponse, type GetNextFractionsVestingRedemptionDynamicGetPurchasePriceForEpochResponses, type GetNextFractionsVestingRedemptionDynamicGetWithdrawalRequestedEventData, type GetNextFractionsVestingRedemptionDynamicGetWithdrawalRequestedEventResponse, type GetNextFractionsVestingRedemptionDynamicGetWithdrawalRequestedEventResponses, 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 GetV0FractionsPlatformsInitCompilotData, type GetV0FractionsPlatformsInitCompilotResponse, type GetV0FractionsPlatformsInitCompilotResponses, 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 PostNextFractionsLendingBuybackData, type PostNextFractionsLendingBuybackResponse, type PostNextFractionsLendingBuybackResponses, type PostNextFractionsLendingCreateSaleData, type PostNextFractionsLendingCreateSaleResponse, type PostNextFractionsLendingCreateSaleResponses, type PostNextFractionsLendingDeployData, type PostNextFractionsLendingDeployResponse, type PostNextFractionsLendingDeployResponses, type PostNextFractionsLendingPurchaseData, type PostNextFractionsLendingPurchaseResponse, type PostNextFractionsLendingPurchaseResponses, type PostNextFractionsLendingSetCollateralPriceData, type PostNextFractionsLendingSetCollateralPriceResponse, type PostNextFractionsLendingSetCollateralPriceResponses, type PostNextFractionsPlatformsDeployNftFractionsData, type PostNextFractionsPlatformsDeployNftFractionsGatedData, type PostNextFractionsPlatformsDeployNftFractionsGatedResponse, type PostNextFractionsPlatformsDeployNftFractionsGatedResponses, type PostNextFractionsPlatformsDeployNftFractionsResponse, type PostNextFractionsPlatformsDeployNftFractionsResponses, type PostNextFractionsSalesNftFractionsData, type PostNextFractionsSalesNftFractionsResponse, type PostNextFractionsSalesNftFractionsResponses, type PostNextFractionsSalesPurchaseData, type PostNextFractionsSalesPurchaseResponse, type PostNextFractionsSalesPurchaseResponses, type PostNextFractionsVestingRedemptionDynamicApproveCampaignData, type PostNextFractionsVestingRedemptionDynamicApproveCampaignResponse, type PostNextFractionsVestingRedemptionDynamicApproveCampaignResponses, type PostNextFractionsVestingRedemptionDynamicCreateCampaignData, type PostNextFractionsVestingRedemptionDynamicCreateCampaignResponse, type PostNextFractionsVestingRedemptionDynamicCreateCampaignResponses, type PostNextFractionsVestingRedemptionDynamicDeployMarketData, type PostNextFractionsVestingRedemptionDynamicDeployMarketResponse, type PostNextFractionsVestingRedemptionDynamicDeployMarketResponses, type PostNextFractionsVestingRedemptionDynamicExchangeNftForFractionsData, type PostNextFractionsVestingRedemptionDynamicExchangeNftForFractionsResponse, type PostNextFractionsVestingRedemptionDynamicExchangeNftForFractionsResponses, type PostNextFractionsVestingRedemptionDynamicPurchaseData, type PostNextFractionsVestingRedemptionDynamicPurchaseResponse, type PostNextFractionsVestingRedemptionDynamicPurchaseResponses, type PostNextFractionsVestingRedemptionDynamicRequestWithdrawalData, type PostNextFractionsVestingRedemptionDynamicRequestWithdrawalResponse, type PostNextFractionsVestingRedemptionDynamicRequestWithdrawalResponses, type PostNextFractionsVestingRedemptionDynamicSetEpochPriceData, type PostNextFractionsVestingRedemptionDynamicSetEpochPriceResponse, type PostNextFractionsVestingRedemptionDynamicSetEpochPriceResponses, type PostNextFractionsVestingRedemptionDynamicWithdrawData, type PostNextFractionsVestingRedemptionDynamicWithdrawResponse, type PostNextFractionsVestingRedemptionDynamicWithdrawResponses, 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 PostV0FractionsMarketsSearchData, type PostV0FractionsMarketsSearchResponse, type PostV0FractionsMarketsSearchResponses, type PostV0FractionsPlatformsDeployContinuousWithdrawData, type PostV0FractionsPlatformsDeployContinuousWithdrawNidData, type PostV0FractionsPlatformsDeployContinuousWithdrawNidResponse, type PostV0FractionsPlatformsDeployContinuousWithdrawNidResponses, type PostV0FractionsPlatformsDeployContinuousWithdrawResponse, type PostV0FractionsPlatformsDeployContinuousWithdrawResponses, type PostV0FractionsPlatformsDeployData, type PostV0FractionsPlatformsDeployNidData, type PostV0FractionsPlatformsDeployNidResponse, type PostV0FractionsPlatformsDeployNidResponses, type PostV0FractionsPlatformsDeployResponse, type PostV0FractionsPlatformsDeployResponses, 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 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 };
|
|
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 };
|