@evergonlabs/tmi-protocol-api-client 0.21.2 → 0.21.3
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 +219 -58
- package/dist/index.d.ts +219 -58
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
package/dist/index.d.cts
CHANGED
|
@@ -2683,6 +2683,58 @@ type PostIssuanceErc20DeployResponses = {
|
|
|
2683
2683
|
};
|
|
2684
2684
|
};
|
|
2685
2685
|
type PostIssuanceErc20DeployResponse = PostIssuanceErc20DeployResponses[keyof PostIssuanceErc20DeployResponses];
|
|
2686
|
+
type PostIssuanceErc20InitializeData = {
|
|
2687
|
+
body?: {
|
|
2688
|
+
tokenAddress: string;
|
|
2689
|
+
name: string;
|
|
2690
|
+
symbol: string;
|
|
2691
|
+
cap: string;
|
|
2692
|
+
defaultAdmin: string;
|
|
2693
|
+
minter: string;
|
|
2694
|
+
};
|
|
2695
|
+
path?: never;
|
|
2696
|
+
query?: never;
|
|
2697
|
+
url: '/issuance/erc20/initialize';
|
|
2698
|
+
};
|
|
2699
|
+
type PostIssuanceErc20InitializeResponses = {
|
|
2700
|
+
/**
|
|
2701
|
+
* Returns transaction data for initializing an ERC20
|
|
2702
|
+
*/
|
|
2703
|
+
200: {
|
|
2704
|
+
data: string;
|
|
2705
|
+
to: string;
|
|
2706
|
+
details: {
|
|
2707
|
+
functionName: string;
|
|
2708
|
+
address: string;
|
|
2709
|
+
abi: Array<unknown>;
|
|
2710
|
+
args: Array<unknown>;
|
|
2711
|
+
};
|
|
2712
|
+
};
|
|
2713
|
+
};
|
|
2714
|
+
type PostIssuanceErc20InitializeResponse = PostIssuanceErc20InitializeResponses[keyof PostIssuanceErc20InitializeResponses];
|
|
2715
|
+
type GetIssuanceErc20GetDeployEventData = {
|
|
2716
|
+
body?: never;
|
|
2717
|
+
path?: never;
|
|
2718
|
+
query: {
|
|
2719
|
+
chainId: 11155111 | 72080;
|
|
2720
|
+
hash: string;
|
|
2721
|
+
};
|
|
2722
|
+
url: '/issuance/erc20/getDeployEvent';
|
|
2723
|
+
};
|
|
2724
|
+
type GetIssuanceErc20GetDeployEventResponses = {
|
|
2725
|
+
/**
|
|
2726
|
+
* Returns parsed event log
|
|
2727
|
+
*/
|
|
2728
|
+
200: {
|
|
2729
|
+
proxy: string;
|
|
2730
|
+
admin: string;
|
|
2731
|
+
minter: string;
|
|
2732
|
+
supplyCap: string;
|
|
2733
|
+
name: string;
|
|
2734
|
+
symbol: string;
|
|
2735
|
+
};
|
|
2736
|
+
};
|
|
2737
|
+
type GetIssuanceErc20GetDeployEventResponse = GetIssuanceErc20GetDeployEventResponses[keyof GetIssuanceErc20GetDeployEventResponses];
|
|
2686
2738
|
type PostIssuanceErc20DeployGatedData = {
|
|
2687
2739
|
body?: {
|
|
2688
2740
|
chainId: 11155111 | 72080;
|
|
@@ -2713,16 +2765,46 @@ type PostIssuanceErc20DeployGatedResponses = {
|
|
|
2713
2765
|
};
|
|
2714
2766
|
};
|
|
2715
2767
|
type PostIssuanceErc20DeployGatedResponse = PostIssuanceErc20DeployGatedResponses[keyof PostIssuanceErc20DeployGatedResponses];
|
|
2716
|
-
type
|
|
2768
|
+
type PostIssuanceErc20InitializeGatedData = {
|
|
2769
|
+
body?: {
|
|
2770
|
+
tokenAddress: string;
|
|
2771
|
+
name: string;
|
|
2772
|
+
symbol: string;
|
|
2773
|
+
cap: string;
|
|
2774
|
+
defaultAdmin: string;
|
|
2775
|
+
minter: string;
|
|
2776
|
+
gatingSigner?: string;
|
|
2777
|
+
};
|
|
2778
|
+
path?: never;
|
|
2779
|
+
query?: never;
|
|
2780
|
+
url: '/issuance/erc20/initializeGated';
|
|
2781
|
+
};
|
|
2782
|
+
type PostIssuanceErc20InitializeGatedResponses = {
|
|
2783
|
+
/**
|
|
2784
|
+
* Returns transaction data for initializing a gated ERC20
|
|
2785
|
+
*/
|
|
2786
|
+
200: {
|
|
2787
|
+
data: string;
|
|
2788
|
+
to: string;
|
|
2789
|
+
details: {
|
|
2790
|
+
functionName: string;
|
|
2791
|
+
address: string;
|
|
2792
|
+
abi: Array<unknown>;
|
|
2793
|
+
args: Array<unknown>;
|
|
2794
|
+
};
|
|
2795
|
+
};
|
|
2796
|
+
};
|
|
2797
|
+
type PostIssuanceErc20InitializeGatedResponse = PostIssuanceErc20InitializeGatedResponses[keyof PostIssuanceErc20InitializeGatedResponses];
|
|
2798
|
+
type GetIssuanceErc20GetDeployEventGatedData = {
|
|
2717
2799
|
body?: never;
|
|
2718
2800
|
path?: never;
|
|
2719
2801
|
query: {
|
|
2720
2802
|
chainId: 11155111 | 72080;
|
|
2721
2803
|
hash: string;
|
|
2722
2804
|
};
|
|
2723
|
-
url: '/issuance/erc20/
|
|
2805
|
+
url: '/issuance/erc20/getDeployEventGated';
|
|
2724
2806
|
};
|
|
2725
|
-
type
|
|
2807
|
+
type GetIssuanceErc20GetDeployEventGatedResponses = {
|
|
2726
2808
|
/**
|
|
2727
2809
|
* Returns parsed event log
|
|
2728
2810
|
*/
|
|
@@ -2735,7 +2817,63 @@ type GetIssuanceErc20GetDeployEventResponses = {
|
|
|
2735
2817
|
symbol: string;
|
|
2736
2818
|
};
|
|
2737
2819
|
};
|
|
2738
|
-
type
|
|
2820
|
+
type GetIssuanceErc20GetDeployEventGatedResponse = GetIssuanceErc20GetDeployEventGatedResponses[keyof GetIssuanceErc20GetDeployEventGatedResponses];
|
|
2821
|
+
type GetIssuanceErc20DeployGatedSimpleData = {
|
|
2822
|
+
body?: never;
|
|
2823
|
+
path?: never;
|
|
2824
|
+
query?: never;
|
|
2825
|
+
url: '/issuance/erc20/deployGatedSimple';
|
|
2826
|
+
};
|
|
2827
|
+
type GetIssuanceErc20DeployGatedSimpleResponses = {
|
|
2828
|
+
/**
|
|
2829
|
+
* Returns transaction data for deploying a gated ERC20
|
|
2830
|
+
*/
|
|
2831
|
+
200: {
|
|
2832
|
+
bytecode: string;
|
|
2833
|
+
abi: Array<unknown>;
|
|
2834
|
+
args?: Array<unknown>;
|
|
2835
|
+
};
|
|
2836
|
+
};
|
|
2837
|
+
type GetIssuanceErc20DeployGatedSimpleResponse = GetIssuanceErc20DeployGatedSimpleResponses[keyof GetIssuanceErc20DeployGatedSimpleResponses];
|
|
2838
|
+
type PostIssuanceErc20GetInitDataData = {
|
|
2839
|
+
body?: {
|
|
2840
|
+
tokenName: string;
|
|
2841
|
+
tokenSymbol: string;
|
|
2842
|
+
cap: string;
|
|
2843
|
+
defaultAdmin: string;
|
|
2844
|
+
minter: string;
|
|
2845
|
+
};
|
|
2846
|
+
path?: never;
|
|
2847
|
+
query?: never;
|
|
2848
|
+
url: '/issuance/erc20/getInitData';
|
|
2849
|
+
};
|
|
2850
|
+
type PostIssuanceErc20GetInitDataResponses = {
|
|
2851
|
+
/**
|
|
2852
|
+
* Init function call data in hex format
|
|
2853
|
+
*/
|
|
2854
|
+
200: {
|
|
2855
|
+
data: string;
|
|
2856
|
+
};
|
|
2857
|
+
};
|
|
2858
|
+
type PostIssuanceErc20GetInitDataResponse = PostIssuanceErc20GetInitDataResponses[keyof PostIssuanceErc20GetInitDataResponses];
|
|
2859
|
+
type GetIssuanceErc20GetDeployEventGatedSimpleData = {
|
|
2860
|
+
body?: never;
|
|
2861
|
+
path?: never;
|
|
2862
|
+
query: {
|
|
2863
|
+
chainId: 11155111 | 72080;
|
|
2864
|
+
hash: string;
|
|
2865
|
+
};
|
|
2866
|
+
url: '/issuance/erc20/getDeployEventGatedSimple';
|
|
2867
|
+
};
|
|
2868
|
+
type GetIssuanceErc20GetDeployEventGatedSimpleResponses = {
|
|
2869
|
+
/**
|
|
2870
|
+
* Returns the deployed contract address
|
|
2871
|
+
*/
|
|
2872
|
+
200: {
|
|
2873
|
+
contractAddress: string;
|
|
2874
|
+
};
|
|
2875
|
+
};
|
|
2876
|
+
type GetIssuanceErc20GetDeployEventGatedSimpleResponse = GetIssuanceErc20GetDeployEventGatedSimpleResponses[keyof GetIssuanceErc20GetDeployEventGatedSimpleResponses];
|
|
2739
2877
|
type PostIssuanceErc20ApproveData = {
|
|
2740
2878
|
body?: {
|
|
2741
2879
|
tokenAddress: string;
|
|
@@ -2972,23 +3110,22 @@ type PostIssuanceErc20RenounceRoleResponses = {
|
|
|
2972
3110
|
};
|
|
2973
3111
|
};
|
|
2974
3112
|
type PostIssuanceErc20RenounceRoleResponse = PostIssuanceErc20RenounceRoleResponses[keyof PostIssuanceErc20RenounceRoleResponses];
|
|
2975
|
-
type
|
|
3113
|
+
type PostIssuanceErc721DeployData = {
|
|
2976
3114
|
body?: {
|
|
2977
|
-
|
|
2978
|
-
|
|
2979
|
-
|
|
2980
|
-
|
|
2981
|
-
|
|
3115
|
+
chainId: 11155111 | 72080;
|
|
3116
|
+
tokenName: string;
|
|
3117
|
+
tokenSymbol: string;
|
|
3118
|
+
baseURI: string;
|
|
3119
|
+
defaultTokenAdmin: string;
|
|
2982
3120
|
minter: string;
|
|
2983
|
-
gatingSigner?: string;
|
|
2984
3121
|
};
|
|
2985
3122
|
path?: never;
|
|
2986
3123
|
query?: never;
|
|
2987
|
-
url: '/issuance/
|
|
3124
|
+
url: '/issuance/erc721/deploy';
|
|
2988
3125
|
};
|
|
2989
|
-
type
|
|
3126
|
+
type PostIssuanceErc721DeployResponses = {
|
|
2990
3127
|
/**
|
|
2991
|
-
* Returns transaction data for
|
|
3128
|
+
* Returns transaction data for deploying an ERC721 token via factory
|
|
2992
3129
|
*/
|
|
2993
3130
|
200: {
|
|
2994
3131
|
data: string;
|
|
@@ -3001,23 +3138,23 @@ type PostIssuanceErc20InitializeResponses = {
|
|
|
3001
3138
|
};
|
|
3002
3139
|
};
|
|
3003
3140
|
};
|
|
3004
|
-
type
|
|
3005
|
-
type
|
|
3141
|
+
type PostIssuanceErc721DeployResponse = PostIssuanceErc721DeployResponses[keyof PostIssuanceErc721DeployResponses];
|
|
3142
|
+
type PostIssuanceErc721InitializeData = {
|
|
3006
3143
|
body?: {
|
|
3007
|
-
|
|
3008
|
-
|
|
3009
|
-
|
|
3144
|
+
tokenAddress: string;
|
|
3145
|
+
name: string;
|
|
3146
|
+
symbol: string;
|
|
3010
3147
|
baseURI: string;
|
|
3011
|
-
|
|
3148
|
+
defaultAdmin: string;
|
|
3012
3149
|
minter: string;
|
|
3013
3150
|
};
|
|
3014
3151
|
path?: never;
|
|
3015
3152
|
query?: never;
|
|
3016
|
-
url: '/issuance/erc721/
|
|
3153
|
+
url: '/issuance/erc721/initialize';
|
|
3017
3154
|
};
|
|
3018
|
-
type
|
|
3155
|
+
type PostIssuanceErc721InitializeResponses = {
|
|
3019
3156
|
/**
|
|
3020
|
-
* Returns transaction data for
|
|
3157
|
+
* Returns transaction data for initializing an ERC721 token
|
|
3021
3158
|
*/
|
|
3022
3159
|
200: {
|
|
3023
3160
|
data: string;
|
|
@@ -3030,7 +3167,30 @@ type PostIssuanceErc721DeployResponses = {
|
|
|
3030
3167
|
};
|
|
3031
3168
|
};
|
|
3032
3169
|
};
|
|
3033
|
-
type
|
|
3170
|
+
type PostIssuanceErc721InitializeResponse = PostIssuanceErc721InitializeResponses[keyof PostIssuanceErc721InitializeResponses];
|
|
3171
|
+
type GetIssuanceErc721GetDeployEventData = {
|
|
3172
|
+
body?: never;
|
|
3173
|
+
path?: never;
|
|
3174
|
+
query: {
|
|
3175
|
+
chainId: 11155111 | 72080;
|
|
3176
|
+
hash: string;
|
|
3177
|
+
};
|
|
3178
|
+
url: '/issuance/erc721/getDeployEvent';
|
|
3179
|
+
};
|
|
3180
|
+
type GetIssuanceErc721GetDeployEventResponses = {
|
|
3181
|
+
/**
|
|
3182
|
+
* Returns parsed event log
|
|
3183
|
+
*/
|
|
3184
|
+
200: {
|
|
3185
|
+
proxy: string;
|
|
3186
|
+
admin: string;
|
|
3187
|
+
minter: string;
|
|
3188
|
+
name: string;
|
|
3189
|
+
symbol: string;
|
|
3190
|
+
baseURI: string;
|
|
3191
|
+
};
|
|
3192
|
+
};
|
|
3193
|
+
type GetIssuanceErc721GetDeployEventResponse = GetIssuanceErc721GetDeployEventResponses[keyof GetIssuanceErc721GetDeployEventResponses];
|
|
3034
3194
|
type PostIssuanceErc721DeployGatedData = {
|
|
3035
3195
|
body?: {
|
|
3036
3196
|
chainId: 11155111 | 72080;
|
|
@@ -3061,16 +3221,46 @@ type PostIssuanceErc721DeployGatedResponses = {
|
|
|
3061
3221
|
};
|
|
3062
3222
|
};
|
|
3063
3223
|
type PostIssuanceErc721DeployGatedResponse = PostIssuanceErc721DeployGatedResponses[keyof PostIssuanceErc721DeployGatedResponses];
|
|
3064
|
-
type
|
|
3224
|
+
type PostIssuanceErc721InitializeGatedData = {
|
|
3225
|
+
body?: {
|
|
3226
|
+
tokenAddress: string;
|
|
3227
|
+
name: string;
|
|
3228
|
+
symbol: string;
|
|
3229
|
+
baseURI: string;
|
|
3230
|
+
defaultAdmin: string;
|
|
3231
|
+
minter: string;
|
|
3232
|
+
gatingSigner?: string;
|
|
3233
|
+
};
|
|
3234
|
+
path?: never;
|
|
3235
|
+
query?: never;
|
|
3236
|
+
url: '/issuance/erc721/initializeGated';
|
|
3237
|
+
};
|
|
3238
|
+
type PostIssuanceErc721InitializeGatedResponses = {
|
|
3239
|
+
/**
|
|
3240
|
+
* Returns transaction data for initializing a gated ERC721 token
|
|
3241
|
+
*/
|
|
3242
|
+
200: {
|
|
3243
|
+
data: string;
|
|
3244
|
+
to: string;
|
|
3245
|
+
details: {
|
|
3246
|
+
functionName: string;
|
|
3247
|
+
address: string;
|
|
3248
|
+
abi: Array<unknown>;
|
|
3249
|
+
args: Array<unknown>;
|
|
3250
|
+
};
|
|
3251
|
+
};
|
|
3252
|
+
};
|
|
3253
|
+
type PostIssuanceErc721InitializeGatedResponse = PostIssuanceErc721InitializeGatedResponses[keyof PostIssuanceErc721InitializeGatedResponses];
|
|
3254
|
+
type GetIssuanceErc721GetDeployEventGatedData = {
|
|
3065
3255
|
body?: never;
|
|
3066
3256
|
path?: never;
|
|
3067
3257
|
query: {
|
|
3068
3258
|
chainId: 11155111 | 72080;
|
|
3069
3259
|
hash: string;
|
|
3070
3260
|
};
|
|
3071
|
-
url: '/issuance/erc721/
|
|
3261
|
+
url: '/issuance/erc721/getDeployEventGated';
|
|
3072
3262
|
};
|
|
3073
|
-
type
|
|
3263
|
+
type GetIssuanceErc721GetDeployEventGatedResponses = {
|
|
3074
3264
|
/**
|
|
3075
3265
|
* Returns parsed event log
|
|
3076
3266
|
*/
|
|
@@ -3083,7 +3273,7 @@ type GetIssuanceErc721GetDeployEventResponses = {
|
|
|
3083
3273
|
baseURI: string;
|
|
3084
3274
|
};
|
|
3085
3275
|
};
|
|
3086
|
-
type
|
|
3276
|
+
type GetIssuanceErc721GetDeployEventGatedResponse = GetIssuanceErc721GetDeployEventGatedResponses[keyof GetIssuanceErc721GetDeployEventGatedResponses];
|
|
3087
3277
|
type PostIssuanceErc721ApproveData = {
|
|
3088
3278
|
body?: {
|
|
3089
3279
|
tokenAddress: string;
|
|
@@ -3344,35 +3534,6 @@ type PostIssuanceErc721SetTokenUriResponses = {
|
|
|
3344
3534
|
};
|
|
3345
3535
|
};
|
|
3346
3536
|
type PostIssuanceErc721SetTokenUriResponse = PostIssuanceErc721SetTokenUriResponses[keyof PostIssuanceErc721SetTokenUriResponses];
|
|
3347
|
-
type PostIssuanceErc721InitializeData = {
|
|
3348
|
-
body?: {
|
|
3349
|
-
tokenAddress: string;
|
|
3350
|
-
name: string;
|
|
3351
|
-
symbol: string;
|
|
3352
|
-
baseURI: string;
|
|
3353
|
-
defaultAdmin: string;
|
|
3354
|
-
minter: string;
|
|
3355
|
-
};
|
|
3356
|
-
path?: never;
|
|
3357
|
-
query?: never;
|
|
3358
|
-
url: '/issuance/erc721/initialize';
|
|
3359
|
-
};
|
|
3360
|
-
type PostIssuanceErc721InitializeResponses = {
|
|
3361
|
-
/**
|
|
3362
|
-
* Returns transaction data for initializing an ERC721 token
|
|
3363
|
-
*/
|
|
3364
|
-
200: {
|
|
3365
|
-
data: string;
|
|
3366
|
-
to: string;
|
|
3367
|
-
details: {
|
|
3368
|
-
functionName: string;
|
|
3369
|
-
address: string;
|
|
3370
|
-
abi: Array<unknown>;
|
|
3371
|
-
args: Array<unknown>;
|
|
3372
|
-
};
|
|
3373
|
-
};
|
|
3374
|
-
};
|
|
3375
|
-
type PostIssuanceErc721InitializeResponse = PostIssuanceErc721InitializeResponses[keyof PostIssuanceErc721InitializeResponses];
|
|
3376
3537
|
type GetIssuanceProxyDeployProxyAdminData = {
|
|
3377
3538
|
body?: never;
|
|
3378
3539
|
path?: never;
|
|
@@ -5134,4 +5295,4 @@ type ApiResponse<T> = {
|
|
|
5134
5295
|
};
|
|
5135
5296
|
declare function handleApiResponse<T>(apiResponse: ApiResponse<T>): T;
|
|
5136
5297
|
|
|
5137
|
-
export { type ApiClient, type ApiResponse, type ClientOptions, type GetGeneralBalanceData, type GetGeneralBalanceResponse, type GetGeneralBalanceResponses, type GetIssuanceErc20GetDeployEventData, type GetIssuanceErc20GetDeployEventResponse, type GetIssuanceErc20GetDeployEventResponses, type GetIssuanceErc721GetDeployEventData, type GetIssuanceErc721GetDeployEventResponse, type GetIssuanceErc721GetDeployEventResponses, type GetIssuanceProxyDeployProxyAdminData, type GetIssuanceProxyDeployProxyAdminResponse, type GetIssuanceProxyDeployProxyAdminResponses, type GetStakingPlatformsGetV0Data, type GetStakingPlatformsGetV0Error, type GetStakingPlatformsGetV0Errors, type GetStakingPlatformsGetV0Response, type GetStakingPlatformsGetV0Responses, type GetStakingPoolsGetPoolV0Data, type GetStakingPoolsGetPoolV0Error, type GetStakingPoolsGetPoolV0Errors, type GetStakingPoolsGetPoolV0Response, type GetStakingPoolsGetPoolV0Responses, type GetStakingRolesGetRolesV0Data, type GetStakingRolesGetRolesV0Response, type GetStakingRolesGetRolesV0Responses, type GetStakingStakesGetStakeV0Data, type GetStakingStakesGetStakeV0Error, type GetStakingStakesGetStakeV0Errors, type GetStakingStakesGetStakeV0Response, type GetStakingStakesGetStakeV0Responses, type GetStakingTemplatesReputationLockV0GetCreatePoolEventData, type GetStakingTemplatesReputationLockV0GetCreatePoolEventResponse, type GetStakingTemplatesReputationLockV0GetCreatePoolEventResponses, type GetStakingTemplatesReputationLockV0GetPlatformDeployEventData, type GetStakingTemplatesReputationLockV0GetPlatformDeployEventResponse, type GetStakingTemplatesReputationLockV0GetPlatformDeployEventResponses, type GetStakingTemplatesReputationLockV0GetStakeEventData, type GetStakingTemplatesReputationLockV0GetStakeEventResponse, type GetStakingTemplatesReputationLockV0GetStakeEventResponses, type GetStakingTemplatesReputationV0GetCreatePoolEventData, type GetStakingTemplatesReputationV0GetCreatePoolEventResponse, type GetStakingTemplatesReputationV0GetCreatePoolEventResponses, type GetStakingTemplatesReputationV0GetPlatformDeployEventData, type GetStakingTemplatesReputationV0GetPlatformDeployEventResponse, type GetStakingTemplatesReputationV0GetPlatformDeployEventResponses, type GetStakingTemplatesReputationV0GetStakeEventData, type GetStakingTemplatesReputationV0GetStakeEventResponse, type GetStakingTemplatesReputationV0GetStakeEventResponses, type GetStakingTemplatesRwaV0GetCreatePoolEventData, type GetStakingTemplatesRwaV0GetCreatePoolEventResponse, type GetStakingTemplatesRwaV0GetCreatePoolEventResponses, type GetStakingTemplatesRwaV0GetPlatformDeployEventData, type GetStakingTemplatesRwaV0GetPlatformDeployEventResponse, type GetStakingTemplatesRwaV0GetPlatformDeployEventResponses, type GetStakingTemplatesRwaV0GetStakeEventData, type GetStakingTemplatesRwaV0GetStakeEventResponse, type GetStakingTemplatesRwaV0GetStakeEventResponses, type GetV0FractionsMarketsDeployEventData, type GetV0FractionsMarketsDeployEventResponse, type GetV0FractionsMarketsDeployEventResponses, type GetV0FractionsMarketsGetData, type GetV0FractionsMarketsGetError, type GetV0FractionsMarketsGetErrors, type GetV0FractionsMarketsGetResponse, type GetV0FractionsMarketsGetResponses, type GetV0FractionsPlatformsInitCompilotData, type GetV0FractionsPlatformsInitCompilotResponse, type GetV0FractionsPlatformsInitCompilotResponses, type GetV0FractionsPlatformsInitNftFractionsCompilotData, type GetV0FractionsPlatformsInitNftFractionsCompilotResponse, type GetV0FractionsPlatformsInitNftFractionsCompilotResponses, type GetV0FractionsRolesData, type GetV0FractionsRolesResponse, type GetV0FractionsRolesResponses, type GetV0FractionsSalesGetFractionsCreatedEventData, type GetV0FractionsSalesGetFractionsCreatedEventResponse, type GetV0FractionsSalesGetFractionsCreatedEventResponses, type GetV0FractionsSalesGetVaultAddressData, type GetV0FractionsSalesGetVaultAddressResponse, type GetV0FractionsSalesGetVaultAddressResponses, type GetV0FractionsSalesGetWithdrawEventData, type GetV0FractionsSalesGetWithdrawEventResponse, type GetV0FractionsSalesGetWithdrawEventResponses, type GetV0FractionsSalesVestingGetClaimVestedTokensEventData, type GetV0FractionsSalesVestingGetClaimVestedTokensEventResponse, type GetV0FractionsSalesVestingGetClaimVestedTokensEventResponses, type IApiConfig, type IEnv, type IEnvName, type PostGeneralBalancesData, type PostGeneralBalancesResponse, type PostGeneralBalancesResponses, type PostGeneralEstimateGasData, type PostGeneralEstimateGasResponse, type PostGeneralEstimateGasResponses, type PostGeneralSearchBalancesData, type PostGeneralSearchBalancesResponse, type PostGeneralSearchBalancesResponses, type PostIssuanceErc20ApproveData, type PostIssuanceErc20ApproveResponse, type PostIssuanceErc20ApproveResponses, type PostIssuanceErc20BurnData, type PostIssuanceErc20BurnResponse, type PostIssuanceErc20BurnResponses, type PostIssuanceErc20DeployData, type PostIssuanceErc20DeployGatedData, type PostIssuanceErc20DeployGatedResponse, type PostIssuanceErc20DeployGatedResponses, type PostIssuanceErc20DeployResponse, type PostIssuanceErc20DeployResponses, type PostIssuanceErc20GrantRoleData, type PostIssuanceErc20GrantRoleResponse, type PostIssuanceErc20GrantRoleResponses, type PostIssuanceErc20InitializeData, type PostIssuanceErc20InitializeResponse, type PostIssuanceErc20InitializeResponses, type PostIssuanceErc20MintData, type PostIssuanceErc20MintResponse, type PostIssuanceErc20MintResponses, type PostIssuanceErc20RecoverData, type PostIssuanceErc20RecoverResponse, type PostIssuanceErc20RecoverResponses, type PostIssuanceErc20RenounceRoleData, type PostIssuanceErc20RenounceRoleResponse, type PostIssuanceErc20RenounceRoleResponses, type PostIssuanceErc20RevokeRoleData, type PostIssuanceErc20RevokeRoleResponse, type PostIssuanceErc20RevokeRoleResponses, type PostIssuanceErc20TransferData, type PostIssuanceErc20TransferFromData, type PostIssuanceErc20TransferFromResponse, type PostIssuanceErc20TransferFromResponses, type PostIssuanceErc20TransferResponse, type PostIssuanceErc20TransferResponses, type PostIssuanceErc721ApproveData, type PostIssuanceErc721ApproveResponse, type PostIssuanceErc721ApproveResponses, type PostIssuanceErc721BurnData, type PostIssuanceErc721BurnResponse, type PostIssuanceErc721BurnResponses, type PostIssuanceErc721DeployData, type PostIssuanceErc721DeployGatedData, type PostIssuanceErc721DeployGatedResponse, type PostIssuanceErc721DeployGatedResponses, type PostIssuanceErc721DeployResponse, type PostIssuanceErc721DeployResponses, type PostIssuanceErc721GrantRoleData, type PostIssuanceErc721GrantRoleResponse, type PostIssuanceErc721GrantRoleResponses, type PostIssuanceErc721InitializeData, type PostIssuanceErc721InitializeResponse, type PostIssuanceErc721InitializeResponses, type PostIssuanceErc721MintData, type PostIssuanceErc721MintResponse, type PostIssuanceErc721MintResponses, type PostIssuanceErc721RecoverData, type PostIssuanceErc721RecoverResponse, type PostIssuanceErc721RecoverResponses, type PostIssuanceErc721RenounceRoleData, type PostIssuanceErc721RenounceRoleResponse, type PostIssuanceErc721RenounceRoleResponses, type PostIssuanceErc721RevokeRoleData, type PostIssuanceErc721RevokeRoleResponse, type PostIssuanceErc721RevokeRoleResponses, type PostIssuanceErc721SetBaseUriData, type PostIssuanceErc721SetBaseUriResponse, type PostIssuanceErc721SetBaseUriResponses, type PostIssuanceErc721SetTokenUriData, type PostIssuanceErc721SetTokenUriResponse, type PostIssuanceErc721SetTokenUriResponses, type PostIssuanceErc721TransferFromData, type PostIssuanceErc721TransferFromResponse, type PostIssuanceErc721TransferFromResponses, type PostIssuanceProxyDeployTransparentProxyData, type PostIssuanceProxyDeployTransparentProxyResponse, type PostIssuanceProxyDeployTransparentProxyResponses, type PostIssuanceProxyUpgradeTransparentProxyData, type PostIssuanceProxyUpgradeTransparentProxyResponse, type PostIssuanceProxyUpgradeTransparentProxyResponses, type PostNextFractionsLendingBuybackData, type PostNextFractionsLendingBuybackResponse, type PostNextFractionsLendingBuybackResponses, type PostNextFractionsLendingCreateSaleData, type PostNextFractionsLendingCreateSaleResponse, type PostNextFractionsLendingCreateSaleResponses, type PostNextFractionsLendingDeployData, type PostNextFractionsLendingDeployResponse, type PostNextFractionsLendingDeployResponses, type PostNextFractionsLendingPurchaseData, type PostNextFractionsLendingPurchaseResponse, type PostNextFractionsLendingPurchaseResponses, type PostNextFractionsLendingSetCollateralPriceData, type PostNextFractionsLendingSetCollateralPriceResponse, type PostNextFractionsLendingSetCollateralPriceResponses, type PostNextFractionsPlatformsDeployNftFractionsData, type PostNextFractionsPlatformsDeployNftFractionsResponse, type PostNextFractionsPlatformsDeployNftFractionsResponses, type PostNextFractionsSalesNftFractionsData, type PostNextFractionsSalesNftFractionsResponse, type PostNextFractionsSalesNftFractionsResponses, type PostStakingPlatformsSearchV0Data, type PostStakingPlatformsSearchV0Response, type PostStakingPlatformsSearchV0Responses, type PostStakingPoolsSearchPoolsV0Data, type PostStakingPoolsSearchPoolsV0Response, type PostStakingPoolsSearchPoolsV0Responses, type PostStakingRolesGrantRoleV0Data, type PostStakingRolesGrantRoleV0Response, type PostStakingRolesGrantRoleV0Responses, type PostStakingRolesSearchRoleEventsV0Data, type PostStakingRolesSearchRoleEventsV0Response, type PostStakingRolesSearchRoleEventsV0Responses, type PostStakingRolesSearchRolesV0Data, type PostStakingRolesSearchRolesV0Response, type PostStakingRolesSearchRolesV0Responses, type PostStakingStakesSearchStakeEventsV0Data, type PostStakingStakesSearchStakeEventsV0Response, type PostStakingStakesSearchStakeEventsV0Responses, type PostStakingStakesSearchStakesV0Data, type PostStakingStakesSearchStakesV0Response, type PostStakingStakesSearchStakesV0Responses, type PostStakingTemplatesReputationLockV0CreatePlatformData, type PostStakingTemplatesReputationLockV0CreatePlatformResponse, type PostStakingTemplatesReputationLockV0CreatePlatformResponses, type PostStakingTemplatesReputationLockV0CreatePoolData, type PostStakingTemplatesReputationLockV0CreatePoolResponse, type PostStakingTemplatesReputationLockV0CreatePoolResponses, type PostStakingTemplatesReputationLockV0GetRewardData, type PostStakingTemplatesReputationLockV0GetRewardResponse, type PostStakingTemplatesReputationLockV0GetRewardResponses, type PostStakingTemplatesReputationLockV0PartialUnstakeData, type PostStakingTemplatesReputationLockV0PartialUnstakeResponse, type PostStakingTemplatesReputationLockV0PartialUnstakeResponses, type PostStakingTemplatesReputationLockV0RestakeData, type PostStakingTemplatesReputationLockV0RestakeResponse, type PostStakingTemplatesReputationLockV0RestakeResponses, type PostStakingTemplatesReputationLockV0StakeData, type PostStakingTemplatesReputationLockV0StakeResponse, type PostStakingTemplatesReputationLockV0StakeResponses, type PostStakingTemplatesReputationLockV0UnstakeData, type PostStakingTemplatesReputationLockV0UnstakeResponse, type PostStakingTemplatesReputationLockV0UnstakeResponses, type PostStakingTemplatesReputationV0CreatePlatformData, type PostStakingTemplatesReputationV0CreatePlatformResponse, type PostStakingTemplatesReputationV0CreatePlatformResponses, type PostStakingTemplatesReputationV0CreatePoolData, type PostStakingTemplatesReputationV0CreatePoolResponse, type PostStakingTemplatesReputationV0CreatePoolResponses, type PostStakingTemplatesReputationV0GetRewardData, type PostStakingTemplatesReputationV0GetRewardResponse, type PostStakingTemplatesReputationV0GetRewardResponses, type PostStakingTemplatesReputationV0PartialUnstakeData, type PostStakingTemplatesReputationV0PartialUnstakeResponse, type PostStakingTemplatesReputationV0PartialUnstakeResponses, type PostStakingTemplatesReputationV0RestakeData, type PostStakingTemplatesReputationV0RestakeResponse, type PostStakingTemplatesReputationV0RestakeResponses, type PostStakingTemplatesReputationV0StakeData, type PostStakingTemplatesReputationV0StakeResponse, type PostStakingTemplatesReputationV0StakeResponses, type PostStakingTemplatesReputationV0UnstakeData, type PostStakingTemplatesReputationV0UnstakeResponse, type PostStakingTemplatesReputationV0UnstakeResponses, type PostStakingTemplatesRwaV0CreatePlatformData, type PostStakingTemplatesRwaV0CreatePlatformResponse, type PostStakingTemplatesRwaV0CreatePlatformResponses, type PostStakingTemplatesRwaV0CreatePoolData, type PostStakingTemplatesRwaV0CreatePoolResponse, type PostStakingTemplatesRwaV0CreatePoolResponses, type PostStakingTemplatesRwaV0DistributeRewardsData, type PostStakingTemplatesRwaV0DistributeRewardsResponse, type PostStakingTemplatesRwaV0DistributeRewardsResponses, type PostStakingTemplatesRwaV0GetRewardData, type PostStakingTemplatesRwaV0GetRewardResponse, type PostStakingTemplatesRwaV0GetRewardResponses, type PostStakingTemplatesRwaV0PartialUnstakeData, type PostStakingTemplatesRwaV0PartialUnstakeResponse, type PostStakingTemplatesRwaV0PartialUnstakeResponses, type PostStakingTemplatesRwaV0RestakeData, type PostStakingTemplatesRwaV0RestakeResponse, type PostStakingTemplatesRwaV0RestakeResponses, type PostStakingTemplatesRwaV0StakeData, type PostStakingTemplatesRwaV0StakeResponse, type PostStakingTemplatesRwaV0StakeResponses, type PostStakingTemplatesRwaV0UnstakeData, type PostStakingTemplatesRwaV0UnstakeResponse, type PostStakingTemplatesRwaV0UnstakeResponses, type PostV0FractionsFractionsApproveWrapperAsErc20SpenderData, type PostV0FractionsFractionsApproveWrapperAsErc20SpenderResponse, type PostV0FractionsFractionsApproveWrapperAsErc20SpenderResponses, type PostV0FractionsFractionsApproveWrapperAsErc721SpenderData, type PostV0FractionsFractionsApproveWrapperAsErc721SpenderResponse, type PostV0FractionsFractionsApproveWrapperAsErc721SpenderResponses, type PostV0FractionsFractionsApproveWrapperData, type PostV0FractionsFractionsApproveWrapperResponse, type PostV0FractionsFractionsApproveWrapperResponses, type PostV0FractionsMarketsSearchData, type PostV0FractionsMarketsSearchResponse, type PostV0FractionsMarketsSearchResponses, type PostV0FractionsPlatformsDeployContinuousWithdrawData, type PostV0FractionsPlatformsDeployContinuousWithdrawNidData, type PostV0FractionsPlatformsDeployContinuousWithdrawNidResponse, type PostV0FractionsPlatformsDeployContinuousWithdrawNidResponses, type PostV0FractionsPlatformsDeployContinuousWithdrawResponse, type PostV0FractionsPlatformsDeployContinuousWithdrawResponses, type PostV0FractionsPlatformsDeployData, type PostV0FractionsPlatformsDeployNidData, type PostV0FractionsPlatformsDeployNidResponse, type PostV0FractionsPlatformsDeployNidResponses, type PostV0FractionsPlatformsDeployResponse, type PostV0FractionsPlatformsDeployResponses, type PostV0FractionsRolesGrantData, type PostV0FractionsRolesGrantResponse, type PostV0FractionsRolesGrantResponses, type PostV0FractionsSalesActivityData, type PostV0FractionsSalesActivityResponse, type PostV0FractionsSalesActivityResponses, type PostV0FractionsSalesApproveData, type PostV0FractionsSalesApproveResponse, type PostV0FractionsSalesApproveResponses, type PostV0FractionsSalesCheckAndJumpToNonFundedData, type PostV0FractionsSalesCheckAndJumpToNonFundedResponse, type PostV0FractionsSalesCheckAndJumpToNonFundedResponses, type PostV0FractionsSalesCompleteData, type PostV0FractionsSalesCompleteResponse, type PostV0FractionsSalesCompleteResponses, type PostV0FractionsSalesFractionsData, type PostV0FractionsSalesFractionsResponse, type PostV0FractionsSalesFractionsResponses, type PostV0FractionsSalesPurchaseData, type PostV0FractionsSalesPurchaseResponse, type PostV0FractionsSalesPurchaseResponses, type PostV0FractionsSalesPurchaseStatisticsData, type PostV0FractionsSalesPurchaseStatisticsResponse, type PostV0FractionsSalesPurchaseStatisticsResponses, type PostV0FractionsSalesReceiveFundsAfterNonFundedData, type PostV0FractionsSalesReceiveFundsAfterNonFundedResponse, type PostV0FractionsSalesReceiveFundsAfterNonFundedResponses, type PostV0FractionsSalesReceiveNonPurchasedWrappedAssetsData, type PostV0FractionsSalesReceiveNonPurchasedWrappedAssetsResponse, type PostV0FractionsSalesReceiveNonPurchasedWrappedAssetsResponses, type PostV0FractionsSalesRecoverData, type PostV0FractionsSalesRecoverResponse, type PostV0FractionsSalesRecoverResponses, type PostV0FractionsSalesRejectData, type PostV0FractionsSalesRejectResponse, type PostV0FractionsSalesRejectResponses, type PostV0FractionsSalesSearchData, type PostV0FractionsSalesSearchResponse, type PostV0FractionsSalesSearchResponses, type PostV0FractionsSalesSetFeeCapLimitData, type PostV0FractionsSalesSetFeeCapLimitResponse, type PostV0FractionsSalesSetFeeCapLimitResponses, type PostV0FractionsSalesStatisticsData, type PostV0FractionsSalesStatisticsResponse, type PostV0FractionsSalesStatisticsResponses, type PostV0FractionsSalesUnlockWrappedAssetsData, type PostV0FractionsSalesUnlockWrappedAssetsResponse, type PostV0FractionsSalesUnlockWrappedAssetsResponses, type PostV0FractionsSalesVestingClaimData, type PostV0FractionsSalesVestingClaimResponse, type PostV0FractionsSalesVestingClaimResponses, type PostV0FractionsSalesVestingClaimStatisticsData, type PostV0FractionsSalesVestingClaimStatisticsResponse, type PostV0FractionsSalesVestingClaimStatisticsResponses, type PostV0FractionsSalesVestingEditCliffData, type PostV0FractionsSalesVestingEditCliffResponse, type PostV0FractionsSalesVestingEditCliffResponses, type PostV0FractionsSalesWithdrawPaymentTokenData, type PostV0FractionsSalesWithdrawPaymentTokenResponse, type PostV0FractionsSalesWithdrawPaymentTokenResponses, type PostV0FractionsSalesWithdrawSearchData, type PostV0FractionsSalesWithdrawSearchResponse, type PostV0FractionsSalesWithdrawSearchResponses, type PostV0FractionsSigAuthDataData, type PostV0FractionsSigAuthDataResponse, type PostV0FractionsSigAuthDataResponses, type PostV0FractionsSigNonceData, type PostV0FractionsSigNonceResponse, type PostV0FractionsSigNonceResponses, type PostV0FractionsStatisticsData, type PostV0FractionsStatisticsHoldersData, type PostV0FractionsStatisticsHoldersResponse, type PostV0FractionsStatisticsHoldersResponses, type PostV0FractionsStatisticsResponse, type PostV0FractionsStatisticsResponses, type PostV0FractionsStatisticsSalesData, type PostV0FractionsStatisticsSalesResponse, type PostV0FractionsStatisticsSalesResponses, type PostV0FractionsStatisticsTtvData, type PostV0FractionsStatisticsTtvResponse, type PostV0FractionsStatisticsTtvResponses, api, envs, getEnv, handleApiResponse };
|
|
5298
|
+
export { type ApiClient, type ApiResponse, type ClientOptions, type GetGeneralBalanceData, type GetGeneralBalanceResponse, type GetGeneralBalanceResponses, type GetIssuanceErc20DeployGatedSimpleData, type GetIssuanceErc20DeployGatedSimpleResponse, type GetIssuanceErc20DeployGatedSimpleResponses, type GetIssuanceErc20GetDeployEventData, type GetIssuanceErc20GetDeployEventGatedData, type GetIssuanceErc20GetDeployEventGatedResponse, type GetIssuanceErc20GetDeployEventGatedResponses, type GetIssuanceErc20GetDeployEventGatedSimpleData, type GetIssuanceErc20GetDeployEventGatedSimpleResponse, type GetIssuanceErc20GetDeployEventGatedSimpleResponses, type GetIssuanceErc20GetDeployEventResponse, type GetIssuanceErc20GetDeployEventResponses, type GetIssuanceErc721GetDeployEventData, type GetIssuanceErc721GetDeployEventGatedData, type GetIssuanceErc721GetDeployEventGatedResponse, type GetIssuanceErc721GetDeployEventGatedResponses, type GetIssuanceErc721GetDeployEventResponse, type GetIssuanceErc721GetDeployEventResponses, type GetIssuanceProxyDeployProxyAdminData, type GetIssuanceProxyDeployProxyAdminResponse, type GetIssuanceProxyDeployProxyAdminResponses, type GetStakingPlatformsGetV0Data, type GetStakingPlatformsGetV0Error, type GetStakingPlatformsGetV0Errors, type GetStakingPlatformsGetV0Response, type GetStakingPlatformsGetV0Responses, type GetStakingPoolsGetPoolV0Data, type GetStakingPoolsGetPoolV0Error, type GetStakingPoolsGetPoolV0Errors, type GetStakingPoolsGetPoolV0Response, type GetStakingPoolsGetPoolV0Responses, type GetStakingRolesGetRolesV0Data, type GetStakingRolesGetRolesV0Response, type GetStakingRolesGetRolesV0Responses, type GetStakingStakesGetStakeV0Data, type GetStakingStakesGetStakeV0Error, type GetStakingStakesGetStakeV0Errors, type GetStakingStakesGetStakeV0Response, type GetStakingStakesGetStakeV0Responses, type GetStakingTemplatesReputationLockV0GetCreatePoolEventData, type GetStakingTemplatesReputationLockV0GetCreatePoolEventResponse, type GetStakingTemplatesReputationLockV0GetCreatePoolEventResponses, type GetStakingTemplatesReputationLockV0GetPlatformDeployEventData, type GetStakingTemplatesReputationLockV0GetPlatformDeployEventResponse, type GetStakingTemplatesReputationLockV0GetPlatformDeployEventResponses, type GetStakingTemplatesReputationLockV0GetStakeEventData, type GetStakingTemplatesReputationLockV0GetStakeEventResponse, type GetStakingTemplatesReputationLockV0GetStakeEventResponses, type GetStakingTemplatesReputationV0GetCreatePoolEventData, type GetStakingTemplatesReputationV0GetCreatePoolEventResponse, type GetStakingTemplatesReputationV0GetCreatePoolEventResponses, type GetStakingTemplatesReputationV0GetPlatformDeployEventData, type GetStakingTemplatesReputationV0GetPlatformDeployEventResponse, type GetStakingTemplatesReputationV0GetPlatformDeployEventResponses, type GetStakingTemplatesReputationV0GetStakeEventData, type GetStakingTemplatesReputationV0GetStakeEventResponse, type GetStakingTemplatesReputationV0GetStakeEventResponses, type GetStakingTemplatesRwaV0GetCreatePoolEventData, type GetStakingTemplatesRwaV0GetCreatePoolEventResponse, type GetStakingTemplatesRwaV0GetCreatePoolEventResponses, type GetStakingTemplatesRwaV0GetPlatformDeployEventData, type GetStakingTemplatesRwaV0GetPlatformDeployEventResponse, type GetStakingTemplatesRwaV0GetPlatformDeployEventResponses, type GetStakingTemplatesRwaV0GetStakeEventData, type GetStakingTemplatesRwaV0GetStakeEventResponse, type GetStakingTemplatesRwaV0GetStakeEventResponses, type GetV0FractionsMarketsDeployEventData, type GetV0FractionsMarketsDeployEventResponse, type GetV0FractionsMarketsDeployEventResponses, type GetV0FractionsMarketsGetData, type GetV0FractionsMarketsGetError, type GetV0FractionsMarketsGetErrors, type GetV0FractionsMarketsGetResponse, type GetV0FractionsMarketsGetResponses, type GetV0FractionsPlatformsInitCompilotData, type GetV0FractionsPlatformsInitCompilotResponse, type GetV0FractionsPlatformsInitCompilotResponses, type GetV0FractionsPlatformsInitNftFractionsCompilotData, type GetV0FractionsPlatformsInitNftFractionsCompilotResponse, type GetV0FractionsPlatformsInitNftFractionsCompilotResponses, type GetV0FractionsRolesData, type GetV0FractionsRolesResponse, type GetV0FractionsRolesResponses, type GetV0FractionsSalesGetFractionsCreatedEventData, type GetV0FractionsSalesGetFractionsCreatedEventResponse, type GetV0FractionsSalesGetFractionsCreatedEventResponses, type GetV0FractionsSalesGetVaultAddressData, type GetV0FractionsSalesGetVaultAddressResponse, type GetV0FractionsSalesGetVaultAddressResponses, type GetV0FractionsSalesGetWithdrawEventData, type GetV0FractionsSalesGetWithdrawEventResponse, type GetV0FractionsSalesGetWithdrawEventResponses, type GetV0FractionsSalesVestingGetClaimVestedTokensEventData, type GetV0FractionsSalesVestingGetClaimVestedTokensEventResponse, type GetV0FractionsSalesVestingGetClaimVestedTokensEventResponses, type IApiConfig, type IEnv, type IEnvName, type PostGeneralBalancesData, type PostGeneralBalancesResponse, type PostGeneralBalancesResponses, type PostGeneralEstimateGasData, type PostGeneralEstimateGasResponse, type PostGeneralEstimateGasResponses, type PostGeneralSearchBalancesData, type PostGeneralSearchBalancesResponse, type PostGeneralSearchBalancesResponses, type PostIssuanceErc20ApproveData, type PostIssuanceErc20ApproveResponse, type PostIssuanceErc20ApproveResponses, type PostIssuanceErc20BurnData, type PostIssuanceErc20BurnResponse, type PostIssuanceErc20BurnResponses, type PostIssuanceErc20DeployData, type PostIssuanceErc20DeployGatedData, type PostIssuanceErc20DeployGatedResponse, type PostIssuanceErc20DeployGatedResponses, type PostIssuanceErc20DeployResponse, type PostIssuanceErc20DeployResponses, type PostIssuanceErc20GetInitDataData, type PostIssuanceErc20GetInitDataResponse, type PostIssuanceErc20GetInitDataResponses, type PostIssuanceErc20GrantRoleData, type PostIssuanceErc20GrantRoleResponse, type PostIssuanceErc20GrantRoleResponses, type PostIssuanceErc20InitializeData, type PostIssuanceErc20InitializeGatedData, type PostIssuanceErc20InitializeGatedResponse, type PostIssuanceErc20InitializeGatedResponses, type PostIssuanceErc20InitializeResponse, type PostIssuanceErc20InitializeResponses, type PostIssuanceErc20MintData, type PostIssuanceErc20MintResponse, type PostIssuanceErc20MintResponses, type PostIssuanceErc20RecoverData, type PostIssuanceErc20RecoverResponse, type PostIssuanceErc20RecoverResponses, type PostIssuanceErc20RenounceRoleData, type PostIssuanceErc20RenounceRoleResponse, type PostIssuanceErc20RenounceRoleResponses, type PostIssuanceErc20RevokeRoleData, type PostIssuanceErc20RevokeRoleResponse, type PostIssuanceErc20RevokeRoleResponses, type PostIssuanceErc20TransferData, type PostIssuanceErc20TransferFromData, type PostIssuanceErc20TransferFromResponse, type PostIssuanceErc20TransferFromResponses, type PostIssuanceErc20TransferResponse, type PostIssuanceErc20TransferResponses, type PostIssuanceErc721ApproveData, type PostIssuanceErc721ApproveResponse, type PostIssuanceErc721ApproveResponses, type PostIssuanceErc721BurnData, type PostIssuanceErc721BurnResponse, type PostIssuanceErc721BurnResponses, type PostIssuanceErc721DeployData, type PostIssuanceErc721DeployGatedData, type PostIssuanceErc721DeployGatedResponse, type PostIssuanceErc721DeployGatedResponses, type PostIssuanceErc721DeployResponse, type PostIssuanceErc721DeployResponses, type PostIssuanceErc721GrantRoleData, type PostIssuanceErc721GrantRoleResponse, type PostIssuanceErc721GrantRoleResponses, type PostIssuanceErc721InitializeData, type PostIssuanceErc721InitializeGatedData, type PostIssuanceErc721InitializeGatedResponse, type PostIssuanceErc721InitializeGatedResponses, type PostIssuanceErc721InitializeResponse, type PostIssuanceErc721InitializeResponses, type PostIssuanceErc721MintData, type PostIssuanceErc721MintResponse, type PostIssuanceErc721MintResponses, type PostIssuanceErc721RecoverData, type PostIssuanceErc721RecoverResponse, type PostIssuanceErc721RecoverResponses, type PostIssuanceErc721RenounceRoleData, type PostIssuanceErc721RenounceRoleResponse, type PostIssuanceErc721RenounceRoleResponses, type PostIssuanceErc721RevokeRoleData, type PostIssuanceErc721RevokeRoleResponse, type PostIssuanceErc721RevokeRoleResponses, type PostIssuanceErc721SetBaseUriData, type PostIssuanceErc721SetBaseUriResponse, type PostIssuanceErc721SetBaseUriResponses, type PostIssuanceErc721SetTokenUriData, type PostIssuanceErc721SetTokenUriResponse, type PostIssuanceErc721SetTokenUriResponses, type PostIssuanceErc721TransferFromData, type PostIssuanceErc721TransferFromResponse, type PostIssuanceErc721TransferFromResponses, type PostIssuanceProxyDeployTransparentProxyData, type PostIssuanceProxyDeployTransparentProxyResponse, type PostIssuanceProxyDeployTransparentProxyResponses, type PostIssuanceProxyUpgradeTransparentProxyData, type PostIssuanceProxyUpgradeTransparentProxyResponse, type PostIssuanceProxyUpgradeTransparentProxyResponses, type PostNextFractionsLendingBuybackData, type PostNextFractionsLendingBuybackResponse, type PostNextFractionsLendingBuybackResponses, type PostNextFractionsLendingCreateSaleData, type PostNextFractionsLendingCreateSaleResponse, type PostNextFractionsLendingCreateSaleResponses, type PostNextFractionsLendingDeployData, type PostNextFractionsLendingDeployResponse, type PostNextFractionsLendingDeployResponses, type PostNextFractionsLendingPurchaseData, type PostNextFractionsLendingPurchaseResponse, type PostNextFractionsLendingPurchaseResponses, type PostNextFractionsLendingSetCollateralPriceData, type PostNextFractionsLendingSetCollateralPriceResponse, type PostNextFractionsLendingSetCollateralPriceResponses, type PostNextFractionsPlatformsDeployNftFractionsData, type PostNextFractionsPlatformsDeployNftFractionsResponse, type PostNextFractionsPlatformsDeployNftFractionsResponses, type PostNextFractionsSalesNftFractionsData, type PostNextFractionsSalesNftFractionsResponse, type PostNextFractionsSalesNftFractionsResponses, type PostStakingPlatformsSearchV0Data, type PostStakingPlatformsSearchV0Response, type PostStakingPlatformsSearchV0Responses, type PostStakingPoolsSearchPoolsV0Data, type PostStakingPoolsSearchPoolsV0Response, type PostStakingPoolsSearchPoolsV0Responses, type PostStakingRolesGrantRoleV0Data, type PostStakingRolesGrantRoleV0Response, type PostStakingRolesGrantRoleV0Responses, type PostStakingRolesSearchRoleEventsV0Data, type PostStakingRolesSearchRoleEventsV0Response, type PostStakingRolesSearchRoleEventsV0Responses, type PostStakingRolesSearchRolesV0Data, type PostStakingRolesSearchRolesV0Response, type PostStakingRolesSearchRolesV0Responses, type PostStakingStakesSearchStakeEventsV0Data, type PostStakingStakesSearchStakeEventsV0Response, type PostStakingStakesSearchStakeEventsV0Responses, type PostStakingStakesSearchStakesV0Data, type PostStakingStakesSearchStakesV0Response, type PostStakingStakesSearchStakesV0Responses, type PostStakingTemplatesReputationLockV0CreatePlatformData, type PostStakingTemplatesReputationLockV0CreatePlatformResponse, type PostStakingTemplatesReputationLockV0CreatePlatformResponses, type PostStakingTemplatesReputationLockV0CreatePoolData, type PostStakingTemplatesReputationLockV0CreatePoolResponse, type PostStakingTemplatesReputationLockV0CreatePoolResponses, type PostStakingTemplatesReputationLockV0GetRewardData, type PostStakingTemplatesReputationLockV0GetRewardResponse, type PostStakingTemplatesReputationLockV0GetRewardResponses, type PostStakingTemplatesReputationLockV0PartialUnstakeData, type PostStakingTemplatesReputationLockV0PartialUnstakeResponse, type PostStakingTemplatesReputationLockV0PartialUnstakeResponses, type PostStakingTemplatesReputationLockV0RestakeData, type PostStakingTemplatesReputationLockV0RestakeResponse, type PostStakingTemplatesReputationLockV0RestakeResponses, type PostStakingTemplatesReputationLockV0StakeData, type PostStakingTemplatesReputationLockV0StakeResponse, type PostStakingTemplatesReputationLockV0StakeResponses, type PostStakingTemplatesReputationLockV0UnstakeData, type PostStakingTemplatesReputationLockV0UnstakeResponse, type PostStakingTemplatesReputationLockV0UnstakeResponses, type PostStakingTemplatesReputationV0CreatePlatformData, type PostStakingTemplatesReputationV0CreatePlatformResponse, type PostStakingTemplatesReputationV0CreatePlatformResponses, type PostStakingTemplatesReputationV0CreatePoolData, type PostStakingTemplatesReputationV0CreatePoolResponse, type PostStakingTemplatesReputationV0CreatePoolResponses, type PostStakingTemplatesReputationV0GetRewardData, type PostStakingTemplatesReputationV0GetRewardResponse, type PostStakingTemplatesReputationV0GetRewardResponses, type PostStakingTemplatesReputationV0PartialUnstakeData, type PostStakingTemplatesReputationV0PartialUnstakeResponse, type PostStakingTemplatesReputationV0PartialUnstakeResponses, type PostStakingTemplatesReputationV0RestakeData, type PostStakingTemplatesReputationV0RestakeResponse, type PostStakingTemplatesReputationV0RestakeResponses, type PostStakingTemplatesReputationV0StakeData, type PostStakingTemplatesReputationV0StakeResponse, type PostStakingTemplatesReputationV0StakeResponses, type PostStakingTemplatesReputationV0UnstakeData, type PostStakingTemplatesReputationV0UnstakeResponse, type PostStakingTemplatesReputationV0UnstakeResponses, type PostStakingTemplatesRwaV0CreatePlatformData, type PostStakingTemplatesRwaV0CreatePlatformResponse, type PostStakingTemplatesRwaV0CreatePlatformResponses, type PostStakingTemplatesRwaV0CreatePoolData, type PostStakingTemplatesRwaV0CreatePoolResponse, type PostStakingTemplatesRwaV0CreatePoolResponses, type PostStakingTemplatesRwaV0DistributeRewardsData, type PostStakingTemplatesRwaV0DistributeRewardsResponse, type PostStakingTemplatesRwaV0DistributeRewardsResponses, type PostStakingTemplatesRwaV0GetRewardData, type PostStakingTemplatesRwaV0GetRewardResponse, type PostStakingTemplatesRwaV0GetRewardResponses, type PostStakingTemplatesRwaV0PartialUnstakeData, type PostStakingTemplatesRwaV0PartialUnstakeResponse, type PostStakingTemplatesRwaV0PartialUnstakeResponses, type PostStakingTemplatesRwaV0RestakeData, type PostStakingTemplatesRwaV0RestakeResponse, type PostStakingTemplatesRwaV0RestakeResponses, type PostStakingTemplatesRwaV0StakeData, type PostStakingTemplatesRwaV0StakeResponse, type PostStakingTemplatesRwaV0StakeResponses, type PostStakingTemplatesRwaV0UnstakeData, type PostStakingTemplatesRwaV0UnstakeResponse, type PostStakingTemplatesRwaV0UnstakeResponses, type PostV0FractionsFractionsApproveWrapperAsErc20SpenderData, type PostV0FractionsFractionsApproveWrapperAsErc20SpenderResponse, type PostV0FractionsFractionsApproveWrapperAsErc20SpenderResponses, type PostV0FractionsFractionsApproveWrapperAsErc721SpenderData, type PostV0FractionsFractionsApproveWrapperAsErc721SpenderResponse, type PostV0FractionsFractionsApproveWrapperAsErc721SpenderResponses, type PostV0FractionsFractionsApproveWrapperData, type PostV0FractionsFractionsApproveWrapperResponse, type PostV0FractionsFractionsApproveWrapperResponses, type PostV0FractionsMarketsSearchData, type PostV0FractionsMarketsSearchResponse, type PostV0FractionsMarketsSearchResponses, type PostV0FractionsPlatformsDeployContinuousWithdrawData, type PostV0FractionsPlatformsDeployContinuousWithdrawNidData, type PostV0FractionsPlatformsDeployContinuousWithdrawNidResponse, type PostV0FractionsPlatformsDeployContinuousWithdrawNidResponses, type PostV0FractionsPlatformsDeployContinuousWithdrawResponse, type PostV0FractionsPlatformsDeployContinuousWithdrawResponses, type PostV0FractionsPlatformsDeployData, type PostV0FractionsPlatformsDeployNidData, type PostV0FractionsPlatformsDeployNidResponse, type PostV0FractionsPlatformsDeployNidResponses, type PostV0FractionsPlatformsDeployResponse, type PostV0FractionsPlatformsDeployResponses, type PostV0FractionsRolesGrantData, type PostV0FractionsRolesGrantResponse, type PostV0FractionsRolesGrantResponses, type PostV0FractionsSalesActivityData, type PostV0FractionsSalesActivityResponse, type PostV0FractionsSalesActivityResponses, type PostV0FractionsSalesApproveData, type PostV0FractionsSalesApproveResponse, type PostV0FractionsSalesApproveResponses, type PostV0FractionsSalesCheckAndJumpToNonFundedData, type PostV0FractionsSalesCheckAndJumpToNonFundedResponse, type PostV0FractionsSalesCheckAndJumpToNonFundedResponses, type PostV0FractionsSalesCompleteData, type PostV0FractionsSalesCompleteResponse, type PostV0FractionsSalesCompleteResponses, type PostV0FractionsSalesFractionsData, type PostV0FractionsSalesFractionsResponse, type PostV0FractionsSalesFractionsResponses, type PostV0FractionsSalesPurchaseData, type PostV0FractionsSalesPurchaseResponse, type PostV0FractionsSalesPurchaseResponses, type PostV0FractionsSalesPurchaseStatisticsData, type PostV0FractionsSalesPurchaseStatisticsResponse, type PostV0FractionsSalesPurchaseStatisticsResponses, type PostV0FractionsSalesReceiveFundsAfterNonFundedData, type PostV0FractionsSalesReceiveFundsAfterNonFundedResponse, type PostV0FractionsSalesReceiveFundsAfterNonFundedResponses, type PostV0FractionsSalesReceiveNonPurchasedWrappedAssetsData, type PostV0FractionsSalesReceiveNonPurchasedWrappedAssetsResponse, type PostV0FractionsSalesReceiveNonPurchasedWrappedAssetsResponses, type PostV0FractionsSalesRecoverData, type PostV0FractionsSalesRecoverResponse, type PostV0FractionsSalesRecoverResponses, type PostV0FractionsSalesRejectData, type PostV0FractionsSalesRejectResponse, type PostV0FractionsSalesRejectResponses, type PostV0FractionsSalesSearchData, type PostV0FractionsSalesSearchResponse, type PostV0FractionsSalesSearchResponses, type PostV0FractionsSalesSetFeeCapLimitData, type PostV0FractionsSalesSetFeeCapLimitResponse, type PostV0FractionsSalesSetFeeCapLimitResponses, type PostV0FractionsSalesStatisticsData, type PostV0FractionsSalesStatisticsResponse, type PostV0FractionsSalesStatisticsResponses, type PostV0FractionsSalesUnlockWrappedAssetsData, type PostV0FractionsSalesUnlockWrappedAssetsResponse, type PostV0FractionsSalesUnlockWrappedAssetsResponses, type PostV0FractionsSalesVestingClaimData, type PostV0FractionsSalesVestingClaimResponse, type PostV0FractionsSalesVestingClaimResponses, type PostV0FractionsSalesVestingClaimStatisticsData, type PostV0FractionsSalesVestingClaimStatisticsResponse, type PostV0FractionsSalesVestingClaimStatisticsResponses, type PostV0FractionsSalesVestingEditCliffData, type PostV0FractionsSalesVestingEditCliffResponse, type PostV0FractionsSalesVestingEditCliffResponses, type PostV0FractionsSalesWithdrawPaymentTokenData, type PostV0FractionsSalesWithdrawPaymentTokenResponse, type PostV0FractionsSalesWithdrawPaymentTokenResponses, type PostV0FractionsSalesWithdrawSearchData, type PostV0FractionsSalesWithdrawSearchResponse, type PostV0FractionsSalesWithdrawSearchResponses, type PostV0FractionsSigAuthDataData, type PostV0FractionsSigAuthDataResponse, type PostV0FractionsSigAuthDataResponses, type PostV0FractionsSigNonceData, type PostV0FractionsSigNonceResponse, type PostV0FractionsSigNonceResponses, type PostV0FractionsStatisticsData, type PostV0FractionsStatisticsHoldersData, type PostV0FractionsStatisticsHoldersResponse, type PostV0FractionsStatisticsHoldersResponses, type PostV0FractionsStatisticsResponse, type PostV0FractionsStatisticsResponses, type PostV0FractionsStatisticsSalesData, type PostV0FractionsStatisticsSalesResponse, type PostV0FractionsStatisticsSalesResponses, type PostV0FractionsStatisticsTtvData, type PostV0FractionsStatisticsTtvResponse, type PostV0FractionsStatisticsTtvResponses, api, envs, getEnv, handleApiResponse };
|