@argent/x-shared 1.44.4 → 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.d.ts +18 -18
- package/dist/src/features/swap/services/implementation.cjs +1 -1
- package/dist/src/features/swap/services/implementation.js +11 -11
- package/dist/src/staking/schema.d.ts +4 -4
- package/dist/src/tokens/service/implementation.d.ts +8 -8
- package/dist/src/tokens/service/types/backend.model.d.ts +320 -320
- package/dist/src/tokens/service/types/webToken.model.d.ts +2 -2
- package/package.json +1 -1
|
@@ -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;
|