@crypticdot/defituna-api 4.2.0 → 4.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +308 -0
- package/dist/index.d.cts +609 -1
- package/dist/index.d.ts +609 -1
- package/dist/index.js +286 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -968,6 +968,15 @@ type PoolsError500Error = {
|
|
|
968
968
|
* - OpenAPI: `type: string`, pattern for base58, optional format
|
|
969
969
|
*/
|
|
970
970
|
type PubkeyDto = string;
|
|
971
|
+
declare const RateLimitSource: {
|
|
972
|
+
readonly INTERNAL: "internal";
|
|
973
|
+
readonly UPSTREAM: "upstream";
|
|
974
|
+
};
|
|
975
|
+
type RateLimitSource = typeof RateLimitSource[keyof typeof RateLimitSource];
|
|
976
|
+
type RetryAfterHint = {
|
|
977
|
+
retryAfterSeconds: number;
|
|
978
|
+
source: RateLimitSource;
|
|
979
|
+
};
|
|
971
980
|
type Snapshot = {
|
|
972
981
|
blockTime: Date;
|
|
973
982
|
fusionLimitOrders?: Array<LimitOrderDto> | null;
|
|
@@ -1192,6 +1201,99 @@ type TokenAmountWithUsd = {
|
|
|
1192
1201
|
amount: U64Dto;
|
|
1193
1202
|
usd: number;
|
|
1194
1203
|
};
|
|
1204
|
+
type TokenAuditDto = {
|
|
1205
|
+
freezeAuthorityDisabled?: boolean | null;
|
|
1206
|
+
mintAuthorityDisabled?: boolean | null;
|
|
1207
|
+
topHoldersPercentage?: number | null;
|
|
1208
|
+
};
|
|
1209
|
+
type TokenFirstPoolDto = {
|
|
1210
|
+
createdAt: string;
|
|
1211
|
+
id: string;
|
|
1212
|
+
};
|
|
1213
|
+
type TokenPairPriceResponseDto = {
|
|
1214
|
+
tokenA: TokenPriceDto;
|
|
1215
|
+
tokenB: TokenPriceDto;
|
|
1216
|
+
};
|
|
1217
|
+
type TokenPriceDto = {
|
|
1218
|
+
mint: string;
|
|
1219
|
+
priceBlockId?: number | null;
|
|
1220
|
+
priceChange24h?: number | null;
|
|
1221
|
+
usdPrice: number;
|
|
1222
|
+
};
|
|
1223
|
+
type TokenSearchItemDto = {
|
|
1224
|
+
audit?: null | TokenAuditDto;
|
|
1225
|
+
circSupply?: number | null;
|
|
1226
|
+
decimals: number;
|
|
1227
|
+
fdv?: number | null;
|
|
1228
|
+
firstPool?: null | TokenFirstPoolDto;
|
|
1229
|
+
holderCount?: number | null;
|
|
1230
|
+
iconUrl?: string | null;
|
|
1231
|
+
isVerified: boolean;
|
|
1232
|
+
liquidity?: number | null;
|
|
1233
|
+
mcap?: number | null;
|
|
1234
|
+
mint: string;
|
|
1235
|
+
name: string;
|
|
1236
|
+
organicScore?: number | null;
|
|
1237
|
+
organicScoreLabel?: string | null;
|
|
1238
|
+
priceBlockId?: number | null;
|
|
1239
|
+
stats1h?: null | TokenStatsWindowDto;
|
|
1240
|
+
stats24h?: null | TokenStatsWindowDto;
|
|
1241
|
+
stats5m?: null | TokenStatsWindowDto;
|
|
1242
|
+
stats6h?: null | TokenStatsWindowDto;
|
|
1243
|
+
symbol: string;
|
|
1244
|
+
tags: Array<string>;
|
|
1245
|
+
tokenProgram?: string | null;
|
|
1246
|
+
totalSupply?: number | null;
|
|
1247
|
+
updatedAt?: string | null;
|
|
1248
|
+
usdPrice?: number | null;
|
|
1249
|
+
};
|
|
1250
|
+
type TokenSearchResponseDto = {
|
|
1251
|
+
items: Array<TokenSearchItemDto>;
|
|
1252
|
+
};
|
|
1253
|
+
type TokenStatsWindowDto = {
|
|
1254
|
+
buyOrganicVolume?: number | null;
|
|
1255
|
+
buyVolume?: number | null;
|
|
1256
|
+
liquidityChange?: number | null;
|
|
1257
|
+
numBuys?: number | null;
|
|
1258
|
+
numNetBuyers?: number | null;
|
|
1259
|
+
numOrganicBuyers?: number | null;
|
|
1260
|
+
numSells?: number | null;
|
|
1261
|
+
numTraders?: number | null;
|
|
1262
|
+
priceChange?: number | null;
|
|
1263
|
+
sellOrganicVolume?: number | null;
|
|
1264
|
+
sellVolume?: number | null;
|
|
1265
|
+
volumeChange?: number | null;
|
|
1266
|
+
};
|
|
1267
|
+
type TokensError400BadRequest = {
|
|
1268
|
+
code: 'bad_request';
|
|
1269
|
+
};
|
|
1270
|
+
type TokensError400Error = ({
|
|
1271
|
+
code: 'bad_request';
|
|
1272
|
+
} & TokensError400BadRequest) | ({
|
|
1273
|
+
code: 'invalid_body' | 'invalid_path' | 'invalid_query';
|
|
1274
|
+
} & BadRequestErrorCodeErrorBody);
|
|
1275
|
+
type TokensError404Error = {
|
|
1276
|
+
code: 'not_found';
|
|
1277
|
+
};
|
|
1278
|
+
type TokensError429Error = ({
|
|
1279
|
+
code: 'too_many_requests';
|
|
1280
|
+
} & TokensError429TooManyRequests) | ({
|
|
1281
|
+
code: 'upstream_rate_limited';
|
|
1282
|
+
} & TokensError429UpstreamRateLimited);
|
|
1283
|
+
type TokensError429TooManyRequests = {
|
|
1284
|
+
code: 'too_many_requests';
|
|
1285
|
+
data: RetryAfterHint;
|
|
1286
|
+
};
|
|
1287
|
+
type TokensError429UpstreamRateLimited = {
|
|
1288
|
+
code: 'upstream_rate_limited';
|
|
1289
|
+
data: RetryAfterHint;
|
|
1290
|
+
};
|
|
1291
|
+
type TokensError500Error = {
|
|
1292
|
+
code: 'internal_error';
|
|
1293
|
+
};
|
|
1294
|
+
type TokensError502Error = {
|
|
1295
|
+
code: 'upstream_unavailable';
|
|
1296
|
+
};
|
|
1195
1297
|
type TradableAmountDto = {
|
|
1196
1298
|
amount: U64Dto;
|
|
1197
1299
|
usd: number;
|
|
@@ -2382,6 +2484,62 @@ type UpdateStreamSubscriptionResponses = {
|
|
|
2382
2484
|
};
|
|
2383
2485
|
};
|
|
2384
2486
|
type UpdateStreamSubscriptionResponse = UpdateStreamSubscriptionResponses[keyof UpdateStreamSubscriptionResponses];
|
|
2487
|
+
type GetPairPriceData = {
|
|
2488
|
+
body?: never;
|
|
2489
|
+
path?: never;
|
|
2490
|
+
query: {
|
|
2491
|
+
/**
|
|
2492
|
+
* Token A mint address (base58)
|
|
2493
|
+
*/
|
|
2494
|
+
tokenA: PubkeyDto;
|
|
2495
|
+
/**
|
|
2496
|
+
* Token B mint address (base58)
|
|
2497
|
+
*/
|
|
2498
|
+
tokenB: PubkeyDto;
|
|
2499
|
+
};
|
|
2500
|
+
url: '/v1/tokens/price';
|
|
2501
|
+
};
|
|
2502
|
+
type GetPairPriceErrors = {
|
|
2503
|
+
400: TokensError400Error;
|
|
2504
|
+
404: TokensError404Error;
|
|
2505
|
+
422: ValidationErrorCodeErrorBody;
|
|
2506
|
+
429: TokensError429Error;
|
|
2507
|
+
500: TokensError500Error;
|
|
2508
|
+
502: TokensError502Error;
|
|
2509
|
+
};
|
|
2510
|
+
type GetPairPriceError = GetPairPriceErrors[keyof GetPairPriceErrors];
|
|
2511
|
+
type GetPairPriceResponses = {
|
|
2512
|
+
200: {
|
|
2513
|
+
data: TokenPairPriceResponseDto;
|
|
2514
|
+
};
|
|
2515
|
+
};
|
|
2516
|
+
type GetPairPriceResponse = GetPairPriceResponses[keyof GetPairPriceResponses];
|
|
2517
|
+
type SearchTokensData = {
|
|
2518
|
+
body?: never;
|
|
2519
|
+
path?: never;
|
|
2520
|
+
query: {
|
|
2521
|
+
/**
|
|
2522
|
+
* Token search query by mint address or token name/symbol.
|
|
2523
|
+
*/
|
|
2524
|
+
q: string;
|
|
2525
|
+
};
|
|
2526
|
+
url: '/v1/tokens/search';
|
|
2527
|
+
};
|
|
2528
|
+
type SearchTokensErrors = {
|
|
2529
|
+
400: TokensError400Error;
|
|
2530
|
+
404: TokensError404Error;
|
|
2531
|
+
422: ValidationErrorCodeErrorBody;
|
|
2532
|
+
429: TokensError429Error;
|
|
2533
|
+
500: TokensError500Error;
|
|
2534
|
+
502: TokensError502Error;
|
|
2535
|
+
};
|
|
2536
|
+
type SearchTokensError = SearchTokensErrors[keyof SearchTokensErrors];
|
|
2537
|
+
type SearchTokensResponses = {
|
|
2538
|
+
200: {
|
|
2539
|
+
data: TokenSearchResponseDto;
|
|
2540
|
+
};
|
|
2541
|
+
};
|
|
2542
|
+
type SearchTokensResponse = SearchTokensResponses[keyof SearchTokensResponses];
|
|
2385
2543
|
type GetLendingPositionsData = {
|
|
2386
2544
|
body?: never;
|
|
2387
2545
|
path: {
|
|
@@ -3157,6 +3315,19 @@ declare class TunaBackendSdk extends HeyApiClient {
|
|
|
3157
3315
|
streamId: string;
|
|
3158
3316
|
subscriptionOptions: SubscriptionOptions;
|
|
3159
3317
|
}, options?: Options<never, ThrowOnError>): RequestResult<UpdateStreamSubscriptionResponses, UpdateStreamSubscriptionErrors, ThrowOnError, "fields">;
|
|
3318
|
+
/**
|
|
3319
|
+
* Get USD prices for token_a and token_b
|
|
3320
|
+
*/
|
|
3321
|
+
getPairPrice<ThrowOnError extends boolean = false>(parameters: {
|
|
3322
|
+
tokenA: PubkeyDto;
|
|
3323
|
+
tokenB: PubkeyDto;
|
|
3324
|
+
}, options?: Options<never, ThrowOnError>): RequestResult<GetPairPriceResponses, GetPairPriceErrors, ThrowOnError, "fields">;
|
|
3325
|
+
/**
|
|
3326
|
+
* Search tokens by mint or name/symbol
|
|
3327
|
+
*/
|
|
3328
|
+
searchTokens<ThrowOnError extends boolean = false>(parameters: {
|
|
3329
|
+
q: string;
|
|
3330
|
+
}, options?: Options<never, ThrowOnError>): RequestResult<SearchTokensResponses, SearchTokensErrors, ThrowOnError, "fields">;
|
|
3160
3331
|
/**
|
|
3161
3332
|
* Request all user lending positions
|
|
3162
3333
|
*/
|
|
@@ -3634,6 +3805,17 @@ declare const zMintDto: z.ZodObject<{
|
|
|
3634
3805
|
name: z.ZodString;
|
|
3635
3806
|
symbol: z.ZodString;
|
|
3636
3807
|
}, z.core.$strip>;
|
|
3808
|
+
declare const zRateLimitSource: z.ZodEnum<{
|
|
3809
|
+
internal: "internal";
|
|
3810
|
+
upstream: "upstream";
|
|
3811
|
+
}>;
|
|
3812
|
+
declare const zRetryAfterHint: z.ZodObject<{
|
|
3813
|
+
retryAfterSeconds: z.ZodCoercedBigInt<unknown>;
|
|
3814
|
+
source: z.ZodEnum<{
|
|
3815
|
+
internal: "internal";
|
|
3816
|
+
upstream: "upstream";
|
|
3817
|
+
}>;
|
|
3818
|
+
}, z.core.$strip>;
|
|
3637
3819
|
declare const zSpotPositionError404Error: z.ZodObject<{
|
|
3638
3820
|
code: z.ZodEnum<{
|
|
3639
3821
|
not_found: "not_found";
|
|
@@ -3755,6 +3937,309 @@ declare const zPoolTicksDto: z.ZodObject<{
|
|
|
3755
3937
|
liquidity: z.ZodString;
|
|
3756
3938
|
}, z.core.$strip>>;
|
|
3757
3939
|
}, z.core.$strip>;
|
|
3940
|
+
declare const zTokenAuditDto: z.ZodObject<{
|
|
3941
|
+
freezeAuthorityDisabled: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
3942
|
+
mintAuthorityDisabled: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
3943
|
+
topHoldersPercentage: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
3944
|
+
}, z.core.$strip>;
|
|
3945
|
+
declare const zTokenFirstPoolDto: z.ZodObject<{
|
|
3946
|
+
createdAt: z.ZodString;
|
|
3947
|
+
id: z.ZodString;
|
|
3948
|
+
}, z.core.$strip>;
|
|
3949
|
+
declare const zTokenPriceDto: z.ZodObject<{
|
|
3950
|
+
mint: z.ZodString;
|
|
3951
|
+
priceBlockId: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
|
|
3952
|
+
priceChange24h: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
3953
|
+
usdPrice: z.ZodNumber;
|
|
3954
|
+
}, z.core.$strip>;
|
|
3955
|
+
declare const zTokenPairPriceResponseDto: z.ZodObject<{
|
|
3956
|
+
tokenA: z.ZodObject<{
|
|
3957
|
+
mint: z.ZodString;
|
|
3958
|
+
priceBlockId: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
|
|
3959
|
+
priceChange24h: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
3960
|
+
usdPrice: z.ZodNumber;
|
|
3961
|
+
}, z.core.$strip>;
|
|
3962
|
+
tokenB: z.ZodObject<{
|
|
3963
|
+
mint: z.ZodString;
|
|
3964
|
+
priceBlockId: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
|
|
3965
|
+
priceChange24h: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
3966
|
+
usdPrice: z.ZodNumber;
|
|
3967
|
+
}, z.core.$strip>;
|
|
3968
|
+
}, z.core.$strip>;
|
|
3969
|
+
declare const zTokenStatsWindowDto: z.ZodObject<{
|
|
3970
|
+
buyOrganicVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
3971
|
+
buyVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
3972
|
+
liquidityChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
3973
|
+
numBuys: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
|
|
3974
|
+
numNetBuyers: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
|
|
3975
|
+
numOrganicBuyers: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
|
|
3976
|
+
numSells: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
|
|
3977
|
+
numTraders: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
|
|
3978
|
+
priceChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
3979
|
+
sellOrganicVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
3980
|
+
sellVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
3981
|
+
volumeChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
3982
|
+
}, z.core.$strip>;
|
|
3983
|
+
declare const zTokenSearchItemDto: z.ZodObject<{
|
|
3984
|
+
audit: z.ZodOptional<z.ZodUnion<readonly [z.ZodNull, z.ZodObject<{
|
|
3985
|
+
freezeAuthorityDisabled: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
3986
|
+
mintAuthorityDisabled: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
3987
|
+
topHoldersPercentage: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
3988
|
+
}, z.core.$strip>]>>;
|
|
3989
|
+
circSupply: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
3990
|
+
decimals: z.ZodInt;
|
|
3991
|
+
fdv: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
3992
|
+
firstPool: z.ZodOptional<z.ZodUnion<readonly [z.ZodNull, z.ZodObject<{
|
|
3993
|
+
createdAt: z.ZodString;
|
|
3994
|
+
id: z.ZodString;
|
|
3995
|
+
}, z.core.$strip>]>>;
|
|
3996
|
+
holderCount: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
|
|
3997
|
+
iconUrl: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
3998
|
+
isVerified: z.ZodBoolean;
|
|
3999
|
+
liquidity: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
4000
|
+
mcap: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
4001
|
+
mint: z.ZodString;
|
|
4002
|
+
name: z.ZodString;
|
|
4003
|
+
organicScore: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
4004
|
+
organicScoreLabel: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
4005
|
+
priceBlockId: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
|
|
4006
|
+
stats1h: z.ZodOptional<z.ZodUnion<readonly [z.ZodNull, z.ZodObject<{
|
|
4007
|
+
buyOrganicVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
4008
|
+
buyVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
4009
|
+
liquidityChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
4010
|
+
numBuys: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
|
|
4011
|
+
numNetBuyers: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
|
|
4012
|
+
numOrganicBuyers: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
|
|
4013
|
+
numSells: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
|
|
4014
|
+
numTraders: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
|
|
4015
|
+
priceChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
4016
|
+
sellOrganicVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
4017
|
+
sellVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
4018
|
+
volumeChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
4019
|
+
}, z.core.$strip>]>>;
|
|
4020
|
+
stats24h: z.ZodOptional<z.ZodUnion<readonly [z.ZodNull, z.ZodObject<{
|
|
4021
|
+
buyOrganicVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
4022
|
+
buyVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
4023
|
+
liquidityChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
4024
|
+
numBuys: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
|
|
4025
|
+
numNetBuyers: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
|
|
4026
|
+
numOrganicBuyers: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
|
|
4027
|
+
numSells: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
|
|
4028
|
+
numTraders: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
|
|
4029
|
+
priceChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
4030
|
+
sellOrganicVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
4031
|
+
sellVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
4032
|
+
volumeChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
4033
|
+
}, z.core.$strip>]>>;
|
|
4034
|
+
stats5m: z.ZodOptional<z.ZodUnion<readonly [z.ZodNull, z.ZodObject<{
|
|
4035
|
+
buyOrganicVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
4036
|
+
buyVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
4037
|
+
liquidityChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
4038
|
+
numBuys: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
|
|
4039
|
+
numNetBuyers: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
|
|
4040
|
+
numOrganicBuyers: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
|
|
4041
|
+
numSells: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
|
|
4042
|
+
numTraders: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
|
|
4043
|
+
priceChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
4044
|
+
sellOrganicVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
4045
|
+
sellVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
4046
|
+
volumeChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
4047
|
+
}, z.core.$strip>]>>;
|
|
4048
|
+
stats6h: z.ZodOptional<z.ZodUnion<readonly [z.ZodNull, z.ZodObject<{
|
|
4049
|
+
buyOrganicVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
4050
|
+
buyVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
4051
|
+
liquidityChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
4052
|
+
numBuys: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
|
|
4053
|
+
numNetBuyers: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
|
|
4054
|
+
numOrganicBuyers: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
|
|
4055
|
+
numSells: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
|
|
4056
|
+
numTraders: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
|
|
4057
|
+
priceChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
4058
|
+
sellOrganicVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
4059
|
+
sellVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
4060
|
+
volumeChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
4061
|
+
}, z.core.$strip>]>>;
|
|
4062
|
+
symbol: z.ZodString;
|
|
4063
|
+
tags: z.ZodArray<z.ZodString>;
|
|
4064
|
+
tokenProgram: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
4065
|
+
totalSupply: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
4066
|
+
updatedAt: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
4067
|
+
usdPrice: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
4068
|
+
}, z.core.$strip>;
|
|
4069
|
+
declare const zTokenSearchResponseDto: z.ZodObject<{
|
|
4070
|
+
items: z.ZodArray<z.ZodObject<{
|
|
4071
|
+
audit: z.ZodOptional<z.ZodUnion<readonly [z.ZodNull, z.ZodObject<{
|
|
4072
|
+
freezeAuthorityDisabled: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
4073
|
+
mintAuthorityDisabled: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
4074
|
+
topHoldersPercentage: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
4075
|
+
}, z.core.$strip>]>>;
|
|
4076
|
+
circSupply: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
4077
|
+
decimals: z.ZodInt;
|
|
4078
|
+
fdv: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
4079
|
+
firstPool: z.ZodOptional<z.ZodUnion<readonly [z.ZodNull, z.ZodObject<{
|
|
4080
|
+
createdAt: z.ZodString;
|
|
4081
|
+
id: z.ZodString;
|
|
4082
|
+
}, z.core.$strip>]>>;
|
|
4083
|
+
holderCount: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
|
|
4084
|
+
iconUrl: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
4085
|
+
isVerified: z.ZodBoolean;
|
|
4086
|
+
liquidity: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
4087
|
+
mcap: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
4088
|
+
mint: z.ZodString;
|
|
4089
|
+
name: z.ZodString;
|
|
4090
|
+
organicScore: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
4091
|
+
organicScoreLabel: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
4092
|
+
priceBlockId: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
|
|
4093
|
+
stats1h: z.ZodOptional<z.ZodUnion<readonly [z.ZodNull, z.ZodObject<{
|
|
4094
|
+
buyOrganicVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
4095
|
+
buyVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
4096
|
+
liquidityChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
4097
|
+
numBuys: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
|
|
4098
|
+
numNetBuyers: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
|
|
4099
|
+
numOrganicBuyers: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
|
|
4100
|
+
numSells: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
|
|
4101
|
+
numTraders: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
|
|
4102
|
+
priceChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
4103
|
+
sellOrganicVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
4104
|
+
sellVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
4105
|
+
volumeChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
4106
|
+
}, z.core.$strip>]>>;
|
|
4107
|
+
stats24h: z.ZodOptional<z.ZodUnion<readonly [z.ZodNull, z.ZodObject<{
|
|
4108
|
+
buyOrganicVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
4109
|
+
buyVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
4110
|
+
liquidityChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
4111
|
+
numBuys: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
|
|
4112
|
+
numNetBuyers: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
|
|
4113
|
+
numOrganicBuyers: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
|
|
4114
|
+
numSells: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
|
|
4115
|
+
numTraders: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
|
|
4116
|
+
priceChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
4117
|
+
sellOrganicVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
4118
|
+
sellVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
4119
|
+
volumeChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
4120
|
+
}, z.core.$strip>]>>;
|
|
4121
|
+
stats5m: z.ZodOptional<z.ZodUnion<readonly [z.ZodNull, z.ZodObject<{
|
|
4122
|
+
buyOrganicVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
4123
|
+
buyVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
4124
|
+
liquidityChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
4125
|
+
numBuys: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
|
|
4126
|
+
numNetBuyers: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
|
|
4127
|
+
numOrganicBuyers: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
|
|
4128
|
+
numSells: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
|
|
4129
|
+
numTraders: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
|
|
4130
|
+
priceChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
4131
|
+
sellOrganicVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
4132
|
+
sellVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
4133
|
+
volumeChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
4134
|
+
}, z.core.$strip>]>>;
|
|
4135
|
+
stats6h: z.ZodOptional<z.ZodUnion<readonly [z.ZodNull, z.ZodObject<{
|
|
4136
|
+
buyOrganicVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
4137
|
+
buyVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
4138
|
+
liquidityChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
4139
|
+
numBuys: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
|
|
4140
|
+
numNetBuyers: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
|
|
4141
|
+
numOrganicBuyers: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
|
|
4142
|
+
numSells: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
|
|
4143
|
+
numTraders: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
|
|
4144
|
+
priceChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
4145
|
+
sellOrganicVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
4146
|
+
sellVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
4147
|
+
volumeChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
4148
|
+
}, z.core.$strip>]>>;
|
|
4149
|
+
symbol: z.ZodString;
|
|
4150
|
+
tags: z.ZodArray<z.ZodString>;
|
|
4151
|
+
tokenProgram: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
4152
|
+
totalSupply: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
4153
|
+
updatedAt: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
4154
|
+
usdPrice: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
4155
|
+
}, z.core.$strip>>;
|
|
4156
|
+
}, z.core.$strip>;
|
|
4157
|
+
declare const zTokensError400BadRequest: z.ZodObject<{
|
|
4158
|
+
code: z.ZodEnum<{
|
|
4159
|
+
bad_request: "bad_request";
|
|
4160
|
+
}>;
|
|
4161
|
+
}, z.core.$strip>;
|
|
4162
|
+
declare const zTokensError400Error: z.ZodUnion<readonly [z.ZodIntersection<z.ZodObject<{
|
|
4163
|
+
code: z.ZodLiteral<"bad_request">;
|
|
4164
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4165
|
+
code: z.ZodEnum<{
|
|
4166
|
+
bad_request: "bad_request";
|
|
4167
|
+
}>;
|
|
4168
|
+
}, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
|
|
4169
|
+
code: z.ZodUnion<readonly [z.ZodLiteral<"invalid_body">, z.ZodLiteral<"invalid_path">, z.ZodLiteral<"invalid_query">]>;
|
|
4170
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4171
|
+
code: z.ZodEnum<{
|
|
4172
|
+
invalid_path: "invalid_path";
|
|
4173
|
+
invalid_query: "invalid_query";
|
|
4174
|
+
invalid_body: "invalid_body";
|
|
4175
|
+
}>;
|
|
4176
|
+
}, z.core.$strip>>]>;
|
|
4177
|
+
declare const zTokensError404Error: z.ZodObject<{
|
|
4178
|
+
code: z.ZodEnum<{
|
|
4179
|
+
not_found: "not_found";
|
|
4180
|
+
}>;
|
|
4181
|
+
}, z.core.$strip>;
|
|
4182
|
+
declare const zTokensError429TooManyRequests: z.ZodObject<{
|
|
4183
|
+
code: z.ZodEnum<{
|
|
4184
|
+
too_many_requests: "too_many_requests";
|
|
4185
|
+
}>;
|
|
4186
|
+
data: z.ZodObject<{
|
|
4187
|
+
retryAfterSeconds: z.ZodCoercedBigInt<unknown>;
|
|
4188
|
+
source: z.ZodEnum<{
|
|
4189
|
+
internal: "internal";
|
|
4190
|
+
upstream: "upstream";
|
|
4191
|
+
}>;
|
|
4192
|
+
}, z.core.$strip>;
|
|
4193
|
+
}, z.core.$strip>;
|
|
4194
|
+
declare const zTokensError429UpstreamRateLimited: z.ZodObject<{
|
|
4195
|
+
code: z.ZodEnum<{
|
|
4196
|
+
upstream_rate_limited: "upstream_rate_limited";
|
|
4197
|
+
}>;
|
|
4198
|
+
data: z.ZodObject<{
|
|
4199
|
+
retryAfterSeconds: z.ZodCoercedBigInt<unknown>;
|
|
4200
|
+
source: z.ZodEnum<{
|
|
4201
|
+
internal: "internal";
|
|
4202
|
+
upstream: "upstream";
|
|
4203
|
+
}>;
|
|
4204
|
+
}, z.core.$strip>;
|
|
4205
|
+
}, z.core.$strip>;
|
|
4206
|
+
declare const zTokensError429Error: z.ZodUnion<readonly [z.ZodIntersection<z.ZodObject<{
|
|
4207
|
+
code: z.ZodLiteral<"too_many_requests">;
|
|
4208
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4209
|
+
code: z.ZodEnum<{
|
|
4210
|
+
too_many_requests: "too_many_requests";
|
|
4211
|
+
}>;
|
|
4212
|
+
data: z.ZodObject<{
|
|
4213
|
+
retryAfterSeconds: z.ZodCoercedBigInt<unknown>;
|
|
4214
|
+
source: z.ZodEnum<{
|
|
4215
|
+
internal: "internal";
|
|
4216
|
+
upstream: "upstream";
|
|
4217
|
+
}>;
|
|
4218
|
+
}, z.core.$strip>;
|
|
4219
|
+
}, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
|
|
4220
|
+
code: z.ZodLiteral<"upstream_rate_limited">;
|
|
4221
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4222
|
+
code: z.ZodEnum<{
|
|
4223
|
+
upstream_rate_limited: "upstream_rate_limited";
|
|
4224
|
+
}>;
|
|
4225
|
+
data: z.ZodObject<{
|
|
4226
|
+
retryAfterSeconds: z.ZodCoercedBigInt<unknown>;
|
|
4227
|
+
source: z.ZodEnum<{
|
|
4228
|
+
internal: "internal";
|
|
4229
|
+
upstream: "upstream";
|
|
4230
|
+
}>;
|
|
4231
|
+
}, z.core.$strip>;
|
|
4232
|
+
}, z.core.$strip>>]>;
|
|
4233
|
+
declare const zTokensError500Error: z.ZodObject<{
|
|
4234
|
+
code: z.ZodEnum<{
|
|
4235
|
+
internal_error: "internal_error";
|
|
4236
|
+
}>;
|
|
4237
|
+
}, z.core.$strip>;
|
|
4238
|
+
declare const zTokensError502Error: z.ZodObject<{
|
|
4239
|
+
code: z.ZodEnum<{
|
|
4240
|
+
upstream_unavailable: "upstream_unavailable";
|
|
4241
|
+
}>;
|
|
4242
|
+
}, z.core.$strip>;
|
|
3758
4243
|
declare const zTradeHistoryAction: z.ZodEnum<{
|
|
3759
4244
|
swap: "swap";
|
|
3760
4245
|
limit_order_fill: "limit_order_fill";
|
|
@@ -11995,6 +12480,129 @@ declare const zUpdateStreamSubscriptionResponse: z.ZodObject<{
|
|
|
11995
12480
|
}, z.core.$strip>;
|
|
11996
12481
|
}, z.core.$strip>;
|
|
11997
12482
|
type UpdateStreamSubscriptionResponseZodType = z.infer<typeof zUpdateStreamSubscriptionResponse>;
|
|
12483
|
+
declare const zGetPairPriceData: z.ZodObject<{
|
|
12484
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
12485
|
+
path: z.ZodOptional<z.ZodNever>;
|
|
12486
|
+
query: z.ZodObject<{
|
|
12487
|
+
tokenA: z.ZodString;
|
|
12488
|
+
tokenB: z.ZodString;
|
|
12489
|
+
}, z.core.$strip>;
|
|
12490
|
+
}, z.core.$strip>;
|
|
12491
|
+
declare const zGetPairPriceResponse: z.ZodObject<{
|
|
12492
|
+
data: z.ZodObject<{
|
|
12493
|
+
tokenA: z.ZodObject<{
|
|
12494
|
+
mint: z.ZodString;
|
|
12495
|
+
priceBlockId: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
|
|
12496
|
+
priceChange24h: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
12497
|
+
usdPrice: z.ZodNumber;
|
|
12498
|
+
}, z.core.$strip>;
|
|
12499
|
+
tokenB: z.ZodObject<{
|
|
12500
|
+
mint: z.ZodString;
|
|
12501
|
+
priceBlockId: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
|
|
12502
|
+
priceChange24h: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
12503
|
+
usdPrice: z.ZodNumber;
|
|
12504
|
+
}, z.core.$strip>;
|
|
12505
|
+
}, z.core.$strip>;
|
|
12506
|
+
}, z.core.$strip>;
|
|
12507
|
+
type GetPairPriceResponseZodType = z.infer<typeof zGetPairPriceResponse>;
|
|
12508
|
+
declare const zSearchTokensData: z.ZodObject<{
|
|
12509
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
12510
|
+
path: z.ZodOptional<z.ZodNever>;
|
|
12511
|
+
query: z.ZodObject<{
|
|
12512
|
+
q: z.ZodString;
|
|
12513
|
+
}, z.core.$strip>;
|
|
12514
|
+
}, z.core.$strip>;
|
|
12515
|
+
declare const zSearchTokensResponse: z.ZodObject<{
|
|
12516
|
+
data: z.ZodObject<{
|
|
12517
|
+
items: z.ZodArray<z.ZodObject<{
|
|
12518
|
+
audit: z.ZodOptional<z.ZodUnion<readonly [z.ZodNull, z.ZodObject<{
|
|
12519
|
+
freezeAuthorityDisabled: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
12520
|
+
mintAuthorityDisabled: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
12521
|
+
topHoldersPercentage: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
12522
|
+
}, z.core.$strip>]>>;
|
|
12523
|
+
circSupply: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
12524
|
+
decimals: z.ZodInt;
|
|
12525
|
+
fdv: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
12526
|
+
firstPool: z.ZodOptional<z.ZodUnion<readonly [z.ZodNull, z.ZodObject<{
|
|
12527
|
+
createdAt: z.ZodString;
|
|
12528
|
+
id: z.ZodString;
|
|
12529
|
+
}, z.core.$strip>]>>;
|
|
12530
|
+
holderCount: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
|
|
12531
|
+
iconUrl: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
12532
|
+
isVerified: z.ZodBoolean;
|
|
12533
|
+
liquidity: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
12534
|
+
mcap: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
12535
|
+
mint: z.ZodString;
|
|
12536
|
+
name: z.ZodString;
|
|
12537
|
+
organicScore: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
12538
|
+
organicScoreLabel: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
12539
|
+
priceBlockId: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
|
|
12540
|
+
stats1h: z.ZodOptional<z.ZodUnion<readonly [z.ZodNull, z.ZodObject<{
|
|
12541
|
+
buyOrganicVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
12542
|
+
buyVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
12543
|
+
liquidityChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
12544
|
+
numBuys: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
|
|
12545
|
+
numNetBuyers: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
|
|
12546
|
+
numOrganicBuyers: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
|
|
12547
|
+
numSells: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
|
|
12548
|
+
numTraders: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
|
|
12549
|
+
priceChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
12550
|
+
sellOrganicVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
12551
|
+
sellVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
12552
|
+
volumeChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
12553
|
+
}, z.core.$strip>]>>;
|
|
12554
|
+
stats24h: z.ZodOptional<z.ZodUnion<readonly [z.ZodNull, z.ZodObject<{
|
|
12555
|
+
buyOrganicVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
12556
|
+
buyVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
12557
|
+
liquidityChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
12558
|
+
numBuys: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
|
|
12559
|
+
numNetBuyers: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
|
|
12560
|
+
numOrganicBuyers: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
|
|
12561
|
+
numSells: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
|
|
12562
|
+
numTraders: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
|
|
12563
|
+
priceChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
12564
|
+
sellOrganicVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
12565
|
+
sellVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
12566
|
+
volumeChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
12567
|
+
}, z.core.$strip>]>>;
|
|
12568
|
+
stats5m: z.ZodOptional<z.ZodUnion<readonly [z.ZodNull, z.ZodObject<{
|
|
12569
|
+
buyOrganicVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
12570
|
+
buyVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
12571
|
+
liquidityChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
12572
|
+
numBuys: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
|
|
12573
|
+
numNetBuyers: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
|
|
12574
|
+
numOrganicBuyers: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
|
|
12575
|
+
numSells: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
|
|
12576
|
+
numTraders: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
|
|
12577
|
+
priceChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
12578
|
+
sellOrganicVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
12579
|
+
sellVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
12580
|
+
volumeChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
12581
|
+
}, z.core.$strip>]>>;
|
|
12582
|
+
stats6h: z.ZodOptional<z.ZodUnion<readonly [z.ZodNull, z.ZodObject<{
|
|
12583
|
+
buyOrganicVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
12584
|
+
buyVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
12585
|
+
liquidityChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
12586
|
+
numBuys: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
|
|
12587
|
+
numNetBuyers: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
|
|
12588
|
+
numOrganicBuyers: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
|
|
12589
|
+
numSells: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
|
|
12590
|
+
numTraders: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
|
|
12591
|
+
priceChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
12592
|
+
sellOrganicVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
12593
|
+
sellVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
12594
|
+
volumeChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
12595
|
+
}, z.core.$strip>]>>;
|
|
12596
|
+
symbol: z.ZodString;
|
|
12597
|
+
tags: z.ZodArray<z.ZodString>;
|
|
12598
|
+
tokenProgram: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
12599
|
+
totalSupply: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
12600
|
+
updatedAt: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
12601
|
+
usdPrice: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
12602
|
+
}, z.core.$strip>>;
|
|
12603
|
+
}, z.core.$strip>;
|
|
12604
|
+
}, z.core.$strip>;
|
|
12605
|
+
type SearchTokensResponseZodType = z.infer<typeof zSearchTokensResponse>;
|
|
11998
12606
|
declare const zGetLendingPositionsData: z.ZodObject<{
|
|
11999
12607
|
body: z.ZodOptional<z.ZodNever>;
|
|
12000
12608
|
path: z.ZodObject<{
|
|
@@ -14091,4 +14699,4 @@ declare class TunaBackendSdkError<TCause = unknown> extends Error {
|
|
|
14091
14699
|
declare const tunaSdkErrorInterceptor: (error: unknown, response?: Response) => TunaBackendSdkError<unknown>;
|
|
14092
14700
|
declare const isTunaSdkError: <TCause = unknown>(error: unknown) => error is TunaBackendSdkError<TCause>;
|
|
14093
14701
|
|
|
14094
|
-
export { type BadRequestErrorCodeErrorBody, type ClientOptions, type CloseSpotPositionQuoteDto, type DecreaseSpotPositionQuoteDto, type FeeAmountWithUsd, type FeesStatsGroupDto, type FieldError, type FusionFeesStatsGroupDto, type GetCloseSpotPositionQuoteData, type GetCloseSpotPositionQuoteError, type GetCloseSpotPositionQuoteErrors, type GetCloseSpotPositionQuoteResponse, type GetCloseSpotPositionQuoteResponseZodType, type GetCloseSpotPositionQuoteResponses, type GetDecreaseSpotPositionQuoteData, type GetDecreaseSpotPositionQuoteError, type GetDecreaseSpotPositionQuoteErrors, type GetDecreaseSpotPositionQuoteResponse, type GetDecreaseSpotPositionQuoteResponseZodType, type GetDecreaseSpotPositionQuoteResponses, type GetFeesStatsData, type GetFeesStatsError, type GetFeesStatsErrors, type GetFeesStatsResponse, type GetFeesStatsResponseZodType, type GetFeesStatsResponses, type GetFusionFeesStatsData, type GetFusionFeesStatsError, type GetFusionFeesStatsErrors, type GetFusionFeesStatsResponse, type GetFusionFeesStatsResponseZodType, type GetFusionFeesStatsResponses, type GetIncreaseSpotPositionQuoteData, type GetIncreaseSpotPositionQuoteError, type GetIncreaseSpotPositionQuoteErrors, type GetIncreaseSpotPositionQuoteResponse, type GetIncreaseSpotPositionQuoteResponseZodType, type GetIncreaseSpotPositionQuoteResponses, type GetLendingPositionData, type GetLendingPositionError, type GetLendingPositionErrors, type GetLendingPositionResponse, type GetLendingPositionResponseZodType, type GetLendingPositionResponses, type GetLendingPositionsData, type GetLendingPositionsError, type GetLendingPositionsErrors, type GetLendingPositionsResponse, type GetLendingPositionsResponseZodType, type GetLendingPositionsResponses, type GetLimitOrderData, type GetLimitOrderError, type GetLimitOrderError404Error, type GetLimitOrderError500Error, type GetLimitOrderErrors, type GetLimitOrderQuoteByInputData, type GetLimitOrderQuoteByInputError, type GetLimitOrderQuoteByInputErrors, type GetLimitOrderQuoteByInputResponse, type GetLimitOrderQuoteByInputResponseZodType, type GetLimitOrderQuoteByInputResponses, type GetLimitOrderQuoteByOutputData, type GetLimitOrderQuoteByOutputError, type GetLimitOrderQuoteByOutputErrors, type GetLimitOrderQuoteByOutputResponse, type GetLimitOrderQuoteByOutputResponseZodType, type GetLimitOrderQuoteByOutputResponses, type GetLimitOrderResponse, type GetLimitOrderResponseZodType, type GetLimitOrderResponses, type GetLimitOrdersData, type GetLimitOrdersError, type GetLimitOrdersErrors, type GetLimitOrdersResponse, type GetLimitOrdersResponseZodType, type GetLimitOrdersResponses, type GetLpPositionActionsData, type GetLpPositionActionsError, type GetLpPositionActionsErrors, type GetLpPositionActionsResponse, type GetLpPositionActionsResponseZodType, type GetLpPositionActionsResponses, type GetLpPositionsData, type GetLpPositionsError, type GetLpPositionsErrors, type GetLpPositionsResponse, type GetLpPositionsResponseZodType, type GetLpPositionsResponses, type GetLpSpotLeaderboardData, type GetLpSpotLeaderboardError, type GetLpSpotLeaderboardErrors, type GetLpSpotLeaderboardResponse, type GetLpSpotLeaderboardResponseZodType, type GetLpSpotLeaderboardResponses, type GetMarketData, type GetMarketError, type GetMarketErrors, type GetMarketResponse, type GetMarketResponseZodType, type GetMarketResponses, type GetMarketsData, type GetMarketsError, type GetMarketsErrors, type GetMarketsResponse, type GetMarketsResponseZodType, type GetMarketsResponses, type GetMintData, type GetMintError, type GetMintErrors, type GetMintResponse, type GetMintResponseZodType, type GetMintResponses, type GetMintsData, type GetMintsError, type GetMintsErrors, type GetMintsResponse, type GetMintsResponseZodType, type GetMintsResponses, type GetOraclePriceData, type GetOraclePriceError, type GetOraclePriceErrors, type GetOraclePriceResponse, type GetOraclePriceResponseZodType, type GetOraclePriceResponses, type GetOraclePricesData, type GetOraclePricesError, type GetOraclePricesErrors, type GetOraclePricesResponse, type GetOraclePricesResponseZodType, type GetOraclePricesResponses, type GetOrderHistoryData, type GetOrderHistoryError, type GetOrderHistoryErrors, type GetOrderHistoryResponse, type GetOrderHistoryResponseZodType, type GetOrderHistoryResponses, type GetPoolCandlesData, type GetPoolCandlesError, type GetPoolCandlesErrors, type GetPoolCandlesResponse, type GetPoolCandlesResponseZodType, type GetPoolCandlesResponses, type GetPoolData, type GetPoolError, type GetPoolErrors, type GetPoolOrderBookData, type GetPoolOrderBookError, type GetPoolOrderBookErrors, type GetPoolOrderBookResponse, type GetPoolOrderBookResponseZodType, type GetPoolOrderBookResponses, type GetPoolResponse, type GetPoolResponseZodType, type GetPoolResponses, type GetPoolSwapsData, type GetPoolSwapsError, type GetPoolSwapsErrors, type GetPoolSwapsResponse, type GetPoolSwapsResponseZodType, type GetPoolSwapsResponses, type GetPoolTicksData, type GetPoolTicksError, type GetPoolTicksErrors, type GetPoolTicksResponse, type GetPoolTicksResponseZodType, type GetPoolTicksResponses, type GetPoolsData, type GetPoolsError, type GetPoolsErrors, type GetPoolsResponse, type GetPoolsResponseZodType, type GetPoolsResponses, type GetPositionsStatsData, type GetPositionsStatsError, type GetPositionsStatsErrors, type GetPositionsStatsResponse, type GetPositionsStatsResponseZodType, type GetPositionsStatsResponses, type GetPositionsTotalData, type GetPositionsTotalError, type GetPositionsTotalErrors, type GetPositionsTotalResponse, type GetPositionsTotalResponseZodType, type GetPositionsTotalResponses, type GetSpotPositionData, type GetSpotPositionError, type GetSpotPositionErrors, type GetSpotPositionResponse, type GetSpotPositionResponseZodType, type GetSpotPositionResponses, type GetSpotPositionsData, type GetSpotPositionsError, type GetSpotPositionsErrors, type GetSpotPositionsResponse, type GetSpotPositionsResponseZodType, type GetSpotPositionsResponses, type GetStakingLeaderboardData, type GetStakingLeaderboardError, type GetStakingLeaderboardErrors, type GetStakingLeaderboardResponse, type GetStakingLeaderboardResponseZodType, type GetStakingLeaderboardResponses, type GetStakingRevenueStatsData, type GetStakingRevenueStatsError, type GetStakingRevenueStatsErrors, type GetStakingRevenueStatsResponse, type GetStakingRevenueStatsResponseZodType, type GetStakingRevenueStatsResponses, type GetStakingTreasuryData, type GetStakingTreasuryError, type GetStakingTreasuryErrors, type GetStakingTreasuryResponse, type GetStakingTreasuryResponseZodType, type GetStakingTreasuryResponses, type GetSwapQuoteByInputData, type GetSwapQuoteByInputError, type GetSwapQuoteByInputErrors, type GetSwapQuoteByInputResponse, type GetSwapQuoteByInputResponseZodType, type GetSwapQuoteByInputResponses, type GetSwapQuoteByOutputData, type GetSwapQuoteByOutputError, type GetSwapQuoteByOutputErrors, type GetSwapQuoteByOutputResponse, type GetSwapQuoteByOutputResponseZodType, type GetSwapQuoteByOutputResponses, type GetTradableAmountData, type GetTradableAmountError, type GetTradableAmountErrors, type GetTradableAmountResponse, type GetTradableAmountResponseZodType, type GetTradableAmountResponses, type GetTradeHistoryData, type GetTradeHistoryError, type GetTradeHistoryErrors, type GetTradeHistoryResponse, type GetTradeHistoryResponseZodType, type GetTradeHistoryResponses, type GetTunaPositionData, type GetTunaPositionError, type GetTunaPositionErrors, type GetTunaPositionResponse, type GetTunaPositionResponseZodType, type GetTunaPositionResponses, type GetTunaPositionsData, type GetTunaPositionsError, type GetTunaPositionsErrors, type GetTunaPositionsResponse, type GetTunaPositionsResponseZodType, type GetTunaPositionsResponses, type GetUserStakingPositionData, type GetUserStakingPositionError, type GetUserStakingPositionErrors, type GetUserStakingPositionHistoryData, type GetUserStakingPositionHistoryError, type GetUserStakingPositionHistoryErrors, type GetUserStakingPositionHistoryResponse, type GetUserStakingPositionHistoryResponseZodType, type GetUserStakingPositionHistoryResponses, type GetUserStakingPositionResponse, type GetUserStakingPositionResponseZodType, type GetUserStakingPositionResponses, type GetVaultData, type GetVaultError, type GetVaultErrors, type GetVaultHistoryData, type GetVaultHistoryError, type GetVaultHistoryErrors, type GetVaultHistoryResponse, type GetVaultHistoryResponseZodType, type GetVaultHistoryResponses, type GetVaultResponse, type GetVaultResponseZodType, type GetVaultResponses, type GetVaultsData, type GetVaultsError, type GetVaultsErrors, type GetVaultsResponse, type GetVaultsResponseZodType, type GetVaultsResponses, type HttpStatusData, type I128Dto, type I64Dto, type IncreaseSpotPositionQuoteDto, type InternalErrorCodeErrorBody, type LeaderboardError400BadRequest, type LeaderboardError400Error, type LeaderboardError500Error, type LeaderboardItemDto, LeaderboardPeriod, LeaderboardSortBy, type LendingPositionDto, type LendingPositionError404Error, type LendingPositionError500Error, type LendingPositionResponse, type LendingPositionsListResponse, type LimitOrderDto, type LimitOrderQuoteByInputDto, type LimitOrderQuoteByOutputDto, type LimitOrderResponse, LimitOrderStatus, type LimitOrdersListResponse, type LpPositionResponse, type LpPositionsError400BadRequest, type LpPositionsError400Error, type LpPositionsError500Error, type LpPositionsHistoryListResponse, type LpPositionsListResponse, type MarketDto, type MarketError404Error, type MarketError500Error, type MarketResponse, type MarketsListResponse, type MintDto, type MintError404Error, type MintError500Error, NotificationAction, NotificationEntity, type Options, type OraclePriceDto, type OraclePriceError404Error, type OraclePriceError500Error, type OrderBookDto, type OrderBookEntryDto, type OrderBookWrapper, type OrderHistoryEntryDto, type OrderHistoryListResponse, type OrderHistoryNotificationResponse, OrderHistoryStatus, OrderHistoryType, OrderHistoryUiDirection, type PaginationMeta, type PoolDto, type PoolPriceCandleDto, PoolProvider, type PoolStatsDto, type PoolStatsGroupDto, type PoolStatsGroupEntryDto, type PoolSubscription, PoolSubscriptionTopic, type PoolSwapDto, type PoolTicksDto, type PoolsError400BadRequest, type PoolsError400Error, type PoolsError404Error, type PoolsError500Error, type PubkeyDto, type ServerSentEventsOptions, type ServerSentEventsResult, type Snapshot, type SnapshotContainer, type SpotPositionError404Error, type SpotPositionError500Error, type SpotPositionResponse, type SpotPositionsListResponse, type SseData, type SseErrors, type SseResponse, type SseResponse2, type SseResponseInitialMessage, type SseResponseLendingPosition, type SseResponseLendingPositionPayload, type SseResponseOrderHistoryEntry, type SseResponseOrderHistoryEntryPayload, type SseResponsePoolSwap, type SseResponsePoolSwapPayload, type SseResponseSnapshot, type SseResponseStakingPosition, type SseResponseStakingPositionPayload, type SseResponseTradeHistoryEntry, type SseResponseTradeHistoryEntryPayload, type SseResponseZodType, type SseResponses, type StakingDepositsStatsDto, type StakingError400BadRequest, type StakingError400Error, type StakingError500Error, type StakingLeaderboardPositionDto, type StakingPositionActionDto, StakingPositionActionType, type StakingPositionDto, type StatsError400BadRequest, type StatsError400Error, type StatsError500Error, type StreamEvent, type StreamInitalMessage, type SubscriptionOptions, type SwapQuoteByInputDto, type SwapQuoteByOutputDto, type TickDto, type TokenAmountWithUsd, type TradableAmountDto, TradeHistoryAction, type TradeHistoryEntryDto, type TradeHistoryEntryPnlUsd, type TradeHistoryListResponse, type TradeHistoryNotificationResponse, TradeHistoryUiDirection, type TreasuryDto, TunaBackendSdk, TunaBackendSdkError, type TunaLpPositionActionComposite, type TunaLpPositionActionDto, TunaLpPositionAutoCompound, TunaLpPositionAutoCompounding, type TunaLpPositionDto, type TunaLpPositionFlags, type TunaLpPositionInnerSwaps, TunaLpPositionLimitOrderSwap, type TunaLpPositionParameters, TunaLpPositionRebalance, type TunaLpPositionTokenPrices, type TunaLpPositionTransfer, type TunaLpPositionTriggerOrder, TunaLpPositionTriggerOrderType, type TunaLpPositionValue, TunaLpPositionsActionType, type TunaLpPositionsStats, type TunaPositionDto, TunaPositionDtoState, TunaPositionMarketMaker, TunaPositionPoolToken, type TunaPositionTokenDepositedCollateral, type TunaPositionTokenPnl, type TunaPositionUsdPnl, type TunaSpotPositionDto, TunaSpotPositionDtoState, type U128Dto, type U64Dto, type UpdateStreamSubscriptionData, type UpdateStreamSubscriptionError, type UpdateStreamSubscriptionError404Error, type UpdateStreamSubscriptionError500Error, type UpdateStreamSubscriptionErrors, type UpdateStreamSubscriptionResponse, type UpdateStreamSubscriptionResponseZodType, type UpdateStreamSubscriptionResponses, type ValidationErrorCodeErrorBody, type ValidationErrorCodeValidationDetailsErrorBody, type VaultDto, type VaultError400BadRequest, type VaultError400Error, type VaultError404Error, type VaultError500Error, type VaultResponse, type VaultStatsDto, type VaultsListResponse, type VestingDto, type WalletSubscription, WalletSubscriptionTopic, createClient, createSseClient, isTunaSdkError, tunaSdkErrorInterceptor, unwrap, zBadRequestErrorCodeErrorBody, zCloseSpotPositionQuoteDto, zDecreaseSpotPositionQuoteDto, zFeeAmountWithUsd, zFeesStatsGroupDto, zFieldError, zFusionFeesStatsGroupDto, zGetCloseSpotPositionQuoteData, zGetCloseSpotPositionQuoteResponse, zGetDecreaseSpotPositionQuoteData, zGetDecreaseSpotPositionQuoteResponse, zGetFeesStatsData, zGetFeesStatsResponse, zGetFusionFeesStatsData, zGetFusionFeesStatsResponse, zGetIncreaseSpotPositionQuoteData, zGetIncreaseSpotPositionQuoteResponse, zGetLendingPositionData, zGetLendingPositionResponse, zGetLendingPositionsData, zGetLendingPositionsResponse, zGetLimitOrderData, zGetLimitOrderError404Error, zGetLimitOrderError500Error, zGetLimitOrderQuoteByInputData, zGetLimitOrderQuoteByInputResponse, zGetLimitOrderQuoteByOutputData, zGetLimitOrderQuoteByOutputResponse, zGetLimitOrderResponse, zGetLimitOrdersData, zGetLimitOrdersResponse, zGetLpPositionActionsData, zGetLpPositionActionsResponse, zGetLpPositionsData, zGetLpPositionsResponse, zGetLpSpotLeaderboardData, zGetLpSpotLeaderboardResponse, zGetMarketData, zGetMarketResponse, zGetMarketsData, zGetMarketsResponse, zGetMintData, zGetMintResponse, zGetMintsData, zGetMintsResponse, zGetOraclePriceData, zGetOraclePriceResponse, zGetOraclePricesData, zGetOraclePricesResponse, zGetOrderHistoryData, zGetOrderHistoryResponse, zGetPoolCandlesData, zGetPoolCandlesResponse, zGetPoolData, zGetPoolOrderBookData, zGetPoolOrderBookResponse, zGetPoolResponse, zGetPoolSwapsData, zGetPoolSwapsResponse, zGetPoolTicksData, zGetPoolTicksResponse, zGetPoolsData, zGetPoolsResponse, zGetPositionsStatsData, zGetPositionsStatsResponse, zGetPositionsTotalData, zGetPositionsTotalResponse, zGetSpotPositionData, zGetSpotPositionResponse, zGetSpotPositionsData, zGetSpotPositionsResponse, zGetStakingLeaderboardData, zGetStakingLeaderboardResponse, zGetStakingRevenueStatsData, zGetStakingRevenueStatsResponse, zGetStakingTreasuryData, zGetStakingTreasuryResponse, zGetSwapQuoteByInputData, zGetSwapQuoteByInputResponse, zGetSwapQuoteByOutputData, zGetSwapQuoteByOutputResponse, zGetTradableAmountData, zGetTradableAmountResponse, zGetTradeHistoryData, zGetTradeHistoryResponse, zGetTunaPositionData, zGetTunaPositionResponse, zGetTunaPositionsData, zGetTunaPositionsResponse, zGetUserStakingPositionData, zGetUserStakingPositionHistoryData, zGetUserStakingPositionHistoryResponse, zGetUserStakingPositionResponse, zGetVaultData, zGetVaultHistoryData, zGetVaultHistoryResponse, zGetVaultResponse, zGetVaultsData, zGetVaultsResponse, zHttpStatusData, zI128Dto, zI64Dto, zIncreaseSpotPositionQuoteDto, zInternalErrorCodeErrorBody, zLeaderboardError400BadRequest, zLeaderboardError400Error, zLeaderboardError500Error, zLeaderboardItemDto, zLeaderboardPeriod, zLeaderboardSortBy, zLendingPositionDto, zLendingPositionError404Error, zLendingPositionError500Error, zLendingPositionResponse, zLendingPositionsListResponse, zLimitOrderDto, zLimitOrderQuoteByInputDto, zLimitOrderQuoteByOutputDto, zLimitOrderResponse, zLimitOrderStatus, zLimitOrdersListResponse, zLpPositionResponse, zLpPositionsError400BadRequest, zLpPositionsError400Error, zLpPositionsError500Error, zLpPositionsHistoryListResponse, zLpPositionsListResponse, zMarketDto, zMarketError404Error, zMarketError500Error, zMarketResponse, zMarketsListResponse, zMintDto, zMintError404Error, zMintError500Error, zNotificationAction, zNotificationEntity, zOraclePriceDto, zOraclePriceError404Error, zOraclePriceError500Error, zOrderBookDto, zOrderBookEntryDto, zOrderBookWrapper, zOrderHistoryEntryDto, zOrderHistoryListResponse, zOrderHistoryNotificationResponse, zOrderHistoryStatus, zOrderHistoryType, zOrderHistoryUiDirection, zPaginationMeta, zPoolDto, zPoolPriceCandleDto, zPoolProvider, zPoolStatsDto, zPoolStatsGroupDto, zPoolStatsGroupEntryDto, zPoolSubscription, zPoolSubscriptionTopic, zPoolSwapDto, zPoolTicksDto, zPoolsError400BadRequest, zPoolsError400Error, zPoolsError404Error, zPoolsError500Error, zPubkeyDto, zSnapshot, zSnapshotContainer, zSpotPositionError404Error, zSpotPositionError500Error, zSpotPositionResponse, zSpotPositionsListResponse, zSseData, zSseResponse, zSseResponse2, zSseResponseInitialMessage, zSseResponseLendingPosition, zSseResponseLendingPositionPayload, zSseResponseOrderHistoryEntry, zSseResponseOrderHistoryEntryPayload, zSseResponsePoolSwap, zSseResponsePoolSwapPayload, zSseResponseSnapshot, zSseResponseStakingPosition, zSseResponseStakingPositionPayload, zSseResponseTradeHistoryEntry, zSseResponseTradeHistoryEntryPayload, zStakingDepositsStatsDto, zStakingError400BadRequest, zStakingError400Error, zStakingError500Error, zStakingLeaderboardPositionDto, zStakingPositionActionDto, zStakingPositionActionType, zStakingPositionDto, zStatsError400BadRequest, zStatsError400Error, zStatsError500Error, zStreamInitalMessage, zSubscriptionOptions, zSwapQuoteByInputDto, zSwapQuoteByOutputDto, zTickDto, zTokenAmountWithUsd, zTradableAmountDto, zTradeHistoryAction, zTradeHistoryEntryDto, zTradeHistoryEntryPnlUsd, zTradeHistoryListResponse, zTradeHistoryNotificationResponse, zTradeHistoryUiDirection, zTreasuryDto, zTunaLpPositionActionComposite, zTunaLpPositionActionDto, zTunaLpPositionAutoCompound, zTunaLpPositionAutoCompounding, zTunaLpPositionDto, zTunaLpPositionFlags, zTunaLpPositionInnerSwaps, zTunaLpPositionLimitOrderSwap, zTunaLpPositionParameters, zTunaLpPositionRebalance, zTunaLpPositionTokenPrices, zTunaLpPositionTransfer, zTunaLpPositionTriggerOrder, zTunaLpPositionTriggerOrderType, zTunaLpPositionValue, zTunaLpPositionsActionType, zTunaLpPositionsStats, zTunaPositionDto, zTunaPositionDtoState, zTunaPositionMarketMaker, zTunaPositionPoolToken, zTunaPositionTokenDepositedCollateral, zTunaPositionTokenPnl, zTunaPositionUsdPnl, zTunaSpotPositionDto, zTunaSpotPositionDtoState, zU128Dto, zU64Dto, zUpdateStreamSubscriptionData, zUpdateStreamSubscriptionError404Error, zUpdateStreamSubscriptionError500Error, zUpdateStreamSubscriptionResponse, zValidationErrorCodeErrorBody, zValidationErrorCodeValidationDetailsErrorBody, zVaultDto, zVaultError400BadRequest, zVaultError400Error, zVaultError404Error, zVaultError500Error, zVaultResponse, zVaultStatsDto, zVaultsListResponse, zVestingDto, zWalletSubscription, zWalletSubscriptionTopic };
|
|
14702
|
+
export { type BadRequestErrorCodeErrorBody, type ClientOptions, type CloseSpotPositionQuoteDto, type DecreaseSpotPositionQuoteDto, type FeeAmountWithUsd, type FeesStatsGroupDto, type FieldError, type FusionFeesStatsGroupDto, type GetCloseSpotPositionQuoteData, type GetCloseSpotPositionQuoteError, type GetCloseSpotPositionQuoteErrors, type GetCloseSpotPositionQuoteResponse, type GetCloseSpotPositionQuoteResponseZodType, type GetCloseSpotPositionQuoteResponses, type GetDecreaseSpotPositionQuoteData, type GetDecreaseSpotPositionQuoteError, type GetDecreaseSpotPositionQuoteErrors, type GetDecreaseSpotPositionQuoteResponse, type GetDecreaseSpotPositionQuoteResponseZodType, type GetDecreaseSpotPositionQuoteResponses, type GetFeesStatsData, type GetFeesStatsError, type GetFeesStatsErrors, type GetFeesStatsResponse, type GetFeesStatsResponseZodType, type GetFeesStatsResponses, type GetFusionFeesStatsData, type GetFusionFeesStatsError, type GetFusionFeesStatsErrors, type GetFusionFeesStatsResponse, type GetFusionFeesStatsResponseZodType, type GetFusionFeesStatsResponses, type GetIncreaseSpotPositionQuoteData, type GetIncreaseSpotPositionQuoteError, type GetIncreaseSpotPositionQuoteErrors, type GetIncreaseSpotPositionQuoteResponse, type GetIncreaseSpotPositionQuoteResponseZodType, type GetIncreaseSpotPositionQuoteResponses, type GetLendingPositionData, type GetLendingPositionError, type GetLendingPositionErrors, type GetLendingPositionResponse, type GetLendingPositionResponseZodType, type GetLendingPositionResponses, type GetLendingPositionsData, type GetLendingPositionsError, type GetLendingPositionsErrors, type GetLendingPositionsResponse, type GetLendingPositionsResponseZodType, type GetLendingPositionsResponses, type GetLimitOrderData, type GetLimitOrderError, type GetLimitOrderError404Error, type GetLimitOrderError500Error, type GetLimitOrderErrors, type GetLimitOrderQuoteByInputData, type GetLimitOrderQuoteByInputError, type GetLimitOrderQuoteByInputErrors, type GetLimitOrderQuoteByInputResponse, type GetLimitOrderQuoteByInputResponseZodType, type GetLimitOrderQuoteByInputResponses, type GetLimitOrderQuoteByOutputData, type GetLimitOrderQuoteByOutputError, type GetLimitOrderQuoteByOutputErrors, type GetLimitOrderQuoteByOutputResponse, type GetLimitOrderQuoteByOutputResponseZodType, type GetLimitOrderQuoteByOutputResponses, type GetLimitOrderResponse, type GetLimitOrderResponseZodType, type GetLimitOrderResponses, type GetLimitOrdersData, type GetLimitOrdersError, type GetLimitOrdersErrors, type GetLimitOrdersResponse, type GetLimitOrdersResponseZodType, type GetLimitOrdersResponses, type GetLpPositionActionsData, type GetLpPositionActionsError, type GetLpPositionActionsErrors, type GetLpPositionActionsResponse, type GetLpPositionActionsResponseZodType, type GetLpPositionActionsResponses, type GetLpPositionsData, type GetLpPositionsError, type GetLpPositionsErrors, type GetLpPositionsResponse, type GetLpPositionsResponseZodType, type GetLpPositionsResponses, type GetLpSpotLeaderboardData, type GetLpSpotLeaderboardError, type GetLpSpotLeaderboardErrors, type GetLpSpotLeaderboardResponse, type GetLpSpotLeaderboardResponseZodType, type GetLpSpotLeaderboardResponses, type GetMarketData, type GetMarketError, type GetMarketErrors, type GetMarketResponse, type GetMarketResponseZodType, type GetMarketResponses, type GetMarketsData, type GetMarketsError, type GetMarketsErrors, type GetMarketsResponse, type GetMarketsResponseZodType, type GetMarketsResponses, type GetMintData, type GetMintError, type GetMintErrors, type GetMintResponse, type GetMintResponseZodType, type GetMintResponses, type GetMintsData, type GetMintsError, type GetMintsErrors, type GetMintsResponse, type GetMintsResponseZodType, type GetMintsResponses, type GetOraclePriceData, type GetOraclePriceError, type GetOraclePriceErrors, type GetOraclePriceResponse, type GetOraclePriceResponseZodType, type GetOraclePriceResponses, type GetOraclePricesData, type GetOraclePricesError, type GetOraclePricesErrors, type GetOraclePricesResponse, type GetOraclePricesResponseZodType, type GetOraclePricesResponses, type GetOrderHistoryData, type GetOrderHistoryError, type GetOrderHistoryErrors, type GetOrderHistoryResponse, type GetOrderHistoryResponseZodType, type GetOrderHistoryResponses, type GetPairPriceData, type GetPairPriceError, type GetPairPriceErrors, type GetPairPriceResponse, type GetPairPriceResponseZodType, type GetPairPriceResponses, type GetPoolCandlesData, type GetPoolCandlesError, type GetPoolCandlesErrors, type GetPoolCandlesResponse, type GetPoolCandlesResponseZodType, type GetPoolCandlesResponses, type GetPoolData, type GetPoolError, type GetPoolErrors, type GetPoolOrderBookData, type GetPoolOrderBookError, type GetPoolOrderBookErrors, type GetPoolOrderBookResponse, type GetPoolOrderBookResponseZodType, type GetPoolOrderBookResponses, type GetPoolResponse, type GetPoolResponseZodType, type GetPoolResponses, type GetPoolSwapsData, type GetPoolSwapsError, type GetPoolSwapsErrors, type GetPoolSwapsResponse, type GetPoolSwapsResponseZodType, type GetPoolSwapsResponses, type GetPoolTicksData, type GetPoolTicksError, type GetPoolTicksErrors, type GetPoolTicksResponse, type GetPoolTicksResponseZodType, type GetPoolTicksResponses, type GetPoolsData, type GetPoolsError, type GetPoolsErrors, type GetPoolsResponse, type GetPoolsResponseZodType, type GetPoolsResponses, type GetPositionsStatsData, type GetPositionsStatsError, type GetPositionsStatsErrors, type GetPositionsStatsResponse, type GetPositionsStatsResponseZodType, type GetPositionsStatsResponses, type GetPositionsTotalData, type GetPositionsTotalError, type GetPositionsTotalErrors, type GetPositionsTotalResponse, type GetPositionsTotalResponseZodType, type GetPositionsTotalResponses, type GetSpotPositionData, type GetSpotPositionError, type GetSpotPositionErrors, type GetSpotPositionResponse, type GetSpotPositionResponseZodType, type GetSpotPositionResponses, type GetSpotPositionsData, type GetSpotPositionsError, type GetSpotPositionsErrors, type GetSpotPositionsResponse, type GetSpotPositionsResponseZodType, type GetSpotPositionsResponses, type GetStakingLeaderboardData, type GetStakingLeaderboardError, type GetStakingLeaderboardErrors, type GetStakingLeaderboardResponse, type GetStakingLeaderboardResponseZodType, type GetStakingLeaderboardResponses, type GetStakingRevenueStatsData, type GetStakingRevenueStatsError, type GetStakingRevenueStatsErrors, type GetStakingRevenueStatsResponse, type GetStakingRevenueStatsResponseZodType, type GetStakingRevenueStatsResponses, type GetStakingTreasuryData, type GetStakingTreasuryError, type GetStakingTreasuryErrors, type GetStakingTreasuryResponse, type GetStakingTreasuryResponseZodType, type GetStakingTreasuryResponses, type GetSwapQuoteByInputData, type GetSwapQuoteByInputError, type GetSwapQuoteByInputErrors, type GetSwapQuoteByInputResponse, type GetSwapQuoteByInputResponseZodType, type GetSwapQuoteByInputResponses, type GetSwapQuoteByOutputData, type GetSwapQuoteByOutputError, type GetSwapQuoteByOutputErrors, type GetSwapQuoteByOutputResponse, type GetSwapQuoteByOutputResponseZodType, type GetSwapQuoteByOutputResponses, type GetTradableAmountData, type GetTradableAmountError, type GetTradableAmountErrors, type GetTradableAmountResponse, type GetTradableAmountResponseZodType, type GetTradableAmountResponses, type GetTradeHistoryData, type GetTradeHistoryError, type GetTradeHistoryErrors, type GetTradeHistoryResponse, type GetTradeHistoryResponseZodType, type GetTradeHistoryResponses, type GetTunaPositionData, type GetTunaPositionError, type GetTunaPositionErrors, type GetTunaPositionResponse, type GetTunaPositionResponseZodType, type GetTunaPositionResponses, type GetTunaPositionsData, type GetTunaPositionsError, type GetTunaPositionsErrors, type GetTunaPositionsResponse, type GetTunaPositionsResponseZodType, type GetTunaPositionsResponses, type GetUserStakingPositionData, type GetUserStakingPositionError, type GetUserStakingPositionErrors, type GetUserStakingPositionHistoryData, type GetUserStakingPositionHistoryError, type GetUserStakingPositionHistoryErrors, type GetUserStakingPositionHistoryResponse, type GetUserStakingPositionHistoryResponseZodType, type GetUserStakingPositionHistoryResponses, type GetUserStakingPositionResponse, type GetUserStakingPositionResponseZodType, type GetUserStakingPositionResponses, type GetVaultData, type GetVaultError, type GetVaultErrors, type GetVaultHistoryData, type GetVaultHistoryError, type GetVaultHistoryErrors, type GetVaultHistoryResponse, type GetVaultHistoryResponseZodType, type GetVaultHistoryResponses, type GetVaultResponse, type GetVaultResponseZodType, type GetVaultResponses, type GetVaultsData, type GetVaultsError, type GetVaultsErrors, type GetVaultsResponse, type GetVaultsResponseZodType, type GetVaultsResponses, type HttpStatusData, type I128Dto, type I64Dto, type IncreaseSpotPositionQuoteDto, type InternalErrorCodeErrorBody, type LeaderboardError400BadRequest, type LeaderboardError400Error, type LeaderboardError500Error, type LeaderboardItemDto, LeaderboardPeriod, LeaderboardSortBy, type LendingPositionDto, type LendingPositionError404Error, type LendingPositionError500Error, type LendingPositionResponse, type LendingPositionsListResponse, type LimitOrderDto, type LimitOrderQuoteByInputDto, type LimitOrderQuoteByOutputDto, type LimitOrderResponse, LimitOrderStatus, type LimitOrdersListResponse, type LpPositionResponse, type LpPositionsError400BadRequest, type LpPositionsError400Error, type LpPositionsError500Error, type LpPositionsHistoryListResponse, type LpPositionsListResponse, type MarketDto, type MarketError404Error, type MarketError500Error, type MarketResponse, type MarketsListResponse, type MintDto, type MintError404Error, type MintError500Error, NotificationAction, NotificationEntity, type Options, type OraclePriceDto, type OraclePriceError404Error, type OraclePriceError500Error, type OrderBookDto, type OrderBookEntryDto, type OrderBookWrapper, type OrderHistoryEntryDto, type OrderHistoryListResponse, type OrderHistoryNotificationResponse, OrderHistoryStatus, OrderHistoryType, OrderHistoryUiDirection, type PaginationMeta, type PoolDto, type PoolPriceCandleDto, PoolProvider, type PoolStatsDto, type PoolStatsGroupDto, type PoolStatsGroupEntryDto, type PoolSubscription, PoolSubscriptionTopic, type PoolSwapDto, type PoolTicksDto, type PoolsError400BadRequest, type PoolsError400Error, type PoolsError404Error, type PoolsError500Error, type PubkeyDto, RateLimitSource, type RetryAfterHint, type SearchTokensData, type SearchTokensError, type SearchTokensErrors, type SearchTokensResponse, type SearchTokensResponseZodType, type SearchTokensResponses, type ServerSentEventsOptions, type ServerSentEventsResult, type Snapshot, type SnapshotContainer, type SpotPositionError404Error, type SpotPositionError500Error, type SpotPositionResponse, type SpotPositionsListResponse, type SseData, type SseErrors, type SseResponse, type SseResponse2, type SseResponseInitialMessage, type SseResponseLendingPosition, type SseResponseLendingPositionPayload, type SseResponseOrderHistoryEntry, type SseResponseOrderHistoryEntryPayload, type SseResponsePoolSwap, type SseResponsePoolSwapPayload, type SseResponseSnapshot, type SseResponseStakingPosition, type SseResponseStakingPositionPayload, type SseResponseTradeHistoryEntry, type SseResponseTradeHistoryEntryPayload, type SseResponseZodType, type SseResponses, type StakingDepositsStatsDto, type StakingError400BadRequest, type StakingError400Error, type StakingError500Error, type StakingLeaderboardPositionDto, type StakingPositionActionDto, StakingPositionActionType, type StakingPositionDto, type StatsError400BadRequest, type StatsError400Error, type StatsError500Error, type StreamEvent, type StreamInitalMessage, type SubscriptionOptions, type SwapQuoteByInputDto, type SwapQuoteByOutputDto, type TickDto, type TokenAmountWithUsd, type TokenAuditDto, type TokenFirstPoolDto, type TokenPairPriceResponseDto, type TokenPriceDto, type TokenSearchItemDto, type TokenSearchResponseDto, type TokenStatsWindowDto, type TokensError400BadRequest, type TokensError400Error, type TokensError404Error, type TokensError429Error, type TokensError429TooManyRequests, type TokensError429UpstreamRateLimited, type TokensError500Error, type TokensError502Error, type TradableAmountDto, TradeHistoryAction, type TradeHistoryEntryDto, type TradeHistoryEntryPnlUsd, type TradeHistoryListResponse, type TradeHistoryNotificationResponse, TradeHistoryUiDirection, type TreasuryDto, TunaBackendSdk, TunaBackendSdkError, type TunaLpPositionActionComposite, type TunaLpPositionActionDto, TunaLpPositionAutoCompound, TunaLpPositionAutoCompounding, type TunaLpPositionDto, type TunaLpPositionFlags, type TunaLpPositionInnerSwaps, TunaLpPositionLimitOrderSwap, type TunaLpPositionParameters, TunaLpPositionRebalance, type TunaLpPositionTokenPrices, type TunaLpPositionTransfer, type TunaLpPositionTriggerOrder, TunaLpPositionTriggerOrderType, type TunaLpPositionValue, TunaLpPositionsActionType, type TunaLpPositionsStats, type TunaPositionDto, TunaPositionDtoState, TunaPositionMarketMaker, TunaPositionPoolToken, type TunaPositionTokenDepositedCollateral, type TunaPositionTokenPnl, type TunaPositionUsdPnl, type TunaSpotPositionDto, TunaSpotPositionDtoState, type U128Dto, type U64Dto, type UpdateStreamSubscriptionData, type UpdateStreamSubscriptionError, type UpdateStreamSubscriptionError404Error, type UpdateStreamSubscriptionError500Error, type UpdateStreamSubscriptionErrors, type UpdateStreamSubscriptionResponse, type UpdateStreamSubscriptionResponseZodType, type UpdateStreamSubscriptionResponses, type ValidationErrorCodeErrorBody, type ValidationErrorCodeValidationDetailsErrorBody, type VaultDto, type VaultError400BadRequest, type VaultError400Error, type VaultError404Error, type VaultError500Error, type VaultResponse, type VaultStatsDto, type VaultsListResponse, type VestingDto, type WalletSubscription, WalletSubscriptionTopic, createClient, createSseClient, isTunaSdkError, tunaSdkErrorInterceptor, unwrap, zBadRequestErrorCodeErrorBody, zCloseSpotPositionQuoteDto, zDecreaseSpotPositionQuoteDto, zFeeAmountWithUsd, zFeesStatsGroupDto, zFieldError, zFusionFeesStatsGroupDto, zGetCloseSpotPositionQuoteData, zGetCloseSpotPositionQuoteResponse, zGetDecreaseSpotPositionQuoteData, zGetDecreaseSpotPositionQuoteResponse, zGetFeesStatsData, zGetFeesStatsResponse, zGetFusionFeesStatsData, zGetFusionFeesStatsResponse, zGetIncreaseSpotPositionQuoteData, zGetIncreaseSpotPositionQuoteResponse, zGetLendingPositionData, zGetLendingPositionResponse, zGetLendingPositionsData, zGetLendingPositionsResponse, zGetLimitOrderData, zGetLimitOrderError404Error, zGetLimitOrderError500Error, zGetLimitOrderQuoteByInputData, zGetLimitOrderQuoteByInputResponse, zGetLimitOrderQuoteByOutputData, zGetLimitOrderQuoteByOutputResponse, zGetLimitOrderResponse, zGetLimitOrdersData, zGetLimitOrdersResponse, zGetLpPositionActionsData, zGetLpPositionActionsResponse, zGetLpPositionsData, zGetLpPositionsResponse, zGetLpSpotLeaderboardData, zGetLpSpotLeaderboardResponse, zGetMarketData, zGetMarketResponse, zGetMarketsData, zGetMarketsResponse, zGetMintData, zGetMintResponse, zGetMintsData, zGetMintsResponse, zGetOraclePriceData, zGetOraclePriceResponse, zGetOraclePricesData, zGetOraclePricesResponse, zGetOrderHistoryData, zGetOrderHistoryResponse, zGetPairPriceData, zGetPairPriceResponse, zGetPoolCandlesData, zGetPoolCandlesResponse, zGetPoolData, zGetPoolOrderBookData, zGetPoolOrderBookResponse, zGetPoolResponse, zGetPoolSwapsData, zGetPoolSwapsResponse, zGetPoolTicksData, zGetPoolTicksResponse, zGetPoolsData, zGetPoolsResponse, zGetPositionsStatsData, zGetPositionsStatsResponse, zGetPositionsTotalData, zGetPositionsTotalResponse, zGetSpotPositionData, zGetSpotPositionResponse, zGetSpotPositionsData, zGetSpotPositionsResponse, zGetStakingLeaderboardData, zGetStakingLeaderboardResponse, zGetStakingRevenueStatsData, zGetStakingRevenueStatsResponse, zGetStakingTreasuryData, zGetStakingTreasuryResponse, zGetSwapQuoteByInputData, zGetSwapQuoteByInputResponse, zGetSwapQuoteByOutputData, zGetSwapQuoteByOutputResponse, zGetTradableAmountData, zGetTradableAmountResponse, zGetTradeHistoryData, zGetTradeHistoryResponse, zGetTunaPositionData, zGetTunaPositionResponse, zGetTunaPositionsData, zGetTunaPositionsResponse, zGetUserStakingPositionData, zGetUserStakingPositionHistoryData, zGetUserStakingPositionHistoryResponse, zGetUserStakingPositionResponse, zGetVaultData, zGetVaultHistoryData, zGetVaultHistoryResponse, zGetVaultResponse, zGetVaultsData, zGetVaultsResponse, zHttpStatusData, zI128Dto, zI64Dto, zIncreaseSpotPositionQuoteDto, zInternalErrorCodeErrorBody, zLeaderboardError400BadRequest, zLeaderboardError400Error, zLeaderboardError500Error, zLeaderboardItemDto, zLeaderboardPeriod, zLeaderboardSortBy, zLendingPositionDto, zLendingPositionError404Error, zLendingPositionError500Error, zLendingPositionResponse, zLendingPositionsListResponse, zLimitOrderDto, zLimitOrderQuoteByInputDto, zLimitOrderQuoteByOutputDto, zLimitOrderResponse, zLimitOrderStatus, zLimitOrdersListResponse, zLpPositionResponse, zLpPositionsError400BadRequest, zLpPositionsError400Error, zLpPositionsError500Error, zLpPositionsHistoryListResponse, zLpPositionsListResponse, zMarketDto, zMarketError404Error, zMarketError500Error, zMarketResponse, zMarketsListResponse, zMintDto, zMintError404Error, zMintError500Error, zNotificationAction, zNotificationEntity, zOraclePriceDto, zOraclePriceError404Error, zOraclePriceError500Error, zOrderBookDto, zOrderBookEntryDto, zOrderBookWrapper, zOrderHistoryEntryDto, zOrderHistoryListResponse, zOrderHistoryNotificationResponse, zOrderHistoryStatus, zOrderHistoryType, zOrderHistoryUiDirection, zPaginationMeta, zPoolDto, zPoolPriceCandleDto, zPoolProvider, zPoolStatsDto, zPoolStatsGroupDto, zPoolStatsGroupEntryDto, zPoolSubscription, zPoolSubscriptionTopic, zPoolSwapDto, zPoolTicksDto, zPoolsError400BadRequest, zPoolsError400Error, zPoolsError404Error, zPoolsError500Error, zPubkeyDto, zRateLimitSource, zRetryAfterHint, zSearchTokensData, zSearchTokensResponse, zSnapshot, zSnapshotContainer, zSpotPositionError404Error, zSpotPositionError500Error, zSpotPositionResponse, zSpotPositionsListResponse, zSseData, zSseResponse, zSseResponse2, zSseResponseInitialMessage, zSseResponseLendingPosition, zSseResponseLendingPositionPayload, zSseResponseOrderHistoryEntry, zSseResponseOrderHistoryEntryPayload, zSseResponsePoolSwap, zSseResponsePoolSwapPayload, zSseResponseSnapshot, zSseResponseStakingPosition, zSseResponseStakingPositionPayload, zSseResponseTradeHistoryEntry, zSseResponseTradeHistoryEntryPayload, zStakingDepositsStatsDto, zStakingError400BadRequest, zStakingError400Error, zStakingError500Error, zStakingLeaderboardPositionDto, zStakingPositionActionDto, zStakingPositionActionType, zStakingPositionDto, zStatsError400BadRequest, zStatsError400Error, zStatsError500Error, zStreamInitalMessage, zSubscriptionOptions, zSwapQuoteByInputDto, zSwapQuoteByOutputDto, zTickDto, zTokenAmountWithUsd, zTokenAuditDto, zTokenFirstPoolDto, zTokenPairPriceResponseDto, zTokenPriceDto, zTokenSearchItemDto, zTokenSearchResponseDto, zTokenStatsWindowDto, zTokensError400BadRequest, zTokensError400Error, zTokensError404Error, zTokensError429Error, zTokensError429TooManyRequests, zTokensError429UpstreamRateLimited, zTokensError500Error, zTokensError502Error, zTradableAmountDto, zTradeHistoryAction, zTradeHistoryEntryDto, zTradeHistoryEntryPnlUsd, zTradeHistoryListResponse, zTradeHistoryNotificationResponse, zTradeHistoryUiDirection, zTreasuryDto, zTunaLpPositionActionComposite, zTunaLpPositionActionDto, zTunaLpPositionAutoCompound, zTunaLpPositionAutoCompounding, zTunaLpPositionDto, zTunaLpPositionFlags, zTunaLpPositionInnerSwaps, zTunaLpPositionLimitOrderSwap, zTunaLpPositionParameters, zTunaLpPositionRebalance, zTunaLpPositionTokenPrices, zTunaLpPositionTransfer, zTunaLpPositionTriggerOrder, zTunaLpPositionTriggerOrderType, zTunaLpPositionValue, zTunaLpPositionsActionType, zTunaLpPositionsStats, zTunaPositionDto, zTunaPositionDtoState, zTunaPositionMarketMaker, zTunaPositionPoolToken, zTunaPositionTokenDepositedCollateral, zTunaPositionTokenPnl, zTunaPositionUsdPnl, zTunaSpotPositionDto, zTunaSpotPositionDtoState, zU128Dto, zU64Dto, zUpdateStreamSubscriptionData, zUpdateStreamSubscriptionError404Error, zUpdateStreamSubscriptionError500Error, zUpdateStreamSubscriptionResponse, zValidationErrorCodeErrorBody, zValidationErrorCodeValidationDetailsErrorBody, zVaultDto, zVaultError400BadRequest, zVaultError400Error, zVaultError404Error, zVaultError500Error, zVaultResponse, zVaultStatsDto, zVaultsListResponse, zVestingDto, zWalletSubscription, zWalletSubscriptionTopic };
|