@argent/x-shared 1.78.6 → 1.78.7
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/.ts-temp/tsconfig.tsbuildinfo +1 -1
- package/dist/src/tokens/service/types/backend.model.cjs +1 -1
- package/dist/src/tokens/service/types/backend.model.d.ts +3 -0
- package/dist/src/tokens/service/types/backend.model.js +15 -14
- package/dist/src/tokens/service/types/defiPosition.model.d.ts +6 -0
- package/dist/src/tokens/service/types/unclaimedRewards.model.d.ts +2 -0
- package/dist/src/tokens/service/types/webToken.model.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("zod"),a=require("../../../chains/starknet/address.cjs"),h=require("./defiPositionType.model.cjs"),b=require("../../../utils/schemas.cjs"),u=e.z.object({status:e.z.literal("initialising")}).or(e.z.object({status:e.z.literal("initialised"),balances:e.z.array(e.z.object({tokenAddress:a.addressSchemaArgentBackend,tokenBalance:e.z.string()}))})),o=e.z.object({id:e.z.number(),address:a.addressSchema,brandColor:e.z.string().optional(),name:e.z.string(),symbol:e.z.string(),decimals:e.z.number(),iconUrl:e.z.string().optional(),sendable:e.z.boolean(),popular:e.z.boolean(),refundable:e.z.boolean(),listed:e.z.boolean(),tradable:e.z.boolean(),category:e.z.union([e.z.literal("tokens"),e.z.literal("currencies"),e.z.literal("savings")]),pricingId:e.z.number().optional(),dappId:e.z.string().optional(),marketData:e.z.object({marketCap:e.z.number().default(0),marketCap24hChange:e.z.number().default(0),dailyVolume:e.z.number().default(0),rank:e.z.number().default(0)}).optional(),tags:e.z.array(e.z.string()).optional()}),k=e.z.object({tokens:e.z.array(o)}),D=o,p=e.z.object({pricingId:e.z.number(),ethValue:e.z.string(),ccyValue:e.z.string(),ethDayChange:e.z.string(),ccyDayChange:e.z.string()}),y=e.z.object({prices:e.z.array(p)}),i=e.z.object({tokenAddress:a.addressSchemaArgentBackend,principal:e.z.string(),accruedFees:e.z.string(),minPrice:e.z.string(),maxPrice:e.z.string(),currentPrice:e.z.string()}),t=e.z.object({id:e.z.string(),investmentId:e.z.string().optional(),tokenAddress:a.addressSchema.optional(),totalBalances:e.z.record(e.z.string(),e.z.string())}),n=t.extend({tokenId:e.z.string(),data:e.z.object({poolFeePercentage:e.z.string(),tickSpacingPercentage:e.z.string().optional(),token0:i,token1:i})}),P=e.z.array(n),s=t.extend({data:e.z.object({apy:e.z.string().optional(),totalApy:e.z.string().optional()}),investmentId:e.z.string().optional(),totalBalances:e.z.record(e.z.string(),e.z.string())}),f=e.z.array(s),r=t.extend({data:e.z.object({apy:e.z.string().optional(),totalApy:e.z.string().optional(),group:e.z.number().optional(),collateral:e.z.boolean(),debt:e.z.boolean(),lending:e.z.boolean()})}),j=e.z.array(r),c=t.extend({id:e.z.string(),data:e.z.object({delegatingTo:a.addressSchema}),totalBalances:e.z.record(e.z.string(),e.z.string())}),A=e.z.array(c),d=t.extend({investmentId:e.z.string().optional(),data:e.z.object({stakerInfo:e.z.object({name:e.z.string().optional(),iconUrl:e.z.string().optional(),address:a.addressSchema}),accruedRewards:e.z.string(),stakedAmount:e.z.string(),pendingWithdrawal:e.z.object({amount:e.z.string(),withdrawableAfter:e.z.number()}).optional(),apy:e.z.string().optional(),totalApy:e.z.string().optional(),stakedTokenAddress:a.addressSchema,rewardTokenAddress:a.addressSchema})}),T=e.z.array(d),l=n.or(r).or(c).or(s).or(d),z=e.z.array(l),m=b.createSchemaWithWarnings({productId:e.z.string().optional(),name:e.z.string(),manageUrl:e.z.string().optional(),type:h.defiPositionTypeSchema,groups:e.z.record(e.z.string(),e.z.object({name:e.z.string().optional(),healthRatio:e.z.string().optional()})).optional(),positions:z}),g=e.z.object({dappId:e.z.string(),products:e.z.array(m)}),I=e.z.object({dapps:e.z.array(g)}),S=e.z.object({name:e.z.string().optional(),tokenAddress:a.addressSchema,amount:e.z.string().optional(),claimUrl:e.z.string().optional(),claimStart:e.z.number(),claimEnd:e.z.number().optional()}),C=e.z.object({accountAddress:a.addressSchema,chain:e.z.string(),airdrops:e.z.array(S)});exports.apiAccountTokenBalancesSchema=u;exports.apiAirdropSchema=S;exports.apiCollateralizedDebtPositionSchema=r;exports.apiCollateralizedDebtPositionsSchema=j;exports.apiConcentratedLiquidityPositionSchema=n;exports.apiConcentratedLiquidityPositionsSchema=P;exports.apiDefiDecompositionProduct=m;exports.apiDefiDecompositionProducts=z;exports.apiDefiDecompositionSchema=g;exports.apiDefiDecompositionToken=i;exports.apiDefiPositionSchema=l;exports.apiDefiPositionsSchema=I;exports.apiDelegatedTokensArraySchema=A;exports.apiDelegatedTokensSchema=c;exports.apiPriceDataResponseSchema=y;exports.apiPriceDetailsSchema=p;exports.apiStakingPositionSchema=s;exports.apiStakingPositionsSchema=f;exports.apiStrkDelegatedStakingPositionsSchema=T;exports.apiStrkDelegatedStakingSchema=d;exports.apiTokenInfoResponseSchema=D;exports.apiTokenInfoSchema=o;exports.apiTokensInfoResponseSchema=k;exports.apiUnclaimedRewardsSchema=C;
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("zod"),a=require("../../../chains/starknet/address.cjs"),h=require("./defiPositionType.model.cjs"),b=require("../../../utils/schemas.cjs"),u=e.z.object({status:e.z.literal("initialising")}).or(e.z.object({status:e.z.literal("initialised"),balances:e.z.array(e.z.object({tokenAddress:a.addressSchemaArgentBackend,tokenBalance:e.z.string()}))})),o=e.z.object({id:e.z.number(),address:a.addressSchema,brandColor:e.z.string().optional(),name:e.z.string(),symbol:e.z.string(),decimals:e.z.number(),iconUrl:e.z.string().optional(),sendable:e.z.boolean(),popular:e.z.boolean(),refundable:e.z.boolean(),listed:e.z.boolean(),tradable:e.z.boolean(),category:e.z.union([e.z.literal("tokens"),e.z.literal("currencies"),e.z.literal("savings")]),pricingId:e.z.number().optional(),dappId:e.z.string().optional(),marketData:e.z.object({marketCap:e.z.number().default(0),marketCap24hChange:e.z.number().default(0),dailyVolume:e.z.number().default(0),rank:e.z.number().default(0)}).optional(),tags:e.z.array(e.z.string()).optional(),useNewBalanceOfFormat:e.z.boolean().optional()}),k=e.z.object({tokens:e.z.array(o)}),D=o,p=e.z.object({pricingId:e.z.number(),ethValue:e.z.string(),ccyValue:e.z.string(),ethDayChange:e.z.string(),ccyDayChange:e.z.string()}),y=e.z.object({prices:e.z.array(p)}),i=e.z.object({tokenAddress:a.addressSchemaArgentBackend,principal:e.z.string(),accruedFees:e.z.string(),minPrice:e.z.string(),maxPrice:e.z.string(),currentPrice:e.z.string()}),t=e.z.object({id:e.z.string(),investmentId:e.z.string().optional(),tokenAddress:a.addressSchema.optional(),totalBalances:e.z.record(e.z.string(),e.z.string())}),n=t.extend({tokenId:e.z.string(),data:e.z.object({poolFeePercentage:e.z.string(),tickSpacingPercentage:e.z.string().optional(),token0:i,token1:i})}),P=e.z.array(n),s=t.extend({data:e.z.object({apy:e.z.string().optional(),totalApy:e.z.string().optional()}),investmentId:e.z.string().optional(),totalBalances:e.z.record(e.z.string(),e.z.string())}),f=e.z.array(s),r=t.extend({data:e.z.object({apy:e.z.string().optional(),totalApy:e.z.string().optional(),group:e.z.number().optional(),collateral:e.z.boolean(),debt:e.z.boolean(),lending:e.z.boolean()})}),j=e.z.array(r),c=t.extend({id:e.z.string(),data:e.z.object({delegatingTo:a.addressSchema}),totalBalances:e.z.record(e.z.string(),e.z.string())}),A=e.z.array(c),d=t.extend({investmentId:e.z.string().optional(),data:e.z.object({stakerInfo:e.z.object({name:e.z.string().optional(),iconUrl:e.z.string().optional(),address:a.addressSchema}),accruedRewards:e.z.string(),stakedAmount:e.z.string(),pendingWithdrawal:e.z.object({amount:e.z.string(),withdrawableAfter:e.z.number()}).optional(),apy:e.z.string().optional(),totalApy:e.z.string().optional(),stakedTokenAddress:a.addressSchema,rewardTokenAddress:a.addressSchema})}),T=e.z.array(d),l=n.or(r).or(c).or(s).or(d),z=e.z.array(l),m=b.createSchemaWithWarnings({productId:e.z.string().optional(),name:e.z.string(),manageUrl:e.z.string().optional(),type:h.defiPositionTypeSchema,groups:e.z.record(e.z.string(),e.z.object({name:e.z.string().optional(),healthRatio:e.z.string().optional()})).optional(),positions:z}),g=e.z.object({dappId:e.z.string(),products:e.z.array(m)}),I=e.z.object({dapps:e.z.array(g)}),S=e.z.object({name:e.z.string().optional(),tokenAddress:a.addressSchema,amount:e.z.string().optional(),claimUrl:e.z.string().optional(),claimStart:e.z.number(),claimEnd:e.z.number().optional()}),C=e.z.object({accountAddress:a.addressSchema,chain:e.z.string(),airdrops:e.z.array(S)});exports.apiAccountTokenBalancesSchema=u;exports.apiAirdropSchema=S;exports.apiCollateralizedDebtPositionSchema=r;exports.apiCollateralizedDebtPositionsSchema=j;exports.apiConcentratedLiquidityPositionSchema=n;exports.apiConcentratedLiquidityPositionsSchema=P;exports.apiDefiDecompositionProduct=m;exports.apiDefiDecompositionProducts=z;exports.apiDefiDecompositionSchema=g;exports.apiDefiDecompositionToken=i;exports.apiDefiPositionSchema=l;exports.apiDefiPositionsSchema=I;exports.apiDelegatedTokensArraySchema=A;exports.apiDelegatedTokensSchema=c;exports.apiPriceDataResponseSchema=y;exports.apiPriceDetailsSchema=p;exports.apiStakingPositionSchema=s;exports.apiStakingPositionsSchema=f;exports.apiStrkDelegatedStakingPositionsSchema=T;exports.apiStrkDelegatedStakingSchema=d;exports.apiTokenInfoResponseSchema=D;exports.apiTokenInfoSchema=o;exports.apiTokensInfoResponseSchema=k;exports.apiUnclaimedRewardsSchema=C;
|
|
@@ -32,6 +32,7 @@ export declare const apiTokenInfoSchema: z.ZodObject<{
|
|
|
32
32
|
rank: z.ZodDefault<z.ZodNumber>;
|
|
33
33
|
}, z.core.$strip>>;
|
|
34
34
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
35
|
+
useNewBalanceOfFormat: z.ZodOptional<z.ZodBoolean>;
|
|
35
36
|
}, z.core.$strip>;
|
|
36
37
|
export type ApiTokenInfo = z.infer<typeof apiTokenInfoSchema>;
|
|
37
38
|
export declare const apiTokensInfoResponseSchema: z.ZodObject<{
|
|
@@ -58,6 +59,7 @@ export declare const apiTokensInfoResponseSchema: z.ZodObject<{
|
|
|
58
59
|
rank: z.ZodDefault<z.ZodNumber>;
|
|
59
60
|
}, z.core.$strip>>;
|
|
60
61
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
62
|
+
useNewBalanceOfFormat: z.ZodOptional<z.ZodBoolean>;
|
|
61
63
|
}, z.core.$strip>>;
|
|
62
64
|
}, z.core.$strip>;
|
|
63
65
|
export declare const apiTokenInfoResponseSchema: z.ZodObject<{
|
|
@@ -83,6 +85,7 @@ export declare const apiTokenInfoResponseSchema: z.ZodObject<{
|
|
|
83
85
|
rank: z.ZodDefault<z.ZodNumber>;
|
|
84
86
|
}, z.core.$strip>>;
|
|
85
87
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
88
|
+
useNewBalanceOfFormat: z.ZodOptional<z.ZodBoolean>;
|
|
86
89
|
}, z.core.$strip>;
|
|
87
90
|
export type ApiTokensInfoResponse = z.infer<typeof apiTokensInfoResponseSchema>;
|
|
88
91
|
export type ApiTokenInfoResponse = z.infer<typeof apiTokenInfoResponseSchema>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { z as t } from "zod";
|
|
2
|
-
import { addressSchemaArgentBackend as
|
|
2
|
+
import { addressSchemaArgentBackend as n, addressSchema as a } from "../../../chains/starknet/address.js";
|
|
3
3
|
import { defiPositionTypeSchema as d } from "./defiPositionType.model.js";
|
|
4
4
|
import { createSchemaWithWarnings as g } from "../../../utils/schemas.js";
|
|
5
5
|
const P = t.object({
|
|
@@ -7,7 +7,7 @@ const P = t.object({
|
|
|
7
7
|
}).or(t.object({
|
|
8
8
|
status: t.literal("initialised"),
|
|
9
9
|
balances: t.array(t.object({
|
|
10
|
-
tokenAddress:
|
|
10
|
+
tokenAddress: n,
|
|
11
11
|
tokenBalance: t.string()
|
|
12
12
|
}))
|
|
13
13
|
})), i = t.object({
|
|
@@ -36,7 +36,8 @@ const P = t.object({
|
|
|
36
36
|
dailyVolume: t.number().default(0),
|
|
37
37
|
rank: t.number().default(0)
|
|
38
38
|
}).optional(),
|
|
39
|
-
tags: t.array(t.string()).optional()
|
|
39
|
+
tags: t.array(t.string()).optional(),
|
|
40
|
+
useNewBalanceOfFormat: t.boolean().optional()
|
|
40
41
|
}), A = t.object({
|
|
41
42
|
tokens: t.array(i)
|
|
42
43
|
}), I = i, m = t.object({
|
|
@@ -47,8 +48,8 @@ const P = t.object({
|
|
|
47
48
|
ccyDayChange: t.string()
|
|
48
49
|
}), T = t.object({
|
|
49
50
|
prices: t.array(m)
|
|
50
|
-
}),
|
|
51
|
-
tokenAddress:
|
|
51
|
+
}), o = t.object({
|
|
52
|
+
tokenAddress: n,
|
|
52
53
|
principal: t.string(),
|
|
53
54
|
accruedFees: t.string(),
|
|
54
55
|
minPrice: t.string(),
|
|
@@ -64,8 +65,8 @@ const P = t.object({
|
|
|
64
65
|
data: t.object({
|
|
65
66
|
poolFeePercentage: t.string(),
|
|
66
67
|
tickSpacingPercentage: t.string().optional(),
|
|
67
|
-
token0:
|
|
68
|
-
token1:
|
|
68
|
+
token0: o,
|
|
69
|
+
token1: o
|
|
69
70
|
})
|
|
70
71
|
}), C = t.array(r), s = e.extend({
|
|
71
72
|
data: t.object({
|
|
@@ -74,7 +75,7 @@ const P = t.object({
|
|
|
74
75
|
}),
|
|
75
76
|
investmentId: t.string().optional(),
|
|
76
77
|
totalBalances: t.record(t.string(), t.string())
|
|
77
|
-
}),
|
|
78
|
+
}), B = t.array(s), c = e.extend({
|
|
78
79
|
data: t.object({
|
|
79
80
|
apy: t.string().optional(),
|
|
80
81
|
totalApy: t.string().optional(),
|
|
@@ -83,13 +84,13 @@ const P = t.object({
|
|
|
83
84
|
debt: t.boolean(),
|
|
84
85
|
lending: t.boolean()
|
|
85
86
|
})
|
|
86
|
-
}),
|
|
87
|
+
}), w = t.array(c), l = e.extend({
|
|
87
88
|
id: t.string(),
|
|
88
89
|
data: t.object({
|
|
89
90
|
delegatingTo: a
|
|
90
91
|
}),
|
|
91
92
|
totalBalances: t.record(t.string(), t.string())
|
|
92
|
-
}),
|
|
93
|
+
}), x = t.array(l), p = e.extend({
|
|
93
94
|
investmentId: t.string().optional(),
|
|
94
95
|
data: t.object({
|
|
95
96
|
stakerInfo: t.object({
|
|
@@ -139,21 +140,21 @@ export {
|
|
|
139
140
|
P as apiAccountTokenBalancesSchema,
|
|
140
141
|
S as apiAirdropSchema,
|
|
141
142
|
c as apiCollateralizedDebtPositionSchema,
|
|
142
|
-
|
|
143
|
+
w as apiCollateralizedDebtPositionsSchema,
|
|
143
144
|
r as apiConcentratedLiquidityPositionSchema,
|
|
144
145
|
C as apiConcentratedLiquidityPositionsSchema,
|
|
145
146
|
h as apiDefiDecompositionProduct,
|
|
146
147
|
u as apiDefiDecompositionProducts,
|
|
147
148
|
k as apiDefiDecompositionSchema,
|
|
148
|
-
|
|
149
|
+
o as apiDefiDecompositionToken,
|
|
149
150
|
b as apiDefiPositionSchema,
|
|
150
151
|
U as apiDefiPositionsSchema,
|
|
151
|
-
|
|
152
|
+
x as apiDelegatedTokensArraySchema,
|
|
152
153
|
l as apiDelegatedTokensSchema,
|
|
153
154
|
T as apiPriceDataResponseSchema,
|
|
154
155
|
m as apiPriceDetailsSchema,
|
|
155
156
|
s as apiStakingPositionSchema,
|
|
156
|
-
|
|
157
|
+
B as apiStakingPositionsSchema,
|
|
157
158
|
R as apiStrkDelegatedStakingPositionsSchema,
|
|
158
159
|
p as apiStrkDelegatedStakingSchema,
|
|
159
160
|
I as apiTokenInfoResponseSchema,
|
|
@@ -186,6 +186,7 @@ export declare const collateralizedDebtPositionSchema: z.ZodObject<{
|
|
|
186
186
|
rank: z.ZodDefault<z.ZodNumber>;
|
|
187
187
|
}, z.core.$strip>>;
|
|
188
188
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
189
|
+
useNewBalanceOfFormat: z.ZodOptional<z.ZodBoolean>;
|
|
189
190
|
}, z.core.$strip>, z.ZodUndefined]>;
|
|
190
191
|
token: z.ZodOptional<z.ZodObject<{
|
|
191
192
|
currencyValue: z.ZodString;
|
|
@@ -245,6 +246,7 @@ export declare const collateralizedDebtPositionsSchema: z.ZodArray<z.ZodObject<{
|
|
|
245
246
|
rank: z.ZodDefault<z.ZodNumber>;
|
|
246
247
|
}, z.core.$strip>>;
|
|
247
248
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
249
|
+
useNewBalanceOfFormat: z.ZodOptional<z.ZodBoolean>;
|
|
248
250
|
}, z.core.$strip>, z.ZodUndefined]>;
|
|
249
251
|
token: z.ZodOptional<z.ZodObject<{
|
|
250
252
|
currencyValue: z.ZodString;
|
|
@@ -584,6 +586,7 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.Z
|
|
|
584
586
|
rank: z.ZodDefault<z.ZodNumber>;
|
|
585
587
|
}, z.core.$strip>>;
|
|
586
588
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
589
|
+
useNewBalanceOfFormat: z.ZodOptional<z.ZodBoolean>;
|
|
587
590
|
}, z.core.$strip>, z.ZodUndefined]>;
|
|
588
591
|
token: z.ZodOptional<z.ZodObject<{
|
|
589
592
|
currencyValue: z.ZodString;
|
|
@@ -819,6 +822,7 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
819
822
|
rank: z.ZodDefault<z.ZodNumber>;
|
|
820
823
|
}, z.core.$strip>>;
|
|
821
824
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
825
|
+
useNewBalanceOfFormat: z.ZodOptional<z.ZodBoolean>;
|
|
822
826
|
}, z.core.$strip>, z.ZodUndefined]>;
|
|
823
827
|
token: z.ZodOptional<z.ZodObject<{
|
|
824
828
|
currencyValue: z.ZodString;
|
|
@@ -1058,6 +1062,7 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
1058
1062
|
rank: z.ZodDefault<z.ZodNumber>;
|
|
1059
1063
|
}, z.core.$strip>>;
|
|
1060
1064
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1065
|
+
useNewBalanceOfFormat: z.ZodOptional<z.ZodBoolean>;
|
|
1061
1066
|
}, z.core.$strip>, z.ZodUndefined]>;
|
|
1062
1067
|
token: z.ZodOptional<z.ZodObject<{
|
|
1063
1068
|
currencyValue: z.ZodString;
|
|
@@ -1299,6 +1304,7 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
1299
1304
|
rank: z.ZodDefault<z.ZodNumber>;
|
|
1300
1305
|
}, z.core.$strip>>;
|
|
1301
1306
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1307
|
+
useNewBalanceOfFormat: z.ZodOptional<z.ZodBoolean>;
|
|
1302
1308
|
}, z.core.$strip>, z.ZodUndefined]>;
|
|
1303
1309
|
token: z.ZodOptional<z.ZodObject<{
|
|
1304
1310
|
currencyValue: z.ZodString;
|
|
@@ -25,6 +25,7 @@ export declare const airdropSchema: z.ZodObject<{
|
|
|
25
25
|
rank: z.ZodDefault<z.ZodNumber>;
|
|
26
26
|
}, z.core.$strip>>;
|
|
27
27
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
28
|
+
useNewBalanceOfFormat: z.ZodOptional<z.ZodBoolean>;
|
|
28
29
|
}, z.core.$strip>>;
|
|
29
30
|
amount: z.ZodOptional<z.ZodString>;
|
|
30
31
|
claimUrl: z.ZodOptional<z.ZodString>;
|
|
@@ -57,6 +58,7 @@ export declare const unclaimedRewardsSchema: z.ZodArray<z.ZodObject<{
|
|
|
57
58
|
rank: z.ZodDefault<z.ZodNumber>;
|
|
58
59
|
}, z.core.$strip>>;
|
|
59
60
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
61
|
+
useNewBalanceOfFormat: z.ZodOptional<z.ZodBoolean>;
|
|
60
62
|
}, z.core.$strip>>;
|
|
61
63
|
amount: z.ZodOptional<z.ZodString>;
|
|
62
64
|
claimUrl: z.ZodOptional<z.ZodString>;
|
|
@@ -142,5 +142,6 @@ export declare const webTokenInfoDetailsSchema: z.ZodObject<{
|
|
|
142
142
|
rank: z.ZodDefault<z.ZodNumber>;
|
|
143
143
|
}, z.core.$strip>>;
|
|
144
144
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
145
|
+
useNewBalanceOfFormat: z.ZodOptional<z.ZodBoolean>;
|
|
145
146
|
}, z.core.$strip>;
|
|
146
147
|
export type WebTokenInfoDetails = z.infer<typeof webTokenInfoDetailsSchema>;
|