@argent/x-shared 1.44.3 → 1.45.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 +1 -1
- package/dist/index.js +439 -434
- package/dist/src/backend/index.d.ts +1 -0
- package/dist/src/backend/sessionKeys/index.d.ts +1 -0
- package/dist/src/backend/sessionKeys/schema.cjs +1 -0
- package/dist/src/backend/sessionKeys/schema.d.ts +123 -0
- package/dist/src/backend/sessionKeys/schema.js +31 -0
- package/dist/src/features/simulation/activity/schema.cjs +1 -1
- package/dist/src/features/simulation/activity/schema.d.ts +96 -96
- package/dist/src/features/simulation/activity/schema.js +10 -10
- package/dist/src/staking/schema.cjs +1 -1
- package/dist/src/staking/schema.d.ts +23 -23
- package/dist/src/staking/schema.js +4 -4
- package/dist/src/tokens/service/implementation.d.ts +13 -13
- package/dist/src/tokens/service/types/backend.model.cjs +1 -1
- package/dist/src/tokens/service/types/backend.model.d.ts +520 -520
- package/dist/src/tokens/service/types/backend.model.js +7 -7
- package/dist/src/tokens/service/types/webToken.model.d.ts +2 -2
- package/package.json +1 -1
|
@@ -90,7 +90,7 @@ const f = t.object({
|
|
|
90
90
|
}), R = t.array(l), p = e.extend({
|
|
91
91
|
investmentId: t.string(),
|
|
92
92
|
data: t.object({
|
|
93
|
-
|
|
93
|
+
stakerInfo: t.object({
|
|
94
94
|
name: t.string().optional(),
|
|
95
95
|
iconUrl: t.string().optional(),
|
|
96
96
|
address: a
|
|
@@ -103,7 +103,7 @@ const f = t.object({
|
|
|
103
103
|
}).optional(),
|
|
104
104
|
apy: t.string().optional()
|
|
105
105
|
})
|
|
106
|
-
}),
|
|
106
|
+
}), w = t.array(p), b = r.or(c).or(l).or(s).or(p), h = t.array(b), u = g({
|
|
107
107
|
productId: t.string().optional(),
|
|
108
108
|
name: t.string(),
|
|
109
109
|
manageUrl: t.string(),
|
|
@@ -116,7 +116,7 @@ const f = t.object({
|
|
|
116
116
|
}), S = t.object({
|
|
117
117
|
dappId: t.string(),
|
|
118
118
|
products: t.array(u)
|
|
119
|
-
}),
|
|
119
|
+
}), U = t.object({
|
|
120
120
|
dapps: t.array(S)
|
|
121
121
|
}), k = t.object({
|
|
122
122
|
name: t.string().optional(),
|
|
@@ -125,7 +125,7 @@ const f = t.object({
|
|
|
125
125
|
claimUrl: t.string().optional(),
|
|
126
126
|
claimStart: t.number(),
|
|
127
127
|
claimEnd: t.number().optional()
|
|
128
|
-
}),
|
|
128
|
+
}), v = t.object({
|
|
129
129
|
accountAddress: a,
|
|
130
130
|
chain: t.string(),
|
|
131
131
|
airdrops: t.array(k)
|
|
@@ -142,17 +142,17 @@ export {
|
|
|
142
142
|
S as apiDefiDecompositionSchema,
|
|
143
143
|
n as apiDefiDecompositionToken,
|
|
144
144
|
b as apiDefiPositionSchema,
|
|
145
|
-
|
|
145
|
+
U as apiDefiPositionsSchema,
|
|
146
146
|
R as apiDelegatedTokensArraySchema,
|
|
147
147
|
l as apiDelegatedTokensSchema,
|
|
148
148
|
C as apiPriceDataResponseSchema,
|
|
149
149
|
m as apiPriceDetailsSchema,
|
|
150
150
|
s as apiStakingPositionSchema,
|
|
151
151
|
x as apiStakingPositionsSchema,
|
|
152
|
-
|
|
152
|
+
w as apiStrkDelegatedStakingPositionsSchema,
|
|
153
153
|
p as apiStrkDelegatedStakingSchema,
|
|
154
154
|
A as apiTokenInfoResponseSchema,
|
|
155
155
|
i as apiTokenInfoSchema,
|
|
156
156
|
I as apiTokensInfoResponseSchema,
|
|
157
|
-
|
|
157
|
+
v as apiUnclaimedRewardsSchema
|
|
158
158
|
};
|
|
@@ -369,8 +369,8 @@ export declare const webTokenInfoDetailsSchema: z.ZodObject<z.objectUtil.extendS
|
|
|
369
369
|
symbol: string;
|
|
370
370
|
name: string;
|
|
371
371
|
address: `0x${string}`;
|
|
372
|
-
decimals: number;
|
|
373
372
|
networkId: string;
|
|
373
|
+
decimals: number;
|
|
374
374
|
id: number;
|
|
375
375
|
category: "tokens" | "currencies" | "savings";
|
|
376
376
|
sendable: boolean;
|
|
@@ -393,8 +393,8 @@ export declare const webTokenInfoDetailsSchema: z.ZodObject<z.objectUtil.extendS
|
|
|
393
393
|
symbol: string;
|
|
394
394
|
name: string;
|
|
395
395
|
address: string;
|
|
396
|
-
decimals: number;
|
|
397
396
|
networkId: string;
|
|
397
|
+
decimals: number;
|
|
398
398
|
id: number;
|
|
399
399
|
category: "tokens" | "currencies" | "savings";
|
|
400
400
|
sendable: boolean;
|