@evergonlabs/tmi-protocol-api-client 0.21.5 → 0.22.0-rc.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +683 -223
- package/dist/index.d.ts +683 -223
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ type GetStakingPlatformsGetV0Data = {
|
|
|
6
6
|
body?: never;
|
|
7
7
|
path?: never;
|
|
8
8
|
query: {
|
|
9
|
-
chainId: 11155111 | 31337;
|
|
9
|
+
chainId: 11155111 | 84532 | 31337;
|
|
10
10
|
address: string;
|
|
11
11
|
};
|
|
12
12
|
url: '/staking/platforms/get/v0';
|
|
@@ -27,7 +27,7 @@ type GetStakingPlatformsGetV0Responses = {
|
|
|
27
27
|
* Platform details
|
|
28
28
|
*/
|
|
29
29
|
200: {
|
|
30
|
-
chainId: 11155111 | 31337;
|
|
30
|
+
chainId: 11155111 | 84532 | 31337;
|
|
31
31
|
transactionHash: string;
|
|
32
32
|
createdAt: Date;
|
|
33
33
|
contractAddress: string;
|
|
@@ -43,7 +43,7 @@ type PostStakingPlatformsSearchV0Data = {
|
|
|
43
43
|
limit: number;
|
|
44
44
|
};
|
|
45
45
|
filter: {
|
|
46
|
-
chainId?: 11155111 | 31337;
|
|
46
|
+
chainId?: 11155111 | 84532 | 31337;
|
|
47
47
|
owner?: string;
|
|
48
48
|
};
|
|
49
49
|
};
|
|
@@ -56,7 +56,7 @@ type PostStakingPlatformsSearchV0Responses = {
|
|
|
56
56
|
* Returns list of platforms by specified filter
|
|
57
57
|
*/
|
|
58
58
|
200: Array<{
|
|
59
|
-
chainId: 11155111 | 31337;
|
|
59
|
+
chainId: 11155111 | 84532 | 31337;
|
|
60
60
|
transactionHash: string;
|
|
61
61
|
createdAt: Date;
|
|
62
62
|
contractAddress: string;
|
|
@@ -72,7 +72,7 @@ type PostStakingPoolsSearchPoolsV0Data = {
|
|
|
72
72
|
limit: number;
|
|
73
73
|
};
|
|
74
74
|
filter: {
|
|
75
|
-
chainId?: 11155111 | 31337;
|
|
75
|
+
chainId?: 11155111 | 84532 | 31337;
|
|
76
76
|
platform?: string;
|
|
77
77
|
};
|
|
78
78
|
};
|
|
@@ -85,7 +85,7 @@ type PostStakingPoolsSearchPoolsV0Responses = {
|
|
|
85
85
|
* Returns list of pools by specified filter
|
|
86
86
|
*/
|
|
87
87
|
200: Array<{
|
|
88
|
-
chainId: 11155111 | 31337;
|
|
88
|
+
chainId: 11155111 | 84532 | 31337;
|
|
89
89
|
platform: string;
|
|
90
90
|
rewardsHandler: string;
|
|
91
91
|
assetHandler: string;
|
|
@@ -99,7 +99,7 @@ type GetStakingPoolsGetPoolV0Data = {
|
|
|
99
99
|
body?: never;
|
|
100
100
|
path?: never;
|
|
101
101
|
query: {
|
|
102
|
-
chainId: 11155111 | 31337;
|
|
102
|
+
chainId: 11155111 | 84532 | 31337;
|
|
103
103
|
poolId: string;
|
|
104
104
|
platform: string;
|
|
105
105
|
};
|
|
@@ -121,7 +121,7 @@ type GetStakingPoolsGetPoolV0Responses = {
|
|
|
121
121
|
* List platforms
|
|
122
122
|
*/
|
|
123
123
|
200: {
|
|
124
|
-
chainId: 11155111 | 31337;
|
|
124
|
+
chainId: 11155111 | 84532 | 31337;
|
|
125
125
|
platform: string;
|
|
126
126
|
rewardsHandler: string;
|
|
127
127
|
assetHandler: string;
|
|
@@ -138,7 +138,7 @@ type PostStakingStakesSearchStakesV0Data = {
|
|
|
138
138
|
limit: number;
|
|
139
139
|
};
|
|
140
140
|
filter: {
|
|
141
|
-
chainId?: 11155111 | 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 | 31337;
|
|
156
|
+
chainId: 11155111 | 84532 | 31337;
|
|
157
157
|
platform: string;
|
|
158
158
|
poolId?: string;
|
|
159
159
|
owner: string;
|
|
@@ -175,7 +175,7 @@ type PostStakingStakesSearchStakeEventsV0Data = {
|
|
|
175
175
|
limit: number;
|
|
176
176
|
};
|
|
177
177
|
filter: {
|
|
178
|
-
chainId?: 11155111 | 31337;
|
|
178
|
+
chainId?: 11155111 | 84532 | 31337;
|
|
179
179
|
owner?: string;
|
|
180
180
|
platform?: string;
|
|
181
181
|
poolId?: string;
|
|
@@ -191,7 +191,7 @@ type PostStakingStakesSearchStakeEventsV0Responses = {
|
|
|
191
191
|
*/
|
|
192
192
|
200: Array<{
|
|
193
193
|
id: string;
|
|
194
|
-
chainId: 11155111 | 31337;
|
|
194
|
+
chainId: 11155111 | 84532 | 31337;
|
|
195
195
|
platform: string;
|
|
196
196
|
poolId?: string;
|
|
197
197
|
owner: string;
|
|
@@ -205,7 +205,7 @@ type GetStakingStakesGetStakeV0Data = {
|
|
|
205
205
|
body?: never;
|
|
206
206
|
path?: never;
|
|
207
207
|
query: {
|
|
208
|
-
chainId: 11155111 | 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 | 31337;
|
|
230
|
+
chainId: 11155111 | 84532 | 31337;
|
|
231
231
|
platform: string;
|
|
232
232
|
poolId?: string;
|
|
233
233
|
owner: string;
|
|
@@ -291,7 +291,7 @@ type PostStakingRolesSearchRolesV0Data = {
|
|
|
291
291
|
limit: number;
|
|
292
292
|
};
|
|
293
293
|
filter: {
|
|
294
|
-
chainId?: 11155111 | 31337;
|
|
294
|
+
chainId?: 11155111 | 84532 | 31337;
|
|
295
295
|
owner?: string;
|
|
296
296
|
platform?: string;
|
|
297
297
|
poolId?: string;
|
|
@@ -306,7 +306,7 @@ type PostStakingRolesSearchRolesV0Responses = {
|
|
|
306
306
|
* Returns list of assignments within specified platforms and pools
|
|
307
307
|
*/
|
|
308
308
|
200: Array<{
|
|
309
|
-
chainId: 11155111 | 31337;
|
|
309
|
+
chainId: 11155111 | 84532 | 31337;
|
|
310
310
|
platform: string;
|
|
311
311
|
roleId: string;
|
|
312
312
|
poolId?: string;
|
|
@@ -323,7 +323,7 @@ type PostStakingRolesSearchRoleEventsV0Data = {
|
|
|
323
323
|
limit: number;
|
|
324
324
|
};
|
|
325
325
|
filter: {
|
|
326
|
-
chainId?: 11155111 | 31337;
|
|
326
|
+
chainId?: 11155111 | 84532 | 31337;
|
|
327
327
|
owner?: string;
|
|
328
328
|
platform?: string;
|
|
329
329
|
poolId?: string;
|
|
@@ -338,7 +338,7 @@ type PostStakingRolesSearchRoleEventsV0Responses = {
|
|
|
338
338
|
* Returns list of role events by some filter
|
|
339
339
|
*/
|
|
340
340
|
200: Array<{
|
|
341
|
-
chainId: 11155111 | 31337;
|
|
341
|
+
chainId: 11155111 | 84532 | 31337;
|
|
342
342
|
platform: string;
|
|
343
343
|
roleId: string;
|
|
344
344
|
poolId?: string;
|
|
@@ -352,7 +352,7 @@ type GetStakingTemplatesReputationV0GetPlatformDeployEventData = {
|
|
|
352
352
|
body?: never;
|
|
353
353
|
path?: never;
|
|
354
354
|
query: {
|
|
355
|
-
chainId: 1 | 11155111 | 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 | 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 | 72080 | 31337;
|
|
395
|
+
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
396
396
|
hash: string;
|
|
397
397
|
};
|
|
398
398
|
url: '/stakingTemplates/reputation/v0/getCreatePoolEvent';
|
|
@@ -580,7 +580,7 @@ type PostStakingTemplatesReputationV0CreatePoolResponses = {
|
|
|
580
580
|
type PostStakingTemplatesReputationV0CreatePoolResponse = PostStakingTemplatesReputationV0CreatePoolResponses[keyof PostStakingTemplatesReputationV0CreatePoolResponses];
|
|
581
581
|
type PostStakingTemplatesReputationV0CreatePlatformData = {
|
|
582
582
|
body?: {
|
|
583
|
-
chainId: 11155111 | 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 | 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 | 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 | 72080 | 31337;
|
|
656
|
+
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
657
657
|
hash: string;
|
|
658
658
|
};
|
|
659
659
|
url: '/stakingTemplates/reputationLock/v0/getCreatePoolEvent';
|
|
@@ -855,7 +855,7 @@ type PostStakingTemplatesReputationLockV0CreatePoolResponses = {
|
|
|
855
855
|
type PostStakingTemplatesReputationLockV0CreatePoolResponse = PostStakingTemplatesReputationLockV0CreatePoolResponses[keyof PostStakingTemplatesReputationLockV0CreatePoolResponses];
|
|
856
856
|
type PostStakingTemplatesReputationLockV0CreatePlatformData = {
|
|
857
857
|
body?: {
|
|
858
|
-
chainId: 11155111 | 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 | 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 | 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 | 72080 | 31337;
|
|
931
|
+
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
932
932
|
hash: string;
|
|
933
933
|
};
|
|
934
934
|
url: '/stakingTemplates/rwa/v0/getCreatePoolEvent';
|
|
@@ -1112,7 +1112,7 @@ type PostStakingTemplatesRwaV0CreatePoolResponses = {
|
|
|
1112
1112
|
type PostStakingTemplatesRwaV0CreatePoolResponse = PostStakingTemplatesRwaV0CreatePoolResponses[keyof PostStakingTemplatesRwaV0CreatePoolResponses];
|
|
1113
1113
|
type PostStakingTemplatesRwaV0CreatePlatformData = {
|
|
1114
1114
|
body?: {
|
|
1115
|
-
chainId: 11155111 | 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 | 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 | 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 | 72080 | 31337;
|
|
1202
|
+
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
1203
1203
|
address: string;
|
|
1204
1204
|
type: string;
|
|
1205
1205
|
symbol: string;
|
|
@@ -1221,7 +1221,7 @@ type PostV0FractionsMarketsSearchData = {
|
|
|
1221
1221
|
limit: number;
|
|
1222
1222
|
};
|
|
1223
1223
|
filter: {
|
|
1224
|
-
chainId?: 1 | 11155111 | 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 | 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 | 72080 | 31337;
|
|
1244
|
+
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
1245
1245
|
address: string;
|
|
1246
1246
|
type: string;
|
|
1247
1247
|
symbol: string;
|
|
@@ -1260,7 +1260,7 @@ type GetV0FractionsMarketsDeployEventData = {
|
|
|
1260
1260
|
body?: never;
|
|
1261
1261
|
path?: never;
|
|
1262
1262
|
query: {
|
|
1263
|
-
chainId: 1 | 11155111 | 72080 | 31337;
|
|
1263
|
+
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
1264
1264
|
hash: string;
|
|
1265
1265
|
};
|
|
1266
1266
|
url: '/v0/fractions/markets/deployEvent';
|
|
@@ -1278,7 +1278,7 @@ type GetV0FractionsMarketsDeployEventResponses = {
|
|
|
1278
1278
|
type GetV0FractionsMarketsDeployEventResponse = GetV0FractionsMarketsDeployEventResponses[keyof GetV0FractionsMarketsDeployEventResponses];
|
|
1279
1279
|
type PostV0FractionsPlatformsDeployData = {
|
|
1280
1280
|
body?: {
|
|
1281
|
-
chainId: 1 | 11155111 | 72080 | 31337;
|
|
1281
|
+
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
1282
1282
|
adminAddress: string;
|
|
1283
1283
|
ownerAddress?: string;
|
|
1284
1284
|
discount?: {
|
|
@@ -1301,7 +1301,7 @@ type PostV0FractionsPlatformsDeployData = {
|
|
|
1301
1301
|
};
|
|
1302
1302
|
type PostV0FractionsPlatformsDeployResponses = {
|
|
1303
1303
|
/**
|
|
1304
|
-
* Returns transaction data for deploying a market
|
|
1304
|
+
* Returns transaction data for deploying a vesting market that creates fraction sales to distribute ERC-20 tokens following a vesting schedule.
|
|
1305
1305
|
*/
|
|
1306
1306
|
200: {
|
|
1307
1307
|
data: string;
|
|
@@ -1315,9 +1315,9 @@ type PostV0FractionsPlatformsDeployResponses = {
|
|
|
1315
1315
|
};
|
|
1316
1316
|
};
|
|
1317
1317
|
type PostV0FractionsPlatformsDeployResponse = PostV0FractionsPlatformsDeployResponses[keyof PostV0FractionsPlatformsDeployResponses];
|
|
1318
|
-
type
|
|
1318
|
+
type PostV0FractionsPlatformsDeployNidData = {
|
|
1319
1319
|
body?: {
|
|
1320
|
-
chainId: 1 | 11155111 | 72080 | 31337;
|
|
1320
|
+
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
1321
1321
|
adminAddress: string;
|
|
1322
1322
|
ownerAddress?: string;
|
|
1323
1323
|
discount?: {
|
|
@@ -1336,11 +1336,11 @@ type PostV0FractionsPlatformsDeployContinuousWithdrawData = {
|
|
|
1336
1336
|
};
|
|
1337
1337
|
path?: never;
|
|
1338
1338
|
query?: never;
|
|
1339
|
-
url: '/v0/fractions/platforms/
|
|
1339
|
+
url: '/v0/fractions/platforms/deployNid';
|
|
1340
1340
|
};
|
|
1341
|
-
type
|
|
1341
|
+
type PostV0FractionsPlatformsDeployNidResponses = {
|
|
1342
1342
|
/**
|
|
1343
|
-
* Returns transaction data for deploying a market
|
|
1343
|
+
* Returns transaction data for deploying a compliance-gated vesting market that creates fraction sales to distribute ERC-20 tokens following a vesting schedule.
|
|
1344
1344
|
*/
|
|
1345
1345
|
200: {
|
|
1346
1346
|
data: string;
|
|
@@ -1353,10 +1353,10 @@ type PostV0FractionsPlatformsDeployContinuousWithdrawResponses = {
|
|
|
1353
1353
|
};
|
|
1354
1354
|
};
|
|
1355
1355
|
};
|
|
1356
|
-
type
|
|
1357
|
-
type
|
|
1356
|
+
type PostV0FractionsPlatformsDeployNidResponse = PostV0FractionsPlatformsDeployNidResponses[keyof PostV0FractionsPlatformsDeployNidResponses];
|
|
1357
|
+
type PostV0FractionsPlatformsDeployContinuousWithdrawData = {
|
|
1358
1358
|
body?: {
|
|
1359
|
-
chainId: 1 | 11155111 | 72080 | 31337;
|
|
1359
|
+
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
1360
1360
|
adminAddress: string;
|
|
1361
1361
|
ownerAddress?: string;
|
|
1362
1362
|
discount?: {
|
|
@@ -1375,11 +1375,11 @@ type PostV0FractionsPlatformsDeployContinuousWithdrawNidData = {
|
|
|
1375
1375
|
};
|
|
1376
1376
|
path?: never;
|
|
1377
1377
|
query?: never;
|
|
1378
|
-
url: '/v0/fractions/platforms/
|
|
1378
|
+
url: '/v0/fractions/platforms/deployContinuousWithdraw';
|
|
1379
1379
|
};
|
|
1380
|
-
type
|
|
1380
|
+
type PostV0FractionsPlatformsDeployContinuousWithdrawResponses = {
|
|
1381
1381
|
/**
|
|
1382
|
-
* Returns transaction data for deploying a market
|
|
1382
|
+
* 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
1383
|
*/
|
|
1384
1384
|
200: {
|
|
1385
1385
|
data: string;
|
|
@@ -1392,10 +1392,10 @@ type PostV0FractionsPlatformsDeployContinuousWithdrawNidResponses = {
|
|
|
1392
1392
|
};
|
|
1393
1393
|
};
|
|
1394
1394
|
};
|
|
1395
|
-
type
|
|
1396
|
-
type
|
|
1395
|
+
type PostV0FractionsPlatformsDeployContinuousWithdrawResponse = PostV0FractionsPlatformsDeployContinuousWithdrawResponses[keyof PostV0FractionsPlatformsDeployContinuousWithdrawResponses];
|
|
1396
|
+
type PostV0FractionsPlatformsDeployContinuousWithdrawNidData = {
|
|
1397
1397
|
body?: {
|
|
1398
|
-
chainId: 1 | 11155111 | 72080 | 31337;
|
|
1398
|
+
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
1399
1399
|
adminAddress: string;
|
|
1400
1400
|
ownerAddress?: string;
|
|
1401
1401
|
discount?: {
|
|
@@ -1414,11 +1414,11 @@ type PostV0FractionsPlatformsDeployNidData = {
|
|
|
1414
1414
|
};
|
|
1415
1415
|
path?: never;
|
|
1416
1416
|
query?: never;
|
|
1417
|
-
url: '/v0/fractions/platforms/
|
|
1417
|
+
url: '/v0/fractions/platforms/deployContinuousWithdrawNid';
|
|
1418
1418
|
};
|
|
1419
|
-
type
|
|
1419
|
+
type PostV0FractionsPlatformsDeployContinuousWithdrawNidResponses = {
|
|
1420
1420
|
/**
|
|
1421
|
-
* Returns transaction data for deploying a
|
|
1421
|
+
* 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
1422
|
*/
|
|
1423
1423
|
200: {
|
|
1424
1424
|
data: string;
|
|
@@ -1431,7 +1431,7 @@ type PostV0FractionsPlatformsDeployNidResponses = {
|
|
|
1431
1431
|
};
|
|
1432
1432
|
};
|
|
1433
1433
|
};
|
|
1434
|
-
type
|
|
1434
|
+
type PostV0FractionsPlatformsDeployContinuousWithdrawNidResponse = PostV0FractionsPlatformsDeployContinuousWithdrawNidResponses[keyof PostV0FractionsPlatformsDeployContinuousWithdrawNidResponses];
|
|
1435
1435
|
type GetV0FractionsPlatformsInitCompilotData = {
|
|
1436
1436
|
body?: never;
|
|
1437
1437
|
path?: never;
|
|
@@ -1449,7 +1449,7 @@ type GetV0FractionsPlatformsInitCompilotData = {
|
|
|
1449
1449
|
};
|
|
1450
1450
|
type GetV0FractionsPlatformsInitCompilotResponses = {
|
|
1451
1451
|
/**
|
|
1452
|
-
* Returns transaction data for initializing ComPilot signer
|
|
1452
|
+
* 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
1453
|
*/
|
|
1454
1454
|
200: {
|
|
1455
1455
|
data: string;
|
|
@@ -1481,7 +1481,7 @@ type GetV0FractionsRolesResponses = {
|
|
|
1481
1481
|
type GetV0FractionsRolesResponse = GetV0FractionsRolesResponses[keyof GetV0FractionsRolesResponses];
|
|
1482
1482
|
type PostV0FractionsRolesGrantData = {
|
|
1483
1483
|
body?: {
|
|
1484
|
-
chainId: 1 | 11155111 | 72080 | 31337;
|
|
1484
|
+
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
1485
1485
|
marketAddress: string;
|
|
1486
1486
|
users: Array<string>;
|
|
1487
1487
|
role: 'ISSUER' | 'INVESTOR';
|
|
@@ -1508,7 +1508,7 @@ type PostV0FractionsRolesGrantResponses = {
|
|
|
1508
1508
|
type PostV0FractionsRolesGrantResponse = PostV0FractionsRolesGrantResponses[keyof PostV0FractionsRolesGrantResponses];
|
|
1509
1509
|
type PostV0FractionsSalesFractionsData = {
|
|
1510
1510
|
body?: {
|
|
1511
|
-
chainId: 1 | 11155111 | 72080 | 31337;
|
|
1511
|
+
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
1512
1512
|
market: string;
|
|
1513
1513
|
fractions: {
|
|
1514
1514
|
/**
|
|
@@ -1584,7 +1584,7 @@ type GetV0FractionsSalesGetFractionsCreatedEventData = {
|
|
|
1584
1584
|
body?: never;
|
|
1585
1585
|
path?: never;
|
|
1586
1586
|
query: {
|
|
1587
|
-
chainId: 1 | 11155111 | 72080 | 31337;
|
|
1587
|
+
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
1588
1588
|
hash: string;
|
|
1589
1589
|
};
|
|
1590
1590
|
url: '/v0/fractions/sales/getFractionsCreatedEvent';
|
|
@@ -1736,7 +1736,7 @@ type PostV0FractionsSalesPurchaseData = {
|
|
|
1736
1736
|
body?: {
|
|
1737
1737
|
market: string;
|
|
1738
1738
|
campaignId: string;
|
|
1739
|
-
chainId: 1 | 11155111 | 72080 | 31337;
|
|
1739
|
+
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
1740
1740
|
amountToBuy: string;
|
|
1741
1741
|
applyDiscount: boolean;
|
|
1742
1742
|
};
|
|
@@ -1762,7 +1762,7 @@ type PostV0FractionsSalesPurchaseResponses = {
|
|
|
1762
1762
|
type PostV0FractionsSalesPurchaseResponse = PostV0FractionsSalesPurchaseResponses[keyof PostV0FractionsSalesPurchaseResponses];
|
|
1763
1763
|
type PostV0FractionsSalesPurchaseStatisticsData = {
|
|
1764
1764
|
body?: {
|
|
1765
|
-
chainId?: 1 | 11155111 | 72080 | 31337;
|
|
1765
|
+
chainId?: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
1766
1766
|
platform: string;
|
|
1767
1767
|
campaignId: string;
|
|
1768
1768
|
walletAddress: string;
|
|
@@ -1776,7 +1776,7 @@ type PostV0FractionsSalesPurchaseStatisticsResponses = {
|
|
|
1776
1776
|
* Aggregated purchase statistics for the specified campaign and investor.
|
|
1777
1777
|
*/
|
|
1778
1778
|
200: {
|
|
1779
|
-
chainId: 1 | 11155111 | 72080 | 31337;
|
|
1779
|
+
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
1780
1780
|
platform: string;
|
|
1781
1781
|
campaignId: string;
|
|
1782
1782
|
statistics: Array<{
|
|
@@ -1794,7 +1794,7 @@ type PostV0FractionsSalesWithdrawSearchData = {
|
|
|
1794
1794
|
limit: number;
|
|
1795
1795
|
};
|
|
1796
1796
|
filter: {
|
|
1797
|
-
chainId?: 1 | 11155111 | 72080 | 31337;
|
|
1797
|
+
chainId?: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
1798
1798
|
platform?: string;
|
|
1799
1799
|
campaignId?: string;
|
|
1800
1800
|
};
|
|
@@ -1808,7 +1808,7 @@ type PostV0FractionsSalesWithdrawSearchResponses = {
|
|
|
1808
1808
|
* Returns list of withdrawal events within specified platforms and pools
|
|
1809
1809
|
*/
|
|
1810
1810
|
200: Array<{
|
|
1811
|
-
chainId: 1 | 11155111 | 72080 | 31337;
|
|
1811
|
+
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
1812
1812
|
platform: string;
|
|
1813
1813
|
campaignId: string;
|
|
1814
1814
|
nftId: string;
|
|
@@ -1816,7 +1816,7 @@ type PostV0FractionsSalesWithdrawSearchResponses = {
|
|
|
1816
1816
|
owner: string;
|
|
1817
1817
|
fractions: {
|
|
1818
1818
|
asset: {
|
|
1819
|
-
chainId: 1 | 11155111 | 72080 | 31337;
|
|
1819
|
+
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
1820
1820
|
address: string;
|
|
1821
1821
|
type: string;
|
|
1822
1822
|
symbol: string;
|
|
@@ -1845,7 +1845,7 @@ type PostV0FractionsSalesWithdrawSearchResponses = {
|
|
|
1845
1845
|
} | null;
|
|
1846
1846
|
wrappedAssets: Array<{
|
|
1847
1847
|
asset: {
|
|
1848
|
-
chainId: 1 | 11155111 | 72080 | 31337;
|
|
1848
|
+
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
1849
1849
|
address: string;
|
|
1850
1850
|
type: string;
|
|
1851
1851
|
symbol: string;
|
|
@@ -1858,7 +1858,7 @@ type PostV0FractionsSalesWithdrawSearchResponses = {
|
|
|
1858
1858
|
}>;
|
|
1859
1859
|
fundingAssets: Array<{
|
|
1860
1860
|
asset: {
|
|
1861
|
-
chainId: 1 | 11155111 | 72080 | 31337;
|
|
1861
|
+
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
1862
1862
|
address: string;
|
|
1863
1863
|
type: string;
|
|
1864
1864
|
symbol: string;
|
|
@@ -2033,7 +2033,7 @@ type PostV0FractionsSalesVestingClaimResponses = {
|
|
|
2033
2033
|
type PostV0FractionsSalesVestingClaimResponse = PostV0FractionsSalesVestingClaimResponses[keyof PostV0FractionsSalesVestingClaimResponses];
|
|
2034
2034
|
type PostV0FractionsSalesVestingClaimStatisticsData = {
|
|
2035
2035
|
body?: {
|
|
2036
|
-
chainId: 1 | 11155111 | 72080 | 31337;
|
|
2036
|
+
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
2037
2037
|
platform: string;
|
|
2038
2038
|
campaignId: string;
|
|
2039
2039
|
walletAddress: string;
|
|
@@ -2047,7 +2047,7 @@ type PostV0FractionsSalesVestingClaimStatisticsResponses = {
|
|
|
2047
2047
|
* Returns claim statistics for the specified campaign and wallet address
|
|
2048
2048
|
*/
|
|
2049
2049
|
200: {
|
|
2050
|
-
chainId: 1 | 11155111 | 72080 | 31337;
|
|
2050
|
+
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
2051
2051
|
platform: string;
|
|
2052
2052
|
campaignId: string;
|
|
2053
2053
|
totalClaims: number;
|
|
@@ -2063,7 +2063,7 @@ type GetV0FractionsSalesVestingGetClaimVestedTokensEventData = {
|
|
|
2063
2063
|
body?: never;
|
|
2064
2064
|
path?: never;
|
|
2065
2065
|
query: {
|
|
2066
|
-
chainId: 1 | 11155111 | 72080 | 31337;
|
|
2066
|
+
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
2067
2067
|
hash: string;
|
|
2068
2068
|
};
|
|
2069
2069
|
url: '/v0/fractions/sales/vesting/getClaimVestedTokensEvent';
|
|
@@ -2088,7 +2088,7 @@ type PostV0FractionsSalesSearchData = {
|
|
|
2088
2088
|
limit: number;
|
|
2089
2089
|
};
|
|
2090
2090
|
filter: {
|
|
2091
|
-
chainId?: 1 | 11155111 | 72080 | 31337;
|
|
2091
|
+
chainId?: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
2092
2092
|
owner?: string;
|
|
2093
2093
|
platform?: string;
|
|
2094
2094
|
campaignId?: string;
|
|
@@ -2103,7 +2103,7 @@ type PostV0FractionsSalesSearchResponses = {
|
|
|
2103
2103
|
* Returns list of sales events within specified platforms and pools
|
|
2104
2104
|
*/
|
|
2105
2105
|
200: Array<{
|
|
2106
|
-
chainId: 1 | 11155111 | 72080 | 31337;
|
|
2106
|
+
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
2107
2107
|
platform: string;
|
|
2108
2108
|
campaignId: string;
|
|
2109
2109
|
nftId: string;
|
|
@@ -2111,7 +2111,7 @@ type PostV0FractionsSalesSearchResponses = {
|
|
|
2111
2111
|
owner: string;
|
|
2112
2112
|
fractions: {
|
|
2113
2113
|
asset: {
|
|
2114
|
-
chainId: 1 | 11155111 | 72080 | 31337;
|
|
2114
|
+
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
2115
2115
|
address: string;
|
|
2116
2116
|
type: string;
|
|
2117
2117
|
symbol: string;
|
|
@@ -2140,7 +2140,7 @@ type PostV0FractionsSalesSearchResponses = {
|
|
|
2140
2140
|
} | null;
|
|
2141
2141
|
wrappedAssets: Array<{
|
|
2142
2142
|
asset: {
|
|
2143
|
-
chainId: 1 | 11155111 | 72080 | 31337;
|
|
2143
|
+
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
2144
2144
|
address: string;
|
|
2145
2145
|
type: string;
|
|
2146
2146
|
symbol: string;
|
|
@@ -2153,7 +2153,7 @@ type PostV0FractionsSalesSearchResponses = {
|
|
|
2153
2153
|
}>;
|
|
2154
2154
|
fundingAssets: Array<{
|
|
2155
2155
|
asset: {
|
|
2156
|
-
chainId: 1 | 11155111 | 72080 | 31337;
|
|
2156
|
+
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
2157
2157
|
address: string;
|
|
2158
2158
|
type: string;
|
|
2159
2159
|
symbol: string;
|
|
@@ -2177,10 +2177,10 @@ type PostV0FractionsSalesActivityData = {
|
|
|
2177
2177
|
limit: number;
|
|
2178
2178
|
};
|
|
2179
2179
|
filter: {
|
|
2180
|
-
chainId?: 1 | 11155111 | 72080 | 31337;
|
|
2180
|
+
chainId?: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
2181
2181
|
platform?: string;
|
|
2182
2182
|
campaignId?: string;
|
|
2183
|
-
operationType?: 'created' | 'status_update' | 'purchase' | 'claim' | 'withdraw' | 'withdraw_non_wrapped' | 'refund';
|
|
2183
|
+
operationType?: 'created' | 'status_update' | 'purchase' | 'claim' | 'withdraw' | 'withdraw_non_wrapped' | 'refund' | 'epoch_purchase' | 'epoch_exchange' | 'withdrawal_requested' | 'withdrawal_completed' | 'epoch_price_set';
|
|
2184
2184
|
};
|
|
2185
2185
|
};
|
|
2186
2186
|
path?: never;
|
|
@@ -2192,7 +2192,7 @@ type PostV0FractionsSalesActivityResponses = {
|
|
|
2192
2192
|
* Returns list of activity events within specified platforms and pools
|
|
2193
2193
|
*/
|
|
2194
2194
|
200: Array<{
|
|
2195
|
-
chainId: 1 | 11155111 | 72080 | 31337;
|
|
2195
|
+
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
2196
2196
|
platform: string;
|
|
2197
2197
|
campaignId: string;
|
|
2198
2198
|
transactionHash: string;
|
|
@@ -2241,7 +2241,7 @@ type PostV0FractionsSalesActivityResponses = {
|
|
|
2241
2241
|
type PostV0FractionsSalesActivityResponse = PostV0FractionsSalesActivityResponses[keyof PostV0FractionsSalesActivityResponses];
|
|
2242
2242
|
type PostV0FractionsSalesStatisticsData = {
|
|
2243
2243
|
body?: {
|
|
2244
|
-
chainId: 1 | 11155111 | 72080 | 31337;
|
|
2244
|
+
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
2245
2245
|
platform: string;
|
|
2246
2246
|
campaignId: string;
|
|
2247
2247
|
};
|
|
@@ -2251,7 +2251,7 @@ type PostV0FractionsSalesStatisticsData = {
|
|
|
2251
2251
|
};
|
|
2252
2252
|
type PostV0FractionsSalesStatisticsResponses = {
|
|
2253
2253
|
200: {
|
|
2254
|
-
chainId: 1 | 11155111 | 72080 | 31337;
|
|
2254
|
+
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
2255
2255
|
platform: string;
|
|
2256
2256
|
campaignId: string;
|
|
2257
2257
|
statistics: Array<{
|
|
@@ -2292,7 +2292,7 @@ type GetV0FractionsSalesGetWithdrawEventData = {
|
|
|
2292
2292
|
body?: never;
|
|
2293
2293
|
path?: never;
|
|
2294
2294
|
query: {
|
|
2295
|
-
chainId: 1 | 11155111 | 72080 | 31337;
|
|
2295
|
+
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
2296
2296
|
hash: string;
|
|
2297
2297
|
};
|
|
2298
2298
|
url: '/v0/fractions/sales/getWithdrawEvent';
|
|
@@ -2312,7 +2312,7 @@ type GetV0FractionsSalesGetVaultAddressData = {
|
|
|
2312
2312
|
body?: never;
|
|
2313
2313
|
path?: never;
|
|
2314
2314
|
query: {
|
|
2315
|
-
chainId: 1 | 11155111 | 72080 | 31337;
|
|
2315
|
+
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
2316
2316
|
platform: string;
|
|
2317
2317
|
campaign: string;
|
|
2318
2318
|
};
|
|
@@ -2352,62 +2352,11 @@ type PostV0FractionsSalesApproveWrapperResponses = {
|
|
|
2352
2352
|
};
|
|
2353
2353
|
};
|
|
2354
2354
|
type PostV0FractionsSalesApproveWrapperResponse = PostV0FractionsSalesApproveWrapperResponses[keyof PostV0FractionsSalesApproveWrapperResponses];
|
|
2355
|
-
type PostV0FractionsSalesApproveWrapperAsErc20SpenderData = {
|
|
2356
|
-
body?: {
|
|
2357
|
-
wrapperAddress: string;
|
|
2358
|
-
erc20Address: string;
|
|
2359
|
-
amount: string;
|
|
2360
|
-
};
|
|
2361
|
-
path?: never;
|
|
2362
|
-
query?: never;
|
|
2363
|
-
url: '/v0/fractions/sales/approveWrapperAsErc20Spender';
|
|
2364
|
-
};
|
|
2365
|
-
type PostV0FractionsSalesApproveWrapperAsErc20SpenderResponses = {
|
|
2366
|
-
/**
|
|
2367
|
-
* Returns transaction data for approving a wrapper
|
|
2368
|
-
*/
|
|
2369
|
-
200: {
|
|
2370
|
-
data: string;
|
|
2371
|
-
to: string;
|
|
2372
|
-
details: {
|
|
2373
|
-
functionName: string;
|
|
2374
|
-
address: string;
|
|
2375
|
-
abi: Array<unknown>;
|
|
2376
|
-
args: Array<unknown>;
|
|
2377
|
-
};
|
|
2378
|
-
};
|
|
2379
|
-
};
|
|
2380
|
-
type PostV0FractionsSalesApproveWrapperAsErc20SpenderResponse = PostV0FractionsSalesApproveWrapperAsErc20SpenderResponses[keyof PostV0FractionsSalesApproveWrapperAsErc20SpenderResponses];
|
|
2381
|
-
type PostV0FractionsSalesApproveWrapperAsErc721SpenderData = {
|
|
2382
|
-
body?: {
|
|
2383
|
-
wrapperAddress: string;
|
|
2384
|
-
erc721Address: string;
|
|
2385
|
-
};
|
|
2386
|
-
path?: never;
|
|
2387
|
-
query?: never;
|
|
2388
|
-
url: '/v0/fractions/sales/approveWrapperAsErc721Spender';
|
|
2389
|
-
};
|
|
2390
|
-
type PostV0FractionsSalesApproveWrapperAsErc721SpenderResponses = {
|
|
2391
|
-
/**
|
|
2392
|
-
* Returns transaction data for approving a wrapper
|
|
2393
|
-
*/
|
|
2394
|
-
200: {
|
|
2395
|
-
data: string;
|
|
2396
|
-
to: string;
|
|
2397
|
-
details: {
|
|
2398
|
-
functionName: string;
|
|
2399
|
-
address: string;
|
|
2400
|
-
abi: Array<unknown>;
|
|
2401
|
-
args: Array<unknown>;
|
|
2402
|
-
};
|
|
2403
|
-
};
|
|
2404
|
-
};
|
|
2405
|
-
type PostV0FractionsSalesApproveWrapperAsErc721SpenderResponse = PostV0FractionsSalesApproveWrapperAsErc721SpenderResponses[keyof PostV0FractionsSalesApproveWrapperAsErc721SpenderResponses];
|
|
2406
2355
|
type PostV0FractionsSigNonceData = {
|
|
2407
2356
|
body?: {
|
|
2408
2357
|
marketAddress: string;
|
|
2409
2358
|
userAddress: string;
|
|
2410
|
-
chainId: 1 | 11155111 | 72080 | 31337;
|
|
2359
|
+
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
2411
2360
|
};
|
|
2412
2361
|
path?: never;
|
|
2413
2362
|
query?: never;
|
|
@@ -2420,7 +2369,7 @@ type PostV0FractionsSigNonceResponses = {
|
|
|
2420
2369
|
200: {
|
|
2421
2370
|
marketAddress: string;
|
|
2422
2371
|
userAddress: string;
|
|
2423
|
-
chainId: 1 | 11155111 | 72080 | 31337;
|
|
2372
|
+
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
2424
2373
|
};
|
|
2425
2374
|
};
|
|
2426
2375
|
type PostV0FractionsSigNonceResponse = PostV0FractionsSigNonceResponses[keyof PostV0FractionsSigNonceResponses];
|
|
@@ -2428,7 +2377,7 @@ type PostV0FractionsSigAuthDataData = {
|
|
|
2428
2377
|
body?: {
|
|
2429
2378
|
marketAddress: string;
|
|
2430
2379
|
userAddress: string;
|
|
2431
|
-
chainId: 1 | 11155111 | 72080 | 31337;
|
|
2380
|
+
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
2432
2381
|
nonce: string;
|
|
2433
2382
|
blockExpiration: string;
|
|
2434
2383
|
callData: string;
|
|
@@ -2444,7 +2393,7 @@ type PostV0FractionsSigAuthDataResponses = {
|
|
|
2444
2393
|
200: {
|
|
2445
2394
|
marketAddress: string;
|
|
2446
2395
|
userAddress: string;
|
|
2447
|
-
chainId: 1 | 11155111 | 72080 | 31337;
|
|
2396
|
+
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
2448
2397
|
nonce: string;
|
|
2449
2398
|
blockExpiration: string;
|
|
2450
2399
|
callData: string;
|
|
@@ -2453,7 +2402,7 @@ type PostV0FractionsSigAuthDataResponses = {
|
|
|
2453
2402
|
type PostV0FractionsSigAuthDataResponse = PostV0FractionsSigAuthDataResponses[keyof PostV0FractionsSigAuthDataResponses];
|
|
2454
2403
|
type PostV0FractionsStatisticsHoldersData = {
|
|
2455
2404
|
body?: {
|
|
2456
|
-
chainId?: 1 | 11155111 | 72080 | 31337;
|
|
2405
|
+
chainId?: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
2457
2406
|
};
|
|
2458
2407
|
path?: never;
|
|
2459
2408
|
query?: never;
|
|
@@ -2472,7 +2421,7 @@ type PostV0FractionsStatisticsHoldersResponses = {
|
|
|
2472
2421
|
type PostV0FractionsStatisticsHoldersResponse = PostV0FractionsStatisticsHoldersResponses[keyof PostV0FractionsStatisticsHoldersResponses];
|
|
2473
2422
|
type PostV0FractionsStatisticsSalesData = {
|
|
2474
2423
|
body?: {
|
|
2475
|
-
chainId?: 1 | 11155111 | 72080 | 31337;
|
|
2424
|
+
chainId?: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
2476
2425
|
};
|
|
2477
2426
|
path?: never;
|
|
2478
2427
|
query?: never;
|
|
@@ -2491,7 +2440,7 @@ type PostV0FractionsStatisticsSalesResponses = {
|
|
|
2491
2440
|
type PostV0FractionsStatisticsSalesResponse = PostV0FractionsStatisticsSalesResponses[keyof PostV0FractionsStatisticsSalesResponses];
|
|
2492
2441
|
type PostV0FractionsStatisticsTtvData = {
|
|
2493
2442
|
body?: {
|
|
2494
|
-
chainId?: 1 | 11155111 | 72080 | 31337;
|
|
2443
|
+
chainId?: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
2495
2444
|
};
|
|
2496
2445
|
path?: never;
|
|
2497
2446
|
query?: never;
|
|
@@ -2510,7 +2459,7 @@ type PostV0FractionsStatisticsTtvResponses = {
|
|
|
2510
2459
|
type PostV0FractionsStatisticsTtvResponse = PostV0FractionsStatisticsTtvResponses[keyof PostV0FractionsStatisticsTtvResponses];
|
|
2511
2460
|
type PostV0FractionsStatisticsData = {
|
|
2512
2461
|
body?: {
|
|
2513
|
-
chainId?: 1 | 11155111 | 72080 | 31337;
|
|
2462
|
+
chainId?: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
2514
2463
|
};
|
|
2515
2464
|
path?: never;
|
|
2516
2465
|
query?: never;
|
|
@@ -2537,7 +2486,7 @@ type PostV0FractionsStatisticsResponses = {
|
|
|
2537
2486
|
type PostV0FractionsStatisticsResponse = PostV0FractionsStatisticsResponses[keyof PostV0FractionsStatisticsResponses];
|
|
2538
2487
|
type PostGeneralEstimateGasData = {
|
|
2539
2488
|
body?: {
|
|
2540
|
-
chainId: 11155111 | 31337;
|
|
2489
|
+
chainId: 11155111 | 84532 | 31337;
|
|
2541
2490
|
data: string;
|
|
2542
2491
|
from: string;
|
|
2543
2492
|
to: string;
|
|
@@ -2559,7 +2508,7 @@ type GetGeneralBalanceData = {
|
|
|
2559
2508
|
body?: never;
|
|
2560
2509
|
path?: never;
|
|
2561
2510
|
query: {
|
|
2562
|
-
chainId: 1 | 11155111 | 72080 | 31337;
|
|
2511
|
+
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
2563
2512
|
address: string;
|
|
2564
2513
|
};
|
|
2565
2514
|
url: '/general/balance';
|
|
@@ -2576,7 +2525,7 @@ type GetGeneralBalanceResponses = {
|
|
|
2576
2525
|
type GetGeneralBalanceResponse = GetGeneralBalanceResponses[keyof GetGeneralBalanceResponses];
|
|
2577
2526
|
type PostGeneralBalancesData = {
|
|
2578
2527
|
body?: {
|
|
2579
|
-
chainId: 1 | 11155111 | 72080 | 31337;
|
|
2528
|
+
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
2580
2529
|
address: string;
|
|
2581
2530
|
contracts: Array<string>;
|
|
2582
2531
|
};
|
|
@@ -2602,7 +2551,7 @@ type PostGeneralBalancesResponses = {
|
|
|
2602
2551
|
type PostGeneralBalancesResponse = PostGeneralBalancesResponses[keyof PostGeneralBalancesResponses];
|
|
2603
2552
|
type PostGeneralSearchBalancesData = {
|
|
2604
2553
|
body?: {
|
|
2605
|
-
chainId: 1 | 11155111 | 72080 | 31337;
|
|
2554
|
+
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
2606
2555
|
address: string;
|
|
2607
2556
|
};
|
|
2608
2557
|
path?: never;
|
|
@@ -2632,7 +2581,7 @@ type PostGeneralSearchBalancesResponses = {
|
|
|
2632
2581
|
type PostGeneralSearchBalancesResponse = PostGeneralSearchBalancesResponses[keyof PostGeneralSearchBalancesResponses];
|
|
2633
2582
|
type PostIssuanceErc20DeployData = {
|
|
2634
2583
|
body?: {
|
|
2635
|
-
chainId: 11155111 | 72080;
|
|
2584
|
+
chainId: 11155111 | 84532 | 72080;
|
|
2636
2585
|
tokenName: string;
|
|
2637
2586
|
tokenSymbol: string;
|
|
2638
2587
|
supplyCap: string;
|
|
@@ -2692,7 +2641,7 @@ type GetIssuanceErc20GetDeployEventData = {
|
|
|
2692
2641
|
body?: never;
|
|
2693
2642
|
path?: never;
|
|
2694
2643
|
query: {
|
|
2695
|
-
chainId: 11155111 | 72080;
|
|
2644
|
+
chainId: 11155111 | 84532 | 72080;
|
|
2696
2645
|
hash: string;
|
|
2697
2646
|
};
|
|
2698
2647
|
url: '/issuance/erc20/getDeployEvent';
|
|
@@ -2713,7 +2662,7 @@ type GetIssuanceErc20GetDeployEventResponses = {
|
|
|
2713
2662
|
type GetIssuanceErc20GetDeployEventResponse = GetIssuanceErc20GetDeployEventResponses[keyof GetIssuanceErc20GetDeployEventResponses];
|
|
2714
2663
|
type PostIssuanceErc20DeployGatedData = {
|
|
2715
2664
|
body?: {
|
|
2716
|
-
chainId: 11155111 | 72080;
|
|
2665
|
+
chainId: 11155111 | 84532 | 72080;
|
|
2717
2666
|
tokenName: string;
|
|
2718
2667
|
tokenSymbol: string;
|
|
2719
2668
|
supplyCap: string;
|
|
@@ -2775,7 +2724,7 @@ type GetIssuanceErc20GetDeployEventGatedData = {
|
|
|
2775
2724
|
body?: never;
|
|
2776
2725
|
path?: never;
|
|
2777
2726
|
query: {
|
|
2778
|
-
chainId: 11155111 | 72080;
|
|
2727
|
+
chainId: 11155111 | 84532 | 72080;
|
|
2779
2728
|
hash: string;
|
|
2780
2729
|
};
|
|
2781
2730
|
url: '/issuance/erc20/getDeployEventGated';
|
|
@@ -2836,7 +2785,7 @@ type GetIssuanceErc20GetDeployEventGatedSimpleData = {
|
|
|
2836
2785
|
body?: never;
|
|
2837
2786
|
path?: never;
|
|
2838
2787
|
query: {
|
|
2839
|
-
chainId: 11155111 | 72080;
|
|
2788
|
+
chainId: 11155111 | 84532 | 72080;
|
|
2840
2789
|
hash: string;
|
|
2841
2790
|
};
|
|
2842
2791
|
url: '/issuance/erc20/getDeployEventGatedSimple';
|
|
@@ -3088,7 +3037,7 @@ type PostIssuanceErc20RenounceRoleResponses = {
|
|
|
3088
3037
|
type PostIssuanceErc20RenounceRoleResponse = PostIssuanceErc20RenounceRoleResponses[keyof PostIssuanceErc20RenounceRoleResponses];
|
|
3089
3038
|
type PostIssuanceErc721DeployData = {
|
|
3090
3039
|
body?: {
|
|
3091
|
-
chainId: 11155111 | 72080;
|
|
3040
|
+
chainId: 11155111 | 84532 | 72080;
|
|
3092
3041
|
tokenName: string;
|
|
3093
3042
|
tokenSymbol: string;
|
|
3094
3043
|
baseURI: string;
|
|
@@ -3148,7 +3097,7 @@ type GetIssuanceErc721GetDeployEventData = {
|
|
|
3148
3097
|
body?: never;
|
|
3149
3098
|
path?: never;
|
|
3150
3099
|
query: {
|
|
3151
|
-
chainId: 11155111 | 72080;
|
|
3100
|
+
chainId: 11155111 | 84532 | 72080;
|
|
3152
3101
|
hash: string;
|
|
3153
3102
|
};
|
|
3154
3103
|
url: '/issuance/erc721/getDeployEvent';
|
|
@@ -3169,7 +3118,7 @@ type GetIssuanceErc721GetDeployEventResponses = {
|
|
|
3169
3118
|
type GetIssuanceErc721GetDeployEventResponse = GetIssuanceErc721GetDeployEventResponses[keyof GetIssuanceErc721GetDeployEventResponses];
|
|
3170
3119
|
type PostIssuanceErc721DeployGatedData = {
|
|
3171
3120
|
body?: {
|
|
3172
|
-
chainId: 11155111 | 72080;
|
|
3121
|
+
chainId: 11155111 | 84532 | 72080;
|
|
3173
3122
|
tokenName: string;
|
|
3174
3123
|
tokenSymbol: string;
|
|
3175
3124
|
baseURI: string;
|
|
@@ -3231,7 +3180,7 @@ type GetIssuanceErc721GetDeployEventGatedData = {
|
|
|
3231
3180
|
body?: never;
|
|
3232
3181
|
path?: never;
|
|
3233
3182
|
query: {
|
|
3234
|
-
chainId: 11155111 | 72080;
|
|
3183
|
+
chainId: 11155111 | 84532 | 72080;
|
|
3235
3184
|
hash: string;
|
|
3236
3185
|
};
|
|
3237
3186
|
url: '/issuance/erc721/getDeployEventGated';
|
|
@@ -3509,9 +3458,27 @@ type PostIssuanceErc721SetTokenUriResponses = {
|
|
|
3509
3458
|
};
|
|
3510
3459
|
};
|
|
3511
3460
|
type PostIssuanceErc721SetTokenUriResponse = PostIssuanceErc721SetTokenUriResponses[keyof PostIssuanceErc721SetTokenUriResponses];
|
|
3461
|
+
type GetIssuanceErc721GetMintedTokenIdData = {
|
|
3462
|
+
body?: never;
|
|
3463
|
+
path?: never;
|
|
3464
|
+
query: {
|
|
3465
|
+
chainId: 11155111 | 84532 | 72080;
|
|
3466
|
+
hash: string;
|
|
3467
|
+
};
|
|
3468
|
+
url: '/issuance/erc721/getMintedTokenId';
|
|
3469
|
+
};
|
|
3470
|
+
type GetIssuanceErc721GetMintedTokenIdResponses = {
|
|
3471
|
+
/**
|
|
3472
|
+
* Returns the minted token ID
|
|
3473
|
+
*/
|
|
3474
|
+
200: {
|
|
3475
|
+
tokenId: string;
|
|
3476
|
+
};
|
|
3477
|
+
};
|
|
3478
|
+
type GetIssuanceErc721GetMintedTokenIdResponse = GetIssuanceErc721GetMintedTokenIdResponses[keyof GetIssuanceErc721GetMintedTokenIdResponses];
|
|
3512
3479
|
type PostIssuanceErc1155DeployData = {
|
|
3513
3480
|
body?: {
|
|
3514
|
-
chainId: 11155111 | 72080;
|
|
3481
|
+
chainId: 11155111 | 84532 | 72080;
|
|
3515
3482
|
baseURI: string;
|
|
3516
3483
|
defaultTokenAdmin: string;
|
|
3517
3484
|
minter: string;
|
|
@@ -3567,7 +3534,7 @@ type GetIssuanceErc1155GetDeployEventData = {
|
|
|
3567
3534
|
body?: never;
|
|
3568
3535
|
path?: never;
|
|
3569
3536
|
query: {
|
|
3570
|
-
chainId: 11155111 | 72080;
|
|
3537
|
+
chainId: 11155111 | 84532 | 72080;
|
|
3571
3538
|
hash: string;
|
|
3572
3539
|
};
|
|
3573
3540
|
url: '/issuance/erc1155/getDeployEvent';
|
|
@@ -3586,7 +3553,7 @@ type GetIssuanceErc1155GetDeployEventResponses = {
|
|
|
3586
3553
|
type GetIssuanceErc1155GetDeployEventResponse = GetIssuanceErc1155GetDeployEventResponses[keyof GetIssuanceErc1155GetDeployEventResponses];
|
|
3587
3554
|
type PostIssuanceErc1155DeployGatedData = {
|
|
3588
3555
|
body?: {
|
|
3589
|
-
chainId: 11155111 | 72080;
|
|
3556
|
+
chainId: 11155111 | 84532 | 72080;
|
|
3590
3557
|
baseURI: string;
|
|
3591
3558
|
defaultTokenAdmin: string;
|
|
3592
3559
|
minter: string;
|
|
@@ -3644,7 +3611,7 @@ type GetIssuanceErc1155GetDeployEventGatedData = {
|
|
|
3644
3611
|
body?: never;
|
|
3645
3612
|
path?: never;
|
|
3646
3613
|
query: {
|
|
3647
|
-
chainId: 11155111 | 72080;
|
|
3614
|
+
chainId: 11155111 | 84532 | 72080;
|
|
3648
3615
|
hash: string;
|
|
3649
3616
|
};
|
|
3650
3617
|
url: '/issuance/erc1155/getDeployEventGated';
|
|
@@ -3898,6 +3865,24 @@ type PostIssuanceErc1155RenounceRoleResponses = {
|
|
|
3898
3865
|
};
|
|
3899
3866
|
};
|
|
3900
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];
|
|
3901
3886
|
type GetIssuanceProxyDeployProxyAdminData = {
|
|
3902
3887
|
body?: never;
|
|
3903
3888
|
path?: never;
|
|
@@ -3968,7 +3953,7 @@ type PostNextFractionsPlatformsDeployNftFractionsData = {
|
|
|
3968
3953
|
/**
|
|
3969
3954
|
* Chain ID where the market will be deployed
|
|
3970
3955
|
*/
|
|
3971
|
-
chainId: 11155111 | 72080 | 31337;
|
|
3956
|
+
chainId: 11155111 | 84532 | 72080 | 31337;
|
|
3972
3957
|
/**
|
|
3973
3958
|
* Address of the market administrator
|
|
3974
3959
|
*/
|
|
@@ -4024,7 +4009,7 @@ type PostNextFractionsPlatformsDeployNftFractionsGatedData = {
|
|
|
4024
4009
|
/**
|
|
4025
4010
|
* Chain ID where the market will be deployed
|
|
4026
4011
|
*/
|
|
4027
|
-
chainId: 11155111 | 72080 | 31337;
|
|
4012
|
+
chainId: 11155111 | 84532 | 72080 | 31337;
|
|
4028
4013
|
/**
|
|
4029
4014
|
* Address of the market administrator
|
|
4030
4015
|
*/
|
|
@@ -4084,24 +4069,28 @@ type PostNextFractionsSalesNftFractionsData = {
|
|
|
4084
4069
|
/**
|
|
4085
4070
|
* Chain ID where the market is deployed
|
|
4086
4071
|
*/
|
|
4087
|
-
chainId: 1 | 11155111 | 72080 | 31337;
|
|
4072
|
+
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
4088
4073
|
/**
|
|
4089
4074
|
* Address of the NFT Fractions market
|
|
4090
4075
|
*/
|
|
4091
4076
|
market: string;
|
|
4092
4077
|
/**
|
|
4093
|
-
*
|
|
4078
|
+
* Wrapped asset details to include in the sale
|
|
4094
4079
|
*/
|
|
4095
|
-
|
|
4096
|
-
|
|
4097
|
-
|
|
4098
|
-
|
|
4099
|
-
|
|
4100
|
-
|
|
4101
|
-
|
|
4102
|
-
*/
|
|
4080
|
+
wrapped: Array<{
|
|
4081
|
+
type: 'ERC20';
|
|
4082
|
+
address: string;
|
|
4083
|
+
values: Array<string>;
|
|
4084
|
+
} | {
|
|
4085
|
+
type: 'ERC721';
|
|
4086
|
+
address: string;
|
|
4103
4087
|
tokenIds: Array<string>;
|
|
4104
|
-
}
|
|
4088
|
+
} | {
|
|
4089
|
+
type: 'ERC1155';
|
|
4090
|
+
address: string;
|
|
4091
|
+
tokenIds: Array<string>;
|
|
4092
|
+
values: Array<string>;
|
|
4093
|
+
}>;
|
|
4105
4094
|
/**
|
|
4106
4095
|
* Fraction token configuration
|
|
4107
4096
|
*/
|
|
@@ -4216,7 +4205,7 @@ type GetNextFractionsSalesGetFractionsCreatedEventData = {
|
|
|
4216
4205
|
body?: never;
|
|
4217
4206
|
path?: never;
|
|
4218
4207
|
query: {
|
|
4219
|
-
chainId: 11155111 | 72080 | 31337;
|
|
4208
|
+
chainId: 11155111 | 84532 | 72080 | 31337;
|
|
4220
4209
|
hash: string;
|
|
4221
4210
|
};
|
|
4222
4211
|
url: '/next/fractions/sales/getFractionsCreatedEvent';
|
|
@@ -4239,7 +4228,7 @@ type PostNextFractionsSalesPurchaseData = {
|
|
|
4239
4228
|
body?: {
|
|
4240
4229
|
market: string;
|
|
4241
4230
|
campaignId: string;
|
|
4242
|
-
chainId: 1 | 11155111 | 72080 | 31337;
|
|
4231
|
+
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
4243
4232
|
amountToBuy: string;
|
|
4244
4233
|
applyDiscount: boolean;
|
|
4245
4234
|
};
|
|
@@ -4265,7 +4254,7 @@ type PostNextFractionsSalesPurchaseResponses = {
|
|
|
4265
4254
|
type PostNextFractionsSalesPurchaseResponse = PostNextFractionsSalesPurchaseResponses[keyof PostNextFractionsSalesPurchaseResponses];
|
|
4266
4255
|
type PostNextFractionsLendingDeployData = {
|
|
4267
4256
|
body?: {
|
|
4268
|
-
chainId: 11155111 | 72080 | 31337;
|
|
4257
|
+
chainId: 11155111 | 84532 | 72080 | 31337;
|
|
4269
4258
|
adminAddress: string;
|
|
4270
4259
|
ownerAddress?: string;
|
|
4271
4260
|
discount?: {
|
|
@@ -4309,7 +4298,7 @@ type PostNextFractionsLendingDeployResponses = {
|
|
|
4309
4298
|
type PostNextFractionsLendingDeployResponse = PostNextFractionsLendingDeployResponses[keyof PostNextFractionsLendingDeployResponses];
|
|
4310
4299
|
type PostNextFractionsLendingCreateSaleData = {
|
|
4311
4300
|
body?: {
|
|
4312
|
-
chainId: 1 | 11155111 | 72080 | 31337;
|
|
4301
|
+
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
4313
4302
|
market: string;
|
|
4314
4303
|
fractions: {
|
|
4315
4304
|
/**
|
|
@@ -4386,7 +4375,7 @@ type PostNextFractionsLendingPurchaseData = {
|
|
|
4386
4375
|
body?: {
|
|
4387
4376
|
market: string;
|
|
4388
4377
|
campaignId: string;
|
|
4389
|
-
chainId: 1 | 11155111 | 72080 | 31337;
|
|
4378
|
+
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
4390
4379
|
amountToBuy: string;
|
|
4391
4380
|
applyDiscount: boolean;
|
|
4392
4381
|
};
|
|
@@ -4438,7 +4427,7 @@ type PostNextFractionsLendingSetCollateralPriceResponses = {
|
|
|
4438
4427
|
type PostNextFractionsLendingSetCollateralPriceResponse = PostNextFractionsLendingSetCollateralPriceResponses[keyof PostNextFractionsLendingSetCollateralPriceResponses];
|
|
4439
4428
|
type PostNextFractionsLendingBuybackData = {
|
|
4440
4429
|
body?: {
|
|
4441
|
-
chainId: 1 | 11155111 | 72080 | 31337;
|
|
4430
|
+
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
4442
4431
|
buybackPacketsAmount: string;
|
|
4443
4432
|
market: string;
|
|
4444
4433
|
campaignId: string;
|
|
@@ -4463,6 +4452,497 @@ type PostNextFractionsLendingBuybackResponses = {
|
|
|
4463
4452
|
};
|
|
4464
4453
|
};
|
|
4465
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';
|
|
4640
|
+
};
|
|
4641
|
+
type PostNextFractionsVestingRedemptionDynamicCreateCampaignResponses = {
|
|
4642
|
+
/**
|
|
4643
|
+
* Returns transaction data for creating the campaign
|
|
4644
|
+
*/
|
|
4645
|
+
200: {
|
|
4646
|
+
data: string;
|
|
4647
|
+
to: string;
|
|
4648
|
+
details: {
|
|
4649
|
+
functionName: string;
|
|
4650
|
+
address: string;
|
|
4651
|
+
abi: Array<unknown>;
|
|
4652
|
+
args: Array<unknown>;
|
|
4653
|
+
};
|
|
4654
|
+
};
|
|
4655
|
+
};
|
|
4656
|
+
type PostNextFractionsVestingRedemptionDynamicCreateCampaignResponse = PostNextFractionsVestingRedemptionDynamicCreateCampaignResponses[keyof PostNextFractionsVestingRedemptionDynamicCreateCampaignResponses];
|
|
4657
|
+
type PostNextFractionsVestingRedemptionDynamicApproveCampaignData = {
|
|
4658
|
+
body?: {
|
|
4659
|
+
/**
|
|
4660
|
+
* Address of the Vesting & Redemption Dynamic market
|
|
4661
|
+
*/
|
|
4662
|
+
market: string;
|
|
4663
|
+
/**
|
|
4664
|
+
* Campaign ID to approve
|
|
4665
|
+
*/
|
|
4666
|
+
campaignId: string;
|
|
4667
|
+
};
|
|
4668
|
+
path?: never;
|
|
4669
|
+
query?: never;
|
|
4670
|
+
url: '/next/fractions/vestingRedemptionDynamic/approveCampaign';
|
|
4671
|
+
};
|
|
4672
|
+
type PostNextFractionsVestingRedemptionDynamicApproveCampaignResponses = {
|
|
4673
|
+
/**
|
|
4674
|
+
* Returns transaction data for approving the campaign
|
|
4675
|
+
*/
|
|
4676
|
+
200: {
|
|
4677
|
+
data: string;
|
|
4678
|
+
to: string;
|
|
4679
|
+
details: {
|
|
4680
|
+
functionName: string;
|
|
4681
|
+
address: string;
|
|
4682
|
+
abi: Array<unknown>;
|
|
4683
|
+
args: Array<unknown>;
|
|
4684
|
+
};
|
|
4685
|
+
};
|
|
4686
|
+
};
|
|
4687
|
+
type PostNextFractionsVestingRedemptionDynamicApproveCampaignResponse = PostNextFractionsVestingRedemptionDynamicApproveCampaignResponses[keyof PostNextFractionsVestingRedemptionDynamicApproveCampaignResponses];
|
|
4688
|
+
type PostNextFractionsVestingRedemptionDynamicSetEpochPriceData = {
|
|
4689
|
+
body?: {
|
|
4690
|
+
/**
|
|
4691
|
+
* Address of the Vesting & Redemption Dynamic market
|
|
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;
|
|
4702
|
+
};
|
|
4703
|
+
path?: never;
|
|
4704
|
+
query?: never;
|
|
4705
|
+
url: '/next/fractions/vestingRedemptionDynamic/setEpochPrice';
|
|
4706
|
+
};
|
|
4707
|
+
type PostNextFractionsVestingRedemptionDynamicSetEpochPriceResponses = {
|
|
4708
|
+
/**
|
|
4709
|
+
* Returns transaction data for setting the epoch price
|
|
4710
|
+
*/
|
|
4711
|
+
200: {
|
|
4712
|
+
data: string;
|
|
4713
|
+
to: string;
|
|
4714
|
+
details: {
|
|
4715
|
+
functionName: string;
|
|
4716
|
+
address: string;
|
|
4717
|
+
abi: Array<unknown>;
|
|
4718
|
+
args: Array<unknown>;
|
|
4719
|
+
};
|
|
4720
|
+
};
|
|
4721
|
+
};
|
|
4722
|
+
type PostNextFractionsVestingRedemptionDynamicSetEpochPriceResponse = PostNextFractionsVestingRedemptionDynamicSetEpochPriceResponses[keyof PostNextFractionsVestingRedemptionDynamicSetEpochPriceResponses];
|
|
4723
|
+
type GetNextFractionsVestingRedemptionDynamicGetCurrentEpochData = {
|
|
4724
|
+
body?: never;
|
|
4725
|
+
path?: never;
|
|
4726
|
+
query: {
|
|
4727
|
+
chainId: 11155111 | 84532 | 72080 | 31337;
|
|
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;
|
|
4739
|
+
};
|
|
4740
|
+
};
|
|
4741
|
+
type GetNextFractionsVestingRedemptionDynamicGetCurrentEpochResponse = GetNextFractionsVestingRedemptionDynamicGetCurrentEpochResponses[keyof GetNextFractionsVestingRedemptionDynamicGetCurrentEpochResponses];
|
|
4742
|
+
type GetNextFractionsVestingRedemptionDynamicGetPurchasePriceForEpochData = {
|
|
4743
|
+
body?: never;
|
|
4744
|
+
path?: never;
|
|
4745
|
+
query: {
|
|
4746
|
+
chainId: 11155111 | 84532 | 72080 | 31337;
|
|
4747
|
+
market: string;
|
|
4748
|
+
campaignId: string;
|
|
4749
|
+
epoch: string;
|
|
4750
|
+
};
|
|
4751
|
+
url: '/next/fractions/vestingRedemptionDynamic/getPurchasePriceForEpoch';
|
|
4752
|
+
};
|
|
4753
|
+
type GetNextFractionsVestingRedemptionDynamicGetPurchasePriceForEpochResponses = {
|
|
4754
|
+
/**
|
|
4755
|
+
* Returns the epoch price
|
|
4756
|
+
*/
|
|
4757
|
+
200: {
|
|
4758
|
+
price: string;
|
|
4759
|
+
};
|
|
4760
|
+
};
|
|
4761
|
+
type GetNextFractionsVestingRedemptionDynamicGetPurchasePriceForEpochResponse = GetNextFractionsVestingRedemptionDynamicGetPurchasePriceForEpochResponses[keyof GetNextFractionsVestingRedemptionDynamicGetPurchasePriceForEpochResponses];
|
|
4762
|
+
type PostNextFractionsVestingRedemptionDynamicPurchaseData = {
|
|
4763
|
+
body?: {
|
|
4764
|
+
/**
|
|
4765
|
+
* Address of the Vesting & Redemption Dynamic market
|
|
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;
|
|
4776
|
+
};
|
|
4777
|
+
path?: never;
|
|
4778
|
+
query?: never;
|
|
4779
|
+
url: '/next/fractions/vestingRedemptionDynamic/purchase';
|
|
4780
|
+
};
|
|
4781
|
+
type PostNextFractionsVestingRedemptionDynamicPurchaseResponses = {
|
|
4782
|
+
/**
|
|
4783
|
+
* Returns transaction data for the epoch purchase
|
|
4784
|
+
*/
|
|
4785
|
+
200: {
|
|
4786
|
+
data: string;
|
|
4787
|
+
to: string;
|
|
4788
|
+
details: {
|
|
4789
|
+
functionName: string;
|
|
4790
|
+
address: string;
|
|
4791
|
+
abi: Array<unknown>;
|
|
4792
|
+
args: Array<unknown>;
|
|
4793
|
+
};
|
|
4794
|
+
};
|
|
4795
|
+
};
|
|
4796
|
+
type PostNextFractionsVestingRedemptionDynamicPurchaseResponse = PostNextFractionsVestingRedemptionDynamicPurchaseResponses[keyof PostNextFractionsVestingRedemptionDynamicPurchaseResponses];
|
|
4797
|
+
type GetNextFractionsVestingRedemptionDynamicGetEpochPurchaseEventData = {
|
|
4798
|
+
body?: never;
|
|
4799
|
+
path?: never;
|
|
4800
|
+
query: {
|
|
4801
|
+
chainId: 11155111 | 84532 | 72080 | 31337;
|
|
4802
|
+
hash: string;
|
|
4803
|
+
};
|
|
4804
|
+
url: '/next/fractions/vestingRedemptionDynamic/getEpochPurchaseEvent';
|
|
4805
|
+
};
|
|
4806
|
+
type GetNextFractionsVestingRedemptionDynamicGetEpochPurchaseEventResponses = {
|
|
4807
|
+
/**
|
|
4808
|
+
* Returns parsed NftPurchased event data
|
|
4809
|
+
*/
|
|
4810
|
+
200: {
|
|
4811
|
+
campaignId: string;
|
|
4812
|
+
nftId: string;
|
|
4813
|
+
purchaser: string;
|
|
4814
|
+
amountProvided: string;
|
|
4815
|
+
amountAfterFees: string;
|
|
4816
|
+
epochPurchased: string;
|
|
4817
|
+
};
|
|
4818
|
+
};
|
|
4819
|
+
type GetNextFractionsVestingRedemptionDynamicGetEpochPurchaseEventResponse = GetNextFractionsVestingRedemptionDynamicGetEpochPurchaseEventResponses[keyof GetNextFractionsVestingRedemptionDynamicGetEpochPurchaseEventResponses];
|
|
4820
|
+
type PostNextFractionsVestingRedemptionDynamicExchangeNftForFractionsData = {
|
|
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
|
+
};
|
|
4835
|
+
path?: never;
|
|
4836
|
+
query?: never;
|
|
4837
|
+
url: '/next/fractions/vestingRedemptionDynamic/exchangeNftForFractions';
|
|
4838
|
+
};
|
|
4839
|
+
type PostNextFractionsVestingRedemptionDynamicExchangeNftForFractionsResponses = {
|
|
4840
|
+
/**
|
|
4841
|
+
* Returns transaction data for the NFT exchange
|
|
4842
|
+
*/
|
|
4843
|
+
200: {
|
|
4844
|
+
data: string;
|
|
4845
|
+
to: string;
|
|
4846
|
+
details: {
|
|
4847
|
+
functionName: string;
|
|
4848
|
+
address: string;
|
|
4849
|
+
abi: Array<unknown>;
|
|
4850
|
+
args: Array<unknown>;
|
|
4851
|
+
};
|
|
4852
|
+
};
|
|
4853
|
+
};
|
|
4854
|
+
type PostNextFractionsVestingRedemptionDynamicExchangeNftForFractionsResponse = PostNextFractionsVestingRedemptionDynamicExchangeNftForFractionsResponses[keyof PostNextFractionsVestingRedemptionDynamicExchangeNftForFractionsResponses];
|
|
4855
|
+
type PostNextFractionsVestingRedemptionDynamicRequestWithdrawalData = {
|
|
4856
|
+
body?: {
|
|
4857
|
+
/**
|
|
4858
|
+
* Address of the Vesting & Redemption Dynamic market
|
|
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;
|
|
4869
|
+
};
|
|
4870
|
+
path?: never;
|
|
4871
|
+
query?: never;
|
|
4872
|
+
url: '/next/fractions/vestingRedemptionDynamic/requestWithdrawal';
|
|
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';
|
|
4898
|
+
};
|
|
4899
|
+
type GetNextFractionsVestingRedemptionDynamicGetWithdrawalRequestedEventResponses = {
|
|
4900
|
+
/**
|
|
4901
|
+
* Returns parsed WithdrawalRequested event data
|
|
4902
|
+
*/
|
|
4903
|
+
200: {
|
|
4904
|
+
campaignId: string;
|
|
4905
|
+
nftId: string;
|
|
4906
|
+
requester: string;
|
|
4907
|
+
amountOfFractions: string;
|
|
4908
|
+
};
|
|
4909
|
+
};
|
|
4910
|
+
type GetNextFractionsVestingRedemptionDynamicGetWithdrawalRequestedEventResponse = GetNextFractionsVestingRedemptionDynamicGetWithdrawalRequestedEventResponses[keyof GetNextFractionsVestingRedemptionDynamicGetWithdrawalRequestedEventResponses];
|
|
4911
|
+
type PostNextFractionsVestingRedemptionDynamicWithdrawData = {
|
|
4912
|
+
body?: {
|
|
4913
|
+
/**
|
|
4914
|
+
* Address of the Vesting & Redemption Dynamic market
|
|
4915
|
+
*/
|
|
4916
|
+
market: string;
|
|
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;
|
|
4925
|
+
};
|
|
4926
|
+
path?: never;
|
|
4927
|
+
query?: never;
|
|
4928
|
+
url: '/next/fractions/vestingRedemptionDynamic/withdraw';
|
|
4929
|
+
};
|
|
4930
|
+
type PostNextFractionsVestingRedemptionDynamicWithdrawResponses = {
|
|
4931
|
+
/**
|
|
4932
|
+
* Returns transaction data for withdrawing funds
|
|
4933
|
+
*/
|
|
4934
|
+
200: {
|
|
4935
|
+
data: string;
|
|
4936
|
+
to: string;
|
|
4937
|
+
details: {
|
|
4938
|
+
functionName: string;
|
|
4939
|
+
address: string;
|
|
4940
|
+
abi: Array<unknown>;
|
|
4941
|
+
args: Array<unknown>;
|
|
4942
|
+
};
|
|
4943
|
+
};
|
|
4944
|
+
};
|
|
4945
|
+
type PostNextFractionsVestingRedemptionDynamicWithdrawResponse = PostNextFractionsVestingRedemptionDynamicWithdrawResponses[keyof PostNextFractionsVestingRedemptionDynamicWithdrawResponses];
|
|
4466
4946
|
type ClientOptions = {
|
|
4467
4947
|
baseUrl: 'http://localhost:3000' | (string & {});
|
|
4468
4948
|
};
|
|
@@ -4817,7 +5297,7 @@ declare const api: {
|
|
|
4817
5297
|
};
|
|
4818
5298
|
}, unknown, ThrowOnError>;
|
|
4819
5299
|
searchRoles: <ThrowOnError extends boolean = false>(options?: Options<PostStakingRolesSearchRolesV0Data, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
|
|
4820
|
-
chainId: 11155111 | 31337;
|
|
5300
|
+
chainId: 11155111 | 84532 | 31337;
|
|
4821
5301
|
platform: string;
|
|
4822
5302
|
roleId: string;
|
|
4823
5303
|
poolId?: string;
|
|
@@ -4826,7 +5306,7 @@ declare const api: {
|
|
|
4826
5306
|
updatedAt: Date;
|
|
4827
5307
|
}[], unknown, ThrowOnError>;
|
|
4828
5308
|
searchRoleEvents: <ThrowOnError extends boolean = false>(options?: Options<PostStakingRolesSearchRoleEventsV0Data, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
|
|
4829
|
-
chainId: 11155111 | 31337;
|
|
5309
|
+
chainId: 11155111 | 84532 | 31337;
|
|
4830
5310
|
platform: string;
|
|
4831
5311
|
roleId: string;
|
|
4832
5312
|
poolId?: string;
|
|
@@ -4837,7 +5317,7 @@ declare const api: {
|
|
|
4837
5317
|
};
|
|
4838
5318
|
stakes: {
|
|
4839
5319
|
getStake: <ThrowOnError extends boolean = false>(options: Options<GetStakingStakesGetStakeV0Data, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
|
|
4840
|
-
chainId: 11155111 | 31337;
|
|
5320
|
+
chainId: 11155111 | 84532 | 31337;
|
|
4841
5321
|
platform: string;
|
|
4842
5322
|
poolId?: string;
|
|
4843
5323
|
owner: string;
|
|
@@ -4855,7 +5335,7 @@ declare const api: {
|
|
|
4855
5335
|
name: string;
|
|
4856
5336
|
}, ThrowOnError>;
|
|
4857
5337
|
searchStakes: <ThrowOnError extends boolean = false>(options?: Options<PostStakingStakesSearchStakesV0Data, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
|
|
4858
|
-
chainId: 11155111 | 31337;
|
|
5338
|
+
chainId: 11155111 | 84532 | 31337;
|
|
4859
5339
|
platform: string;
|
|
4860
5340
|
poolId?: string;
|
|
4861
5341
|
owner: string;
|
|
@@ -4870,7 +5350,7 @@ declare const api: {
|
|
|
4870
5350
|
}[], unknown, ThrowOnError>;
|
|
4871
5351
|
searchStakeEvents: <ThrowOnError extends boolean = false>(options?: Options<PostStakingStakesSearchStakeEventsV0Data, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
|
|
4872
5352
|
id: string;
|
|
4873
|
-
chainId: 11155111 | 31337;
|
|
5353
|
+
chainId: 11155111 | 84532 | 31337;
|
|
4874
5354
|
platform: string;
|
|
4875
5355
|
poolId?: string;
|
|
4876
5356
|
owner: string;
|
|
@@ -4881,7 +5361,7 @@ declare const api: {
|
|
|
4881
5361
|
};
|
|
4882
5362
|
pools: {
|
|
4883
5363
|
getPool: <ThrowOnError extends boolean = false>(options: Options<GetStakingPoolsGetPoolV0Data, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
|
|
4884
|
-
chainId: 11155111 | 31337;
|
|
5364
|
+
chainId: 11155111 | 84532 | 31337;
|
|
4885
5365
|
platform: string;
|
|
4886
5366
|
rewardsHandler: string;
|
|
4887
5367
|
assetHandler: string;
|
|
@@ -4894,7 +5374,7 @@ declare const api: {
|
|
|
4894
5374
|
name: string;
|
|
4895
5375
|
}, ThrowOnError>;
|
|
4896
5376
|
searchPools: <ThrowOnError extends boolean = false>(options?: Options<PostStakingPoolsSearchPoolsV0Data, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
|
|
4897
|
-
chainId: 11155111 | 31337;
|
|
5377
|
+
chainId: 11155111 | 84532 | 31337;
|
|
4898
5378
|
platform: string;
|
|
4899
5379
|
rewardsHandler: string;
|
|
4900
5380
|
assetHandler: string;
|
|
@@ -4905,7 +5385,7 @@ declare const api: {
|
|
|
4905
5385
|
};
|
|
4906
5386
|
platforms: {
|
|
4907
5387
|
getPlatform: <ThrowOnError extends boolean = false>(options: Options<GetStakingPlatformsGetV0Data, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
|
|
4908
|
-
chainId: 11155111 | 31337;
|
|
5388
|
+
chainId: 11155111 | 84532 | 31337;
|
|
4909
5389
|
transactionHash: string;
|
|
4910
5390
|
createdAt: Date;
|
|
4911
5391
|
contractAddress: string;
|
|
@@ -4917,7 +5397,7 @@ declare const api: {
|
|
|
4917
5397
|
name: string;
|
|
4918
5398
|
}, ThrowOnError>;
|
|
4919
5399
|
searchPlatforms: <ThrowOnError extends boolean = false>(options?: Options<PostStakingPlatformsSearchV0Data, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
|
|
4920
|
-
chainId: 11155111 | 31337;
|
|
5400
|
+
chainId: 11155111 | 84532 | 31337;
|
|
4921
5401
|
transactionHash: string;
|
|
4922
5402
|
createdAt: Date;
|
|
4923
5403
|
contractAddress: string;
|
|
@@ -4974,14 +5454,14 @@ declare const api: {
|
|
|
4974
5454
|
wrapperAddress: string;
|
|
4975
5455
|
}, unknown, ThrowOnError>;
|
|
4976
5456
|
search: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsMarketsSearchData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
|
|
4977
|
-
chainId: 1 | 11155111 | 72080 | 31337;
|
|
5457
|
+
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
4978
5458
|
transactionHash: string;
|
|
4979
5459
|
template: "default" | "compilot" | "continuous-withdrawal" | "continuous-withdrawal-nid" | "lending" | "unknown";
|
|
4980
5460
|
contractAddress: string;
|
|
4981
5461
|
adminAddress: string;
|
|
4982
5462
|
wrapperAddress: string | null;
|
|
4983
5463
|
burnAsset: {
|
|
4984
|
-
chainId: 1 | 11155111 | 72080 | 31337;
|
|
5464
|
+
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
4985
5465
|
address: string;
|
|
4986
5466
|
type: string;
|
|
4987
5467
|
symbol: string;
|
|
@@ -4995,14 +5475,14 @@ declare const api: {
|
|
|
4995
5475
|
updatedAt: Date;
|
|
4996
5476
|
}[], unknown, ThrowOnError>;
|
|
4997
5477
|
get: <ThrowOnError extends boolean = false>(options: Options<GetV0FractionsMarketsGetData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
|
|
4998
|
-
chainId: 1 | 11155111 | 72080 | 31337;
|
|
5478
|
+
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
4999
5479
|
transactionHash: string;
|
|
5000
5480
|
template: "default" | "compilot" | "continuous-withdrawal" | "continuous-withdrawal-nid" | "lending" | "unknown";
|
|
5001
5481
|
contractAddress: string;
|
|
5002
5482
|
adminAddress: string;
|
|
5003
5483
|
wrapperAddress: string | null;
|
|
5004
5484
|
burnAsset: {
|
|
5005
|
-
chainId: 1 | 11155111 | 72080 | 31337;
|
|
5485
|
+
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
5006
5486
|
address: string;
|
|
5007
5487
|
type: string;
|
|
5008
5488
|
symbol: string;
|
|
@@ -5108,7 +5588,7 @@ declare const api: {
|
|
|
5108
5588
|
};
|
|
5109
5589
|
}, unknown, ThrowOnError>;
|
|
5110
5590
|
investorStatistics: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsSalesPurchaseStatisticsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
|
|
5111
|
-
chainId: 1 | 11155111 | 72080 | 31337;
|
|
5591
|
+
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
5112
5592
|
platform: string;
|
|
5113
5593
|
campaignId: string;
|
|
5114
5594
|
statistics: Array<{
|
|
@@ -5118,7 +5598,7 @@ declare const api: {
|
|
|
5118
5598
|
}>;
|
|
5119
5599
|
}, unknown, ThrowOnError>;
|
|
5120
5600
|
activity: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsSalesActivityData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
|
|
5121
|
-
chainId: 1 | 11155111 | 72080 | 31337;
|
|
5601
|
+
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
5122
5602
|
platform: string;
|
|
5123
5603
|
campaignId: string;
|
|
5124
5604
|
transactionHash: string;
|
|
@@ -5164,7 +5644,7 @@ declare const api: {
|
|
|
5164
5644
|
};
|
|
5165
5645
|
}[], unknown, ThrowOnError>;
|
|
5166
5646
|
statistics: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsSalesStatisticsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
|
|
5167
|
-
chainId: 1 | 11155111 | 72080 | 31337;
|
|
5647
|
+
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
5168
5648
|
platform: string;
|
|
5169
5649
|
campaignId: string;
|
|
5170
5650
|
statistics: Array<{
|
|
@@ -5202,7 +5682,7 @@ declare const api: {
|
|
|
5202
5682
|
vaultAddress: string;
|
|
5203
5683
|
}, unknown, ThrowOnError>;
|
|
5204
5684
|
search: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsSalesSearchData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
|
|
5205
|
-
chainId: 1 | 11155111 | 72080 | 31337;
|
|
5685
|
+
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
5206
5686
|
platform: string;
|
|
5207
5687
|
campaignId: string;
|
|
5208
5688
|
nftId: string;
|
|
@@ -5210,7 +5690,7 @@ declare const api: {
|
|
|
5210
5690
|
owner: string;
|
|
5211
5691
|
fractions: {
|
|
5212
5692
|
asset: {
|
|
5213
|
-
chainId: 1 | 11155111 | 72080 | 31337;
|
|
5693
|
+
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
5214
5694
|
address: string;
|
|
5215
5695
|
type: string;
|
|
5216
5696
|
symbol: string;
|
|
@@ -5239,7 +5719,7 @@ declare const api: {
|
|
|
5239
5719
|
} | null;
|
|
5240
5720
|
wrappedAssets: Array<{
|
|
5241
5721
|
asset: {
|
|
5242
|
-
chainId: 1 | 11155111 | 72080 | 31337;
|
|
5722
|
+
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
5243
5723
|
address: string;
|
|
5244
5724
|
type: string;
|
|
5245
5725
|
symbol: string;
|
|
@@ -5252,7 +5732,7 @@ declare const api: {
|
|
|
5252
5732
|
}>;
|
|
5253
5733
|
fundingAssets: Array<{
|
|
5254
5734
|
asset: {
|
|
5255
|
-
chainId: 1 | 11155111 | 72080 | 31337;
|
|
5735
|
+
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
5256
5736
|
address: string;
|
|
5257
5737
|
type: string;
|
|
5258
5738
|
symbol: string;
|
|
@@ -5324,7 +5804,7 @@ declare const api: {
|
|
|
5324
5804
|
};
|
|
5325
5805
|
}, unknown, ThrowOnError>;
|
|
5326
5806
|
claimStatistics: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsSalesVestingClaimStatisticsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
|
|
5327
|
-
chainId: 1 | 11155111 | 72080 | 31337;
|
|
5807
|
+
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
5328
5808
|
platform: string;
|
|
5329
5809
|
campaignId: string;
|
|
5330
5810
|
totalClaims: number;
|
|
@@ -5364,32 +5844,12 @@ declare const api: {
|
|
|
5364
5844
|
args: Array<unknown>;
|
|
5365
5845
|
};
|
|
5366
5846
|
}, unknown, ThrowOnError>;
|
|
5367
|
-
approveWrapperToSpendErc20: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsSalesApproveWrapperAsErc20SpenderData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
|
|
5368
|
-
data: string;
|
|
5369
|
-
to: string;
|
|
5370
|
-
details: {
|
|
5371
|
-
functionName: string;
|
|
5372
|
-
address: string;
|
|
5373
|
-
abi: Array<unknown>;
|
|
5374
|
-
args: Array<unknown>;
|
|
5375
|
-
};
|
|
5376
|
-
}, unknown, ThrowOnError>;
|
|
5377
|
-
approveWrapperToSpendErc721: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsSalesApproveWrapperAsErc721SpenderData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
|
|
5378
|
-
data: string;
|
|
5379
|
-
to: string;
|
|
5380
|
-
details: {
|
|
5381
|
-
functionName: string;
|
|
5382
|
-
address: string;
|
|
5383
|
-
abi: Array<unknown>;
|
|
5384
|
-
args: Array<unknown>;
|
|
5385
|
-
};
|
|
5386
|
-
}, unknown, ThrowOnError>;
|
|
5387
5847
|
};
|
|
5388
5848
|
sig: {
|
|
5389
5849
|
getAuthData: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsSigAuthDataData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
|
|
5390
5850
|
marketAddress: string;
|
|
5391
5851
|
userAddress: string;
|
|
5392
|
-
chainId: 1 | 11155111 | 72080 | 31337;
|
|
5852
|
+
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
5393
5853
|
nonce: string;
|
|
5394
5854
|
blockExpiration: string;
|
|
5395
5855
|
callData: string;
|
|
@@ -5397,7 +5857,7 @@ declare const api: {
|
|
|
5397
5857
|
getNonce: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsSigNonceData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
|
|
5398
5858
|
marketAddress: string;
|
|
5399
5859
|
userAddress: string;
|
|
5400
|
-
chainId: 1 | 11155111 | 72080 | 31337;
|
|
5860
|
+
chainId: 1 | 11155111 | 84532 | 72080 | 31337;
|
|
5401
5861
|
}, unknown, ThrowOnError>;
|
|
5402
5862
|
};
|
|
5403
5863
|
issuance: {
|
|
@@ -5767,4 +6227,4 @@ type ApiResponse<T> = {
|
|
|
5767
6227
|
};
|
|
5768
6228
|
declare function handleApiResponse<T>(apiResponse: ApiResponse<T>): T;
|
|
5769
6229
|
|
|
5770
|
-
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 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 GetIssuanceProxyDeployProxyAdminData, type GetIssuanceProxyDeployProxyAdminResponse, type GetIssuanceProxyDeployProxyAdminResponses, type GetNextFractionsSalesGetFractionsCreatedEventData, type GetNextFractionsSalesGetFractionsCreatedEventResponse, type GetNextFractionsSalesGetFractionsCreatedEventResponses, 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 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 PostV0FractionsSalesApproveWrapperAsErc20SpenderData, type PostV0FractionsSalesApproveWrapperAsErc20SpenderResponse, type PostV0FractionsSalesApproveWrapperAsErc20SpenderResponses, type PostV0FractionsSalesApproveWrapperAsErc721SpenderData, type PostV0FractionsSalesApproveWrapperAsErc721SpenderResponse, type PostV0FractionsSalesApproveWrapperAsErc721SpenderResponses, 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 };
|
|
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 };
|