@evergonlabs/tmi-protocol-api-client 0.5.0 → 0.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.cts CHANGED
@@ -351,13 +351,10 @@ type DeployMarketRequestSchema = {
351
351
  * Id of targeted chain
352
352
  */
353
353
  chainId: '11155111' | '31337';
354
- paymentAssets: Array<string>;
355
354
  adminAddress: string;
356
355
  discount?: {
357
356
  burnForDiscount: {
358
357
  burnableTokenAddress: string;
359
- burnableTokenAmount: number;
360
- discountPercent: number;
361
358
  };
362
359
  };
363
360
  cap?: {
@@ -367,44 +364,6 @@ type DeployMarketRequestSchema = {
367
364
  percent: number;
368
365
  };
369
366
  };
370
- type CreateFractionsRequestSchema = {
371
- /**
372
- * Supported chain id
373
- */
374
- chainId: '11155111' | '31337';
375
- market: string;
376
- wrappedTokens: Array<{
377
- type: 'ERC20';
378
- address: string;
379
- values: Array<bigint>;
380
- } | {
381
- type: 'ERC721';
382
- address: string;
383
- tokenIds: Array<bigint>;
384
- } | {
385
- type: 'ERC1155';
386
- address: string;
387
- tokenIds: Array<bigint>;
388
- values: Array<bigint>;
389
- }>;
390
- funding: {
391
- pricePerFraction: bigint;
392
- address: string;
393
- };
394
- fractions: {
395
- token: string;
396
- symbol: string;
397
- name: string;
398
- };
399
- timeBoundary: {
400
- start: number;
401
- end: number;
402
- };
403
- cap: {
404
- soft: bigint;
405
- hard: bigint;
406
- };
407
- };
408
367
  type ApproveWrapperRequestSchema = {
409
368
  marketAddress: string;
410
369
  wrapperAddress: string;
@@ -427,19 +386,68 @@ type GrantMarketRoleRequestSchema = {
427
386
  users: Array<string>;
428
387
  role: 'ISSUER' | 'INVESTOR';
429
388
  };
430
- type ApproveSaleRequestSchema = {
389
+ type CreateFractionsRequestSchema = {
431
390
  /**
432
391
  * Supported chain id
433
392
  */
434
393
  chainId: '11155111' | '31337';
394
+ market: string;
395
+ fractions: {
396
+ token: string;
397
+ symbol: string;
398
+ name: string;
399
+ amount: bigint;
400
+ };
401
+ timeBoundary: {
402
+ start: string;
403
+ end: string;
404
+ };
405
+ cap: {
406
+ soft: bigint;
407
+ hard: bigint;
408
+ softPerAccount?: bigint;
409
+ hardPerAccount?: bigint;
410
+ };
411
+ wrapped: Array<{
412
+ type: 'ERC20';
413
+ address: string;
414
+ values: Array<bigint>;
415
+ } | {
416
+ type: 'ERC721';
417
+ address: string;
418
+ tokenIds: Array<bigint>;
419
+ } | {
420
+ type: 'ERC1155';
421
+ address: string;
422
+ tokenIds: Array<bigint>;
423
+ values: Array<bigint>;
424
+ }>;
425
+ funding: Array<{
426
+ token: string;
427
+ amountPerPacket: bigint;
428
+ }>;
429
+ discounts?: {
430
+ burnableTokenAddress: string;
431
+ amountToBurn: bigint;
432
+ percentDiscount: number;
433
+ };
434
+ vesting?: {
435
+ cliff: string;
436
+ totalVestingPeriod: number;
437
+ portionPeriod: number;
438
+ };
439
+ refundAddress: string;
440
+ amountOfPacketsPerFraction: bigint;
441
+ };
442
+ type ApproveSaleRequestSchema = {
435
443
  marketAddress: string;
436
444
  campaignId: bigint;
437
445
  };
446
+ type RejectFractionsRequestSchema = {
447
+ marketAddress: string;
448
+ saleId: bigint;
449
+ };
438
450
  type CompleteSaleRequestSchema = {
439
- /**
440
- * Supported chain id
441
- */
442
- chainId: '11155111' | '31337';
443
451
  marketAddress: string;
444
452
  campaignId: bigint;
445
453
  };
@@ -456,6 +464,11 @@ type WithdrawRequestSchema = {
456
464
  market: unknown;
457
465
  campaignId: bigint;
458
466
  };
467
+ type EditCliffRequestSchema = {
468
+ marketAddress: string;
469
+ saleId: bigint;
470
+ newCliffDate: string;
471
+ };
459
472
  type EstimateGasResponse = {
460
473
  /**
461
474
  * Amount of gas (in WEI) that is needed for specified transaction
@@ -2059,63 +2072,6 @@ type PostV0FractionsPlatformsDeployNidResponses = {
2059
2072
  200: Transaction;
2060
2073
  };
2061
2074
  type PostV0FractionsPlatformsDeployNidResponse = PostV0FractionsPlatformsDeployNidResponses[keyof PostV0FractionsPlatformsDeployNidResponses];
2062
- type PostV0FractionsFractionsFractionsData = {
2063
- body?: CreateFractionsRequestSchema;
2064
- path?: never;
2065
- query?: never;
2066
- url: '/v0/fractions/fractions/fractions';
2067
- };
2068
- type PostV0FractionsFractionsFractionsErrors = {
2069
- /**
2070
- * Zod Error
2071
- */
2072
- 400: ZodError;
2073
- };
2074
- type PostV0FractionsFractionsFractionsError = PostV0FractionsFractionsFractionsErrors[keyof PostV0FractionsFractionsFractionsErrors];
2075
- type PostV0FractionsFractionsFractionsResponses = {
2076
- /**
2077
- * Returns transaction data for creating fractions
2078
- */
2079
- 200: Transaction;
2080
- };
2081
- type PostV0FractionsFractionsFractionsResponse = PostV0FractionsFractionsFractionsResponses[keyof PostV0FractionsFractionsFractionsResponses];
2082
- type GetV0FractionsFractionsGetFractionsCreatedEventData = {
2083
- body?: never;
2084
- path?: never;
2085
- query: {
2086
- /**
2087
- * Supported chain id
2088
- */
2089
- chainId: '11155111' | '31337';
2090
- /**
2091
- * Transaction hash
2092
- */
2093
- hash: string;
2094
- };
2095
- url: '/v0/fractions/fractions/getFractionsCreatedEvent';
2096
- };
2097
- type GetV0FractionsFractionsGetFractionsCreatedEventErrors = {
2098
- /**
2099
- * Zod Error
2100
- */
2101
- 400: ZodError;
2102
- };
2103
- type GetV0FractionsFractionsGetFractionsCreatedEventError = GetV0FractionsFractionsGetFractionsCreatedEventErrors[keyof GetV0FractionsFractionsGetFractionsCreatedEventErrors];
2104
- type GetV0FractionsFractionsGetFractionsCreatedEventResponses = {
2105
- /**
2106
- * Returns parsed event log
2107
- */
2108
- 200: {
2109
- creator: string;
2110
- nftId: bigint;
2111
- /**
2112
- * Id of a Sale
2113
- */
2114
- campaignId: bigint;
2115
- fractionsCreated: bigint;
2116
- };
2117
- };
2118
- type GetV0FractionsFractionsGetFractionsCreatedEventResponse = GetV0FractionsFractionsGetFractionsCreatedEventResponses[keyof GetV0FractionsFractionsGetFractionsCreatedEventResponses];
2119
2075
  type PostV0FractionsFractionsApproveWrapperData = {
2120
2076
  body?: ApproveWrapperRequestSchema;
2121
2077
  path?: never;
@@ -2216,6 +2172,63 @@ type PostV0FractionsRolesGrantResponses = {
2216
2172
  200: Transaction;
2217
2173
  };
2218
2174
  type PostV0FractionsRolesGrantResponse = PostV0FractionsRolesGrantResponses[keyof PostV0FractionsRolesGrantResponses];
2175
+ type PostV0FractionsSalesFractionsData = {
2176
+ body?: CreateFractionsRequestSchema;
2177
+ path?: never;
2178
+ query?: never;
2179
+ url: '/v0/fractions/sales/fractions';
2180
+ };
2181
+ type PostV0FractionsSalesFractionsErrors = {
2182
+ /**
2183
+ * Zod Error
2184
+ */
2185
+ 400: ZodError;
2186
+ };
2187
+ type PostV0FractionsSalesFractionsError = PostV0FractionsSalesFractionsErrors[keyof PostV0FractionsSalesFractionsErrors];
2188
+ type PostV0FractionsSalesFractionsResponses = {
2189
+ /**
2190
+ * Returns transaction data for creating fractions
2191
+ */
2192
+ 200: Transaction;
2193
+ };
2194
+ type PostV0FractionsSalesFractionsResponse = PostV0FractionsSalesFractionsResponses[keyof PostV0FractionsSalesFractionsResponses];
2195
+ type GetV0FractionsSalesGetFractionsCreatedEventData = {
2196
+ body?: never;
2197
+ path?: never;
2198
+ query: {
2199
+ /**
2200
+ * Supported chain id
2201
+ */
2202
+ chainId: '11155111' | '31337';
2203
+ /**
2204
+ * Transaction hash
2205
+ */
2206
+ hash: string;
2207
+ };
2208
+ url: '/v0/fractions/sales/getFractionsCreatedEvent';
2209
+ };
2210
+ type GetV0FractionsSalesGetFractionsCreatedEventErrors = {
2211
+ /**
2212
+ * Zod Error
2213
+ */
2214
+ 400: ZodError;
2215
+ };
2216
+ type GetV0FractionsSalesGetFractionsCreatedEventError = GetV0FractionsSalesGetFractionsCreatedEventErrors[keyof GetV0FractionsSalesGetFractionsCreatedEventErrors];
2217
+ type GetV0FractionsSalesGetFractionsCreatedEventResponses = {
2218
+ /**
2219
+ * Returns parsed event log
2220
+ */
2221
+ 200: {
2222
+ creator: string;
2223
+ nftId: bigint;
2224
+ /**
2225
+ * Id of a Sale
2226
+ */
2227
+ campaignId: bigint;
2228
+ fractionsCreated: bigint;
2229
+ };
2230
+ };
2231
+ type GetV0FractionsSalesGetFractionsCreatedEventResponse = GetV0FractionsSalesGetFractionsCreatedEventResponses[keyof GetV0FractionsSalesGetFractionsCreatedEventResponses];
2219
2232
  type PostV0FractionsSalesApproveData = {
2220
2233
  body?: ApproveSaleRequestSchema;
2221
2234
  path?: never;
@@ -2236,6 +2249,26 @@ type PostV0FractionsSalesApproveResponses = {
2236
2249
  200: Transaction;
2237
2250
  };
2238
2251
  type PostV0FractionsSalesApproveResponse = PostV0FractionsSalesApproveResponses[keyof PostV0FractionsSalesApproveResponses];
2252
+ type PostV0FractionsSalesRejectData = {
2253
+ body?: RejectFractionsRequestSchema;
2254
+ path?: never;
2255
+ query?: never;
2256
+ url: '/v0/fractions/sales/reject';
2257
+ };
2258
+ type PostV0FractionsSalesRejectErrors = {
2259
+ /**
2260
+ * Zod Error
2261
+ */
2262
+ 400: ZodError;
2263
+ };
2264
+ type PostV0FractionsSalesRejectError = PostV0FractionsSalesRejectErrors[keyof PostV0FractionsSalesRejectErrors];
2265
+ type PostV0FractionsSalesRejectResponses = {
2266
+ /**
2267
+ * Returns transaction data for rejecting fractions
2268
+ */
2269
+ 200: Transaction;
2270
+ };
2271
+ type PostV0FractionsSalesRejectResponse = PostV0FractionsSalesRejectResponses[keyof PostV0FractionsSalesRejectResponses];
2239
2272
  type PostV0FractionsSalesCompleteData = {
2240
2273
  body?: CompleteSaleRequestSchema;
2241
2274
  path?: never;
@@ -2296,6 +2329,26 @@ type PostV0FractionsSalesWithdrawPaymentTokenResponses = {
2296
2329
  200: Transaction;
2297
2330
  };
2298
2331
  type PostV0FractionsSalesWithdrawPaymentTokenResponse = PostV0FractionsSalesWithdrawPaymentTokenResponses[keyof PostV0FractionsSalesWithdrawPaymentTokenResponses];
2332
+ type PostV0FractionsSalesVestingEditCliffData = {
2333
+ body?: EditCliffRequestSchema;
2334
+ path?: never;
2335
+ query?: never;
2336
+ url: '/v0/fractions/sales/vesting/editCliff';
2337
+ };
2338
+ type PostV0FractionsSalesVestingEditCliffErrors = {
2339
+ /**
2340
+ * Zod Error
2341
+ */
2342
+ 400: ZodError;
2343
+ };
2344
+ type PostV0FractionsSalesVestingEditCliffError = PostV0FractionsSalesVestingEditCliffErrors[keyof PostV0FractionsSalesVestingEditCliffErrors];
2345
+ type PostV0FractionsSalesVestingEditCliffResponses = {
2346
+ /**
2347
+ * Returns transaction data for editing the cliff date
2348
+ */
2349
+ 200: Transaction;
2350
+ };
2351
+ type PostV0FractionsSalesVestingEditCliffResponse = PostV0FractionsSalesVestingEditCliffResponses[keyof PostV0FractionsSalesVestingEditCliffResponses];
2299
2352
  type PostGeneralEstimateGasData = {
2300
2353
  body?: {
2301
2354
  /**
@@ -2561,24 +2614,26 @@ declare const api: {
2561
2614
  };
2562
2615
  fractions: {
2563
2616
  deployMarket: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsPlatformsDeployData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<Transaction, ZodError, ThrowOnError>;
2564
- approveWrapper: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsFractionsApproveWrapperData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<Transaction, ZodError, ThrowOnError>;
2565
2617
  grantRole: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsRolesGrantData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<Transaction, ZodError, ThrowOnError>;
2566
- createFractions: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsFractionsFractionsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<Transaction, ZodError, ThrowOnError>;
2567
- approveSale: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsSalesApproveData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<Transaction, ZodError, ThrowOnError>;
2568
- comleteSale: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsSalesCompleteData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<Transaction, ZodError, ThrowOnError>;
2569
- purchaseSale: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsSalesPurchaseData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<Transaction, ZodError, ThrowOnError>;
2570
- withdrawPaymentToken: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsSalesWithdrawPaymentTokenData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<Transaction, ZodError, ThrowOnError>;
2571
- getFractionsCreatedEvent: <ThrowOnError extends boolean = false>(options: Options<GetV0FractionsFractionsGetFractionsCreatedEventData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
2572
- creator: string;
2573
- nftId: bigint;
2574
- campaignId: bigint;
2575
- fractionsCreated: bigint;
2576
- }, ZodError, ThrowOnError>;
2577
2618
  getMarketDeployedEvent: <ThrowOnError extends boolean = false>(options: Options<GetV0FractionsMarketsDeployEventData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
2578
2619
  diamondAddress: string;
2579
2620
  admin: string;
2580
2621
  wrapperAddress: string;
2581
2622
  }, ZodError, ThrowOnError>;
2623
+ sales: {
2624
+ createFractions: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsPlatformsDeployData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<Transaction, ZodError, ThrowOnError>;
2625
+ approveSale: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsSalesApproveData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<Transaction, ZodError, ThrowOnError>;
2626
+ rejectSale: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsSalesRejectData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<Transaction, ZodError, ThrowOnError>;
2627
+ completeSale: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsSalesCompleteData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<Transaction, ZodError, ThrowOnError>;
2628
+ purchaseSale: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsSalesPurchaseData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<Transaction, ZodError, ThrowOnError>;
2629
+ withdrawPaymentToken: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsSalesWithdrawPaymentTokenData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<Transaction, ZodError, ThrowOnError>;
2630
+ getFractionsCreatedEvent: <ThrowOnError extends boolean = false>(options: Options<GetV0FractionsSalesGetFractionsCreatedEventData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
2631
+ creator: string;
2632
+ nftId: bigint;
2633
+ campaignId: bigint;
2634
+ fractionsCreated: bigint;
2635
+ }, ZodError, ThrowOnError>;
2636
+ };
2582
2637
  approvals: {
2583
2638
  approveWrapper: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsFractionsApproveWrapperData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<Transaction, ZodError, ThrowOnError>;
2584
2639
  approveWrapperToSpendErc20: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsFractionsApproveWrapperAsErc20SpenderData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<Transaction, ZodError, ThrowOnError>;
@@ -2597,4 +2652,4 @@ type ApiResponse<T> = {
2597
2652
  };
2598
2653
  declare function handleApiResponse<T>(apiResponse: ApiResponse<T>): T;
2599
2654
 
2600
- export { type AmountMultInterval, type AmountTwoBorder, type ApiClient, type ApiResponse, type ApproveErc20SpendingToWrapper, type ApproveErc721SpendingToWrapper, type ApproveSaleRequestSchema, type ApproveWrapperRequestSchema, type BalancesResponseSchema, type ClientOptions, type CompleteSaleRequestSchema, type CreateFractionsRequestSchema, type DeployMarketRequestSchema, type Erc20Input, type Erc20Reward, type Erc721Meta, type EstimateGasResponse, type GetGeneralBalanceData, type GetGeneralBalanceError, type GetGeneralBalanceErrors, type GetGeneralBalanceResponse, type GetGeneralBalanceResponses, type GetStakingPlatformsGetV0Data, type GetStakingPlatformsGetV0Error, type GetStakingPlatformsGetV0Errors, type GetStakingPlatformsGetV0Response, type GetStakingPlatformsGetV0Responses, type GetStakingPoolsGetPoolV0Data, type GetStakingPoolsGetPoolV0Error, type GetStakingPoolsGetPoolV0Errors, type GetStakingPoolsGetPoolV0Response, type GetStakingPoolsGetPoolV0Responses, type GetStakingRolesGetRolesV0Data, type GetStakingRolesGetRolesV0Error, type GetStakingRolesGetRolesV0Errors, type GetStakingRolesGetRolesV0Response, type GetStakingRolesGetRolesV0Responses, type GetStakingStakesGetStakeV0Data, type GetStakingStakesGetStakeV0Error, type GetStakingStakesGetStakeV0Errors, type GetStakingStakesGetStakeV0Response, type GetStakingStakesGetStakeV0Responses, type GetStakingTemplatesReputationLockV0GetCreatePoolEventData, type GetStakingTemplatesReputationLockV0GetCreatePoolEventError, type GetStakingTemplatesReputationLockV0GetCreatePoolEventErrors, type GetStakingTemplatesReputationLockV0GetCreatePoolEventResponse, type GetStakingTemplatesReputationLockV0GetCreatePoolEventResponses, type GetStakingTemplatesReputationLockV0GetPlatformDeployEventData, type GetStakingTemplatesReputationLockV0GetPlatformDeployEventError, type GetStakingTemplatesReputationLockV0GetPlatformDeployEventErrors, type GetStakingTemplatesReputationLockV0GetPlatformDeployEventResponse, type GetStakingTemplatesReputationLockV0GetPlatformDeployEventResponses, type GetStakingTemplatesReputationLockV0GetStakeEventData, type GetStakingTemplatesReputationLockV0GetStakeEventError, type GetStakingTemplatesReputationLockV0GetStakeEventErrors, type GetStakingTemplatesReputationLockV0GetStakeEventResponse, type GetStakingTemplatesReputationLockV0GetStakeEventResponses, type GetStakingTemplatesReputationV0GetCreatePoolEventData, type GetStakingTemplatesReputationV0GetCreatePoolEventError, type GetStakingTemplatesReputationV0GetCreatePoolEventErrors, type GetStakingTemplatesReputationV0GetCreatePoolEventResponse, type GetStakingTemplatesReputationV0GetCreatePoolEventResponses, type GetStakingTemplatesReputationV0GetPlatformDeployEventData, type GetStakingTemplatesReputationV0GetPlatformDeployEventError, type GetStakingTemplatesReputationV0GetPlatformDeployEventErrors, type GetStakingTemplatesReputationV0GetPlatformDeployEventResponse, type GetStakingTemplatesReputationV0GetPlatformDeployEventResponses, type GetStakingTemplatesReputationV0GetStakeEventData, type GetStakingTemplatesReputationV0GetStakeEventError, type GetStakingTemplatesReputationV0GetStakeEventErrors, type GetStakingTemplatesReputationV0GetStakeEventResponse, type GetStakingTemplatesReputationV0GetStakeEventResponses, type GetStakingTemplatesRwaV0GetCreatePoolEventData, type GetStakingTemplatesRwaV0GetCreatePoolEventError, type GetStakingTemplatesRwaV0GetCreatePoolEventErrors, type GetStakingTemplatesRwaV0GetCreatePoolEventResponse, type GetStakingTemplatesRwaV0GetCreatePoolEventResponses, type GetStakingTemplatesRwaV0GetPlatformDeployEventData, type GetStakingTemplatesRwaV0GetPlatformDeployEventError, type GetStakingTemplatesRwaV0GetPlatformDeployEventErrors, type GetStakingTemplatesRwaV0GetPlatformDeployEventResponse, type GetStakingTemplatesRwaV0GetPlatformDeployEventResponses, type GetStakingTemplatesRwaV0GetStakeEventData, type GetStakingTemplatesRwaV0GetStakeEventError, type GetStakingTemplatesRwaV0GetStakeEventErrors, type GetStakingTemplatesRwaV0GetStakeEventResponse, type GetStakingTemplatesRwaV0GetStakeEventResponses, type GetV0FractionsFractionsGetFractionsCreatedEventData, type GetV0FractionsFractionsGetFractionsCreatedEventError, type GetV0FractionsFractionsGetFractionsCreatedEventErrors, type GetV0FractionsFractionsGetFractionsCreatedEventResponse, type GetV0FractionsFractionsGetFractionsCreatedEventResponses, type GetV0FractionsMarketsDeployEventData, type GetV0FractionsMarketsDeployEventError, type GetV0FractionsMarketsDeployEventErrors, type GetV0FractionsMarketsDeployEventResponse, type GetV0FractionsMarketsDeployEventResponses, type GetV0FractionsMarketsGetData, type GetV0FractionsMarketsGetError, type GetV0FractionsMarketsGetErrors, type GetV0FractionsMarketsGetResponse, type GetV0FractionsMarketsGetResponses, type GetV0FractionsRolesData, type GetV0FractionsRolesError, type GetV0FractionsRolesErrors, type GetV0FractionsRolesResponse, type GetV0FractionsRolesResponses, type GrantMarketRoleRequestSchema, type IApiConfig, type IEnv, type IEnvName, type LockMultInterval, type LockTwoBorder, type PageRequest, type Platform, type Pool, type PostGeneralBalancesData, type PostGeneralBalancesError, type PostGeneralBalancesErrors, type PostGeneralBalancesResponse, type PostGeneralBalancesResponses, type PostGeneralEstimateGasData, type PostGeneralEstimateGasError, type PostGeneralEstimateGasErrors, type PostGeneralEstimateGasResponse, type PostGeneralEstimateGasResponses, type PostGeneralSearchBalancesData, type PostGeneralSearchBalancesError, type PostGeneralSearchBalancesErrors, type PostGeneralSearchBalancesResponse, type PostGeneralSearchBalancesResponses, type PostStakingPlatformsSearchV0Data, type PostStakingPlatformsSearchV0Error, type PostStakingPlatformsSearchV0Errors, type PostStakingPlatformsSearchV0Response, type PostStakingPlatformsSearchV0Responses, type PostStakingPoolsSearchPoolsV0Data, type PostStakingPoolsSearchPoolsV0Error, type PostStakingPoolsSearchPoolsV0Errors, type PostStakingPoolsSearchPoolsV0Response, type PostStakingPoolsSearchPoolsV0Responses, type PostStakingRolesGrantRoleV0Data, type PostStakingRolesGrantRoleV0Error, type PostStakingRolesGrantRoleV0Errors, type PostStakingRolesGrantRoleV0Response, type PostStakingRolesGrantRoleV0Responses, type PostStakingRolesSearchRoleEventsV0Data, type PostStakingRolesSearchRoleEventsV0Error, type PostStakingRolesSearchRoleEventsV0Errors, type PostStakingRolesSearchRoleEventsV0Response, type PostStakingRolesSearchRoleEventsV0Responses, type PostStakingRolesSearchRolesV0Data, type PostStakingRolesSearchRolesV0Error, type PostStakingRolesSearchRolesV0Errors, type PostStakingRolesSearchRolesV0Response, type PostStakingRolesSearchRolesV0Responses, type PostStakingStakesSearchStakeEventsV0Data, type PostStakingStakesSearchStakeEventsV0Error, type PostStakingStakesSearchStakeEventsV0Errors, type PostStakingStakesSearchStakeEventsV0Response, type PostStakingStakesSearchStakeEventsV0Responses, type PostStakingStakesSearchStakesV0Data, type PostStakingStakesSearchStakesV0Error, type PostStakingStakesSearchStakesV0Errors, type PostStakingStakesSearchStakesV0Response, type PostStakingStakesSearchStakesV0Responses, type PostStakingTemplatesReputationLockV0CreatePlatformData, type PostStakingTemplatesReputationLockV0CreatePlatformError, type PostStakingTemplatesReputationLockV0CreatePlatformErrors, type PostStakingTemplatesReputationLockV0CreatePlatformResponse, type PostStakingTemplatesReputationLockV0CreatePlatformResponses, type PostStakingTemplatesReputationLockV0CreatePoolData, type PostStakingTemplatesReputationLockV0CreatePoolError, type PostStakingTemplatesReputationLockV0CreatePoolErrors, type PostStakingTemplatesReputationLockV0CreatePoolResponse, type PostStakingTemplatesReputationLockV0CreatePoolResponses, type PostStakingTemplatesReputationLockV0GetRewardData, type PostStakingTemplatesReputationLockV0GetRewardError, type PostStakingTemplatesReputationLockV0GetRewardErrors, type PostStakingTemplatesReputationLockV0GetRewardResponse, type PostStakingTemplatesReputationLockV0GetRewardResponses, type PostStakingTemplatesReputationLockV0PartialUnstakeData, type PostStakingTemplatesReputationLockV0PartialUnstakeError, type PostStakingTemplatesReputationLockV0PartialUnstakeErrors, type PostStakingTemplatesReputationLockV0PartialUnstakeResponse, type PostStakingTemplatesReputationLockV0PartialUnstakeResponses, type PostStakingTemplatesReputationLockV0RestakeData, type PostStakingTemplatesReputationLockV0RestakeError, type PostStakingTemplatesReputationLockV0RestakeErrors, type PostStakingTemplatesReputationLockV0RestakeResponse, type PostStakingTemplatesReputationLockV0RestakeResponses, type PostStakingTemplatesReputationLockV0StakeData, type PostStakingTemplatesReputationLockV0StakeError, type PostStakingTemplatesReputationLockV0StakeErrors, type PostStakingTemplatesReputationLockV0StakeResponse, type PostStakingTemplatesReputationLockV0StakeResponses, type PostStakingTemplatesReputationLockV0UnstakeData, type PostStakingTemplatesReputationLockV0UnstakeError, type PostStakingTemplatesReputationLockV0UnstakeErrors, type PostStakingTemplatesReputationLockV0UnstakeResponse, type PostStakingTemplatesReputationLockV0UnstakeResponses, type PostStakingTemplatesReputationV0CreatePlatformData, type PostStakingTemplatesReputationV0CreatePlatformError, type PostStakingTemplatesReputationV0CreatePlatformErrors, type PostStakingTemplatesReputationV0CreatePlatformResponse, type PostStakingTemplatesReputationV0CreatePlatformResponses, type PostStakingTemplatesReputationV0CreatePoolData, type PostStakingTemplatesReputationV0CreatePoolError, type PostStakingTemplatesReputationV0CreatePoolErrors, type PostStakingTemplatesReputationV0CreatePoolResponse, type PostStakingTemplatesReputationV0CreatePoolResponses, type PostStakingTemplatesReputationV0GetRewardData, type PostStakingTemplatesReputationV0GetRewardError, type PostStakingTemplatesReputationV0GetRewardErrors, type PostStakingTemplatesReputationV0GetRewardResponse, type PostStakingTemplatesReputationV0GetRewardResponses, type PostStakingTemplatesReputationV0PartialUnstakeData, type PostStakingTemplatesReputationV0PartialUnstakeError, type PostStakingTemplatesReputationV0PartialUnstakeErrors, type PostStakingTemplatesReputationV0PartialUnstakeResponse, type PostStakingTemplatesReputationV0PartialUnstakeResponses, type PostStakingTemplatesReputationV0RestakeData, type PostStakingTemplatesReputationV0RestakeError, type PostStakingTemplatesReputationV0RestakeErrors, type PostStakingTemplatesReputationV0RestakeResponse, type PostStakingTemplatesReputationV0RestakeResponses, type PostStakingTemplatesReputationV0StakeData, type PostStakingTemplatesReputationV0StakeError, type PostStakingTemplatesReputationV0StakeErrors, type PostStakingTemplatesReputationV0StakeResponse, type PostStakingTemplatesReputationV0StakeResponses, type PostStakingTemplatesReputationV0UnstakeData, type PostStakingTemplatesReputationV0UnstakeError, type PostStakingTemplatesReputationV0UnstakeErrors, type PostStakingTemplatesReputationV0UnstakeResponse, type PostStakingTemplatesReputationV0UnstakeResponses, type PostStakingTemplatesRwaV0CreatePlatformData, type PostStakingTemplatesRwaV0CreatePlatformError, type PostStakingTemplatesRwaV0CreatePlatformErrors, type PostStakingTemplatesRwaV0CreatePlatformResponse, type PostStakingTemplatesRwaV0CreatePlatformResponses, type PostStakingTemplatesRwaV0CreatePoolData, type PostStakingTemplatesRwaV0CreatePoolError, type PostStakingTemplatesRwaV0CreatePoolErrors, type PostStakingTemplatesRwaV0CreatePoolResponse, type PostStakingTemplatesRwaV0CreatePoolResponses, type PostStakingTemplatesRwaV0GetRewardData, type PostStakingTemplatesRwaV0GetRewardError, type PostStakingTemplatesRwaV0GetRewardErrors, type PostStakingTemplatesRwaV0GetRewardResponse, type PostStakingTemplatesRwaV0GetRewardResponses, type PostStakingTemplatesRwaV0NotifyRewardsData, type PostStakingTemplatesRwaV0NotifyRewardsError, type PostStakingTemplatesRwaV0NotifyRewardsErrors, type PostStakingTemplatesRwaV0NotifyRewardsResponse, type PostStakingTemplatesRwaV0NotifyRewardsResponses, type PostStakingTemplatesRwaV0PartialUnstakeData, type PostStakingTemplatesRwaV0PartialUnstakeError, type PostStakingTemplatesRwaV0PartialUnstakeErrors, type PostStakingTemplatesRwaV0PartialUnstakeResponse, type PostStakingTemplatesRwaV0PartialUnstakeResponses, type PostStakingTemplatesRwaV0RestakeData, type PostStakingTemplatesRwaV0RestakeError, type PostStakingTemplatesRwaV0RestakeErrors, type PostStakingTemplatesRwaV0RestakeResponse, type PostStakingTemplatesRwaV0RestakeResponses, type PostStakingTemplatesRwaV0StakeData, type PostStakingTemplatesRwaV0StakeError, type PostStakingTemplatesRwaV0StakeErrors, type PostStakingTemplatesRwaV0StakeResponse, type PostStakingTemplatesRwaV0StakeResponses, type PostStakingTemplatesRwaV0UnstakeData, type PostStakingTemplatesRwaV0UnstakeError, type PostStakingTemplatesRwaV0UnstakeErrors, type PostStakingTemplatesRwaV0UnstakeResponse, type PostStakingTemplatesRwaV0UnstakeResponses, type PostV0FractionsFractionsApproveWrapperAsErc20SpenderData, type PostV0FractionsFractionsApproveWrapperAsErc20SpenderError, type PostV0FractionsFractionsApproveWrapperAsErc20SpenderErrors, type PostV0FractionsFractionsApproveWrapperAsErc20SpenderResponse, type PostV0FractionsFractionsApproveWrapperAsErc20SpenderResponses, type PostV0FractionsFractionsApproveWrapperAsErc721SpenderData, type PostV0FractionsFractionsApproveWrapperAsErc721SpenderError, type PostV0FractionsFractionsApproveWrapperAsErc721SpenderErrors, type PostV0FractionsFractionsApproveWrapperAsErc721SpenderResponse, type PostV0FractionsFractionsApproveWrapperAsErc721SpenderResponses, type PostV0FractionsFractionsApproveWrapperData, type PostV0FractionsFractionsApproveWrapperError, type PostV0FractionsFractionsApproveWrapperErrors, type PostV0FractionsFractionsApproveWrapperResponse, type PostV0FractionsFractionsApproveWrapperResponses, type PostV0FractionsFractionsFractionsData, type PostV0FractionsFractionsFractionsError, type PostV0FractionsFractionsFractionsErrors, type PostV0FractionsFractionsFractionsResponse, type PostV0FractionsFractionsFractionsResponses, type PostV0FractionsMarketsSearchData, type PostV0FractionsMarketsSearchError, type PostV0FractionsMarketsSearchErrors, type PostV0FractionsMarketsSearchResponse, type PostV0FractionsMarketsSearchResponses, type PostV0FractionsPlatformsDeployData, type PostV0FractionsPlatformsDeployError, type PostV0FractionsPlatformsDeployErrors, type PostV0FractionsPlatformsDeployNidData, type PostV0FractionsPlatformsDeployNidError, type PostV0FractionsPlatformsDeployNidErrors, type PostV0FractionsPlatformsDeployNidResponse, type PostV0FractionsPlatformsDeployNidResponses, type PostV0FractionsPlatformsDeployResponse, type PostV0FractionsPlatformsDeployResponses, type PostV0FractionsRolesGrantData, type PostV0FractionsRolesGrantError, type PostV0FractionsRolesGrantErrors, type PostV0FractionsRolesGrantResponse, type PostV0FractionsRolesGrantResponses, type PostV0FractionsSalesApproveData, type PostV0FractionsSalesApproveError, type PostV0FractionsSalesApproveErrors, type PostV0FractionsSalesApproveResponse, type PostV0FractionsSalesApproveResponses, type PostV0FractionsSalesCompleteData, type PostV0FractionsSalesCompleteError, type PostV0FractionsSalesCompleteErrors, type PostV0FractionsSalesCompleteResponse, type PostV0FractionsSalesCompleteResponses, type PostV0FractionsSalesPurchaseData, type PostV0FractionsSalesPurchaseError, type PostV0FractionsSalesPurchaseErrors, type PostV0FractionsSalesPurchaseResponse, type PostV0FractionsSalesPurchaseResponses, type PostV0FractionsSalesWithdrawPaymentTokenData, type PostV0FractionsSalesWithdrawPaymentTokenError, type PostV0FractionsSalesWithdrawPaymentTokenErrors, type PostV0FractionsSalesWithdrawPaymentTokenResponse, type PostV0FractionsSalesWithdrawPaymentTokenResponses, type PurchaseRequestSchema, type RewardDistributionComplex, type Role, type RoleAssignment, type Stake, type StakeEvent, type TokenBalanceSchema, type Transaction, type WithdrawRequestSchema, type ZodError, api, envs, getEnv, handleApiResponse };
2655
+ export { type AmountMultInterval, type AmountTwoBorder, type ApiClient, type ApiResponse, type ApproveErc20SpendingToWrapper, type ApproveErc721SpendingToWrapper, type ApproveSaleRequestSchema, type ApproveWrapperRequestSchema, type BalancesResponseSchema, type ClientOptions, type CompleteSaleRequestSchema, type CreateFractionsRequestSchema, type DeployMarketRequestSchema, type EditCliffRequestSchema, type Erc20Input, type Erc20Reward, type Erc721Meta, type EstimateGasResponse, type GetGeneralBalanceData, type GetGeneralBalanceError, type GetGeneralBalanceErrors, type GetGeneralBalanceResponse, type GetGeneralBalanceResponses, type GetStakingPlatformsGetV0Data, type GetStakingPlatformsGetV0Error, type GetStakingPlatformsGetV0Errors, type GetStakingPlatformsGetV0Response, type GetStakingPlatformsGetV0Responses, type GetStakingPoolsGetPoolV0Data, type GetStakingPoolsGetPoolV0Error, type GetStakingPoolsGetPoolV0Errors, type GetStakingPoolsGetPoolV0Response, type GetStakingPoolsGetPoolV0Responses, type GetStakingRolesGetRolesV0Data, type GetStakingRolesGetRolesV0Error, type GetStakingRolesGetRolesV0Errors, type GetStakingRolesGetRolesV0Response, type GetStakingRolesGetRolesV0Responses, type GetStakingStakesGetStakeV0Data, type GetStakingStakesGetStakeV0Error, type GetStakingStakesGetStakeV0Errors, type GetStakingStakesGetStakeV0Response, type GetStakingStakesGetStakeV0Responses, type GetStakingTemplatesReputationLockV0GetCreatePoolEventData, type GetStakingTemplatesReputationLockV0GetCreatePoolEventError, type GetStakingTemplatesReputationLockV0GetCreatePoolEventErrors, type GetStakingTemplatesReputationLockV0GetCreatePoolEventResponse, type GetStakingTemplatesReputationLockV0GetCreatePoolEventResponses, type GetStakingTemplatesReputationLockV0GetPlatformDeployEventData, type GetStakingTemplatesReputationLockV0GetPlatformDeployEventError, type GetStakingTemplatesReputationLockV0GetPlatformDeployEventErrors, type GetStakingTemplatesReputationLockV0GetPlatformDeployEventResponse, type GetStakingTemplatesReputationLockV0GetPlatformDeployEventResponses, type GetStakingTemplatesReputationLockV0GetStakeEventData, type GetStakingTemplatesReputationLockV0GetStakeEventError, type GetStakingTemplatesReputationLockV0GetStakeEventErrors, type GetStakingTemplatesReputationLockV0GetStakeEventResponse, type GetStakingTemplatesReputationLockV0GetStakeEventResponses, type GetStakingTemplatesReputationV0GetCreatePoolEventData, type GetStakingTemplatesReputationV0GetCreatePoolEventError, type GetStakingTemplatesReputationV0GetCreatePoolEventErrors, type GetStakingTemplatesReputationV0GetCreatePoolEventResponse, type GetStakingTemplatesReputationV0GetCreatePoolEventResponses, type GetStakingTemplatesReputationV0GetPlatformDeployEventData, type GetStakingTemplatesReputationV0GetPlatformDeployEventError, type GetStakingTemplatesReputationV0GetPlatformDeployEventErrors, type GetStakingTemplatesReputationV0GetPlatformDeployEventResponse, type GetStakingTemplatesReputationV0GetPlatformDeployEventResponses, type GetStakingTemplatesReputationV0GetStakeEventData, type GetStakingTemplatesReputationV0GetStakeEventError, type GetStakingTemplatesReputationV0GetStakeEventErrors, type GetStakingTemplatesReputationV0GetStakeEventResponse, type GetStakingTemplatesReputationV0GetStakeEventResponses, type GetStakingTemplatesRwaV0GetCreatePoolEventData, type GetStakingTemplatesRwaV0GetCreatePoolEventError, type GetStakingTemplatesRwaV0GetCreatePoolEventErrors, type GetStakingTemplatesRwaV0GetCreatePoolEventResponse, type GetStakingTemplatesRwaV0GetCreatePoolEventResponses, type GetStakingTemplatesRwaV0GetPlatformDeployEventData, type GetStakingTemplatesRwaV0GetPlatformDeployEventError, type GetStakingTemplatesRwaV0GetPlatformDeployEventErrors, type GetStakingTemplatesRwaV0GetPlatformDeployEventResponse, type GetStakingTemplatesRwaV0GetPlatformDeployEventResponses, type GetStakingTemplatesRwaV0GetStakeEventData, type GetStakingTemplatesRwaV0GetStakeEventError, type GetStakingTemplatesRwaV0GetStakeEventErrors, type GetStakingTemplatesRwaV0GetStakeEventResponse, type GetStakingTemplatesRwaV0GetStakeEventResponses, type GetV0FractionsMarketsDeployEventData, type GetV0FractionsMarketsDeployEventError, type GetV0FractionsMarketsDeployEventErrors, type GetV0FractionsMarketsDeployEventResponse, type GetV0FractionsMarketsDeployEventResponses, type GetV0FractionsMarketsGetData, type GetV0FractionsMarketsGetError, type GetV0FractionsMarketsGetErrors, type GetV0FractionsMarketsGetResponse, type GetV0FractionsMarketsGetResponses, type GetV0FractionsRolesData, type GetV0FractionsRolesError, type GetV0FractionsRolesErrors, type GetV0FractionsRolesResponse, type GetV0FractionsRolesResponses, type GetV0FractionsSalesGetFractionsCreatedEventData, type GetV0FractionsSalesGetFractionsCreatedEventError, type GetV0FractionsSalesGetFractionsCreatedEventErrors, type GetV0FractionsSalesGetFractionsCreatedEventResponse, type GetV0FractionsSalesGetFractionsCreatedEventResponses, type GrantMarketRoleRequestSchema, type IApiConfig, type IEnv, type IEnvName, type LockMultInterval, type LockTwoBorder, type PageRequest, type Platform, type Pool, type PostGeneralBalancesData, type PostGeneralBalancesError, type PostGeneralBalancesErrors, type PostGeneralBalancesResponse, type PostGeneralBalancesResponses, type PostGeneralEstimateGasData, type PostGeneralEstimateGasError, type PostGeneralEstimateGasErrors, type PostGeneralEstimateGasResponse, type PostGeneralEstimateGasResponses, type PostGeneralSearchBalancesData, type PostGeneralSearchBalancesError, type PostGeneralSearchBalancesErrors, type PostGeneralSearchBalancesResponse, type PostGeneralSearchBalancesResponses, type PostStakingPlatformsSearchV0Data, type PostStakingPlatformsSearchV0Error, type PostStakingPlatformsSearchV0Errors, type PostStakingPlatformsSearchV0Response, type PostStakingPlatformsSearchV0Responses, type PostStakingPoolsSearchPoolsV0Data, type PostStakingPoolsSearchPoolsV0Error, type PostStakingPoolsSearchPoolsV0Errors, type PostStakingPoolsSearchPoolsV0Response, type PostStakingPoolsSearchPoolsV0Responses, type PostStakingRolesGrantRoleV0Data, type PostStakingRolesGrantRoleV0Error, type PostStakingRolesGrantRoleV0Errors, type PostStakingRolesGrantRoleV0Response, type PostStakingRolesGrantRoleV0Responses, type PostStakingRolesSearchRoleEventsV0Data, type PostStakingRolesSearchRoleEventsV0Error, type PostStakingRolesSearchRoleEventsV0Errors, type PostStakingRolesSearchRoleEventsV0Response, type PostStakingRolesSearchRoleEventsV0Responses, type PostStakingRolesSearchRolesV0Data, type PostStakingRolesSearchRolesV0Error, type PostStakingRolesSearchRolesV0Errors, type PostStakingRolesSearchRolesV0Response, type PostStakingRolesSearchRolesV0Responses, type PostStakingStakesSearchStakeEventsV0Data, type PostStakingStakesSearchStakeEventsV0Error, type PostStakingStakesSearchStakeEventsV0Errors, type PostStakingStakesSearchStakeEventsV0Response, type PostStakingStakesSearchStakeEventsV0Responses, type PostStakingStakesSearchStakesV0Data, type PostStakingStakesSearchStakesV0Error, type PostStakingStakesSearchStakesV0Errors, type PostStakingStakesSearchStakesV0Response, type PostStakingStakesSearchStakesV0Responses, type PostStakingTemplatesReputationLockV0CreatePlatformData, type PostStakingTemplatesReputationLockV0CreatePlatformError, type PostStakingTemplatesReputationLockV0CreatePlatformErrors, type PostStakingTemplatesReputationLockV0CreatePlatformResponse, type PostStakingTemplatesReputationLockV0CreatePlatformResponses, type PostStakingTemplatesReputationLockV0CreatePoolData, type PostStakingTemplatesReputationLockV0CreatePoolError, type PostStakingTemplatesReputationLockV0CreatePoolErrors, type PostStakingTemplatesReputationLockV0CreatePoolResponse, type PostStakingTemplatesReputationLockV0CreatePoolResponses, type PostStakingTemplatesReputationLockV0GetRewardData, type PostStakingTemplatesReputationLockV0GetRewardError, type PostStakingTemplatesReputationLockV0GetRewardErrors, type PostStakingTemplatesReputationLockV0GetRewardResponse, type PostStakingTemplatesReputationLockV0GetRewardResponses, type PostStakingTemplatesReputationLockV0PartialUnstakeData, type PostStakingTemplatesReputationLockV0PartialUnstakeError, type PostStakingTemplatesReputationLockV0PartialUnstakeErrors, type PostStakingTemplatesReputationLockV0PartialUnstakeResponse, type PostStakingTemplatesReputationLockV0PartialUnstakeResponses, type PostStakingTemplatesReputationLockV0RestakeData, type PostStakingTemplatesReputationLockV0RestakeError, type PostStakingTemplatesReputationLockV0RestakeErrors, type PostStakingTemplatesReputationLockV0RestakeResponse, type PostStakingTemplatesReputationLockV0RestakeResponses, type PostStakingTemplatesReputationLockV0StakeData, type PostStakingTemplatesReputationLockV0StakeError, type PostStakingTemplatesReputationLockV0StakeErrors, type PostStakingTemplatesReputationLockV0StakeResponse, type PostStakingTemplatesReputationLockV0StakeResponses, type PostStakingTemplatesReputationLockV0UnstakeData, type PostStakingTemplatesReputationLockV0UnstakeError, type PostStakingTemplatesReputationLockV0UnstakeErrors, type PostStakingTemplatesReputationLockV0UnstakeResponse, type PostStakingTemplatesReputationLockV0UnstakeResponses, type PostStakingTemplatesReputationV0CreatePlatformData, type PostStakingTemplatesReputationV0CreatePlatformError, type PostStakingTemplatesReputationV0CreatePlatformErrors, type PostStakingTemplatesReputationV0CreatePlatformResponse, type PostStakingTemplatesReputationV0CreatePlatformResponses, type PostStakingTemplatesReputationV0CreatePoolData, type PostStakingTemplatesReputationV0CreatePoolError, type PostStakingTemplatesReputationV0CreatePoolErrors, type PostStakingTemplatesReputationV0CreatePoolResponse, type PostStakingTemplatesReputationV0CreatePoolResponses, type PostStakingTemplatesReputationV0GetRewardData, type PostStakingTemplatesReputationV0GetRewardError, type PostStakingTemplatesReputationV0GetRewardErrors, type PostStakingTemplatesReputationV0GetRewardResponse, type PostStakingTemplatesReputationV0GetRewardResponses, type PostStakingTemplatesReputationV0PartialUnstakeData, type PostStakingTemplatesReputationV0PartialUnstakeError, type PostStakingTemplatesReputationV0PartialUnstakeErrors, type PostStakingTemplatesReputationV0PartialUnstakeResponse, type PostStakingTemplatesReputationV0PartialUnstakeResponses, type PostStakingTemplatesReputationV0RestakeData, type PostStakingTemplatesReputationV0RestakeError, type PostStakingTemplatesReputationV0RestakeErrors, type PostStakingTemplatesReputationV0RestakeResponse, type PostStakingTemplatesReputationV0RestakeResponses, type PostStakingTemplatesReputationV0StakeData, type PostStakingTemplatesReputationV0StakeError, type PostStakingTemplatesReputationV0StakeErrors, type PostStakingTemplatesReputationV0StakeResponse, type PostStakingTemplatesReputationV0StakeResponses, type PostStakingTemplatesReputationV0UnstakeData, type PostStakingTemplatesReputationV0UnstakeError, type PostStakingTemplatesReputationV0UnstakeErrors, type PostStakingTemplatesReputationV0UnstakeResponse, type PostStakingTemplatesReputationV0UnstakeResponses, type PostStakingTemplatesRwaV0CreatePlatformData, type PostStakingTemplatesRwaV0CreatePlatformError, type PostStakingTemplatesRwaV0CreatePlatformErrors, type PostStakingTemplatesRwaV0CreatePlatformResponse, type PostStakingTemplatesRwaV0CreatePlatformResponses, type PostStakingTemplatesRwaV0CreatePoolData, type PostStakingTemplatesRwaV0CreatePoolError, type PostStakingTemplatesRwaV0CreatePoolErrors, type PostStakingTemplatesRwaV0CreatePoolResponse, type PostStakingTemplatesRwaV0CreatePoolResponses, type PostStakingTemplatesRwaV0GetRewardData, type PostStakingTemplatesRwaV0GetRewardError, type PostStakingTemplatesRwaV0GetRewardErrors, type PostStakingTemplatesRwaV0GetRewardResponse, type PostStakingTemplatesRwaV0GetRewardResponses, type PostStakingTemplatesRwaV0NotifyRewardsData, type PostStakingTemplatesRwaV0NotifyRewardsError, type PostStakingTemplatesRwaV0NotifyRewardsErrors, type PostStakingTemplatesRwaV0NotifyRewardsResponse, type PostStakingTemplatesRwaV0NotifyRewardsResponses, type PostStakingTemplatesRwaV0PartialUnstakeData, type PostStakingTemplatesRwaV0PartialUnstakeError, type PostStakingTemplatesRwaV0PartialUnstakeErrors, type PostStakingTemplatesRwaV0PartialUnstakeResponse, type PostStakingTemplatesRwaV0PartialUnstakeResponses, type PostStakingTemplatesRwaV0RestakeData, type PostStakingTemplatesRwaV0RestakeError, type PostStakingTemplatesRwaV0RestakeErrors, type PostStakingTemplatesRwaV0RestakeResponse, type PostStakingTemplatesRwaV0RestakeResponses, type PostStakingTemplatesRwaV0StakeData, type PostStakingTemplatesRwaV0StakeError, type PostStakingTemplatesRwaV0StakeErrors, type PostStakingTemplatesRwaV0StakeResponse, type PostStakingTemplatesRwaV0StakeResponses, type PostStakingTemplatesRwaV0UnstakeData, type PostStakingTemplatesRwaV0UnstakeError, type PostStakingTemplatesRwaV0UnstakeErrors, type PostStakingTemplatesRwaV0UnstakeResponse, type PostStakingTemplatesRwaV0UnstakeResponses, type PostV0FractionsFractionsApproveWrapperAsErc20SpenderData, type PostV0FractionsFractionsApproveWrapperAsErc20SpenderError, type PostV0FractionsFractionsApproveWrapperAsErc20SpenderErrors, type PostV0FractionsFractionsApproveWrapperAsErc20SpenderResponse, type PostV0FractionsFractionsApproveWrapperAsErc20SpenderResponses, type PostV0FractionsFractionsApproveWrapperAsErc721SpenderData, type PostV0FractionsFractionsApproveWrapperAsErc721SpenderError, type PostV0FractionsFractionsApproveWrapperAsErc721SpenderErrors, type PostV0FractionsFractionsApproveWrapperAsErc721SpenderResponse, type PostV0FractionsFractionsApproveWrapperAsErc721SpenderResponses, type PostV0FractionsFractionsApproveWrapperData, type PostV0FractionsFractionsApproveWrapperError, type PostV0FractionsFractionsApproveWrapperErrors, type PostV0FractionsFractionsApproveWrapperResponse, type PostV0FractionsFractionsApproveWrapperResponses, type PostV0FractionsMarketsSearchData, type PostV0FractionsMarketsSearchError, type PostV0FractionsMarketsSearchErrors, type PostV0FractionsMarketsSearchResponse, type PostV0FractionsMarketsSearchResponses, type PostV0FractionsPlatformsDeployData, type PostV0FractionsPlatformsDeployError, type PostV0FractionsPlatformsDeployErrors, type PostV0FractionsPlatformsDeployNidData, type PostV0FractionsPlatformsDeployNidError, type PostV0FractionsPlatformsDeployNidErrors, type PostV0FractionsPlatformsDeployNidResponse, type PostV0FractionsPlatformsDeployNidResponses, type PostV0FractionsPlatformsDeployResponse, type PostV0FractionsPlatformsDeployResponses, type PostV0FractionsRolesGrantData, type PostV0FractionsRolesGrantError, type PostV0FractionsRolesGrantErrors, type PostV0FractionsRolesGrantResponse, type PostV0FractionsRolesGrantResponses, type PostV0FractionsSalesApproveData, type PostV0FractionsSalesApproveError, type PostV0FractionsSalesApproveErrors, type PostV0FractionsSalesApproveResponse, type PostV0FractionsSalesApproveResponses, type PostV0FractionsSalesCompleteData, type PostV0FractionsSalesCompleteError, type PostV0FractionsSalesCompleteErrors, type PostV0FractionsSalesCompleteResponse, type PostV0FractionsSalesCompleteResponses, type PostV0FractionsSalesFractionsData, type PostV0FractionsSalesFractionsError, type PostV0FractionsSalesFractionsErrors, type PostV0FractionsSalesFractionsResponse, type PostV0FractionsSalesFractionsResponses, type PostV0FractionsSalesPurchaseData, type PostV0FractionsSalesPurchaseError, type PostV0FractionsSalesPurchaseErrors, type PostV0FractionsSalesPurchaseResponse, type PostV0FractionsSalesPurchaseResponses, type PostV0FractionsSalesRejectData, type PostV0FractionsSalesRejectError, type PostV0FractionsSalesRejectErrors, type PostV0FractionsSalesRejectResponse, type PostV0FractionsSalesRejectResponses, type PostV0FractionsSalesVestingEditCliffData, type PostV0FractionsSalesVestingEditCliffError, type PostV0FractionsSalesVestingEditCliffErrors, type PostV0FractionsSalesVestingEditCliffResponse, type PostV0FractionsSalesVestingEditCliffResponses, type PostV0FractionsSalesWithdrawPaymentTokenData, type PostV0FractionsSalesWithdrawPaymentTokenError, type PostV0FractionsSalesWithdrawPaymentTokenErrors, type PostV0FractionsSalesWithdrawPaymentTokenResponse, type PostV0FractionsSalesWithdrawPaymentTokenResponses, type PurchaseRequestSchema, type RejectFractionsRequestSchema, type RewardDistributionComplex, type Role, type RoleAssignment, type Stake, type StakeEvent, type TokenBalanceSchema, type Transaction, type WithdrawRequestSchema, type ZodError, api, envs, getEnv, handleApiResponse };