@evergonlabs/tmi-protocol-api-client 0.7.0 → 0.7.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +238 -1
- package/dist/index.d.ts +238 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -455,6 +455,7 @@ type PurchaseRequestSchema = {
|
|
|
455
455
|
market: unknown;
|
|
456
456
|
campaignId: bigint;
|
|
457
457
|
amountToBuy: bigint;
|
|
458
|
+
applyDiscount: boolean;
|
|
458
459
|
};
|
|
459
460
|
type WithdrawRequestSchema = {
|
|
460
461
|
market: string;
|
|
@@ -471,6 +472,30 @@ type ClaimVestedTokensRequestSchema = {
|
|
|
471
472
|
amountOfFractions: bigint;
|
|
472
473
|
itToBurn: bigint;
|
|
473
474
|
};
|
|
475
|
+
type SetFeeCapLimitRequestSchema = {
|
|
476
|
+
marketAddress: string;
|
|
477
|
+
campaignId: bigint;
|
|
478
|
+
packetsLimit: bigint;
|
|
479
|
+
};
|
|
480
|
+
type NonceRequestSchema = {
|
|
481
|
+
marketAddress: string;
|
|
482
|
+
userAddress: string;
|
|
483
|
+
/**
|
|
484
|
+
* Supported chain id
|
|
485
|
+
*/
|
|
486
|
+
chainId: '11155111' | '31337';
|
|
487
|
+
};
|
|
488
|
+
type TxAuthDataRequestSchema = {
|
|
489
|
+
marketAddress: string;
|
|
490
|
+
userAddress: string;
|
|
491
|
+
/**
|
|
492
|
+
* Supported chain id
|
|
493
|
+
*/
|
|
494
|
+
chainId: '11155111' | '31337';
|
|
495
|
+
nonce: bigint;
|
|
496
|
+
blockExpiration: bigint;
|
|
497
|
+
callData: unknown;
|
|
498
|
+
};
|
|
474
499
|
type EstimateGasResponse = {
|
|
475
500
|
/**
|
|
476
501
|
* Amount of gas (in WEI) that is needed for specified transaction
|
|
@@ -480,6 +505,7 @@ type EstimateGasResponse = {
|
|
|
480
505
|
type TokenBalanceSchema = {
|
|
481
506
|
address: string;
|
|
482
507
|
totalBalance: string;
|
|
508
|
+
tokenId?: bigint;
|
|
483
509
|
name: string | null;
|
|
484
510
|
symbol: string | null;
|
|
485
511
|
decimals: string | null;
|
|
@@ -2228,6 +2254,7 @@ type GetV0FractionsSalesGetFractionsCreatedEventResponses = {
|
|
|
2228
2254
|
*/
|
|
2229
2255
|
campaignId: bigint;
|
|
2230
2256
|
fractionsCreated: bigint;
|
|
2257
|
+
fractionsAddress: string;
|
|
2231
2258
|
};
|
|
2232
2259
|
};
|
|
2233
2260
|
type GetV0FractionsSalesGetFractionsCreatedEventResponse = GetV0FractionsSalesGetFractionsCreatedEventResponses[keyof GetV0FractionsSalesGetFractionsCreatedEventResponses];
|
|
@@ -2408,6 +2435,190 @@ type PostV0FractionsSalesSearchResponses = {
|
|
|
2408
2435
|
200: Array<StakeEvent>;
|
|
2409
2436
|
};
|
|
2410
2437
|
type PostV0FractionsSalesSearchResponse = PostV0FractionsSalesSearchResponses[keyof PostV0FractionsSalesSearchResponses];
|
|
2438
|
+
type PostV0FractionsSalesSetFeeCapLimitData = {
|
|
2439
|
+
body?: SetFeeCapLimitRequestSchema;
|
|
2440
|
+
path?: never;
|
|
2441
|
+
query?: never;
|
|
2442
|
+
url: '/v0/fractions/sales/setFeeCapLimit';
|
|
2443
|
+
};
|
|
2444
|
+
type PostV0FractionsSalesSetFeeCapLimitErrors = {
|
|
2445
|
+
/**
|
|
2446
|
+
* Zod Error
|
|
2447
|
+
*/
|
|
2448
|
+
400: ZodError;
|
|
2449
|
+
};
|
|
2450
|
+
type PostV0FractionsSalesSetFeeCapLimitError = PostV0FractionsSalesSetFeeCapLimitErrors[keyof PostV0FractionsSalesSetFeeCapLimitErrors];
|
|
2451
|
+
type PostV0FractionsSalesSetFeeCapLimitResponses = {
|
|
2452
|
+
/**
|
|
2453
|
+
* Returns transaction data for setting the fee cap limit
|
|
2454
|
+
*/
|
|
2455
|
+
200: Transaction;
|
|
2456
|
+
};
|
|
2457
|
+
type PostV0FractionsSalesSetFeeCapLimitResponse = PostV0FractionsSalesSetFeeCapLimitResponses[keyof PostV0FractionsSalesSetFeeCapLimitResponses];
|
|
2458
|
+
type PostV0FractionsSigNonceData = {
|
|
2459
|
+
body?: NonceRequestSchema;
|
|
2460
|
+
path?: never;
|
|
2461
|
+
query?: never;
|
|
2462
|
+
url: '/v0/fractions/sig/nonce';
|
|
2463
|
+
};
|
|
2464
|
+
type PostV0FractionsSigNonceErrors = {
|
|
2465
|
+
/**
|
|
2466
|
+
* Zod Error
|
|
2467
|
+
*/
|
|
2468
|
+
400: ZodError;
|
|
2469
|
+
};
|
|
2470
|
+
type PostV0FractionsSigNonceError = PostV0FractionsSigNonceErrors[keyof PostV0FractionsSigNonceErrors];
|
|
2471
|
+
type PostV0FractionsSigNonceResponses = {
|
|
2472
|
+
/**
|
|
2473
|
+
* Returns transaction data for approving a sale
|
|
2474
|
+
*/
|
|
2475
|
+
200: {
|
|
2476
|
+
marketAddress: string;
|
|
2477
|
+
userAddress: string;
|
|
2478
|
+
/**
|
|
2479
|
+
* Supported chain id
|
|
2480
|
+
*/
|
|
2481
|
+
chainId: '11155111' | '31337';
|
|
2482
|
+
};
|
|
2483
|
+
};
|
|
2484
|
+
type PostV0FractionsSigNonceResponse = PostV0FractionsSigNonceResponses[keyof PostV0FractionsSigNonceResponses];
|
|
2485
|
+
type PostV0FractionsSigAuthDataData = {
|
|
2486
|
+
body?: TxAuthDataRequestSchema;
|
|
2487
|
+
path?: never;
|
|
2488
|
+
query?: never;
|
|
2489
|
+
url: '/v0/fractions/sig/authData';
|
|
2490
|
+
};
|
|
2491
|
+
type PostV0FractionsSigAuthDataErrors = {
|
|
2492
|
+
/**
|
|
2493
|
+
* Zod Error
|
|
2494
|
+
*/
|
|
2495
|
+
400: ZodError;
|
|
2496
|
+
};
|
|
2497
|
+
type PostV0FractionsSigAuthDataError = PostV0FractionsSigAuthDataErrors[keyof PostV0FractionsSigAuthDataErrors];
|
|
2498
|
+
type PostV0FractionsSigAuthDataResponses = {
|
|
2499
|
+
/**
|
|
2500
|
+
* Returns TX auth data
|
|
2501
|
+
*/
|
|
2502
|
+
200: {
|
|
2503
|
+
marketAddress: string;
|
|
2504
|
+
userAddress: string;
|
|
2505
|
+
/**
|
|
2506
|
+
* Supported chain id
|
|
2507
|
+
*/
|
|
2508
|
+
chainId: '11155111' | '31337';
|
|
2509
|
+
nonce: bigint;
|
|
2510
|
+
blockExpiration: bigint;
|
|
2511
|
+
callData: unknown;
|
|
2512
|
+
};
|
|
2513
|
+
};
|
|
2514
|
+
type PostV0FractionsSigAuthDataResponse = PostV0FractionsSigAuthDataResponses[keyof PostV0FractionsSigAuthDataResponses];
|
|
2515
|
+
type GetV0FractionsCompilotErc20Data = {
|
|
2516
|
+
body?: never;
|
|
2517
|
+
path?: never;
|
|
2518
|
+
query?: never;
|
|
2519
|
+
url: '/v0/fractions/compilot/erc20';
|
|
2520
|
+
};
|
|
2521
|
+
type GetV0FractionsCompilotErc20Errors = {
|
|
2522
|
+
/**
|
|
2523
|
+
* Zod Error
|
|
2524
|
+
*/
|
|
2525
|
+
400: ZodError;
|
|
2526
|
+
};
|
|
2527
|
+
type GetV0FractionsCompilotErc20Error = GetV0FractionsCompilotErc20Errors[keyof GetV0FractionsCompilotErc20Errors];
|
|
2528
|
+
type GetV0FractionsCompilotErc20Responses = {
|
|
2529
|
+
/**
|
|
2530
|
+
* Returns transaction data for deploying a gated ERC20
|
|
2531
|
+
*/
|
|
2532
|
+
200: {
|
|
2533
|
+
bytecode: unknown;
|
|
2534
|
+
/**
|
|
2535
|
+
* ABI of a contract.
|
|
2536
|
+
*/
|
|
2537
|
+
abi: Array<unknown>;
|
|
2538
|
+
};
|
|
2539
|
+
};
|
|
2540
|
+
type GetV0FractionsCompilotErc20Response = GetV0FractionsCompilotErc20Responses[keyof GetV0FractionsCompilotErc20Responses];
|
|
2541
|
+
type PostV0FractionsCompilotErc20MintData = {
|
|
2542
|
+
body?: {
|
|
2543
|
+
tokenAddress: string;
|
|
2544
|
+
amount: bigint;
|
|
2545
|
+
mintTo: string;
|
|
2546
|
+
};
|
|
2547
|
+
path?: never;
|
|
2548
|
+
query?: never;
|
|
2549
|
+
url: '/v0/fractions/compilot/erc20/mint';
|
|
2550
|
+
};
|
|
2551
|
+
type PostV0FractionsCompilotErc20MintErrors = {
|
|
2552
|
+
/**
|
|
2553
|
+
* Zod Error
|
|
2554
|
+
*/
|
|
2555
|
+
400: ZodError;
|
|
2556
|
+
};
|
|
2557
|
+
type PostV0FractionsCompilotErc20MintError = PostV0FractionsCompilotErc20MintErrors[keyof PostV0FractionsCompilotErc20MintErrors];
|
|
2558
|
+
type PostV0FractionsCompilotErc20MintResponses = {
|
|
2559
|
+
/**
|
|
2560
|
+
* Returns transaction data for minting a gated ERC20
|
|
2561
|
+
*/
|
|
2562
|
+
200: Transaction;
|
|
2563
|
+
};
|
|
2564
|
+
type PostV0FractionsCompilotErc20MintResponse = PostV0FractionsCompilotErc20MintResponses[keyof PostV0FractionsCompilotErc20MintResponses];
|
|
2565
|
+
type PostV0FractionsCompilotErc20BurnData = {
|
|
2566
|
+
body?: {
|
|
2567
|
+
tokenAddress: string;
|
|
2568
|
+
amount: bigint;
|
|
2569
|
+
burnFrom: string;
|
|
2570
|
+
};
|
|
2571
|
+
path?: never;
|
|
2572
|
+
query?: never;
|
|
2573
|
+
url: '/v0/fractions/compilot/erc20/burn';
|
|
2574
|
+
};
|
|
2575
|
+
type PostV0FractionsCompilotErc20BurnErrors = {
|
|
2576
|
+
/**
|
|
2577
|
+
* Zod Error
|
|
2578
|
+
*/
|
|
2579
|
+
400: ZodError;
|
|
2580
|
+
};
|
|
2581
|
+
type PostV0FractionsCompilotErc20BurnError = PostV0FractionsCompilotErc20BurnErrors[keyof PostV0FractionsCompilotErc20BurnErrors];
|
|
2582
|
+
type PostV0FractionsCompilotErc20BurnResponses = {
|
|
2583
|
+
/**
|
|
2584
|
+
* Returns transaction data for burning a gated ERC20
|
|
2585
|
+
*/
|
|
2586
|
+
200: Transaction;
|
|
2587
|
+
};
|
|
2588
|
+
type PostV0FractionsCompilotErc20BurnResponse = PostV0FractionsCompilotErc20BurnResponses[keyof PostV0FractionsCompilotErc20BurnResponses];
|
|
2589
|
+
type PostV0FractionsCompilotErc20ProxyData = {
|
|
2590
|
+
body?: {
|
|
2591
|
+
erc20Address: string;
|
|
2592
|
+
tokenName: string;
|
|
2593
|
+
tokenSymbol: string;
|
|
2594
|
+
cap: bigint;
|
|
2595
|
+
defaultAdmin: string;
|
|
2596
|
+
minter: string;
|
|
2597
|
+
};
|
|
2598
|
+
path?: never;
|
|
2599
|
+
query?: never;
|
|
2600
|
+
url: '/v0/fractions/compilot/erc20/proxy';
|
|
2601
|
+
};
|
|
2602
|
+
type PostV0FractionsCompilotErc20ProxyErrors = {
|
|
2603
|
+
/**
|
|
2604
|
+
* Zod Error
|
|
2605
|
+
*/
|
|
2606
|
+
400: ZodError;
|
|
2607
|
+
};
|
|
2608
|
+
type PostV0FractionsCompilotErc20ProxyError = PostV0FractionsCompilotErc20ProxyErrors[keyof PostV0FractionsCompilotErc20ProxyErrors];
|
|
2609
|
+
type PostV0FractionsCompilotErc20ProxyResponses = {
|
|
2610
|
+
/**
|
|
2611
|
+
* Returns transaction data for deploying a ERC1967Proxy
|
|
2612
|
+
*/
|
|
2613
|
+
200: {
|
|
2614
|
+
bytecode: unknown;
|
|
2615
|
+
/**
|
|
2616
|
+
* ABI of a contract.
|
|
2617
|
+
*/
|
|
2618
|
+
abi: Array<unknown>;
|
|
2619
|
+
};
|
|
2620
|
+
};
|
|
2621
|
+
type PostV0FractionsCompilotErc20ProxyResponse = PostV0FractionsCompilotErc20ProxyResponses[keyof PostV0FractionsCompilotErc20ProxyResponses];
|
|
2411
2622
|
type PostGeneralEstimateGasData = {
|
|
2412
2623
|
body?: {
|
|
2413
2624
|
/**
|
|
@@ -2699,6 +2910,7 @@ declare const api: {
|
|
|
2699
2910
|
nftId: bigint;
|
|
2700
2911
|
campaignId: bigint;
|
|
2701
2912
|
fractionsCreated: bigint;
|
|
2913
|
+
fractionsAddress: string;
|
|
2702
2914
|
}, ZodError, ThrowOnError>;
|
|
2703
2915
|
search: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsSalesSearchData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<StakeEvent[], ZodError, ThrowOnError>;
|
|
2704
2916
|
vesting: {
|
|
@@ -2711,6 +2923,31 @@ declare const api: {
|
|
|
2711
2923
|
approveWrapperToSpendErc20: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsFractionsApproveWrapperAsErc20SpenderData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<Transaction, ZodError, ThrowOnError>;
|
|
2712
2924
|
approveWrapperToSpendErc721: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsFractionsApproveWrapperAsErc721SpenderData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<Transaction, ZodError, ThrowOnError>;
|
|
2713
2925
|
};
|
|
2926
|
+
compilot: {
|
|
2927
|
+
getAuthData: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsSigAuthDataData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
|
|
2928
|
+
marketAddress: string;
|
|
2929
|
+
userAddress: string;
|
|
2930
|
+
chainId: "11155111" | "31337";
|
|
2931
|
+
nonce: bigint;
|
|
2932
|
+
blockExpiration: bigint;
|
|
2933
|
+
callData: unknown;
|
|
2934
|
+
}, ZodError, ThrowOnError>;
|
|
2935
|
+
getNonce: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsSigNonceData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
|
|
2936
|
+
marketAddress: string;
|
|
2937
|
+
userAddress: string;
|
|
2938
|
+
chainId: "11155111" | "31337";
|
|
2939
|
+
}, ZodError, ThrowOnError>;
|
|
2940
|
+
erc20: <ThrowOnError extends boolean = false>(options?: Options<GetV0FractionsCompilotErc20Data, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
|
|
2941
|
+
bytecode: unknown;
|
|
2942
|
+
abi: Array<unknown>;
|
|
2943
|
+
}, ZodError, ThrowOnError>;
|
|
2944
|
+
erc1967Proxy: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsCompilotErc20ProxyData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
|
|
2945
|
+
bytecode: unknown;
|
|
2946
|
+
abi: Array<unknown>;
|
|
2947
|
+
}, ZodError, ThrowOnError>;
|
|
2948
|
+
erc20Mint: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsCompilotErc20MintData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<Transaction, ZodError, ThrowOnError>;
|
|
2949
|
+
erc20Burn: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsCompilotErc20BurnData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<Transaction, ZodError, ThrowOnError>;
|
|
2950
|
+
};
|
|
2714
2951
|
};
|
|
2715
2952
|
};
|
|
2716
2953
|
type ApiClient = ReturnType<(typeof api)["createClient"]>;
|
|
@@ -2724,4 +2961,4 @@ type ApiResponse<T> = {
|
|
|
2724
2961
|
};
|
|
2725
2962
|
declare function handleApiResponse<T>(apiResponse: ApiResponse<T>): T;
|
|
2726
2963
|
|
|
2727
|
-
export { type AmountMultInterval, type AmountTwoBorder, type ApiClient, type ApiResponse, type ApproveErc20SpendingToWrapper, type ApproveErc721SpendingToWrapper, type ApproveSaleRequestSchema, type ApproveWrapperRequestSchema, type BalancesResponseSchema, type ClaimVestedTokensRequestSchema, 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 PostV0FractionsSalesSearchData, type PostV0FractionsSalesSearchError, type PostV0FractionsSalesSearchErrors, type PostV0FractionsSalesSearchResponse, type PostV0FractionsSalesSearchResponses, type PostV0FractionsSalesVestingClaimData, type PostV0FractionsSalesVestingClaimError, type PostV0FractionsSalesVestingClaimErrors, type PostV0FractionsSalesVestingClaimResponse, type PostV0FractionsSalesVestingClaimResponses, 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 };
|
|
2964
|
+
export { type AmountMultInterval, type AmountTwoBorder, type ApiClient, type ApiResponse, type ApproveErc20SpendingToWrapper, type ApproveErc721SpendingToWrapper, type ApproveSaleRequestSchema, type ApproveWrapperRequestSchema, type BalancesResponseSchema, type ClaimVestedTokensRequestSchema, 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 GetV0FractionsCompilotErc20Data, type GetV0FractionsCompilotErc20Error, type GetV0FractionsCompilotErc20Errors, type GetV0FractionsCompilotErc20Response, type GetV0FractionsCompilotErc20Responses, 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 NonceRequestSchema, 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 PostV0FractionsCompilotErc20BurnData, type PostV0FractionsCompilotErc20BurnError, type PostV0FractionsCompilotErc20BurnErrors, type PostV0FractionsCompilotErc20BurnResponse, type PostV0FractionsCompilotErc20BurnResponses, type PostV0FractionsCompilotErc20MintData, type PostV0FractionsCompilotErc20MintError, type PostV0FractionsCompilotErc20MintErrors, type PostV0FractionsCompilotErc20MintResponse, type PostV0FractionsCompilotErc20MintResponses, type PostV0FractionsCompilotErc20ProxyData, type PostV0FractionsCompilotErc20ProxyError, type PostV0FractionsCompilotErc20ProxyErrors, type PostV0FractionsCompilotErc20ProxyResponse, type PostV0FractionsCompilotErc20ProxyResponses, 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 PostV0FractionsSalesSearchData, type PostV0FractionsSalesSearchError, type PostV0FractionsSalesSearchErrors, type PostV0FractionsSalesSearchResponse, type PostV0FractionsSalesSearchResponses, type PostV0FractionsSalesSetFeeCapLimitData, type PostV0FractionsSalesSetFeeCapLimitError, type PostV0FractionsSalesSetFeeCapLimitErrors, type PostV0FractionsSalesSetFeeCapLimitResponse, type PostV0FractionsSalesSetFeeCapLimitResponses, type PostV0FractionsSalesVestingClaimData, type PostV0FractionsSalesVestingClaimError, type PostV0FractionsSalesVestingClaimErrors, type PostV0FractionsSalesVestingClaimResponse, type PostV0FractionsSalesVestingClaimResponses, type PostV0FractionsSalesVestingEditCliffData, type PostV0FractionsSalesVestingEditCliffError, type PostV0FractionsSalesVestingEditCliffErrors, type PostV0FractionsSalesVestingEditCliffResponse, type PostV0FractionsSalesVestingEditCliffResponses, type PostV0FractionsSalesWithdrawPaymentTokenData, type PostV0FractionsSalesWithdrawPaymentTokenError, type PostV0FractionsSalesWithdrawPaymentTokenErrors, type PostV0FractionsSalesWithdrawPaymentTokenResponse, type PostV0FractionsSalesWithdrawPaymentTokenResponses, type PostV0FractionsSigAuthDataData, type PostV0FractionsSigAuthDataError, type PostV0FractionsSigAuthDataErrors, type PostV0FractionsSigAuthDataResponse, type PostV0FractionsSigAuthDataResponses, type PostV0FractionsSigNonceData, type PostV0FractionsSigNonceError, type PostV0FractionsSigNonceErrors, type PostV0FractionsSigNonceResponse, type PostV0FractionsSigNonceResponses, type PurchaseRequestSchema, type RejectFractionsRequestSchema, type RewardDistributionComplex, type Role, type RoleAssignment, type SetFeeCapLimitRequestSchema, type Stake, type StakeEvent, type TokenBalanceSchema, type Transaction, type TxAuthDataRequestSchema, type WithdrawRequestSchema, type ZodError, api, envs, getEnv, handleApiResponse };
|