@argent/x-shared 1.62.11 → 1.63.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/defiDecomposition.cjs +1 -0
- package/dist/defiDecomposition.d.ts +2 -0
- package/dist/defiDecomposition.js +65 -0
- package/dist/index.cjs +1 -1
- package/dist/index.js +476 -475
- package/dist/src/account/account.model.cjs +1 -1
- package/dist/src/account/account.model.d.ts +11 -0
- package/dist/src/account/account.model.js +8 -4
- package/dist/src/features/defiDecomposition/helpers/computeCollateralizedDebtPositionsUsdValue.cjs +1 -0
- package/dist/src/features/defiDecomposition/helpers/computeCollateralizedDebtPositionsUsdValue.d.ts +6 -0
- package/dist/src/features/defiDecomposition/helpers/computeCollateralizedDebtPositionsUsdValue.js +62 -0
- package/dist/src/features/defiDecomposition/helpers/computeConcentratedLiquidityPositionsUsdValue.cjs +1 -0
- package/dist/src/features/defiDecomposition/helpers/computeConcentratedLiquidityPositionsUsdValue.d.ts +4 -0
- package/dist/src/features/defiDecomposition/helpers/computeConcentratedLiquidityPositionsUsdValue.js +31 -0
- package/dist/src/features/defiDecomposition/helpers/computeDefiDecompositionUsdValue.cjs +1 -0
- package/dist/src/features/defiDecomposition/helpers/computeDefiDecompositionUsdValue.d.ts +4 -0
- package/dist/src/features/defiDecomposition/helpers/computeDefiDecompositionUsdValue.js +55 -0
- package/dist/src/features/defiDecomposition/helpers/computeDelegatedTokensPositionsUsdValue.cjs +1 -0
- package/dist/src/features/defiDecomposition/helpers/computeDelegatedTokensPositionsUsdValue.d.ts +4 -0
- package/dist/src/features/defiDecomposition/helpers/computeDelegatedTokensPositionsUsdValue.js +30 -0
- package/dist/src/features/defiDecomposition/helpers/computeStakingPositionsUsdValue.cjs +1 -0
- package/dist/src/features/defiDecomposition/helpers/computeStakingPositionsUsdValue.d.ts +4 -0
- package/dist/src/features/defiDecomposition/helpers/computeStakingPositionsUsdValue.js +30 -0
- package/dist/src/features/defiDecomposition/helpers/computeStrkDelegatedStakingPositionsUsdValue.cjs +1 -0
- package/dist/src/features/defiDecomposition/helpers/computeStrkDelegatedStakingPositionsUsdValue.d.ts +4 -0
- package/dist/src/features/defiDecomposition/helpers/computeStrkDelegatedStakingPositionsUsdValue.js +30 -0
- package/dist/src/features/defiDecomposition/helpers/computeUsdValueForPosition.cjs +1 -0
- package/dist/src/features/defiDecomposition/helpers/computeUsdValueForPosition.d.ts +3 -0
- package/dist/src/features/defiDecomposition/helpers/computeUsdValueForPosition.js +17 -0
- package/dist/src/features/defiDecomposition/helpers/getDefiProductName.cjs +1 -0
- package/dist/src/features/defiDecomposition/helpers/getDefiProductName.d.ts +1 -0
- package/dist/src/features/defiDecomposition/helpers/getDefiProductName.js +11 -0
- package/dist/src/features/defiDecomposition/helpers/index.d.ts +13 -0
- package/dist/src/features/defiDecomposition/helpers/parseCollateralizedDebtPositions.cjs +1 -0
- package/dist/src/features/defiDecomposition/helpers/parseCollateralizedDebtPositions.d.ts +7 -0
- package/dist/src/features/defiDecomposition/helpers/parseCollateralizedDebtPositions.js +57 -0
- package/dist/src/features/defiDecomposition/helpers/parseConcentratedLiquidityPositions.cjs +1 -0
- package/dist/src/features/defiDecomposition/helpers/parseConcentratedLiquidityPositions.d.ts +4 -0
- package/dist/src/features/defiDecomposition/helpers/parseConcentratedLiquidityPositions.js +42 -0
- package/dist/src/features/defiDecomposition/helpers/parseDefiDecomposition.cjs +1 -0
- package/dist/src/features/defiDecomposition/helpers/parseDefiDecomposition.d.ts +4 -0
- package/dist/src/features/defiDecomposition/helpers/parseDefiDecomposition.js +63 -0
- package/dist/src/features/defiDecomposition/helpers/parseDelegatedTokensPositions.cjs +1 -0
- package/dist/src/features/defiDecomposition/helpers/parseDelegatedTokensPositions.d.ts +4 -0
- package/dist/src/features/defiDecomposition/helpers/parseDelegatedTokensPositions.js +27 -0
- package/dist/src/features/defiDecomposition/helpers/parseStakingPositions.cjs +1 -0
- package/dist/src/features/defiDecomposition/helpers/parseStakingPositions.d.ts +4 -0
- package/dist/src/features/defiDecomposition/helpers/parseStakingPositions.js +29 -0
- package/dist/src/features/defiDecomposition/helpers/parseStrkDelegatedStakingPositions.cjs +1 -0
- package/dist/src/features/defiDecomposition/helpers/parseStrkDelegatedStakingPositions.d.ts +4 -0
- package/dist/src/features/defiDecomposition/helpers/parseStrkDelegatedStakingPositions.js +27 -0
- package/dist/src/features/defiDecomposition/helpers/sortDescendingByUsdValue.cjs +1 -0
- package/dist/src/features/defiDecomposition/helpers/sortDescendingByUsdValue.d.ts +9 -0
- package/dist/src/features/defiDecomposition/helpers/sortDescendingByUsdValue.js +9 -0
- package/dist/src/features/defiDecomposition/index.d.ts +2 -0
- package/dist/src/features/defiDecomposition/schema.cjs +1 -0
- package/dist/src/features/defiDecomposition/schema.d.ts +16935 -0
- package/dist/src/features/defiDecomposition/schema.js +153 -0
- package/dist/src/features/paymaster/types.d.ts +20 -20
- package/dist/src/features/simulation/activity/schema.d.ts +366 -366
- package/dist/src/features/simulation/activity/utils/createNativeActivity.d.ts +8 -8
- package/dist/src/features/simulation/transactionReview/schema.cjs +1 -1
- package/dist/src/features/simulation/transactionReview/schema.d.ts +1814 -1814
- package/dist/src/features/simulation/transactionReview/schema.js +2 -2
- package/dist/src/features/swap/models/trade.model.d.ts +20 -0
- package/dist/src/staking/schema.d.ts +24 -24
- package/dist/src/tokens/service/types/backend.model.d.ts +8 -8
- package/dist/src/tokens/service/types/defiPosition.model.d.ts +576 -40
- package/dist/src/tokens/service/types/unclaimedRewards.model.d.ts +8 -8
- package/dist/src/tokens/service/types/webToken.model.cjs +1 -1
- package/dist/src/tokens/service/types/webToken.model.d.ts +36 -2
- package/dist/src/tokens/service/types/webToken.model.js +9 -7
- package/dist/src/transactions/equalTokens.cjs +1 -0
- package/dist/src/transactions/equalTokens.d.ts +2 -0
- package/dist/src/transactions/equalTokens.js +5 -0
- package/dist/src/transactions/errors.d.ts +4 -4
- package/dist/src/utils/starknet/starknet.d.ts +12 -12
- package/dist/src/utils/starknet/starknetSchemas.d.ts +212 -212
- package/package.json +6 -1
|
@@ -466,19 +466,19 @@ export declare const activityDetailsSchema: z.ZodUnion<[z.ZodDiscriminatedUnion<
|
|
|
466
466
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
467
467
|
address: z.ZodOptional<z.ZodString>;
|
|
468
468
|
}, "strip", z.ZodTypeAny, {
|
|
469
|
-
name?: string | undefined;
|
|
470
469
|
address?: string | undefined;
|
|
470
|
+
name?: string | undefined;
|
|
471
471
|
iconUrl?: string | undefined;
|
|
472
472
|
}, {
|
|
473
|
-
name?: string | undefined;
|
|
474
473
|
address?: string | undefined;
|
|
474
|
+
name?: string | undefined;
|
|
475
475
|
iconUrl?: string | undefined;
|
|
476
476
|
}>;
|
|
477
477
|
}, "strip", z.ZodTypeAny, {
|
|
478
478
|
type: "staking";
|
|
479
479
|
stakerInfo: {
|
|
480
|
-
name?: string | undefined;
|
|
481
480
|
address?: string | undefined;
|
|
481
|
+
name?: string | undefined;
|
|
482
482
|
iconUrl?: string | undefined;
|
|
483
483
|
};
|
|
484
484
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -495,8 +495,8 @@ export declare const activityDetailsSchema: z.ZodUnion<[z.ZodDiscriminatedUnion<
|
|
|
495
495
|
}, {
|
|
496
496
|
type: "staking";
|
|
497
497
|
stakerInfo: {
|
|
498
|
-
name?: string | undefined;
|
|
499
498
|
address?: string | undefined;
|
|
499
|
+
name?: string | undefined;
|
|
500
500
|
iconUrl?: string | undefined;
|
|
501
501
|
};
|
|
502
502
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -978,19 +978,19 @@ export declare const activityDetailsSchema: z.ZodUnion<[z.ZodDiscriminatedUnion<
|
|
|
978
978
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
979
979
|
address: z.ZodOptional<z.ZodString>;
|
|
980
980
|
}, "strip", z.ZodTypeAny, {
|
|
981
|
-
name?: string | undefined;
|
|
982
981
|
address?: string | undefined;
|
|
982
|
+
name?: string | undefined;
|
|
983
983
|
iconUrl?: string | undefined;
|
|
984
984
|
}, {
|
|
985
|
-
name?: string | undefined;
|
|
986
985
|
address?: string | undefined;
|
|
986
|
+
name?: string | undefined;
|
|
987
987
|
iconUrl?: string | undefined;
|
|
988
988
|
}>;
|
|
989
989
|
}, "strip", z.ZodTypeAny, {
|
|
990
990
|
type: "staking";
|
|
991
991
|
stakerInfo: {
|
|
992
|
-
name?: string | undefined;
|
|
993
992
|
address?: string | undefined;
|
|
993
|
+
name?: string | undefined;
|
|
994
994
|
iconUrl?: string | undefined;
|
|
995
995
|
};
|
|
996
996
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -1007,8 +1007,8 @@ export declare const activityDetailsSchema: z.ZodUnion<[z.ZodDiscriminatedUnion<
|
|
|
1007
1007
|
}, {
|
|
1008
1008
|
type: "staking";
|
|
1009
1009
|
stakerInfo: {
|
|
1010
|
-
name?: string | undefined;
|
|
1011
1010
|
address?: string | undefined;
|
|
1011
|
+
name?: string | undefined;
|
|
1012
1012
|
iconUrl?: string | undefined;
|
|
1013
1013
|
};
|
|
1014
1014
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -1166,8 +1166,8 @@ export declare const activityDetailsSchema: z.ZodUnion<[z.ZodDiscriminatedUnion<
|
|
|
1166
1166
|
} | {
|
|
1167
1167
|
type: "staking";
|
|
1168
1168
|
stakerInfo: {
|
|
1169
|
-
name?: string | undefined;
|
|
1170
1169
|
address?: string | undefined;
|
|
1170
|
+
name?: string | undefined;
|
|
1171
1171
|
iconUrl?: string | undefined;
|
|
1172
1172
|
};
|
|
1173
1173
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -1275,8 +1275,8 @@ export declare const activityDetailsSchema: z.ZodUnion<[z.ZodDiscriminatedUnion<
|
|
|
1275
1275
|
} | {
|
|
1276
1276
|
type: "staking";
|
|
1277
1277
|
stakerInfo: {
|
|
1278
|
-
name?: string | undefined;
|
|
1279
1278
|
address?: string | undefined;
|
|
1279
|
+
name?: string | undefined;
|
|
1280
1280
|
iconUrl?: string | undefined;
|
|
1281
1281
|
};
|
|
1282
1282
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -1387,8 +1387,8 @@ export declare const activityDetailsSchema: z.ZodUnion<[z.ZodDiscriminatedUnion<
|
|
|
1387
1387
|
} | {
|
|
1388
1388
|
type: "staking";
|
|
1389
1389
|
stakerInfo: {
|
|
1390
|
-
name?: string | undefined;
|
|
1391
1390
|
address?: string | undefined;
|
|
1391
|
+
name?: string | undefined;
|
|
1392
1392
|
iconUrl?: string | undefined;
|
|
1393
1393
|
};
|
|
1394
1394
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -1499,8 +1499,8 @@ export declare const activityDetailsSchema: z.ZodUnion<[z.ZodDiscriminatedUnion<
|
|
|
1499
1499
|
} | {
|
|
1500
1500
|
type: "staking";
|
|
1501
1501
|
stakerInfo: {
|
|
1502
|
-
name?: string | undefined;
|
|
1503
1502
|
address?: string | undefined;
|
|
1503
|
+
name?: string | undefined;
|
|
1504
1504
|
iconUrl?: string | undefined;
|
|
1505
1505
|
};
|
|
1506
1506
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -2282,19 +2282,19 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
2282
2282
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
2283
2283
|
address: z.ZodOptional<z.ZodString>;
|
|
2284
2284
|
}, "strip", z.ZodTypeAny, {
|
|
2285
|
-
name?: string | undefined;
|
|
2286
2285
|
address?: string | undefined;
|
|
2286
|
+
name?: string | undefined;
|
|
2287
2287
|
iconUrl?: string | undefined;
|
|
2288
2288
|
}, {
|
|
2289
|
-
name?: string | undefined;
|
|
2290
2289
|
address?: string | undefined;
|
|
2290
|
+
name?: string | undefined;
|
|
2291
2291
|
iconUrl?: string | undefined;
|
|
2292
2292
|
}>;
|
|
2293
2293
|
}, "strip", z.ZodTypeAny, {
|
|
2294
2294
|
type: "staking";
|
|
2295
2295
|
stakerInfo: {
|
|
2296
|
-
name?: string | undefined;
|
|
2297
2296
|
address?: string | undefined;
|
|
2297
|
+
name?: string | undefined;
|
|
2298
2298
|
iconUrl?: string | undefined;
|
|
2299
2299
|
};
|
|
2300
2300
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -2311,8 +2311,8 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
2311
2311
|
}, {
|
|
2312
2312
|
type: "staking";
|
|
2313
2313
|
stakerInfo: {
|
|
2314
|
-
name?: string | undefined;
|
|
2315
2314
|
address?: string | undefined;
|
|
2315
|
+
name?: string | undefined;
|
|
2316
2316
|
iconUrl?: string | undefined;
|
|
2317
2317
|
};
|
|
2318
2318
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -2794,19 +2794,19 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
2794
2794
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
2795
2795
|
address: z.ZodOptional<z.ZodString>;
|
|
2796
2796
|
}, "strip", z.ZodTypeAny, {
|
|
2797
|
-
name?: string | undefined;
|
|
2798
2797
|
address?: string | undefined;
|
|
2798
|
+
name?: string | undefined;
|
|
2799
2799
|
iconUrl?: string | undefined;
|
|
2800
2800
|
}, {
|
|
2801
|
-
name?: string | undefined;
|
|
2802
2801
|
address?: string | undefined;
|
|
2802
|
+
name?: string | undefined;
|
|
2803
2803
|
iconUrl?: string | undefined;
|
|
2804
2804
|
}>;
|
|
2805
2805
|
}, "strip", z.ZodTypeAny, {
|
|
2806
2806
|
type: "staking";
|
|
2807
2807
|
stakerInfo: {
|
|
2808
|
-
name?: string | undefined;
|
|
2809
2808
|
address?: string | undefined;
|
|
2809
|
+
name?: string | undefined;
|
|
2810
2810
|
iconUrl?: string | undefined;
|
|
2811
2811
|
};
|
|
2812
2812
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -2823,8 +2823,8 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
2823
2823
|
}, {
|
|
2824
2824
|
type: "staking";
|
|
2825
2825
|
stakerInfo: {
|
|
2826
|
-
name?: string | undefined;
|
|
2827
2826
|
address?: string | undefined;
|
|
2827
|
+
name?: string | undefined;
|
|
2828
2828
|
iconUrl?: string | undefined;
|
|
2829
2829
|
};
|
|
2830
2830
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -2982,8 +2982,8 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
2982
2982
|
} | {
|
|
2983
2983
|
type: "staking";
|
|
2984
2984
|
stakerInfo: {
|
|
2985
|
-
name?: string | undefined;
|
|
2986
2985
|
address?: string | undefined;
|
|
2986
|
+
name?: string | undefined;
|
|
2987
2987
|
iconUrl?: string | undefined;
|
|
2988
2988
|
};
|
|
2989
2989
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -3091,8 +3091,8 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
3091
3091
|
} | {
|
|
3092
3092
|
type: "staking";
|
|
3093
3093
|
stakerInfo: {
|
|
3094
|
-
name?: string | undefined;
|
|
3095
3094
|
address?: string | undefined;
|
|
3095
|
+
name?: string | undefined;
|
|
3096
3096
|
iconUrl?: string | undefined;
|
|
3097
3097
|
};
|
|
3098
3098
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -3203,8 +3203,8 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
3203
3203
|
} | {
|
|
3204
3204
|
type: "staking";
|
|
3205
3205
|
stakerInfo: {
|
|
3206
|
-
name?: string | undefined;
|
|
3207
3206
|
address?: string | undefined;
|
|
3207
|
+
name?: string | undefined;
|
|
3208
3208
|
iconUrl?: string | undefined;
|
|
3209
3209
|
};
|
|
3210
3210
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -3315,8 +3315,8 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
3315
3315
|
} | {
|
|
3316
3316
|
type: "staking";
|
|
3317
3317
|
stakerInfo: {
|
|
3318
|
-
name?: string | undefined;
|
|
3319
3318
|
address?: string | undefined;
|
|
3319
|
+
name?: string | undefined;
|
|
3320
3320
|
iconUrl?: string | undefined;
|
|
3321
3321
|
};
|
|
3322
3322
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -3472,17 +3472,17 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
3472
3472
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
3473
3473
|
type: z.ZodString;
|
|
3474
3474
|
}, "strip", z.ZodTypeAny, {
|
|
3475
|
-
name: string;
|
|
3476
3475
|
address: string;
|
|
3477
3476
|
type: string;
|
|
3477
|
+
name: string;
|
|
3478
3478
|
unknown: boolean;
|
|
3479
3479
|
symbol?: string | undefined;
|
|
3480
3480
|
decimals?: number | undefined;
|
|
3481
3481
|
iconUrl?: string | undefined;
|
|
3482
3482
|
}, {
|
|
3483
|
-
name: string;
|
|
3484
3483
|
address: string;
|
|
3485
3484
|
type: string;
|
|
3485
|
+
name: string;
|
|
3486
3486
|
unknown: boolean;
|
|
3487
3487
|
symbol?: string | undefined;
|
|
3488
3488
|
decimals?: number | undefined;
|
|
@@ -3495,9 +3495,9 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
3495
3495
|
type: "amount";
|
|
3496
3496
|
amount: string;
|
|
3497
3497
|
token: {
|
|
3498
|
-
name: string;
|
|
3499
3498
|
address: string;
|
|
3500
3499
|
type: string;
|
|
3500
|
+
name: string;
|
|
3501
3501
|
unknown: boolean;
|
|
3502
3502
|
symbol?: string | undefined;
|
|
3503
3503
|
decimals?: number | undefined;
|
|
@@ -3510,9 +3510,9 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
3510
3510
|
type: "amount";
|
|
3511
3511
|
amount: string;
|
|
3512
3512
|
token: {
|
|
3513
|
-
name: string;
|
|
3514
3513
|
address: string;
|
|
3515
3514
|
type: string;
|
|
3515
|
+
name: string;
|
|
3516
3516
|
unknown: boolean;
|
|
3517
3517
|
symbol?: string | undefined;
|
|
3518
3518
|
decimals?: number | undefined;
|
|
@@ -3544,12 +3544,12 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
3544
3544
|
label: z.ZodString;
|
|
3545
3545
|
value: z.ZodString;
|
|
3546
3546
|
}, "strip", z.ZodTypeAny, {
|
|
3547
|
-
value: string;
|
|
3548
3547
|
type: "timestamp";
|
|
3548
|
+
value: string;
|
|
3549
3549
|
label: string;
|
|
3550
3550
|
}, {
|
|
3551
|
-
value: string;
|
|
3552
3551
|
type: "timestamp";
|
|
3552
|
+
value: string;
|
|
3553
3553
|
label: string;
|
|
3554
3554
|
}>, z.ZodObject<{
|
|
3555
3555
|
type: z.ZodLiteral<"token_address">;
|
|
@@ -3563,17 +3563,17 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
3563
3563
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
3564
3564
|
type: z.ZodString;
|
|
3565
3565
|
}, "strip", z.ZodTypeAny, {
|
|
3566
|
-
name: string;
|
|
3567
3566
|
address: string;
|
|
3568
3567
|
type: string;
|
|
3568
|
+
name: string;
|
|
3569
3569
|
unknown: boolean;
|
|
3570
3570
|
symbol?: string | undefined;
|
|
3571
3571
|
decimals?: number | undefined;
|
|
3572
3572
|
iconUrl?: string | undefined;
|
|
3573
3573
|
}, {
|
|
3574
|
-
name: string;
|
|
3575
3574
|
address: string;
|
|
3576
3575
|
type: string;
|
|
3576
|
+
name: string;
|
|
3577
3577
|
unknown: boolean;
|
|
3578
3578
|
symbol?: string | undefined;
|
|
3579
3579
|
decimals?: number | undefined;
|
|
@@ -3582,9 +3582,9 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
3582
3582
|
}, "strip", z.ZodTypeAny, {
|
|
3583
3583
|
type: "token_address";
|
|
3584
3584
|
token: {
|
|
3585
|
-
name: string;
|
|
3586
3585
|
address: string;
|
|
3587
3586
|
type: string;
|
|
3587
|
+
name: string;
|
|
3588
3588
|
unknown: boolean;
|
|
3589
3589
|
symbol?: string | undefined;
|
|
3590
3590
|
decimals?: number | undefined;
|
|
@@ -3594,9 +3594,9 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
3594
3594
|
}, {
|
|
3595
3595
|
type: "token_address";
|
|
3596
3596
|
token: {
|
|
3597
|
-
name: string;
|
|
3598
3597
|
address: string;
|
|
3599
3598
|
type: string;
|
|
3599
|
+
name: string;
|
|
3600
3600
|
unknown: boolean;
|
|
3601
3601
|
symbol?: string | undefined;
|
|
3602
3602
|
decimals?: number | undefined;
|
|
@@ -3654,17 +3654,17 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
3654
3654
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
3655
3655
|
type: z.ZodString;
|
|
3656
3656
|
}, "strip", z.ZodTypeAny, {
|
|
3657
|
-
name: string;
|
|
3658
3657
|
address: string;
|
|
3659
3658
|
type: string;
|
|
3659
|
+
name: string;
|
|
3660
3660
|
unknown: boolean;
|
|
3661
3661
|
symbol?: string | undefined;
|
|
3662
3662
|
decimals?: number | undefined;
|
|
3663
3663
|
iconUrl?: string | undefined;
|
|
3664
3664
|
}, {
|
|
3665
|
-
name: string;
|
|
3666
3665
|
address: string;
|
|
3667
3666
|
type: string;
|
|
3667
|
+
name: string;
|
|
3668
3668
|
unknown: boolean;
|
|
3669
3669
|
symbol?: string | undefined;
|
|
3670
3670
|
decimals?: number | undefined;
|
|
@@ -3673,9 +3673,9 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
3673
3673
|
}, "strip", z.ZodTypeAny, {
|
|
3674
3674
|
type: "nft";
|
|
3675
3675
|
token: {
|
|
3676
|
-
name: string;
|
|
3677
3676
|
address: string;
|
|
3678
3677
|
type: string;
|
|
3678
|
+
name: string;
|
|
3679
3679
|
unknown: boolean;
|
|
3680
3680
|
symbol?: string | undefined;
|
|
3681
3681
|
decimals?: number | undefined;
|
|
@@ -3685,9 +3685,9 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
3685
3685
|
}, {
|
|
3686
3686
|
type: "nft";
|
|
3687
3687
|
token: {
|
|
3688
|
-
name: string;
|
|
3689
3688
|
address: string;
|
|
3690
3689
|
type: string;
|
|
3690
|
+
name: string;
|
|
3691
3691
|
unknown: boolean;
|
|
3692
3692
|
symbol?: string | undefined;
|
|
3693
3693
|
decimals?: number | undefined;
|
|
@@ -3707,17 +3707,17 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
3707
3707
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
3708
3708
|
type: z.ZodString;
|
|
3709
3709
|
}, "strip", z.ZodTypeAny, {
|
|
3710
|
-
name: string;
|
|
3711
3710
|
address: string;
|
|
3712
3711
|
type: string;
|
|
3712
|
+
name: string;
|
|
3713
3713
|
unknown: boolean;
|
|
3714
3714
|
symbol?: string | undefined;
|
|
3715
3715
|
decimals?: number | undefined;
|
|
3716
3716
|
iconUrl?: string | undefined;
|
|
3717
3717
|
}, {
|
|
3718
|
-
name: string;
|
|
3719
3718
|
address: string;
|
|
3720
3719
|
type: string;
|
|
3720
|
+
name: string;
|
|
3721
3721
|
unknown: boolean;
|
|
3722
3722
|
symbol?: string | undefined;
|
|
3723
3723
|
decimals?: number | undefined;
|
|
@@ -3730,9 +3730,9 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
3730
3730
|
type: "amount";
|
|
3731
3731
|
amount: string;
|
|
3732
3732
|
token: {
|
|
3733
|
-
name: string;
|
|
3734
3733
|
address: string;
|
|
3735
3734
|
type: string;
|
|
3735
|
+
name: string;
|
|
3736
3736
|
unknown: boolean;
|
|
3737
3737
|
symbol?: string | undefined;
|
|
3738
3738
|
decimals?: number | undefined;
|
|
@@ -3745,9 +3745,9 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
3745
3745
|
type: "amount";
|
|
3746
3746
|
amount: string;
|
|
3747
3747
|
token: {
|
|
3748
|
-
name: string;
|
|
3749
3748
|
address: string;
|
|
3750
3749
|
type: string;
|
|
3750
|
+
name: string;
|
|
3751
3751
|
unknown: boolean;
|
|
3752
3752
|
symbol?: string | undefined;
|
|
3753
3753
|
decimals?: number | undefined;
|
|
@@ -3779,12 +3779,12 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
3779
3779
|
label: z.ZodString;
|
|
3780
3780
|
value: z.ZodString;
|
|
3781
3781
|
}, "strip", z.ZodTypeAny, {
|
|
3782
|
-
value: string;
|
|
3783
3782
|
type: "timestamp";
|
|
3783
|
+
value: string;
|
|
3784
3784
|
label: string;
|
|
3785
3785
|
}, {
|
|
3786
|
-
value: string;
|
|
3787
3786
|
type: "timestamp";
|
|
3787
|
+
value: string;
|
|
3788
3788
|
label: string;
|
|
3789
3789
|
}>, z.ZodObject<{
|
|
3790
3790
|
type: z.ZodLiteral<"token_address">;
|
|
@@ -3798,17 +3798,17 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
3798
3798
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
3799
3799
|
type: z.ZodString;
|
|
3800
3800
|
}, "strip", z.ZodTypeAny, {
|
|
3801
|
-
name: string;
|
|
3802
3801
|
address: string;
|
|
3803
3802
|
type: string;
|
|
3803
|
+
name: string;
|
|
3804
3804
|
unknown: boolean;
|
|
3805
3805
|
symbol?: string | undefined;
|
|
3806
3806
|
decimals?: number | undefined;
|
|
3807
3807
|
iconUrl?: string | undefined;
|
|
3808
3808
|
}, {
|
|
3809
|
-
name: string;
|
|
3810
3809
|
address: string;
|
|
3811
3810
|
type: string;
|
|
3811
|
+
name: string;
|
|
3812
3812
|
unknown: boolean;
|
|
3813
3813
|
symbol?: string | undefined;
|
|
3814
3814
|
decimals?: number | undefined;
|
|
@@ -3817,9 +3817,9 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
3817
3817
|
}, "strip", z.ZodTypeAny, {
|
|
3818
3818
|
type: "token_address";
|
|
3819
3819
|
token: {
|
|
3820
|
-
name: string;
|
|
3821
3820
|
address: string;
|
|
3822
3821
|
type: string;
|
|
3822
|
+
name: string;
|
|
3823
3823
|
unknown: boolean;
|
|
3824
3824
|
symbol?: string | undefined;
|
|
3825
3825
|
decimals?: number | undefined;
|
|
@@ -3829,9 +3829,9 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
3829
3829
|
}, {
|
|
3830
3830
|
type: "token_address";
|
|
3831
3831
|
token: {
|
|
3832
|
-
name: string;
|
|
3833
3832
|
address: string;
|
|
3834
3833
|
type: string;
|
|
3834
|
+
name: string;
|
|
3835
3835
|
unknown: boolean;
|
|
3836
3836
|
symbol?: string | undefined;
|
|
3837
3837
|
decimals?: number | undefined;
|
|
@@ -3889,17 +3889,17 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
3889
3889
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
3890
3890
|
type: z.ZodString;
|
|
3891
3891
|
}, "strip", z.ZodTypeAny, {
|
|
3892
|
-
name: string;
|
|
3893
3892
|
address: string;
|
|
3894
3893
|
type: string;
|
|
3894
|
+
name: string;
|
|
3895
3895
|
unknown: boolean;
|
|
3896
3896
|
symbol?: string | undefined;
|
|
3897
3897
|
decimals?: number | undefined;
|
|
3898
3898
|
iconUrl?: string | undefined;
|
|
3899
3899
|
}, {
|
|
3900
|
-
name: string;
|
|
3901
3900
|
address: string;
|
|
3902
3901
|
type: string;
|
|
3902
|
+
name: string;
|
|
3903
3903
|
unknown: boolean;
|
|
3904
3904
|
symbol?: string | undefined;
|
|
3905
3905
|
decimals?: number | undefined;
|
|
@@ -3908,9 +3908,9 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
3908
3908
|
}, "strip", z.ZodTypeAny, {
|
|
3909
3909
|
type: "nft";
|
|
3910
3910
|
token: {
|
|
3911
|
-
name: string;
|
|
3912
3911
|
address: string;
|
|
3913
3912
|
type: string;
|
|
3913
|
+
name: string;
|
|
3914
3914
|
unknown: boolean;
|
|
3915
3915
|
symbol?: string | undefined;
|
|
3916
3916
|
decimals?: number | undefined;
|
|
@@ -3920,9 +3920,9 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
3920
3920
|
}, {
|
|
3921
3921
|
type: "nft";
|
|
3922
3922
|
token: {
|
|
3923
|
-
name: string;
|
|
3924
3923
|
address: string;
|
|
3925
3924
|
type: string;
|
|
3925
|
+
name: string;
|
|
3926
3926
|
unknown: boolean;
|
|
3927
3927
|
symbol?: string | undefined;
|
|
3928
3928
|
decimals?: number | undefined;
|
|
@@ -3936,9 +3936,9 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
3936
3936
|
type: "amount";
|
|
3937
3937
|
amount: string;
|
|
3938
3938
|
token: {
|
|
3939
|
-
name: string;
|
|
3940
3939
|
address: string;
|
|
3941
3940
|
type: string;
|
|
3941
|
+
name: string;
|
|
3942
3942
|
unknown: boolean;
|
|
3943
3943
|
symbol?: string | undefined;
|
|
3944
3944
|
decimals?: number | undefined;
|
|
@@ -3954,15 +3954,15 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
3954
3954
|
verified?: boolean | undefined;
|
|
3955
3955
|
addressName?: string | undefined;
|
|
3956
3956
|
} | {
|
|
3957
|
-
value: string;
|
|
3958
3957
|
type: "timestamp";
|
|
3958
|
+
value: string;
|
|
3959
3959
|
label: string;
|
|
3960
3960
|
} | {
|
|
3961
3961
|
type: "token_address";
|
|
3962
3962
|
token: {
|
|
3963
|
-
name: string;
|
|
3964
3963
|
address: string;
|
|
3965
3964
|
type: string;
|
|
3965
|
+
name: string;
|
|
3966
3966
|
unknown: boolean;
|
|
3967
3967
|
symbol?: string | undefined;
|
|
3968
3968
|
decimals?: number | undefined;
|
|
@@ -3985,9 +3985,9 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
3985
3985
|
} | {
|
|
3986
3986
|
type: "nft";
|
|
3987
3987
|
token: {
|
|
3988
|
-
name: string;
|
|
3989
3988
|
address: string;
|
|
3990
3989
|
type: string;
|
|
3990
|
+
name: string;
|
|
3991
3991
|
unknown: boolean;
|
|
3992
3992
|
symbol?: string | undefined;
|
|
3993
3993
|
decimals?: number | undefined;
|
|
@@ -3999,9 +3999,9 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
3999
3999
|
type: "amount";
|
|
4000
4000
|
amount: string;
|
|
4001
4001
|
token: {
|
|
4002
|
-
name: string;
|
|
4003
4002
|
address: string;
|
|
4004
4003
|
type: string;
|
|
4004
|
+
name: string;
|
|
4005
4005
|
unknown: boolean;
|
|
4006
4006
|
symbol?: string | undefined;
|
|
4007
4007
|
decimals?: number | undefined;
|
|
@@ -4017,15 +4017,15 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
4017
4017
|
verified?: boolean | undefined;
|
|
4018
4018
|
addressName?: string | undefined;
|
|
4019
4019
|
} | {
|
|
4020
|
-
value: string;
|
|
4021
4020
|
type: "timestamp";
|
|
4021
|
+
value: string;
|
|
4022
4022
|
label: string;
|
|
4023
4023
|
} | {
|
|
4024
4024
|
type: "token_address";
|
|
4025
4025
|
token: {
|
|
4026
|
-
name: string;
|
|
4027
4026
|
address: string;
|
|
4028
4027
|
type: string;
|
|
4028
|
+
name: string;
|
|
4029
4029
|
unknown: boolean;
|
|
4030
4030
|
symbol?: string | undefined;
|
|
4031
4031
|
decimals?: number | undefined;
|
|
@@ -4048,9 +4048,9 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
4048
4048
|
} | {
|
|
4049
4049
|
type: "nft";
|
|
4050
4050
|
token: {
|
|
4051
|
-
name: string;
|
|
4052
4051
|
address: string;
|
|
4053
4052
|
type: string;
|
|
4053
|
+
name: string;
|
|
4054
4054
|
unknown: boolean;
|
|
4055
4055
|
symbol?: string | undefined;
|
|
4056
4056
|
decimals?: number | undefined;
|
|
@@ -4064,9 +4064,9 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
4064
4064
|
type: "amount";
|
|
4065
4065
|
amount: string;
|
|
4066
4066
|
token: {
|
|
4067
|
-
name: string;
|
|
4068
4067
|
address: string;
|
|
4069
4068
|
type: string;
|
|
4069
|
+
name: string;
|
|
4070
4070
|
unknown: boolean;
|
|
4071
4071
|
symbol?: string | undefined;
|
|
4072
4072
|
decimals?: number | undefined;
|
|
@@ -4082,15 +4082,15 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
4082
4082
|
verified?: boolean | undefined;
|
|
4083
4083
|
addressName?: string | undefined;
|
|
4084
4084
|
} | {
|
|
4085
|
-
value: string;
|
|
4086
4085
|
type: "timestamp";
|
|
4086
|
+
value: string;
|
|
4087
4087
|
label: string;
|
|
4088
4088
|
} | {
|
|
4089
4089
|
type: "token_address";
|
|
4090
4090
|
token: {
|
|
4091
|
-
name: string;
|
|
4092
4091
|
address: string;
|
|
4093
4092
|
type: string;
|
|
4093
|
+
name: string;
|
|
4094
4094
|
unknown: boolean;
|
|
4095
4095
|
symbol?: string | undefined;
|
|
4096
4096
|
decimals?: number | undefined;
|
|
@@ -4113,9 +4113,9 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
4113
4113
|
} | {
|
|
4114
4114
|
type: "nft";
|
|
4115
4115
|
token: {
|
|
4116
|
-
name: string;
|
|
4117
4116
|
address: string;
|
|
4118
4117
|
type: string;
|
|
4118
|
+
name: string;
|
|
4119
4119
|
unknown: boolean;
|
|
4120
4120
|
symbol?: string | undefined;
|
|
4121
4121
|
decimals?: number | undefined;
|
|
@@ -4127,9 +4127,9 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
4127
4127
|
type: "amount";
|
|
4128
4128
|
amount: string;
|
|
4129
4129
|
token: {
|
|
4130
|
-
name: string;
|
|
4131
4130
|
address: string;
|
|
4132
4131
|
type: string;
|
|
4132
|
+
name: string;
|
|
4133
4133
|
unknown: boolean;
|
|
4134
4134
|
symbol?: string | undefined;
|
|
4135
4135
|
decimals?: number | undefined;
|
|
@@ -4145,15 +4145,15 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
4145
4145
|
verified?: boolean | undefined;
|
|
4146
4146
|
addressName?: string | undefined;
|
|
4147
4147
|
} | {
|
|
4148
|
-
value: string;
|
|
4149
4148
|
type: "timestamp";
|
|
4149
|
+
value: string;
|
|
4150
4150
|
label: string;
|
|
4151
4151
|
} | {
|
|
4152
4152
|
type: "token_address";
|
|
4153
4153
|
token: {
|
|
4154
|
-
name: string;
|
|
4155
4154
|
address: string;
|
|
4156
4155
|
type: string;
|
|
4156
|
+
name: string;
|
|
4157
4157
|
unknown: boolean;
|
|
4158
4158
|
symbol?: string | undefined;
|
|
4159
4159
|
decimals?: number | undefined;
|
|
@@ -4176,9 +4176,9 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
4176
4176
|
} | {
|
|
4177
4177
|
type: "nft";
|
|
4178
4178
|
token: {
|
|
4179
|
-
name: string;
|
|
4180
4179
|
address: string;
|
|
4181
4180
|
type: string;
|
|
4181
|
+
name: string;
|
|
4182
4182
|
unknown: boolean;
|
|
4183
4183
|
symbol?: string | undefined;
|
|
4184
4184
|
decimals?: number | undefined;
|
|
@@ -4196,8 +4196,8 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
4196
4196
|
signers: string[];
|
|
4197
4197
|
}>>;
|
|
4198
4198
|
}, "strip", z.ZodTypeAny, {
|
|
4199
|
-
status: "pending" | "success" | "failure";
|
|
4200
4199
|
type: "staking" | "payment" | "approval" | "changePubKey" | "dappInteraction" | "deploy" | "gift" | "multicall" | "security" | "trade";
|
|
4200
|
+
status: "pending" | "success" | "failure";
|
|
4201
4201
|
network: string;
|
|
4202
4202
|
wallet: `0x${string}`;
|
|
4203
4203
|
id: string;
|
|
@@ -4280,8 +4280,8 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
4280
4280
|
} | {
|
|
4281
4281
|
type: "staking";
|
|
4282
4282
|
stakerInfo: {
|
|
4283
|
-
name?: string | undefined;
|
|
4284
4283
|
address?: string | undefined;
|
|
4284
|
+
name?: string | undefined;
|
|
4285
4285
|
iconUrl?: string | undefined;
|
|
4286
4286
|
};
|
|
4287
4287
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -4390,8 +4390,8 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
4390
4390
|
} | {
|
|
4391
4391
|
type: "staking";
|
|
4392
4392
|
stakerInfo: {
|
|
4393
|
-
name?: string | undefined;
|
|
4394
4393
|
address?: string | undefined;
|
|
4394
|
+
name?: string | undefined;
|
|
4395
4395
|
iconUrl?: string | undefined;
|
|
4396
4396
|
};
|
|
4397
4397
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -4502,9 +4502,9 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
4502
4502
|
type: "amount";
|
|
4503
4503
|
amount: string;
|
|
4504
4504
|
token: {
|
|
4505
|
-
name: string;
|
|
4506
4505
|
address: string;
|
|
4507
4506
|
type: string;
|
|
4507
|
+
name: string;
|
|
4508
4508
|
unknown: boolean;
|
|
4509
4509
|
symbol?: string | undefined;
|
|
4510
4510
|
decimals?: number | undefined;
|
|
@@ -4520,15 +4520,15 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
4520
4520
|
verified?: boolean | undefined;
|
|
4521
4521
|
addressName?: string | undefined;
|
|
4522
4522
|
} | {
|
|
4523
|
-
value: string;
|
|
4524
4523
|
type: "timestamp";
|
|
4524
|
+
value: string;
|
|
4525
4525
|
label: string;
|
|
4526
4526
|
} | {
|
|
4527
4527
|
type: "token_address";
|
|
4528
4528
|
token: {
|
|
4529
|
-
name: string;
|
|
4530
4529
|
address: string;
|
|
4531
4530
|
type: string;
|
|
4531
|
+
name: string;
|
|
4532
4532
|
unknown: boolean;
|
|
4533
4533
|
symbol?: string | undefined;
|
|
4534
4534
|
decimals?: number | undefined;
|
|
@@ -4551,9 +4551,9 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
4551
4551
|
} | {
|
|
4552
4552
|
type: "nft";
|
|
4553
4553
|
token: {
|
|
4554
|
-
name: string;
|
|
4555
4554
|
address: string;
|
|
4556
4555
|
type: string;
|
|
4556
|
+
name: string;
|
|
4557
4557
|
unknown: boolean;
|
|
4558
4558
|
symbol?: string | undefined;
|
|
4559
4559
|
decimals?: number | undefined;
|
|
@@ -4565,9 +4565,9 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
4565
4565
|
type: "amount";
|
|
4566
4566
|
amount: string;
|
|
4567
4567
|
token: {
|
|
4568
|
-
name: string;
|
|
4569
4568
|
address: string;
|
|
4570
4569
|
type: string;
|
|
4570
|
+
name: string;
|
|
4571
4571
|
unknown: boolean;
|
|
4572
4572
|
symbol?: string | undefined;
|
|
4573
4573
|
decimals?: number | undefined;
|
|
@@ -4583,15 +4583,15 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
4583
4583
|
verified?: boolean | undefined;
|
|
4584
4584
|
addressName?: string | undefined;
|
|
4585
4585
|
} | {
|
|
4586
|
-
value: string;
|
|
4587
4586
|
type: "timestamp";
|
|
4587
|
+
value: string;
|
|
4588
4588
|
label: string;
|
|
4589
4589
|
} | {
|
|
4590
4590
|
type: "token_address";
|
|
4591
4591
|
token: {
|
|
4592
|
-
name: string;
|
|
4593
4592
|
address: string;
|
|
4594
4593
|
type: string;
|
|
4594
|
+
name: string;
|
|
4595
4595
|
unknown: boolean;
|
|
4596
4596
|
symbol?: string | undefined;
|
|
4597
4597
|
decimals?: number | undefined;
|
|
@@ -4614,9 +4614,9 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
4614
4614
|
} | {
|
|
4615
4615
|
type: "nft";
|
|
4616
4616
|
token: {
|
|
4617
|
-
name: string;
|
|
4618
4617
|
address: string;
|
|
4619
4618
|
type: string;
|
|
4619
|
+
name: string;
|
|
4620
4620
|
unknown: boolean;
|
|
4621
4621
|
symbol?: string | undefined;
|
|
4622
4622
|
decimals?: number | undefined;
|
|
@@ -4630,8 +4630,8 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
4630
4630
|
signers: `0x${string}`[];
|
|
4631
4631
|
} | undefined;
|
|
4632
4632
|
}, {
|
|
4633
|
-
status: "pending" | "success" | "failure";
|
|
4634
4633
|
type: "staking" | "payment" | "approval" | "changePubKey" | "dappInteraction" | "deploy" | "gift" | "multicall" | "security" | "trade";
|
|
4634
|
+
status: "pending" | "success" | "failure";
|
|
4635
4635
|
network: string;
|
|
4636
4636
|
wallet: string;
|
|
4637
4637
|
id: string;
|
|
@@ -4714,8 +4714,8 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
4714
4714
|
} | {
|
|
4715
4715
|
type: "staking";
|
|
4716
4716
|
stakerInfo: {
|
|
4717
|
-
name?: string | undefined;
|
|
4718
4717
|
address?: string | undefined;
|
|
4718
|
+
name?: string | undefined;
|
|
4719
4719
|
iconUrl?: string | undefined;
|
|
4720
4720
|
};
|
|
4721
4721
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -4824,8 +4824,8 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
4824
4824
|
} | {
|
|
4825
4825
|
type: "staking";
|
|
4826
4826
|
stakerInfo: {
|
|
4827
|
-
name?: string | undefined;
|
|
4828
4827
|
address?: string | undefined;
|
|
4828
|
+
name?: string | undefined;
|
|
4829
4829
|
iconUrl?: string | undefined;
|
|
4830
4830
|
};
|
|
4831
4831
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -4936,9 +4936,9 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
4936
4936
|
type: "amount";
|
|
4937
4937
|
amount: string;
|
|
4938
4938
|
token: {
|
|
4939
|
-
name: string;
|
|
4940
4939
|
address: string;
|
|
4941
4940
|
type: string;
|
|
4941
|
+
name: string;
|
|
4942
4942
|
unknown: boolean;
|
|
4943
4943
|
symbol?: string | undefined;
|
|
4944
4944
|
decimals?: number | undefined;
|
|
@@ -4954,15 +4954,15 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
4954
4954
|
verified?: boolean | undefined;
|
|
4955
4955
|
addressName?: string | undefined;
|
|
4956
4956
|
} | {
|
|
4957
|
-
value: string;
|
|
4958
4957
|
type: "timestamp";
|
|
4958
|
+
value: string;
|
|
4959
4959
|
label: string;
|
|
4960
4960
|
} | {
|
|
4961
4961
|
type: "token_address";
|
|
4962
4962
|
token: {
|
|
4963
|
-
name: string;
|
|
4964
4963
|
address: string;
|
|
4965
4964
|
type: string;
|
|
4965
|
+
name: string;
|
|
4966
4966
|
unknown: boolean;
|
|
4967
4967
|
symbol?: string | undefined;
|
|
4968
4968
|
decimals?: number | undefined;
|
|
@@ -4985,9 +4985,9 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
4985
4985
|
} | {
|
|
4986
4986
|
type: "nft";
|
|
4987
4987
|
token: {
|
|
4988
|
-
name: string;
|
|
4989
4988
|
address: string;
|
|
4990
4989
|
type: string;
|
|
4990
|
+
name: string;
|
|
4991
4991
|
unknown: boolean;
|
|
4992
4992
|
symbol?: string | undefined;
|
|
4993
4993
|
decimals?: number | undefined;
|
|
@@ -4999,9 +4999,9 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
4999
4999
|
type: "amount";
|
|
5000
5000
|
amount: string;
|
|
5001
5001
|
token: {
|
|
5002
|
-
name: string;
|
|
5003
5002
|
address: string;
|
|
5004
5003
|
type: string;
|
|
5004
|
+
name: string;
|
|
5005
5005
|
unknown: boolean;
|
|
5006
5006
|
symbol?: string | undefined;
|
|
5007
5007
|
decimals?: number | undefined;
|
|
@@ -5017,15 +5017,15 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
5017
5017
|
verified?: boolean | undefined;
|
|
5018
5018
|
addressName?: string | undefined;
|
|
5019
5019
|
} | {
|
|
5020
|
-
value: string;
|
|
5021
5020
|
type: "timestamp";
|
|
5021
|
+
value: string;
|
|
5022
5022
|
label: string;
|
|
5023
5023
|
} | {
|
|
5024
5024
|
type: "token_address";
|
|
5025
5025
|
token: {
|
|
5026
|
-
name: string;
|
|
5027
5026
|
address: string;
|
|
5028
5027
|
type: string;
|
|
5028
|
+
name: string;
|
|
5029
5029
|
unknown: boolean;
|
|
5030
5030
|
symbol?: string | undefined;
|
|
5031
5031
|
decimals?: number | undefined;
|
|
@@ -5048,9 +5048,9 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
5048
5048
|
} | {
|
|
5049
5049
|
type: "nft";
|
|
5050
5050
|
token: {
|
|
5051
|
-
name: string;
|
|
5052
5051
|
address: string;
|
|
5053
5052
|
type: string;
|
|
5053
|
+
name: string;
|
|
5054
5054
|
unknown: boolean;
|
|
5055
5055
|
symbol?: string | undefined;
|
|
5056
5056
|
decimals?: number | undefined;
|
|
@@ -5082,12 +5082,12 @@ export declare const nativeActivityMetaSchema: z.ZodObject<{
|
|
|
5082
5082
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
5083
5083
|
address: z.ZodOptional<z.ZodString>;
|
|
5084
5084
|
}, "strip", z.ZodTypeAny, {
|
|
5085
|
-
name?: string | undefined;
|
|
5086
5085
|
address?: string | undefined;
|
|
5086
|
+
name?: string | undefined;
|
|
5087
5087
|
iconUrl?: string | undefined;
|
|
5088
5088
|
}, {
|
|
5089
|
-
name?: string | undefined;
|
|
5090
5089
|
address?: string | undefined;
|
|
5090
|
+
name?: string | undefined;
|
|
5091
5091
|
iconUrl?: string | undefined;
|
|
5092
5092
|
}>;
|
|
5093
5093
|
tokenAddress: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -5096,8 +5096,8 @@ export declare const nativeActivityMetaSchema: z.ZodObject<{
|
|
|
5096
5096
|
amount: string;
|
|
5097
5097
|
tokenAddress: `0x${string}`;
|
|
5098
5098
|
stakerInfo: {
|
|
5099
|
-
name?: string | undefined;
|
|
5100
5099
|
address?: string | undefined;
|
|
5100
|
+
name?: string | undefined;
|
|
5101
5101
|
iconUrl?: string | undefined;
|
|
5102
5102
|
};
|
|
5103
5103
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -5108,8 +5108,8 @@ export declare const nativeActivityMetaSchema: z.ZodObject<{
|
|
|
5108
5108
|
amount: string;
|
|
5109
5109
|
tokenAddress: string;
|
|
5110
5110
|
stakerInfo: {
|
|
5111
|
-
name?: string | undefined;
|
|
5112
5111
|
address?: string | undefined;
|
|
5112
|
+
name?: string | undefined;
|
|
5113
5113
|
iconUrl?: string | undefined;
|
|
5114
5114
|
};
|
|
5115
5115
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -5127,8 +5127,8 @@ export declare const nativeActivityMetaSchema: z.ZodObject<{
|
|
|
5127
5127
|
amount: string;
|
|
5128
5128
|
tokenAddress: `0x${string}`;
|
|
5129
5129
|
stakerInfo: {
|
|
5130
|
-
name?: string | undefined;
|
|
5131
5130
|
address?: string | undefined;
|
|
5131
|
+
name?: string | undefined;
|
|
5132
5132
|
iconUrl?: string | undefined;
|
|
5133
5133
|
};
|
|
5134
5134
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -5146,8 +5146,8 @@ export declare const nativeActivityMetaSchema: z.ZodObject<{
|
|
|
5146
5146
|
amount: string;
|
|
5147
5147
|
tokenAddress: string;
|
|
5148
5148
|
stakerInfo: {
|
|
5149
|
-
name?: string | undefined;
|
|
5150
5149
|
address?: string | undefined;
|
|
5150
|
+
name?: string | undefined;
|
|
5151
5151
|
iconUrl?: string | undefined;
|
|
5152
5152
|
};
|
|
5153
5153
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -5741,19 +5741,19 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
5741
5741
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
5742
5742
|
address: z.ZodOptional<z.ZodString>;
|
|
5743
5743
|
}, "strip", z.ZodTypeAny, {
|
|
5744
|
-
name?: string | undefined;
|
|
5745
5744
|
address?: string | undefined;
|
|
5745
|
+
name?: string | undefined;
|
|
5746
5746
|
iconUrl?: string | undefined;
|
|
5747
5747
|
}, {
|
|
5748
|
-
name?: string | undefined;
|
|
5749
5748
|
address?: string | undefined;
|
|
5749
|
+
name?: string | undefined;
|
|
5750
5750
|
iconUrl?: string | undefined;
|
|
5751
5751
|
}>;
|
|
5752
5752
|
}, "strip", z.ZodTypeAny, {
|
|
5753
5753
|
type: "staking";
|
|
5754
5754
|
stakerInfo: {
|
|
5755
|
-
name?: string | undefined;
|
|
5756
5755
|
address?: string | undefined;
|
|
5756
|
+
name?: string | undefined;
|
|
5757
5757
|
iconUrl?: string | undefined;
|
|
5758
5758
|
};
|
|
5759
5759
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -5770,8 +5770,8 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
5770
5770
|
}, {
|
|
5771
5771
|
type: "staking";
|
|
5772
5772
|
stakerInfo: {
|
|
5773
|
-
name?: string | undefined;
|
|
5774
5773
|
address?: string | undefined;
|
|
5774
|
+
name?: string | undefined;
|
|
5775
5775
|
iconUrl?: string | undefined;
|
|
5776
5776
|
};
|
|
5777
5777
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -6253,19 +6253,19 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6253
6253
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
6254
6254
|
address: z.ZodOptional<z.ZodString>;
|
|
6255
6255
|
}, "strip", z.ZodTypeAny, {
|
|
6256
|
-
name?: string | undefined;
|
|
6257
6256
|
address?: string | undefined;
|
|
6257
|
+
name?: string | undefined;
|
|
6258
6258
|
iconUrl?: string | undefined;
|
|
6259
6259
|
}, {
|
|
6260
|
-
name?: string | undefined;
|
|
6261
6260
|
address?: string | undefined;
|
|
6261
|
+
name?: string | undefined;
|
|
6262
6262
|
iconUrl?: string | undefined;
|
|
6263
6263
|
}>;
|
|
6264
6264
|
}, "strip", z.ZodTypeAny, {
|
|
6265
6265
|
type: "staking";
|
|
6266
6266
|
stakerInfo: {
|
|
6267
|
-
name?: string | undefined;
|
|
6268
6267
|
address?: string | undefined;
|
|
6268
|
+
name?: string | undefined;
|
|
6269
6269
|
iconUrl?: string | undefined;
|
|
6270
6270
|
};
|
|
6271
6271
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -6282,8 +6282,8 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6282
6282
|
}, {
|
|
6283
6283
|
type: "staking";
|
|
6284
6284
|
stakerInfo: {
|
|
6285
|
-
name?: string | undefined;
|
|
6286
6285
|
address?: string | undefined;
|
|
6286
|
+
name?: string | undefined;
|
|
6287
6287
|
iconUrl?: string | undefined;
|
|
6288
6288
|
};
|
|
6289
6289
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -6441,8 +6441,8 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6441
6441
|
} | {
|
|
6442
6442
|
type: "staking";
|
|
6443
6443
|
stakerInfo: {
|
|
6444
|
-
name?: string | undefined;
|
|
6445
6444
|
address?: string | undefined;
|
|
6445
|
+
name?: string | undefined;
|
|
6446
6446
|
iconUrl?: string | undefined;
|
|
6447
6447
|
};
|
|
6448
6448
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -6550,8 +6550,8 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6550
6550
|
} | {
|
|
6551
6551
|
type: "staking";
|
|
6552
6552
|
stakerInfo: {
|
|
6553
|
-
name?: string | undefined;
|
|
6554
6553
|
address?: string | undefined;
|
|
6554
|
+
name?: string | undefined;
|
|
6555
6555
|
iconUrl?: string | undefined;
|
|
6556
6556
|
};
|
|
6557
6557
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -6662,8 +6662,8 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6662
6662
|
} | {
|
|
6663
6663
|
type: "staking";
|
|
6664
6664
|
stakerInfo: {
|
|
6665
|
-
name?: string | undefined;
|
|
6666
6665
|
address?: string | undefined;
|
|
6666
|
+
name?: string | undefined;
|
|
6667
6667
|
iconUrl?: string | undefined;
|
|
6668
6668
|
};
|
|
6669
6669
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -6774,8 +6774,8 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6774
6774
|
} | {
|
|
6775
6775
|
type: "staking";
|
|
6776
6776
|
stakerInfo: {
|
|
6777
|
-
name?: string | undefined;
|
|
6778
6777
|
address?: string | undefined;
|
|
6778
|
+
name?: string | undefined;
|
|
6779
6779
|
iconUrl?: string | undefined;
|
|
6780
6780
|
};
|
|
6781
6781
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -6931,17 +6931,17 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6931
6931
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
6932
6932
|
type: z.ZodString;
|
|
6933
6933
|
}, "strip", z.ZodTypeAny, {
|
|
6934
|
-
name: string;
|
|
6935
6934
|
address: string;
|
|
6936
6935
|
type: string;
|
|
6936
|
+
name: string;
|
|
6937
6937
|
unknown: boolean;
|
|
6938
6938
|
symbol?: string | undefined;
|
|
6939
6939
|
decimals?: number | undefined;
|
|
6940
6940
|
iconUrl?: string | undefined;
|
|
6941
6941
|
}, {
|
|
6942
|
-
name: string;
|
|
6943
6942
|
address: string;
|
|
6944
6943
|
type: string;
|
|
6944
|
+
name: string;
|
|
6945
6945
|
unknown: boolean;
|
|
6946
6946
|
symbol?: string | undefined;
|
|
6947
6947
|
decimals?: number | undefined;
|
|
@@ -6954,9 +6954,9 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6954
6954
|
type: "amount";
|
|
6955
6955
|
amount: string;
|
|
6956
6956
|
token: {
|
|
6957
|
-
name: string;
|
|
6958
6957
|
address: string;
|
|
6959
6958
|
type: string;
|
|
6959
|
+
name: string;
|
|
6960
6960
|
unknown: boolean;
|
|
6961
6961
|
symbol?: string | undefined;
|
|
6962
6962
|
decimals?: number | undefined;
|
|
@@ -6969,9 +6969,9 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6969
6969
|
type: "amount";
|
|
6970
6970
|
amount: string;
|
|
6971
6971
|
token: {
|
|
6972
|
-
name: string;
|
|
6973
6972
|
address: string;
|
|
6974
6973
|
type: string;
|
|
6974
|
+
name: string;
|
|
6975
6975
|
unknown: boolean;
|
|
6976
6976
|
symbol?: string | undefined;
|
|
6977
6977
|
decimals?: number | undefined;
|
|
@@ -7003,12 +7003,12 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7003
7003
|
label: z.ZodString;
|
|
7004
7004
|
value: z.ZodString;
|
|
7005
7005
|
}, "strip", z.ZodTypeAny, {
|
|
7006
|
-
value: string;
|
|
7007
7006
|
type: "timestamp";
|
|
7007
|
+
value: string;
|
|
7008
7008
|
label: string;
|
|
7009
7009
|
}, {
|
|
7010
|
-
value: string;
|
|
7011
7010
|
type: "timestamp";
|
|
7011
|
+
value: string;
|
|
7012
7012
|
label: string;
|
|
7013
7013
|
}>, z.ZodObject<{
|
|
7014
7014
|
type: z.ZodLiteral<"token_address">;
|
|
@@ -7022,17 +7022,17 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7022
7022
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
7023
7023
|
type: z.ZodString;
|
|
7024
7024
|
}, "strip", z.ZodTypeAny, {
|
|
7025
|
-
name: string;
|
|
7026
7025
|
address: string;
|
|
7027
7026
|
type: string;
|
|
7027
|
+
name: string;
|
|
7028
7028
|
unknown: boolean;
|
|
7029
7029
|
symbol?: string | undefined;
|
|
7030
7030
|
decimals?: number | undefined;
|
|
7031
7031
|
iconUrl?: string | undefined;
|
|
7032
7032
|
}, {
|
|
7033
|
-
name: string;
|
|
7034
7033
|
address: string;
|
|
7035
7034
|
type: string;
|
|
7035
|
+
name: string;
|
|
7036
7036
|
unknown: boolean;
|
|
7037
7037
|
symbol?: string | undefined;
|
|
7038
7038
|
decimals?: number | undefined;
|
|
@@ -7041,9 +7041,9 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7041
7041
|
}, "strip", z.ZodTypeAny, {
|
|
7042
7042
|
type: "token_address";
|
|
7043
7043
|
token: {
|
|
7044
|
-
name: string;
|
|
7045
7044
|
address: string;
|
|
7046
7045
|
type: string;
|
|
7046
|
+
name: string;
|
|
7047
7047
|
unknown: boolean;
|
|
7048
7048
|
symbol?: string | undefined;
|
|
7049
7049
|
decimals?: number | undefined;
|
|
@@ -7053,9 +7053,9 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7053
7053
|
}, {
|
|
7054
7054
|
type: "token_address";
|
|
7055
7055
|
token: {
|
|
7056
|
-
name: string;
|
|
7057
7056
|
address: string;
|
|
7058
7057
|
type: string;
|
|
7058
|
+
name: string;
|
|
7059
7059
|
unknown: boolean;
|
|
7060
7060
|
symbol?: string | undefined;
|
|
7061
7061
|
decimals?: number | undefined;
|
|
@@ -7113,17 +7113,17 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7113
7113
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
7114
7114
|
type: z.ZodString;
|
|
7115
7115
|
}, "strip", z.ZodTypeAny, {
|
|
7116
|
-
name: string;
|
|
7117
7116
|
address: string;
|
|
7118
7117
|
type: string;
|
|
7118
|
+
name: string;
|
|
7119
7119
|
unknown: boolean;
|
|
7120
7120
|
symbol?: string | undefined;
|
|
7121
7121
|
decimals?: number | undefined;
|
|
7122
7122
|
iconUrl?: string | undefined;
|
|
7123
7123
|
}, {
|
|
7124
|
-
name: string;
|
|
7125
7124
|
address: string;
|
|
7126
7125
|
type: string;
|
|
7126
|
+
name: string;
|
|
7127
7127
|
unknown: boolean;
|
|
7128
7128
|
symbol?: string | undefined;
|
|
7129
7129
|
decimals?: number | undefined;
|
|
@@ -7132,9 +7132,9 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7132
7132
|
}, "strip", z.ZodTypeAny, {
|
|
7133
7133
|
type: "nft";
|
|
7134
7134
|
token: {
|
|
7135
|
-
name: string;
|
|
7136
7135
|
address: string;
|
|
7137
7136
|
type: string;
|
|
7137
|
+
name: string;
|
|
7138
7138
|
unknown: boolean;
|
|
7139
7139
|
symbol?: string | undefined;
|
|
7140
7140
|
decimals?: number | undefined;
|
|
@@ -7144,9 +7144,9 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7144
7144
|
}, {
|
|
7145
7145
|
type: "nft";
|
|
7146
7146
|
token: {
|
|
7147
|
-
name: string;
|
|
7148
7147
|
address: string;
|
|
7149
7148
|
type: string;
|
|
7149
|
+
name: string;
|
|
7150
7150
|
unknown: boolean;
|
|
7151
7151
|
symbol?: string | undefined;
|
|
7152
7152
|
decimals?: number | undefined;
|
|
@@ -7166,17 +7166,17 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7166
7166
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
7167
7167
|
type: z.ZodString;
|
|
7168
7168
|
}, "strip", z.ZodTypeAny, {
|
|
7169
|
-
name: string;
|
|
7170
7169
|
address: string;
|
|
7171
7170
|
type: string;
|
|
7171
|
+
name: string;
|
|
7172
7172
|
unknown: boolean;
|
|
7173
7173
|
symbol?: string | undefined;
|
|
7174
7174
|
decimals?: number | undefined;
|
|
7175
7175
|
iconUrl?: string | undefined;
|
|
7176
7176
|
}, {
|
|
7177
|
-
name: string;
|
|
7178
7177
|
address: string;
|
|
7179
7178
|
type: string;
|
|
7179
|
+
name: string;
|
|
7180
7180
|
unknown: boolean;
|
|
7181
7181
|
symbol?: string | undefined;
|
|
7182
7182
|
decimals?: number | undefined;
|
|
@@ -7189,9 +7189,9 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7189
7189
|
type: "amount";
|
|
7190
7190
|
amount: string;
|
|
7191
7191
|
token: {
|
|
7192
|
-
name: string;
|
|
7193
7192
|
address: string;
|
|
7194
7193
|
type: string;
|
|
7194
|
+
name: string;
|
|
7195
7195
|
unknown: boolean;
|
|
7196
7196
|
symbol?: string | undefined;
|
|
7197
7197
|
decimals?: number | undefined;
|
|
@@ -7204,9 +7204,9 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7204
7204
|
type: "amount";
|
|
7205
7205
|
amount: string;
|
|
7206
7206
|
token: {
|
|
7207
|
-
name: string;
|
|
7208
7207
|
address: string;
|
|
7209
7208
|
type: string;
|
|
7209
|
+
name: string;
|
|
7210
7210
|
unknown: boolean;
|
|
7211
7211
|
symbol?: string | undefined;
|
|
7212
7212
|
decimals?: number | undefined;
|
|
@@ -7238,12 +7238,12 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7238
7238
|
label: z.ZodString;
|
|
7239
7239
|
value: z.ZodString;
|
|
7240
7240
|
}, "strip", z.ZodTypeAny, {
|
|
7241
|
-
value: string;
|
|
7242
7241
|
type: "timestamp";
|
|
7242
|
+
value: string;
|
|
7243
7243
|
label: string;
|
|
7244
7244
|
}, {
|
|
7245
|
-
value: string;
|
|
7246
7245
|
type: "timestamp";
|
|
7246
|
+
value: string;
|
|
7247
7247
|
label: string;
|
|
7248
7248
|
}>, z.ZodObject<{
|
|
7249
7249
|
type: z.ZodLiteral<"token_address">;
|
|
@@ -7257,17 +7257,17 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7257
7257
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
7258
7258
|
type: z.ZodString;
|
|
7259
7259
|
}, "strip", z.ZodTypeAny, {
|
|
7260
|
-
name: string;
|
|
7261
7260
|
address: string;
|
|
7262
7261
|
type: string;
|
|
7262
|
+
name: string;
|
|
7263
7263
|
unknown: boolean;
|
|
7264
7264
|
symbol?: string | undefined;
|
|
7265
7265
|
decimals?: number | undefined;
|
|
7266
7266
|
iconUrl?: string | undefined;
|
|
7267
7267
|
}, {
|
|
7268
|
-
name: string;
|
|
7269
7268
|
address: string;
|
|
7270
7269
|
type: string;
|
|
7270
|
+
name: string;
|
|
7271
7271
|
unknown: boolean;
|
|
7272
7272
|
symbol?: string | undefined;
|
|
7273
7273
|
decimals?: number | undefined;
|
|
@@ -7276,9 +7276,9 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7276
7276
|
}, "strip", z.ZodTypeAny, {
|
|
7277
7277
|
type: "token_address";
|
|
7278
7278
|
token: {
|
|
7279
|
-
name: string;
|
|
7280
7279
|
address: string;
|
|
7281
7280
|
type: string;
|
|
7281
|
+
name: string;
|
|
7282
7282
|
unknown: boolean;
|
|
7283
7283
|
symbol?: string | undefined;
|
|
7284
7284
|
decimals?: number | undefined;
|
|
@@ -7288,9 +7288,9 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7288
7288
|
}, {
|
|
7289
7289
|
type: "token_address";
|
|
7290
7290
|
token: {
|
|
7291
|
-
name: string;
|
|
7292
7291
|
address: string;
|
|
7293
7292
|
type: string;
|
|
7293
|
+
name: string;
|
|
7294
7294
|
unknown: boolean;
|
|
7295
7295
|
symbol?: string | undefined;
|
|
7296
7296
|
decimals?: number | undefined;
|
|
@@ -7348,17 +7348,17 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7348
7348
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
7349
7349
|
type: z.ZodString;
|
|
7350
7350
|
}, "strip", z.ZodTypeAny, {
|
|
7351
|
-
name: string;
|
|
7352
7351
|
address: string;
|
|
7353
7352
|
type: string;
|
|
7353
|
+
name: string;
|
|
7354
7354
|
unknown: boolean;
|
|
7355
7355
|
symbol?: string | undefined;
|
|
7356
7356
|
decimals?: number | undefined;
|
|
7357
7357
|
iconUrl?: string | undefined;
|
|
7358
7358
|
}, {
|
|
7359
|
-
name: string;
|
|
7360
7359
|
address: string;
|
|
7361
7360
|
type: string;
|
|
7361
|
+
name: string;
|
|
7362
7362
|
unknown: boolean;
|
|
7363
7363
|
symbol?: string | undefined;
|
|
7364
7364
|
decimals?: number | undefined;
|
|
@@ -7367,9 +7367,9 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7367
7367
|
}, "strip", z.ZodTypeAny, {
|
|
7368
7368
|
type: "nft";
|
|
7369
7369
|
token: {
|
|
7370
|
-
name: string;
|
|
7371
7370
|
address: string;
|
|
7372
7371
|
type: string;
|
|
7372
|
+
name: string;
|
|
7373
7373
|
unknown: boolean;
|
|
7374
7374
|
symbol?: string | undefined;
|
|
7375
7375
|
decimals?: number | undefined;
|
|
@@ -7379,9 +7379,9 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7379
7379
|
}, {
|
|
7380
7380
|
type: "nft";
|
|
7381
7381
|
token: {
|
|
7382
|
-
name: string;
|
|
7383
7382
|
address: string;
|
|
7384
7383
|
type: string;
|
|
7384
|
+
name: string;
|
|
7385
7385
|
unknown: boolean;
|
|
7386
7386
|
symbol?: string | undefined;
|
|
7387
7387
|
decimals?: number | undefined;
|
|
@@ -7395,9 +7395,9 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7395
7395
|
type: "amount";
|
|
7396
7396
|
amount: string;
|
|
7397
7397
|
token: {
|
|
7398
|
-
name: string;
|
|
7399
7398
|
address: string;
|
|
7400
7399
|
type: string;
|
|
7400
|
+
name: string;
|
|
7401
7401
|
unknown: boolean;
|
|
7402
7402
|
symbol?: string | undefined;
|
|
7403
7403
|
decimals?: number | undefined;
|
|
@@ -7413,15 +7413,15 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7413
7413
|
verified?: boolean | undefined;
|
|
7414
7414
|
addressName?: string | undefined;
|
|
7415
7415
|
} | {
|
|
7416
|
-
value: string;
|
|
7417
7416
|
type: "timestamp";
|
|
7417
|
+
value: string;
|
|
7418
7418
|
label: string;
|
|
7419
7419
|
} | {
|
|
7420
7420
|
type: "token_address";
|
|
7421
7421
|
token: {
|
|
7422
|
-
name: string;
|
|
7423
7422
|
address: string;
|
|
7424
7423
|
type: string;
|
|
7424
|
+
name: string;
|
|
7425
7425
|
unknown: boolean;
|
|
7426
7426
|
symbol?: string | undefined;
|
|
7427
7427
|
decimals?: number | undefined;
|
|
@@ -7444,9 +7444,9 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7444
7444
|
} | {
|
|
7445
7445
|
type: "nft";
|
|
7446
7446
|
token: {
|
|
7447
|
-
name: string;
|
|
7448
7447
|
address: string;
|
|
7449
7448
|
type: string;
|
|
7449
|
+
name: string;
|
|
7450
7450
|
unknown: boolean;
|
|
7451
7451
|
symbol?: string | undefined;
|
|
7452
7452
|
decimals?: number | undefined;
|
|
@@ -7458,9 +7458,9 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7458
7458
|
type: "amount";
|
|
7459
7459
|
amount: string;
|
|
7460
7460
|
token: {
|
|
7461
|
-
name: string;
|
|
7462
7461
|
address: string;
|
|
7463
7462
|
type: string;
|
|
7463
|
+
name: string;
|
|
7464
7464
|
unknown: boolean;
|
|
7465
7465
|
symbol?: string | undefined;
|
|
7466
7466
|
decimals?: number | undefined;
|
|
@@ -7476,15 +7476,15 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7476
7476
|
verified?: boolean | undefined;
|
|
7477
7477
|
addressName?: string | undefined;
|
|
7478
7478
|
} | {
|
|
7479
|
-
value: string;
|
|
7480
7479
|
type: "timestamp";
|
|
7480
|
+
value: string;
|
|
7481
7481
|
label: string;
|
|
7482
7482
|
} | {
|
|
7483
7483
|
type: "token_address";
|
|
7484
7484
|
token: {
|
|
7485
|
-
name: string;
|
|
7486
7485
|
address: string;
|
|
7487
7486
|
type: string;
|
|
7487
|
+
name: string;
|
|
7488
7488
|
unknown: boolean;
|
|
7489
7489
|
symbol?: string | undefined;
|
|
7490
7490
|
decimals?: number | undefined;
|
|
@@ -7507,9 +7507,9 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7507
7507
|
} | {
|
|
7508
7508
|
type: "nft";
|
|
7509
7509
|
token: {
|
|
7510
|
-
name: string;
|
|
7511
7510
|
address: string;
|
|
7512
7511
|
type: string;
|
|
7512
|
+
name: string;
|
|
7513
7513
|
unknown: boolean;
|
|
7514
7514
|
symbol?: string | undefined;
|
|
7515
7515
|
decimals?: number | undefined;
|
|
@@ -7523,9 +7523,9 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7523
7523
|
type: "amount";
|
|
7524
7524
|
amount: string;
|
|
7525
7525
|
token: {
|
|
7526
|
-
name: string;
|
|
7527
7526
|
address: string;
|
|
7528
7527
|
type: string;
|
|
7528
|
+
name: string;
|
|
7529
7529
|
unknown: boolean;
|
|
7530
7530
|
symbol?: string | undefined;
|
|
7531
7531
|
decimals?: number | undefined;
|
|
@@ -7541,15 +7541,15 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7541
7541
|
verified?: boolean | undefined;
|
|
7542
7542
|
addressName?: string | undefined;
|
|
7543
7543
|
} | {
|
|
7544
|
-
value: string;
|
|
7545
7544
|
type: "timestamp";
|
|
7545
|
+
value: string;
|
|
7546
7546
|
label: string;
|
|
7547
7547
|
} | {
|
|
7548
7548
|
type: "token_address";
|
|
7549
7549
|
token: {
|
|
7550
|
-
name: string;
|
|
7551
7550
|
address: string;
|
|
7552
7551
|
type: string;
|
|
7552
|
+
name: string;
|
|
7553
7553
|
unknown: boolean;
|
|
7554
7554
|
symbol?: string | undefined;
|
|
7555
7555
|
decimals?: number | undefined;
|
|
@@ -7572,9 +7572,9 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7572
7572
|
} | {
|
|
7573
7573
|
type: "nft";
|
|
7574
7574
|
token: {
|
|
7575
|
-
name: string;
|
|
7576
7575
|
address: string;
|
|
7577
7576
|
type: string;
|
|
7577
|
+
name: string;
|
|
7578
7578
|
unknown: boolean;
|
|
7579
7579
|
symbol?: string | undefined;
|
|
7580
7580
|
decimals?: number | undefined;
|
|
@@ -7586,9 +7586,9 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7586
7586
|
type: "amount";
|
|
7587
7587
|
amount: string;
|
|
7588
7588
|
token: {
|
|
7589
|
-
name: string;
|
|
7590
7589
|
address: string;
|
|
7591
7590
|
type: string;
|
|
7591
|
+
name: string;
|
|
7592
7592
|
unknown: boolean;
|
|
7593
7593
|
symbol?: string | undefined;
|
|
7594
7594
|
decimals?: number | undefined;
|
|
@@ -7604,15 +7604,15 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7604
7604
|
verified?: boolean | undefined;
|
|
7605
7605
|
addressName?: string | undefined;
|
|
7606
7606
|
} | {
|
|
7607
|
-
value: string;
|
|
7608
7607
|
type: "timestamp";
|
|
7608
|
+
value: string;
|
|
7609
7609
|
label: string;
|
|
7610
7610
|
} | {
|
|
7611
7611
|
type: "token_address";
|
|
7612
7612
|
token: {
|
|
7613
|
-
name: string;
|
|
7614
7613
|
address: string;
|
|
7615
7614
|
type: string;
|
|
7615
|
+
name: string;
|
|
7616
7616
|
unknown: boolean;
|
|
7617
7617
|
symbol?: string | undefined;
|
|
7618
7618
|
decimals?: number | undefined;
|
|
@@ -7635,9 +7635,9 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7635
7635
|
} | {
|
|
7636
7636
|
type: "nft";
|
|
7637
7637
|
token: {
|
|
7638
|
-
name: string;
|
|
7639
7638
|
address: string;
|
|
7640
7639
|
type: string;
|
|
7640
|
+
name: string;
|
|
7641
7641
|
unknown: boolean;
|
|
7642
7642
|
symbol?: string | undefined;
|
|
7643
7643
|
decimals?: number | undefined;
|
|
@@ -7671,8 +7671,8 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7671
7671
|
dapp: z.ZodOptional<z.ZodObject<{
|
|
7672
7672
|
name: z.ZodString;
|
|
7673
7673
|
description: z.ZodString;
|
|
7674
|
-
logoUrl: z.ZodString
|
|
7675
|
-
iconUrl: z.ZodString
|
|
7674
|
+
logoUrl: z.ZodOptional<z.ZodString>;
|
|
7675
|
+
iconUrl: z.ZodOptional<z.ZodString>;
|
|
7676
7676
|
argentVerified: z.ZodBoolean;
|
|
7677
7677
|
links: z.ZodArray<z.ZodObject<{
|
|
7678
7678
|
name: z.ZodString;
|
|
@@ -7690,25 +7690,25 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7690
7690
|
}, "strip", z.ZodTypeAny, {
|
|
7691
7691
|
name: string;
|
|
7692
7692
|
description: string;
|
|
7693
|
-
logoUrl: string;
|
|
7694
7693
|
argentVerified: boolean;
|
|
7695
7694
|
links: {
|
|
7696
7695
|
name: string;
|
|
7697
7696
|
url: string;
|
|
7698
7697
|
position: number;
|
|
7699
7698
|
}[];
|
|
7700
|
-
|
|
7699
|
+
logoUrl?: string | undefined;
|
|
7700
|
+
iconUrl?: string | undefined;
|
|
7701
7701
|
}, {
|
|
7702
7702
|
name: string;
|
|
7703
7703
|
description: string;
|
|
7704
|
-
logoUrl: string;
|
|
7705
7704
|
argentVerified: boolean;
|
|
7706
7705
|
links: {
|
|
7707
7706
|
name: string;
|
|
7708
7707
|
url: string;
|
|
7709
7708
|
position: number;
|
|
7710
7709
|
}[];
|
|
7711
|
-
|
|
7710
|
+
logoUrl?: string | undefined;
|
|
7711
|
+
iconUrl?: string | undefined;
|
|
7712
7712
|
}>>;
|
|
7713
7713
|
meta: z.ZodOptional<z.ZodObject<{
|
|
7714
7714
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -7726,12 +7726,12 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7726
7726
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
7727
7727
|
address: z.ZodOptional<z.ZodString>;
|
|
7728
7728
|
}, "strip", z.ZodTypeAny, {
|
|
7729
|
-
name?: string | undefined;
|
|
7730
7729
|
address?: string | undefined;
|
|
7730
|
+
name?: string | undefined;
|
|
7731
7731
|
iconUrl?: string | undefined;
|
|
7732
7732
|
}, {
|
|
7733
|
-
name?: string | undefined;
|
|
7734
7733
|
address?: string | undefined;
|
|
7734
|
+
name?: string | undefined;
|
|
7735
7735
|
iconUrl?: string | undefined;
|
|
7736
7736
|
}>;
|
|
7737
7737
|
tokenAddress: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -7740,8 +7740,8 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7740
7740
|
amount: string;
|
|
7741
7741
|
tokenAddress: `0x${string}`;
|
|
7742
7742
|
stakerInfo: {
|
|
7743
|
-
name?: string | undefined;
|
|
7744
7743
|
address?: string | undefined;
|
|
7744
|
+
name?: string | undefined;
|
|
7745
7745
|
iconUrl?: string | undefined;
|
|
7746
7746
|
};
|
|
7747
7747
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -7752,8 +7752,8 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7752
7752
|
amount: string;
|
|
7753
7753
|
tokenAddress: string;
|
|
7754
7754
|
stakerInfo: {
|
|
7755
|
-
name?: string | undefined;
|
|
7756
7755
|
address?: string | undefined;
|
|
7756
|
+
name?: string | undefined;
|
|
7757
7757
|
iconUrl?: string | undefined;
|
|
7758
7758
|
};
|
|
7759
7759
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -7771,8 +7771,8 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7771
7771
|
amount: string;
|
|
7772
7772
|
tokenAddress: `0x${string}`;
|
|
7773
7773
|
stakerInfo: {
|
|
7774
|
-
name?: string | undefined;
|
|
7775
7774
|
address?: string | undefined;
|
|
7775
|
+
name?: string | undefined;
|
|
7776
7776
|
iconUrl?: string | undefined;
|
|
7777
7777
|
};
|
|
7778
7778
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -7790,8 +7790,8 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7790
7790
|
amount: string;
|
|
7791
7791
|
tokenAddress: string;
|
|
7792
7792
|
stakerInfo: {
|
|
7793
|
-
name?: string | undefined;
|
|
7794
7793
|
address?: string | undefined;
|
|
7794
|
+
name?: string | undefined;
|
|
7795
7795
|
iconUrl?: string | undefined;
|
|
7796
7796
|
};
|
|
7797
7797
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -7802,8 +7802,8 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7802
7802
|
isExecuteFromOutside?: boolean | undefined;
|
|
7803
7803
|
}>>;
|
|
7804
7804
|
}>, "strip", z.ZodTypeAny, {
|
|
7805
|
-
status: "rejected" | "pending" | "success" | "failure" | "cancelled" | "queued";
|
|
7806
7805
|
type: "native";
|
|
7806
|
+
status: "rejected" | "pending" | "success" | "failure" | "cancelled" | "queued";
|
|
7807
7807
|
submitted: number;
|
|
7808
7808
|
lastModified: number;
|
|
7809
7809
|
transaction: {
|
|
@@ -7846,14 +7846,14 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7846
7846
|
dapp?: {
|
|
7847
7847
|
name: string;
|
|
7848
7848
|
description: string;
|
|
7849
|
-
logoUrl: string;
|
|
7850
7849
|
argentVerified: boolean;
|
|
7851
7850
|
links: {
|
|
7852
7851
|
name: string;
|
|
7853
7852
|
url: string;
|
|
7854
7853
|
position: number;
|
|
7855
7854
|
}[];
|
|
7856
|
-
|
|
7855
|
+
logoUrl?: string | undefined;
|
|
7856
|
+
iconUrl?: string | undefined;
|
|
7857
7857
|
} | undefined;
|
|
7858
7858
|
actions?: {
|
|
7859
7859
|
name: string;
|
|
@@ -7861,9 +7861,9 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7861
7861
|
type: "amount";
|
|
7862
7862
|
amount: string;
|
|
7863
7863
|
token: {
|
|
7864
|
-
name: string;
|
|
7865
7864
|
address: string;
|
|
7866
7865
|
type: string;
|
|
7866
|
+
name: string;
|
|
7867
7867
|
unknown: boolean;
|
|
7868
7868
|
symbol?: string | undefined;
|
|
7869
7869
|
decimals?: number | undefined;
|
|
@@ -7879,15 +7879,15 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7879
7879
|
verified?: boolean | undefined;
|
|
7880
7880
|
addressName?: string | undefined;
|
|
7881
7881
|
} | {
|
|
7882
|
-
value: string;
|
|
7883
7882
|
type: "timestamp";
|
|
7883
|
+
value: string;
|
|
7884
7884
|
label: string;
|
|
7885
7885
|
} | {
|
|
7886
7886
|
type: "token_address";
|
|
7887
7887
|
token: {
|
|
7888
|
-
name: string;
|
|
7889
7888
|
address: string;
|
|
7890
7889
|
type: string;
|
|
7890
|
+
name: string;
|
|
7891
7891
|
unknown: boolean;
|
|
7892
7892
|
symbol?: string | undefined;
|
|
7893
7893
|
decimals?: number | undefined;
|
|
@@ -7910,9 +7910,9 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7910
7910
|
} | {
|
|
7911
7911
|
type: "nft";
|
|
7912
7912
|
token: {
|
|
7913
|
-
name: string;
|
|
7914
7913
|
address: string;
|
|
7915
7914
|
type: string;
|
|
7915
|
+
name: string;
|
|
7916
7916
|
unknown: boolean;
|
|
7917
7917
|
symbol?: string | undefined;
|
|
7918
7918
|
decimals?: number | undefined;
|
|
@@ -7924,9 +7924,9 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7924
7924
|
type: "amount";
|
|
7925
7925
|
amount: string;
|
|
7926
7926
|
token: {
|
|
7927
|
-
name: string;
|
|
7928
7927
|
address: string;
|
|
7929
7928
|
type: string;
|
|
7929
|
+
name: string;
|
|
7930
7930
|
unknown: boolean;
|
|
7931
7931
|
symbol?: string | undefined;
|
|
7932
7932
|
decimals?: number | undefined;
|
|
@@ -7942,15 +7942,15 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7942
7942
|
verified?: boolean | undefined;
|
|
7943
7943
|
addressName?: string | undefined;
|
|
7944
7944
|
} | {
|
|
7945
|
-
value: string;
|
|
7946
7945
|
type: "timestamp";
|
|
7946
|
+
value: string;
|
|
7947
7947
|
label: string;
|
|
7948
7948
|
} | {
|
|
7949
7949
|
type: "token_address";
|
|
7950
7950
|
token: {
|
|
7951
|
-
name: string;
|
|
7952
7951
|
address: string;
|
|
7953
7952
|
type: string;
|
|
7953
|
+
name: string;
|
|
7954
7954
|
unknown: boolean;
|
|
7955
7955
|
symbol?: string | undefined;
|
|
7956
7956
|
decimals?: number | undefined;
|
|
@@ -7973,9 +7973,9 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7973
7973
|
} | {
|
|
7974
7974
|
type: "nft";
|
|
7975
7975
|
token: {
|
|
7976
|
-
name: string;
|
|
7977
7976
|
address: string;
|
|
7978
7977
|
type: string;
|
|
7978
|
+
name: string;
|
|
7979
7979
|
unknown: boolean;
|
|
7980
7980
|
symbol?: string | undefined;
|
|
7981
7981
|
decimals?: number | undefined;
|
|
@@ -7996,8 +7996,8 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7996
7996
|
amount: string;
|
|
7997
7997
|
tokenAddress: `0x${string}`;
|
|
7998
7998
|
stakerInfo: {
|
|
7999
|
-
name?: string | undefined;
|
|
8000
7999
|
address?: string | undefined;
|
|
8000
|
+
name?: string | undefined;
|
|
8001
8001
|
iconUrl?: string | undefined;
|
|
8002
8002
|
};
|
|
8003
8003
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -8008,8 +8008,8 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
8008
8008
|
isExecuteFromOutside?: boolean | undefined;
|
|
8009
8009
|
} | undefined;
|
|
8010
8010
|
}, {
|
|
8011
|
-
status: "rejected" | "pending" | "success" | "failure" | "cancelled" | "queued";
|
|
8012
8011
|
type: "native";
|
|
8012
|
+
status: "rejected" | "pending" | "success" | "failure" | "cancelled" | "queued";
|
|
8013
8013
|
submitted: number;
|
|
8014
8014
|
lastModified: number;
|
|
8015
8015
|
transaction: {
|
|
@@ -8052,14 +8052,14 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
8052
8052
|
dapp?: {
|
|
8053
8053
|
name: string;
|
|
8054
8054
|
description: string;
|
|
8055
|
-
logoUrl: string;
|
|
8056
8055
|
argentVerified: boolean;
|
|
8057
8056
|
links: {
|
|
8058
8057
|
name: string;
|
|
8059
8058
|
url: string;
|
|
8060
8059
|
position: number;
|
|
8061
8060
|
}[];
|
|
8062
|
-
|
|
8061
|
+
logoUrl?: string | undefined;
|
|
8062
|
+
iconUrl?: string | undefined;
|
|
8063
8063
|
} | undefined;
|
|
8064
8064
|
actions?: {
|
|
8065
8065
|
name: string;
|
|
@@ -8067,9 +8067,9 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
8067
8067
|
type: "amount";
|
|
8068
8068
|
amount: string;
|
|
8069
8069
|
token: {
|
|
8070
|
-
name: string;
|
|
8071
8070
|
address: string;
|
|
8072
8071
|
type: string;
|
|
8072
|
+
name: string;
|
|
8073
8073
|
unknown: boolean;
|
|
8074
8074
|
symbol?: string | undefined;
|
|
8075
8075
|
decimals?: number | undefined;
|
|
@@ -8085,15 +8085,15 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
8085
8085
|
verified?: boolean | undefined;
|
|
8086
8086
|
addressName?: string | undefined;
|
|
8087
8087
|
} | {
|
|
8088
|
-
value: string;
|
|
8089
8088
|
type: "timestamp";
|
|
8089
|
+
value: string;
|
|
8090
8090
|
label: string;
|
|
8091
8091
|
} | {
|
|
8092
8092
|
type: "token_address";
|
|
8093
8093
|
token: {
|
|
8094
|
-
name: string;
|
|
8095
8094
|
address: string;
|
|
8096
8095
|
type: string;
|
|
8096
|
+
name: string;
|
|
8097
8097
|
unknown: boolean;
|
|
8098
8098
|
symbol?: string | undefined;
|
|
8099
8099
|
decimals?: number | undefined;
|
|
@@ -8116,9 +8116,9 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
8116
8116
|
} | {
|
|
8117
8117
|
type: "nft";
|
|
8118
8118
|
token: {
|
|
8119
|
-
name: string;
|
|
8120
8119
|
address: string;
|
|
8121
8120
|
type: string;
|
|
8121
|
+
name: string;
|
|
8122
8122
|
unknown: boolean;
|
|
8123
8123
|
symbol?: string | undefined;
|
|
8124
8124
|
decimals?: number | undefined;
|
|
@@ -8130,9 +8130,9 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
8130
8130
|
type: "amount";
|
|
8131
8131
|
amount: string;
|
|
8132
8132
|
token: {
|
|
8133
|
-
name: string;
|
|
8134
8133
|
address: string;
|
|
8135
8134
|
type: string;
|
|
8135
|
+
name: string;
|
|
8136
8136
|
unknown: boolean;
|
|
8137
8137
|
symbol?: string | undefined;
|
|
8138
8138
|
decimals?: number | undefined;
|
|
@@ -8148,15 +8148,15 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
8148
8148
|
verified?: boolean | undefined;
|
|
8149
8149
|
addressName?: string | undefined;
|
|
8150
8150
|
} | {
|
|
8151
|
-
value: string;
|
|
8152
8151
|
type: "timestamp";
|
|
8152
|
+
value: string;
|
|
8153
8153
|
label: string;
|
|
8154
8154
|
} | {
|
|
8155
8155
|
type: "token_address";
|
|
8156
8156
|
token: {
|
|
8157
|
-
name: string;
|
|
8158
8157
|
address: string;
|
|
8159
8158
|
type: string;
|
|
8159
|
+
name: string;
|
|
8160
8160
|
unknown: boolean;
|
|
8161
8161
|
symbol?: string | undefined;
|
|
8162
8162
|
decimals?: number | undefined;
|
|
@@ -8179,9 +8179,9 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
8179
8179
|
} | {
|
|
8180
8180
|
type: "nft";
|
|
8181
8181
|
token: {
|
|
8182
|
-
name: string;
|
|
8183
8182
|
address: string;
|
|
8184
8183
|
type: string;
|
|
8184
|
+
name: string;
|
|
8185
8185
|
unknown: boolean;
|
|
8186
8186
|
symbol?: string | undefined;
|
|
8187
8187
|
decimals?: number | undefined;
|
|
@@ -8202,8 +8202,8 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
8202
8202
|
amount: string;
|
|
8203
8203
|
tokenAddress: string;
|
|
8204
8204
|
stakerInfo: {
|
|
8205
|
-
name?: string | undefined;
|
|
8206
8205
|
address?: string | undefined;
|
|
8206
|
+
name?: string | undefined;
|
|
8207
8207
|
iconUrl?: string | undefined;
|
|
8208
8208
|
};
|
|
8209
8209
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -8795,19 +8795,19 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
8795
8795
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
8796
8796
|
address: z.ZodOptional<z.ZodString>;
|
|
8797
8797
|
}, "strip", z.ZodTypeAny, {
|
|
8798
|
-
name?: string | undefined;
|
|
8799
8798
|
address?: string | undefined;
|
|
8799
|
+
name?: string | undefined;
|
|
8800
8800
|
iconUrl?: string | undefined;
|
|
8801
8801
|
}, {
|
|
8802
|
-
name?: string | undefined;
|
|
8803
8802
|
address?: string | undefined;
|
|
8803
|
+
name?: string | undefined;
|
|
8804
8804
|
iconUrl?: string | undefined;
|
|
8805
8805
|
}>;
|
|
8806
8806
|
}, "strip", z.ZodTypeAny, {
|
|
8807
8807
|
type: "staking";
|
|
8808
8808
|
stakerInfo: {
|
|
8809
|
-
name?: string | undefined;
|
|
8810
8809
|
address?: string | undefined;
|
|
8810
|
+
name?: string | undefined;
|
|
8811
8811
|
iconUrl?: string | undefined;
|
|
8812
8812
|
};
|
|
8813
8813
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -8824,8 +8824,8 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
8824
8824
|
}, {
|
|
8825
8825
|
type: "staking";
|
|
8826
8826
|
stakerInfo: {
|
|
8827
|
-
name?: string | undefined;
|
|
8828
8827
|
address?: string | undefined;
|
|
8828
|
+
name?: string | undefined;
|
|
8829
8829
|
iconUrl?: string | undefined;
|
|
8830
8830
|
};
|
|
8831
8831
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -9307,19 +9307,19 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
9307
9307
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
9308
9308
|
address: z.ZodOptional<z.ZodString>;
|
|
9309
9309
|
}, "strip", z.ZodTypeAny, {
|
|
9310
|
-
name?: string | undefined;
|
|
9311
9310
|
address?: string | undefined;
|
|
9311
|
+
name?: string | undefined;
|
|
9312
9312
|
iconUrl?: string | undefined;
|
|
9313
9313
|
}, {
|
|
9314
|
-
name?: string | undefined;
|
|
9315
9314
|
address?: string | undefined;
|
|
9315
|
+
name?: string | undefined;
|
|
9316
9316
|
iconUrl?: string | undefined;
|
|
9317
9317
|
}>;
|
|
9318
9318
|
}, "strip", z.ZodTypeAny, {
|
|
9319
9319
|
type: "staking";
|
|
9320
9320
|
stakerInfo: {
|
|
9321
|
-
name?: string | undefined;
|
|
9322
9321
|
address?: string | undefined;
|
|
9322
|
+
name?: string | undefined;
|
|
9323
9323
|
iconUrl?: string | undefined;
|
|
9324
9324
|
};
|
|
9325
9325
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -9336,8 +9336,8 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
9336
9336
|
}, {
|
|
9337
9337
|
type: "staking";
|
|
9338
9338
|
stakerInfo: {
|
|
9339
|
-
name?: string | undefined;
|
|
9340
9339
|
address?: string | undefined;
|
|
9340
|
+
name?: string | undefined;
|
|
9341
9341
|
iconUrl?: string | undefined;
|
|
9342
9342
|
};
|
|
9343
9343
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -9495,8 +9495,8 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
9495
9495
|
} | {
|
|
9496
9496
|
type: "staking";
|
|
9497
9497
|
stakerInfo: {
|
|
9498
|
-
name?: string | undefined;
|
|
9499
9498
|
address?: string | undefined;
|
|
9499
|
+
name?: string | undefined;
|
|
9500
9500
|
iconUrl?: string | undefined;
|
|
9501
9501
|
};
|
|
9502
9502
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -9604,8 +9604,8 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
9604
9604
|
} | {
|
|
9605
9605
|
type: "staking";
|
|
9606
9606
|
stakerInfo: {
|
|
9607
|
-
name?: string | undefined;
|
|
9608
9607
|
address?: string | undefined;
|
|
9608
|
+
name?: string | undefined;
|
|
9609
9609
|
iconUrl?: string | undefined;
|
|
9610
9610
|
};
|
|
9611
9611
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -9716,8 +9716,8 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
9716
9716
|
} | {
|
|
9717
9717
|
type: "staking";
|
|
9718
9718
|
stakerInfo: {
|
|
9719
|
-
name?: string | undefined;
|
|
9720
9719
|
address?: string | undefined;
|
|
9720
|
+
name?: string | undefined;
|
|
9721
9721
|
iconUrl?: string | undefined;
|
|
9722
9722
|
};
|
|
9723
9723
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -9828,8 +9828,8 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
9828
9828
|
} | {
|
|
9829
9829
|
type: "staking";
|
|
9830
9830
|
stakerInfo: {
|
|
9831
|
-
name?: string | undefined;
|
|
9832
9831
|
address?: string | undefined;
|
|
9832
|
+
name?: string | undefined;
|
|
9833
9833
|
iconUrl?: string | undefined;
|
|
9834
9834
|
};
|
|
9835
9835
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -9985,17 +9985,17 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
9985
9985
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
9986
9986
|
type: z.ZodString;
|
|
9987
9987
|
}, "strip", z.ZodTypeAny, {
|
|
9988
|
-
name: string;
|
|
9989
9988
|
address: string;
|
|
9990
9989
|
type: string;
|
|
9990
|
+
name: string;
|
|
9991
9991
|
unknown: boolean;
|
|
9992
9992
|
symbol?: string | undefined;
|
|
9993
9993
|
decimals?: number | undefined;
|
|
9994
9994
|
iconUrl?: string | undefined;
|
|
9995
9995
|
}, {
|
|
9996
|
-
name: string;
|
|
9997
9996
|
address: string;
|
|
9998
9997
|
type: string;
|
|
9998
|
+
name: string;
|
|
9999
9999
|
unknown: boolean;
|
|
10000
10000
|
symbol?: string | undefined;
|
|
10001
10001
|
decimals?: number | undefined;
|
|
@@ -10008,9 +10008,9 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
10008
10008
|
type: "amount";
|
|
10009
10009
|
amount: string;
|
|
10010
10010
|
token: {
|
|
10011
|
-
name: string;
|
|
10012
10011
|
address: string;
|
|
10013
10012
|
type: string;
|
|
10013
|
+
name: string;
|
|
10014
10014
|
unknown: boolean;
|
|
10015
10015
|
symbol?: string | undefined;
|
|
10016
10016
|
decimals?: number | undefined;
|
|
@@ -10023,9 +10023,9 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
10023
10023
|
type: "amount";
|
|
10024
10024
|
amount: string;
|
|
10025
10025
|
token: {
|
|
10026
|
-
name: string;
|
|
10027
10026
|
address: string;
|
|
10028
10027
|
type: string;
|
|
10028
|
+
name: string;
|
|
10029
10029
|
unknown: boolean;
|
|
10030
10030
|
symbol?: string | undefined;
|
|
10031
10031
|
decimals?: number | undefined;
|
|
@@ -10057,12 +10057,12 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
10057
10057
|
label: z.ZodString;
|
|
10058
10058
|
value: z.ZodString;
|
|
10059
10059
|
}, "strip", z.ZodTypeAny, {
|
|
10060
|
-
value: string;
|
|
10061
10060
|
type: "timestamp";
|
|
10061
|
+
value: string;
|
|
10062
10062
|
label: string;
|
|
10063
10063
|
}, {
|
|
10064
|
-
value: string;
|
|
10065
10064
|
type: "timestamp";
|
|
10065
|
+
value: string;
|
|
10066
10066
|
label: string;
|
|
10067
10067
|
}>, z.ZodObject<{
|
|
10068
10068
|
type: z.ZodLiteral<"token_address">;
|
|
@@ -10076,17 +10076,17 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
10076
10076
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
10077
10077
|
type: z.ZodString;
|
|
10078
10078
|
}, "strip", z.ZodTypeAny, {
|
|
10079
|
-
name: string;
|
|
10080
10079
|
address: string;
|
|
10081
10080
|
type: string;
|
|
10081
|
+
name: string;
|
|
10082
10082
|
unknown: boolean;
|
|
10083
10083
|
symbol?: string | undefined;
|
|
10084
10084
|
decimals?: number | undefined;
|
|
10085
10085
|
iconUrl?: string | undefined;
|
|
10086
10086
|
}, {
|
|
10087
|
-
name: string;
|
|
10088
10087
|
address: string;
|
|
10089
10088
|
type: string;
|
|
10089
|
+
name: string;
|
|
10090
10090
|
unknown: boolean;
|
|
10091
10091
|
symbol?: string | undefined;
|
|
10092
10092
|
decimals?: number | undefined;
|
|
@@ -10095,9 +10095,9 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
10095
10095
|
}, "strip", z.ZodTypeAny, {
|
|
10096
10096
|
type: "token_address";
|
|
10097
10097
|
token: {
|
|
10098
|
-
name: string;
|
|
10099
10098
|
address: string;
|
|
10100
10099
|
type: string;
|
|
10100
|
+
name: string;
|
|
10101
10101
|
unknown: boolean;
|
|
10102
10102
|
symbol?: string | undefined;
|
|
10103
10103
|
decimals?: number | undefined;
|
|
@@ -10107,9 +10107,9 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
10107
10107
|
}, {
|
|
10108
10108
|
type: "token_address";
|
|
10109
10109
|
token: {
|
|
10110
|
-
name: string;
|
|
10111
10110
|
address: string;
|
|
10112
10111
|
type: string;
|
|
10112
|
+
name: string;
|
|
10113
10113
|
unknown: boolean;
|
|
10114
10114
|
symbol?: string | undefined;
|
|
10115
10115
|
decimals?: number | undefined;
|
|
@@ -10167,17 +10167,17 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
10167
10167
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
10168
10168
|
type: z.ZodString;
|
|
10169
10169
|
}, "strip", z.ZodTypeAny, {
|
|
10170
|
-
name: string;
|
|
10171
10170
|
address: string;
|
|
10172
10171
|
type: string;
|
|
10172
|
+
name: string;
|
|
10173
10173
|
unknown: boolean;
|
|
10174
10174
|
symbol?: string | undefined;
|
|
10175
10175
|
decimals?: number | undefined;
|
|
10176
10176
|
iconUrl?: string | undefined;
|
|
10177
10177
|
}, {
|
|
10178
|
-
name: string;
|
|
10179
10178
|
address: string;
|
|
10180
10179
|
type: string;
|
|
10180
|
+
name: string;
|
|
10181
10181
|
unknown: boolean;
|
|
10182
10182
|
symbol?: string | undefined;
|
|
10183
10183
|
decimals?: number | undefined;
|
|
@@ -10186,9 +10186,9 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
10186
10186
|
}, "strip", z.ZodTypeAny, {
|
|
10187
10187
|
type: "nft";
|
|
10188
10188
|
token: {
|
|
10189
|
-
name: string;
|
|
10190
10189
|
address: string;
|
|
10191
10190
|
type: string;
|
|
10191
|
+
name: string;
|
|
10192
10192
|
unknown: boolean;
|
|
10193
10193
|
symbol?: string | undefined;
|
|
10194
10194
|
decimals?: number | undefined;
|
|
@@ -10198,9 +10198,9 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
10198
10198
|
}, {
|
|
10199
10199
|
type: "nft";
|
|
10200
10200
|
token: {
|
|
10201
|
-
name: string;
|
|
10202
10201
|
address: string;
|
|
10203
10202
|
type: string;
|
|
10203
|
+
name: string;
|
|
10204
10204
|
unknown: boolean;
|
|
10205
10205
|
symbol?: string | undefined;
|
|
10206
10206
|
decimals?: number | undefined;
|
|
@@ -10220,17 +10220,17 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
10220
10220
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
10221
10221
|
type: z.ZodString;
|
|
10222
10222
|
}, "strip", z.ZodTypeAny, {
|
|
10223
|
-
name: string;
|
|
10224
10223
|
address: string;
|
|
10225
10224
|
type: string;
|
|
10225
|
+
name: string;
|
|
10226
10226
|
unknown: boolean;
|
|
10227
10227
|
symbol?: string | undefined;
|
|
10228
10228
|
decimals?: number | undefined;
|
|
10229
10229
|
iconUrl?: string | undefined;
|
|
10230
10230
|
}, {
|
|
10231
|
-
name: string;
|
|
10232
10231
|
address: string;
|
|
10233
10232
|
type: string;
|
|
10233
|
+
name: string;
|
|
10234
10234
|
unknown: boolean;
|
|
10235
10235
|
symbol?: string | undefined;
|
|
10236
10236
|
decimals?: number | undefined;
|
|
@@ -10243,9 +10243,9 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
10243
10243
|
type: "amount";
|
|
10244
10244
|
amount: string;
|
|
10245
10245
|
token: {
|
|
10246
|
-
name: string;
|
|
10247
10246
|
address: string;
|
|
10248
10247
|
type: string;
|
|
10248
|
+
name: string;
|
|
10249
10249
|
unknown: boolean;
|
|
10250
10250
|
symbol?: string | undefined;
|
|
10251
10251
|
decimals?: number | undefined;
|
|
@@ -10258,9 +10258,9 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
10258
10258
|
type: "amount";
|
|
10259
10259
|
amount: string;
|
|
10260
10260
|
token: {
|
|
10261
|
-
name: string;
|
|
10262
10261
|
address: string;
|
|
10263
10262
|
type: string;
|
|
10263
|
+
name: string;
|
|
10264
10264
|
unknown: boolean;
|
|
10265
10265
|
symbol?: string | undefined;
|
|
10266
10266
|
decimals?: number | undefined;
|
|
@@ -10292,12 +10292,12 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
10292
10292
|
label: z.ZodString;
|
|
10293
10293
|
value: z.ZodString;
|
|
10294
10294
|
}, "strip", z.ZodTypeAny, {
|
|
10295
|
-
value: string;
|
|
10296
10295
|
type: "timestamp";
|
|
10296
|
+
value: string;
|
|
10297
10297
|
label: string;
|
|
10298
10298
|
}, {
|
|
10299
|
-
value: string;
|
|
10300
10299
|
type: "timestamp";
|
|
10300
|
+
value: string;
|
|
10301
10301
|
label: string;
|
|
10302
10302
|
}>, z.ZodObject<{
|
|
10303
10303
|
type: z.ZodLiteral<"token_address">;
|
|
@@ -10311,17 +10311,17 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
10311
10311
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
10312
10312
|
type: z.ZodString;
|
|
10313
10313
|
}, "strip", z.ZodTypeAny, {
|
|
10314
|
-
name: string;
|
|
10315
10314
|
address: string;
|
|
10316
10315
|
type: string;
|
|
10316
|
+
name: string;
|
|
10317
10317
|
unknown: boolean;
|
|
10318
10318
|
symbol?: string | undefined;
|
|
10319
10319
|
decimals?: number | undefined;
|
|
10320
10320
|
iconUrl?: string | undefined;
|
|
10321
10321
|
}, {
|
|
10322
|
-
name: string;
|
|
10323
10322
|
address: string;
|
|
10324
10323
|
type: string;
|
|
10324
|
+
name: string;
|
|
10325
10325
|
unknown: boolean;
|
|
10326
10326
|
symbol?: string | undefined;
|
|
10327
10327
|
decimals?: number | undefined;
|
|
@@ -10330,9 +10330,9 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
10330
10330
|
}, "strip", z.ZodTypeAny, {
|
|
10331
10331
|
type: "token_address";
|
|
10332
10332
|
token: {
|
|
10333
|
-
name: string;
|
|
10334
10333
|
address: string;
|
|
10335
10334
|
type: string;
|
|
10335
|
+
name: string;
|
|
10336
10336
|
unknown: boolean;
|
|
10337
10337
|
symbol?: string | undefined;
|
|
10338
10338
|
decimals?: number | undefined;
|
|
@@ -10342,9 +10342,9 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
10342
10342
|
}, {
|
|
10343
10343
|
type: "token_address";
|
|
10344
10344
|
token: {
|
|
10345
|
-
name: string;
|
|
10346
10345
|
address: string;
|
|
10347
10346
|
type: string;
|
|
10347
|
+
name: string;
|
|
10348
10348
|
unknown: boolean;
|
|
10349
10349
|
symbol?: string | undefined;
|
|
10350
10350
|
decimals?: number | undefined;
|
|
@@ -10402,17 +10402,17 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
10402
10402
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
10403
10403
|
type: z.ZodString;
|
|
10404
10404
|
}, "strip", z.ZodTypeAny, {
|
|
10405
|
-
name: string;
|
|
10406
10405
|
address: string;
|
|
10407
10406
|
type: string;
|
|
10407
|
+
name: string;
|
|
10408
10408
|
unknown: boolean;
|
|
10409
10409
|
symbol?: string | undefined;
|
|
10410
10410
|
decimals?: number | undefined;
|
|
10411
10411
|
iconUrl?: string | undefined;
|
|
10412
10412
|
}, {
|
|
10413
|
-
name: string;
|
|
10414
10413
|
address: string;
|
|
10415
10414
|
type: string;
|
|
10415
|
+
name: string;
|
|
10416
10416
|
unknown: boolean;
|
|
10417
10417
|
symbol?: string | undefined;
|
|
10418
10418
|
decimals?: number | undefined;
|
|
@@ -10421,9 +10421,9 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
10421
10421
|
}, "strip", z.ZodTypeAny, {
|
|
10422
10422
|
type: "nft";
|
|
10423
10423
|
token: {
|
|
10424
|
-
name: string;
|
|
10425
10424
|
address: string;
|
|
10426
10425
|
type: string;
|
|
10426
|
+
name: string;
|
|
10427
10427
|
unknown: boolean;
|
|
10428
10428
|
symbol?: string | undefined;
|
|
10429
10429
|
decimals?: number | undefined;
|
|
@@ -10433,9 +10433,9 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
10433
10433
|
}, {
|
|
10434
10434
|
type: "nft";
|
|
10435
10435
|
token: {
|
|
10436
|
-
name: string;
|
|
10437
10436
|
address: string;
|
|
10438
10437
|
type: string;
|
|
10438
|
+
name: string;
|
|
10439
10439
|
unknown: boolean;
|
|
10440
10440
|
symbol?: string | undefined;
|
|
10441
10441
|
decimals?: number | undefined;
|
|
@@ -10449,9 +10449,9 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
10449
10449
|
type: "amount";
|
|
10450
10450
|
amount: string;
|
|
10451
10451
|
token: {
|
|
10452
|
-
name: string;
|
|
10453
10452
|
address: string;
|
|
10454
10453
|
type: string;
|
|
10454
|
+
name: string;
|
|
10455
10455
|
unknown: boolean;
|
|
10456
10456
|
symbol?: string | undefined;
|
|
10457
10457
|
decimals?: number | undefined;
|
|
@@ -10467,15 +10467,15 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
10467
10467
|
verified?: boolean | undefined;
|
|
10468
10468
|
addressName?: string | undefined;
|
|
10469
10469
|
} | {
|
|
10470
|
-
value: string;
|
|
10471
10470
|
type: "timestamp";
|
|
10471
|
+
value: string;
|
|
10472
10472
|
label: string;
|
|
10473
10473
|
} | {
|
|
10474
10474
|
type: "token_address";
|
|
10475
10475
|
token: {
|
|
10476
|
-
name: string;
|
|
10477
10476
|
address: string;
|
|
10478
10477
|
type: string;
|
|
10478
|
+
name: string;
|
|
10479
10479
|
unknown: boolean;
|
|
10480
10480
|
symbol?: string | undefined;
|
|
10481
10481
|
decimals?: number | undefined;
|
|
@@ -10498,9 +10498,9 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
10498
10498
|
} | {
|
|
10499
10499
|
type: "nft";
|
|
10500
10500
|
token: {
|
|
10501
|
-
name: string;
|
|
10502
10501
|
address: string;
|
|
10503
10502
|
type: string;
|
|
10503
|
+
name: string;
|
|
10504
10504
|
unknown: boolean;
|
|
10505
10505
|
symbol?: string | undefined;
|
|
10506
10506
|
decimals?: number | undefined;
|
|
@@ -10512,9 +10512,9 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
10512
10512
|
type: "amount";
|
|
10513
10513
|
amount: string;
|
|
10514
10514
|
token: {
|
|
10515
|
-
name: string;
|
|
10516
10515
|
address: string;
|
|
10517
10516
|
type: string;
|
|
10517
|
+
name: string;
|
|
10518
10518
|
unknown: boolean;
|
|
10519
10519
|
symbol?: string | undefined;
|
|
10520
10520
|
decimals?: number | undefined;
|
|
@@ -10530,15 +10530,15 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
10530
10530
|
verified?: boolean | undefined;
|
|
10531
10531
|
addressName?: string | undefined;
|
|
10532
10532
|
} | {
|
|
10533
|
-
value: string;
|
|
10534
10533
|
type: "timestamp";
|
|
10534
|
+
value: string;
|
|
10535
10535
|
label: string;
|
|
10536
10536
|
} | {
|
|
10537
10537
|
type: "token_address";
|
|
10538
10538
|
token: {
|
|
10539
|
-
name: string;
|
|
10540
10539
|
address: string;
|
|
10541
10540
|
type: string;
|
|
10541
|
+
name: string;
|
|
10542
10542
|
unknown: boolean;
|
|
10543
10543
|
symbol?: string | undefined;
|
|
10544
10544
|
decimals?: number | undefined;
|
|
@@ -10561,9 +10561,9 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
10561
10561
|
} | {
|
|
10562
10562
|
type: "nft";
|
|
10563
10563
|
token: {
|
|
10564
|
-
name: string;
|
|
10565
10564
|
address: string;
|
|
10566
10565
|
type: string;
|
|
10566
|
+
name: string;
|
|
10567
10567
|
unknown: boolean;
|
|
10568
10568
|
symbol?: string | undefined;
|
|
10569
10569
|
decimals?: number | undefined;
|
|
@@ -10577,9 +10577,9 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
10577
10577
|
type: "amount";
|
|
10578
10578
|
amount: string;
|
|
10579
10579
|
token: {
|
|
10580
|
-
name: string;
|
|
10581
10580
|
address: string;
|
|
10582
10581
|
type: string;
|
|
10582
|
+
name: string;
|
|
10583
10583
|
unknown: boolean;
|
|
10584
10584
|
symbol?: string | undefined;
|
|
10585
10585
|
decimals?: number | undefined;
|
|
@@ -10595,15 +10595,15 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
10595
10595
|
verified?: boolean | undefined;
|
|
10596
10596
|
addressName?: string | undefined;
|
|
10597
10597
|
} | {
|
|
10598
|
-
value: string;
|
|
10599
10598
|
type: "timestamp";
|
|
10599
|
+
value: string;
|
|
10600
10600
|
label: string;
|
|
10601
10601
|
} | {
|
|
10602
10602
|
type: "token_address";
|
|
10603
10603
|
token: {
|
|
10604
|
-
name: string;
|
|
10605
10604
|
address: string;
|
|
10606
10605
|
type: string;
|
|
10606
|
+
name: string;
|
|
10607
10607
|
unknown: boolean;
|
|
10608
10608
|
symbol?: string | undefined;
|
|
10609
10609
|
decimals?: number | undefined;
|
|
@@ -10626,9 +10626,9 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
10626
10626
|
} | {
|
|
10627
10627
|
type: "nft";
|
|
10628
10628
|
token: {
|
|
10629
|
-
name: string;
|
|
10630
10629
|
address: string;
|
|
10631
10630
|
type: string;
|
|
10631
|
+
name: string;
|
|
10632
10632
|
unknown: boolean;
|
|
10633
10633
|
symbol?: string | undefined;
|
|
10634
10634
|
decimals?: number | undefined;
|
|
@@ -10640,9 +10640,9 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
10640
10640
|
type: "amount";
|
|
10641
10641
|
amount: string;
|
|
10642
10642
|
token: {
|
|
10643
|
-
name: string;
|
|
10644
10643
|
address: string;
|
|
10645
10644
|
type: string;
|
|
10645
|
+
name: string;
|
|
10646
10646
|
unknown: boolean;
|
|
10647
10647
|
symbol?: string | undefined;
|
|
10648
10648
|
decimals?: number | undefined;
|
|
@@ -10658,15 +10658,15 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
10658
10658
|
verified?: boolean | undefined;
|
|
10659
10659
|
addressName?: string | undefined;
|
|
10660
10660
|
} | {
|
|
10661
|
-
value: string;
|
|
10662
10661
|
type: "timestamp";
|
|
10662
|
+
value: string;
|
|
10663
10663
|
label: string;
|
|
10664
10664
|
} | {
|
|
10665
10665
|
type: "token_address";
|
|
10666
10666
|
token: {
|
|
10667
|
-
name: string;
|
|
10668
10667
|
address: string;
|
|
10669
10668
|
type: string;
|
|
10669
|
+
name: string;
|
|
10670
10670
|
unknown: boolean;
|
|
10671
10671
|
symbol?: string | undefined;
|
|
10672
10672
|
decimals?: number | undefined;
|
|
@@ -10689,9 +10689,9 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
10689
10689
|
} | {
|
|
10690
10690
|
type: "nft";
|
|
10691
10691
|
token: {
|
|
10692
|
-
name: string;
|
|
10693
10692
|
address: string;
|
|
10694
10693
|
type: string;
|
|
10694
|
+
name: string;
|
|
10695
10695
|
unknown: boolean;
|
|
10696
10696
|
symbol?: string | undefined;
|
|
10697
10697
|
decimals?: number | undefined;
|
|
@@ -10709,8 +10709,8 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
10709
10709
|
signers: string[];
|
|
10710
10710
|
}>>;
|
|
10711
10711
|
}, "strip", z.ZodTypeAny, {
|
|
10712
|
-
status: "pending" | "success" | "failure";
|
|
10713
10712
|
type: "staking" | "payment" | "approval" | "changePubKey" | "dappInteraction" | "deploy" | "gift" | "multicall" | "security" | "trade";
|
|
10713
|
+
status: "pending" | "success" | "failure";
|
|
10714
10714
|
network: string;
|
|
10715
10715
|
wallet: `0x${string}`;
|
|
10716
10716
|
id: string;
|
|
@@ -10793,8 +10793,8 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
10793
10793
|
} | {
|
|
10794
10794
|
type: "staking";
|
|
10795
10795
|
stakerInfo: {
|
|
10796
|
-
name?: string | undefined;
|
|
10797
10796
|
address?: string | undefined;
|
|
10797
|
+
name?: string | undefined;
|
|
10798
10798
|
iconUrl?: string | undefined;
|
|
10799
10799
|
};
|
|
10800
10800
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -10903,8 +10903,8 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
10903
10903
|
} | {
|
|
10904
10904
|
type: "staking";
|
|
10905
10905
|
stakerInfo: {
|
|
10906
|
-
name?: string | undefined;
|
|
10907
10906
|
address?: string | undefined;
|
|
10907
|
+
name?: string | undefined;
|
|
10908
10908
|
iconUrl?: string | undefined;
|
|
10909
10909
|
};
|
|
10910
10910
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -11015,9 +11015,9 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
11015
11015
|
type: "amount";
|
|
11016
11016
|
amount: string;
|
|
11017
11017
|
token: {
|
|
11018
|
-
name: string;
|
|
11019
11018
|
address: string;
|
|
11020
11019
|
type: string;
|
|
11020
|
+
name: string;
|
|
11021
11021
|
unknown: boolean;
|
|
11022
11022
|
symbol?: string | undefined;
|
|
11023
11023
|
decimals?: number | undefined;
|
|
@@ -11033,15 +11033,15 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
11033
11033
|
verified?: boolean | undefined;
|
|
11034
11034
|
addressName?: string | undefined;
|
|
11035
11035
|
} | {
|
|
11036
|
-
value: string;
|
|
11037
11036
|
type: "timestamp";
|
|
11037
|
+
value: string;
|
|
11038
11038
|
label: string;
|
|
11039
11039
|
} | {
|
|
11040
11040
|
type: "token_address";
|
|
11041
11041
|
token: {
|
|
11042
|
-
name: string;
|
|
11043
11042
|
address: string;
|
|
11044
11043
|
type: string;
|
|
11044
|
+
name: string;
|
|
11045
11045
|
unknown: boolean;
|
|
11046
11046
|
symbol?: string | undefined;
|
|
11047
11047
|
decimals?: number | undefined;
|
|
@@ -11064,9 +11064,9 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
11064
11064
|
} | {
|
|
11065
11065
|
type: "nft";
|
|
11066
11066
|
token: {
|
|
11067
|
-
name: string;
|
|
11068
11067
|
address: string;
|
|
11069
11068
|
type: string;
|
|
11069
|
+
name: string;
|
|
11070
11070
|
unknown: boolean;
|
|
11071
11071
|
symbol?: string | undefined;
|
|
11072
11072
|
decimals?: number | undefined;
|
|
@@ -11078,9 +11078,9 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
11078
11078
|
type: "amount";
|
|
11079
11079
|
amount: string;
|
|
11080
11080
|
token: {
|
|
11081
|
-
name: string;
|
|
11082
11081
|
address: string;
|
|
11083
11082
|
type: string;
|
|
11083
|
+
name: string;
|
|
11084
11084
|
unknown: boolean;
|
|
11085
11085
|
symbol?: string | undefined;
|
|
11086
11086
|
decimals?: number | undefined;
|
|
@@ -11096,15 +11096,15 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
11096
11096
|
verified?: boolean | undefined;
|
|
11097
11097
|
addressName?: string | undefined;
|
|
11098
11098
|
} | {
|
|
11099
|
-
value: string;
|
|
11100
11099
|
type: "timestamp";
|
|
11100
|
+
value: string;
|
|
11101
11101
|
label: string;
|
|
11102
11102
|
} | {
|
|
11103
11103
|
type: "token_address";
|
|
11104
11104
|
token: {
|
|
11105
|
-
name: string;
|
|
11106
11105
|
address: string;
|
|
11107
11106
|
type: string;
|
|
11107
|
+
name: string;
|
|
11108
11108
|
unknown: boolean;
|
|
11109
11109
|
symbol?: string | undefined;
|
|
11110
11110
|
decimals?: number | undefined;
|
|
@@ -11127,9 +11127,9 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
11127
11127
|
} | {
|
|
11128
11128
|
type: "nft";
|
|
11129
11129
|
token: {
|
|
11130
|
-
name: string;
|
|
11131
11130
|
address: string;
|
|
11132
11131
|
type: string;
|
|
11132
|
+
name: string;
|
|
11133
11133
|
unknown: boolean;
|
|
11134
11134
|
symbol?: string | undefined;
|
|
11135
11135
|
decimals?: number | undefined;
|
|
@@ -11143,8 +11143,8 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
11143
11143
|
signers: `0x${string}`[];
|
|
11144
11144
|
} | undefined;
|
|
11145
11145
|
}, {
|
|
11146
|
-
status: "pending" | "success" | "failure";
|
|
11147
11146
|
type: "staking" | "payment" | "approval" | "changePubKey" | "dappInteraction" | "deploy" | "gift" | "multicall" | "security" | "trade";
|
|
11147
|
+
status: "pending" | "success" | "failure";
|
|
11148
11148
|
network: string;
|
|
11149
11149
|
wallet: string;
|
|
11150
11150
|
id: string;
|
|
@@ -11227,8 +11227,8 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
11227
11227
|
} | {
|
|
11228
11228
|
type: "staking";
|
|
11229
11229
|
stakerInfo: {
|
|
11230
|
-
name?: string | undefined;
|
|
11231
11230
|
address?: string | undefined;
|
|
11231
|
+
name?: string | undefined;
|
|
11232
11232
|
iconUrl?: string | undefined;
|
|
11233
11233
|
};
|
|
11234
11234
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -11337,8 +11337,8 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
11337
11337
|
} | {
|
|
11338
11338
|
type: "staking";
|
|
11339
11339
|
stakerInfo: {
|
|
11340
|
-
name?: string | undefined;
|
|
11341
11340
|
address?: string | undefined;
|
|
11341
|
+
name?: string | undefined;
|
|
11342
11342
|
iconUrl?: string | undefined;
|
|
11343
11343
|
};
|
|
11344
11344
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -11449,9 +11449,9 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
11449
11449
|
type: "amount";
|
|
11450
11450
|
amount: string;
|
|
11451
11451
|
token: {
|
|
11452
|
-
name: string;
|
|
11453
11452
|
address: string;
|
|
11454
11453
|
type: string;
|
|
11454
|
+
name: string;
|
|
11455
11455
|
unknown: boolean;
|
|
11456
11456
|
symbol?: string | undefined;
|
|
11457
11457
|
decimals?: number | undefined;
|
|
@@ -11467,15 +11467,15 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
11467
11467
|
verified?: boolean | undefined;
|
|
11468
11468
|
addressName?: string | undefined;
|
|
11469
11469
|
} | {
|
|
11470
|
-
value: string;
|
|
11471
11470
|
type: "timestamp";
|
|
11471
|
+
value: string;
|
|
11472
11472
|
label: string;
|
|
11473
11473
|
} | {
|
|
11474
11474
|
type: "token_address";
|
|
11475
11475
|
token: {
|
|
11476
|
-
name: string;
|
|
11477
11476
|
address: string;
|
|
11478
11477
|
type: string;
|
|
11478
|
+
name: string;
|
|
11479
11479
|
unknown: boolean;
|
|
11480
11480
|
symbol?: string | undefined;
|
|
11481
11481
|
decimals?: number | undefined;
|
|
@@ -11498,9 +11498,9 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
11498
11498
|
} | {
|
|
11499
11499
|
type: "nft";
|
|
11500
11500
|
token: {
|
|
11501
|
-
name: string;
|
|
11502
11501
|
address: string;
|
|
11503
11502
|
type: string;
|
|
11503
|
+
name: string;
|
|
11504
11504
|
unknown: boolean;
|
|
11505
11505
|
symbol?: string | undefined;
|
|
11506
11506
|
decimals?: number | undefined;
|
|
@@ -11512,9 +11512,9 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
11512
11512
|
type: "amount";
|
|
11513
11513
|
amount: string;
|
|
11514
11514
|
token: {
|
|
11515
|
-
name: string;
|
|
11516
11515
|
address: string;
|
|
11517
11516
|
type: string;
|
|
11517
|
+
name: string;
|
|
11518
11518
|
unknown: boolean;
|
|
11519
11519
|
symbol?: string | undefined;
|
|
11520
11520
|
decimals?: number | undefined;
|
|
@@ -11530,15 +11530,15 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
11530
11530
|
verified?: boolean | undefined;
|
|
11531
11531
|
addressName?: string | undefined;
|
|
11532
11532
|
} | {
|
|
11533
|
-
value: string;
|
|
11534
11533
|
type: "timestamp";
|
|
11534
|
+
value: string;
|
|
11535
11535
|
label: string;
|
|
11536
11536
|
} | {
|
|
11537
11537
|
type: "token_address";
|
|
11538
11538
|
token: {
|
|
11539
|
-
name: string;
|
|
11540
11539
|
address: string;
|
|
11541
11540
|
type: string;
|
|
11541
|
+
name: string;
|
|
11542
11542
|
unknown: boolean;
|
|
11543
11543
|
symbol?: string | undefined;
|
|
11544
11544
|
decimals?: number | undefined;
|
|
@@ -11561,9 +11561,9 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
11561
11561
|
} | {
|
|
11562
11562
|
type: "nft";
|
|
11563
11563
|
token: {
|
|
11564
|
-
name: string;
|
|
11565
11564
|
address: string;
|
|
11566
11565
|
type: string;
|
|
11566
|
+
name: string;
|
|
11567
11567
|
unknown: boolean;
|
|
11568
11568
|
symbol?: string | undefined;
|
|
11569
11569
|
decimals?: number | undefined;
|
|
@@ -12157,19 +12157,19 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
12157
12157
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
12158
12158
|
address: z.ZodOptional<z.ZodString>;
|
|
12159
12159
|
}, "strip", z.ZodTypeAny, {
|
|
12160
|
-
name?: string | undefined;
|
|
12161
12160
|
address?: string | undefined;
|
|
12161
|
+
name?: string | undefined;
|
|
12162
12162
|
iconUrl?: string | undefined;
|
|
12163
12163
|
}, {
|
|
12164
|
-
name?: string | undefined;
|
|
12165
12164
|
address?: string | undefined;
|
|
12165
|
+
name?: string | undefined;
|
|
12166
12166
|
iconUrl?: string | undefined;
|
|
12167
12167
|
}>;
|
|
12168
12168
|
}, "strip", z.ZodTypeAny, {
|
|
12169
12169
|
type: "staking";
|
|
12170
12170
|
stakerInfo: {
|
|
12171
|
-
name?: string | undefined;
|
|
12172
12171
|
address?: string | undefined;
|
|
12172
|
+
name?: string | undefined;
|
|
12173
12173
|
iconUrl?: string | undefined;
|
|
12174
12174
|
};
|
|
12175
12175
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -12186,8 +12186,8 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
12186
12186
|
}, {
|
|
12187
12187
|
type: "staking";
|
|
12188
12188
|
stakerInfo: {
|
|
12189
|
-
name?: string | undefined;
|
|
12190
12189
|
address?: string | undefined;
|
|
12190
|
+
name?: string | undefined;
|
|
12191
12191
|
iconUrl?: string | undefined;
|
|
12192
12192
|
};
|
|
12193
12193
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -12669,19 +12669,19 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
12669
12669
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
12670
12670
|
address: z.ZodOptional<z.ZodString>;
|
|
12671
12671
|
}, "strip", z.ZodTypeAny, {
|
|
12672
|
-
name?: string | undefined;
|
|
12673
12672
|
address?: string | undefined;
|
|
12673
|
+
name?: string | undefined;
|
|
12674
12674
|
iconUrl?: string | undefined;
|
|
12675
12675
|
}, {
|
|
12676
|
-
name?: string | undefined;
|
|
12677
12676
|
address?: string | undefined;
|
|
12677
|
+
name?: string | undefined;
|
|
12678
12678
|
iconUrl?: string | undefined;
|
|
12679
12679
|
}>;
|
|
12680
12680
|
}, "strip", z.ZodTypeAny, {
|
|
12681
12681
|
type: "staking";
|
|
12682
12682
|
stakerInfo: {
|
|
12683
|
-
name?: string | undefined;
|
|
12684
12683
|
address?: string | undefined;
|
|
12684
|
+
name?: string | undefined;
|
|
12685
12685
|
iconUrl?: string | undefined;
|
|
12686
12686
|
};
|
|
12687
12687
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -12698,8 +12698,8 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
12698
12698
|
}, {
|
|
12699
12699
|
type: "staking";
|
|
12700
12700
|
stakerInfo: {
|
|
12701
|
-
name?: string | undefined;
|
|
12702
12701
|
address?: string | undefined;
|
|
12702
|
+
name?: string | undefined;
|
|
12703
12703
|
iconUrl?: string | undefined;
|
|
12704
12704
|
};
|
|
12705
12705
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -12857,8 +12857,8 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
12857
12857
|
} | {
|
|
12858
12858
|
type: "staking";
|
|
12859
12859
|
stakerInfo: {
|
|
12860
|
-
name?: string | undefined;
|
|
12861
12860
|
address?: string | undefined;
|
|
12861
|
+
name?: string | undefined;
|
|
12862
12862
|
iconUrl?: string | undefined;
|
|
12863
12863
|
};
|
|
12864
12864
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -12966,8 +12966,8 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
12966
12966
|
} | {
|
|
12967
12967
|
type: "staking";
|
|
12968
12968
|
stakerInfo: {
|
|
12969
|
-
name?: string | undefined;
|
|
12970
12969
|
address?: string | undefined;
|
|
12970
|
+
name?: string | undefined;
|
|
12971
12971
|
iconUrl?: string | undefined;
|
|
12972
12972
|
};
|
|
12973
12973
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -13078,8 +13078,8 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
13078
13078
|
} | {
|
|
13079
13079
|
type: "staking";
|
|
13080
13080
|
stakerInfo: {
|
|
13081
|
-
name?: string | undefined;
|
|
13082
13081
|
address?: string | undefined;
|
|
13082
|
+
name?: string | undefined;
|
|
13083
13083
|
iconUrl?: string | undefined;
|
|
13084
13084
|
};
|
|
13085
13085
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -13190,8 +13190,8 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
13190
13190
|
} | {
|
|
13191
13191
|
type: "staking";
|
|
13192
13192
|
stakerInfo: {
|
|
13193
|
-
name?: string | undefined;
|
|
13194
13193
|
address?: string | undefined;
|
|
13194
|
+
name?: string | undefined;
|
|
13195
13195
|
iconUrl?: string | undefined;
|
|
13196
13196
|
};
|
|
13197
13197
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -13347,17 +13347,17 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
13347
13347
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
13348
13348
|
type: z.ZodString;
|
|
13349
13349
|
}, "strip", z.ZodTypeAny, {
|
|
13350
|
-
name: string;
|
|
13351
13350
|
address: string;
|
|
13352
13351
|
type: string;
|
|
13352
|
+
name: string;
|
|
13353
13353
|
unknown: boolean;
|
|
13354
13354
|
symbol?: string | undefined;
|
|
13355
13355
|
decimals?: number | undefined;
|
|
13356
13356
|
iconUrl?: string | undefined;
|
|
13357
13357
|
}, {
|
|
13358
|
-
name: string;
|
|
13359
13358
|
address: string;
|
|
13360
13359
|
type: string;
|
|
13360
|
+
name: string;
|
|
13361
13361
|
unknown: boolean;
|
|
13362
13362
|
symbol?: string | undefined;
|
|
13363
13363
|
decimals?: number | undefined;
|
|
@@ -13370,9 +13370,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
13370
13370
|
type: "amount";
|
|
13371
13371
|
amount: string;
|
|
13372
13372
|
token: {
|
|
13373
|
-
name: string;
|
|
13374
13373
|
address: string;
|
|
13375
13374
|
type: string;
|
|
13375
|
+
name: string;
|
|
13376
13376
|
unknown: boolean;
|
|
13377
13377
|
symbol?: string | undefined;
|
|
13378
13378
|
decimals?: number | undefined;
|
|
@@ -13385,9 +13385,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
13385
13385
|
type: "amount";
|
|
13386
13386
|
amount: string;
|
|
13387
13387
|
token: {
|
|
13388
|
-
name: string;
|
|
13389
13388
|
address: string;
|
|
13390
13389
|
type: string;
|
|
13390
|
+
name: string;
|
|
13391
13391
|
unknown: boolean;
|
|
13392
13392
|
symbol?: string | undefined;
|
|
13393
13393
|
decimals?: number | undefined;
|
|
@@ -13419,12 +13419,12 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
13419
13419
|
label: z.ZodString;
|
|
13420
13420
|
value: z.ZodString;
|
|
13421
13421
|
}, "strip", z.ZodTypeAny, {
|
|
13422
|
-
value: string;
|
|
13423
13422
|
type: "timestamp";
|
|
13423
|
+
value: string;
|
|
13424
13424
|
label: string;
|
|
13425
13425
|
}, {
|
|
13426
|
-
value: string;
|
|
13427
13426
|
type: "timestamp";
|
|
13427
|
+
value: string;
|
|
13428
13428
|
label: string;
|
|
13429
13429
|
}>, z.ZodObject<{
|
|
13430
13430
|
type: z.ZodLiteral<"token_address">;
|
|
@@ -13438,17 +13438,17 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
13438
13438
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
13439
13439
|
type: z.ZodString;
|
|
13440
13440
|
}, "strip", z.ZodTypeAny, {
|
|
13441
|
-
name: string;
|
|
13442
13441
|
address: string;
|
|
13443
13442
|
type: string;
|
|
13443
|
+
name: string;
|
|
13444
13444
|
unknown: boolean;
|
|
13445
13445
|
symbol?: string | undefined;
|
|
13446
13446
|
decimals?: number | undefined;
|
|
13447
13447
|
iconUrl?: string | undefined;
|
|
13448
13448
|
}, {
|
|
13449
|
-
name: string;
|
|
13450
13449
|
address: string;
|
|
13451
13450
|
type: string;
|
|
13451
|
+
name: string;
|
|
13452
13452
|
unknown: boolean;
|
|
13453
13453
|
symbol?: string | undefined;
|
|
13454
13454
|
decimals?: number | undefined;
|
|
@@ -13457,9 +13457,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
13457
13457
|
}, "strip", z.ZodTypeAny, {
|
|
13458
13458
|
type: "token_address";
|
|
13459
13459
|
token: {
|
|
13460
|
-
name: string;
|
|
13461
13460
|
address: string;
|
|
13462
13461
|
type: string;
|
|
13462
|
+
name: string;
|
|
13463
13463
|
unknown: boolean;
|
|
13464
13464
|
symbol?: string | undefined;
|
|
13465
13465
|
decimals?: number | undefined;
|
|
@@ -13469,9 +13469,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
13469
13469
|
}, {
|
|
13470
13470
|
type: "token_address";
|
|
13471
13471
|
token: {
|
|
13472
|
-
name: string;
|
|
13473
13472
|
address: string;
|
|
13474
13473
|
type: string;
|
|
13474
|
+
name: string;
|
|
13475
13475
|
unknown: boolean;
|
|
13476
13476
|
symbol?: string | undefined;
|
|
13477
13477
|
decimals?: number | undefined;
|
|
@@ -13529,17 +13529,17 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
13529
13529
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
13530
13530
|
type: z.ZodString;
|
|
13531
13531
|
}, "strip", z.ZodTypeAny, {
|
|
13532
|
-
name: string;
|
|
13533
13532
|
address: string;
|
|
13534
13533
|
type: string;
|
|
13534
|
+
name: string;
|
|
13535
13535
|
unknown: boolean;
|
|
13536
13536
|
symbol?: string | undefined;
|
|
13537
13537
|
decimals?: number | undefined;
|
|
13538
13538
|
iconUrl?: string | undefined;
|
|
13539
13539
|
}, {
|
|
13540
|
-
name: string;
|
|
13541
13540
|
address: string;
|
|
13542
13541
|
type: string;
|
|
13542
|
+
name: string;
|
|
13543
13543
|
unknown: boolean;
|
|
13544
13544
|
symbol?: string | undefined;
|
|
13545
13545
|
decimals?: number | undefined;
|
|
@@ -13548,9 +13548,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
13548
13548
|
}, "strip", z.ZodTypeAny, {
|
|
13549
13549
|
type: "nft";
|
|
13550
13550
|
token: {
|
|
13551
|
-
name: string;
|
|
13552
13551
|
address: string;
|
|
13553
13552
|
type: string;
|
|
13553
|
+
name: string;
|
|
13554
13554
|
unknown: boolean;
|
|
13555
13555
|
symbol?: string | undefined;
|
|
13556
13556
|
decimals?: number | undefined;
|
|
@@ -13560,9 +13560,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
13560
13560
|
}, {
|
|
13561
13561
|
type: "nft";
|
|
13562
13562
|
token: {
|
|
13563
|
-
name: string;
|
|
13564
13563
|
address: string;
|
|
13565
13564
|
type: string;
|
|
13565
|
+
name: string;
|
|
13566
13566
|
unknown: boolean;
|
|
13567
13567
|
symbol?: string | undefined;
|
|
13568
13568
|
decimals?: number | undefined;
|
|
@@ -13582,17 +13582,17 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
13582
13582
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
13583
13583
|
type: z.ZodString;
|
|
13584
13584
|
}, "strip", z.ZodTypeAny, {
|
|
13585
|
-
name: string;
|
|
13586
13585
|
address: string;
|
|
13587
13586
|
type: string;
|
|
13587
|
+
name: string;
|
|
13588
13588
|
unknown: boolean;
|
|
13589
13589
|
symbol?: string | undefined;
|
|
13590
13590
|
decimals?: number | undefined;
|
|
13591
13591
|
iconUrl?: string | undefined;
|
|
13592
13592
|
}, {
|
|
13593
|
-
name: string;
|
|
13594
13593
|
address: string;
|
|
13595
13594
|
type: string;
|
|
13595
|
+
name: string;
|
|
13596
13596
|
unknown: boolean;
|
|
13597
13597
|
symbol?: string | undefined;
|
|
13598
13598
|
decimals?: number | undefined;
|
|
@@ -13605,9 +13605,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
13605
13605
|
type: "amount";
|
|
13606
13606
|
amount: string;
|
|
13607
13607
|
token: {
|
|
13608
|
-
name: string;
|
|
13609
13608
|
address: string;
|
|
13610
13609
|
type: string;
|
|
13610
|
+
name: string;
|
|
13611
13611
|
unknown: boolean;
|
|
13612
13612
|
symbol?: string | undefined;
|
|
13613
13613
|
decimals?: number | undefined;
|
|
@@ -13620,9 +13620,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
13620
13620
|
type: "amount";
|
|
13621
13621
|
amount: string;
|
|
13622
13622
|
token: {
|
|
13623
|
-
name: string;
|
|
13624
13623
|
address: string;
|
|
13625
13624
|
type: string;
|
|
13625
|
+
name: string;
|
|
13626
13626
|
unknown: boolean;
|
|
13627
13627
|
symbol?: string | undefined;
|
|
13628
13628
|
decimals?: number | undefined;
|
|
@@ -13654,12 +13654,12 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
13654
13654
|
label: z.ZodString;
|
|
13655
13655
|
value: z.ZodString;
|
|
13656
13656
|
}, "strip", z.ZodTypeAny, {
|
|
13657
|
-
value: string;
|
|
13658
13657
|
type: "timestamp";
|
|
13658
|
+
value: string;
|
|
13659
13659
|
label: string;
|
|
13660
13660
|
}, {
|
|
13661
|
-
value: string;
|
|
13662
13661
|
type: "timestamp";
|
|
13662
|
+
value: string;
|
|
13663
13663
|
label: string;
|
|
13664
13664
|
}>, z.ZodObject<{
|
|
13665
13665
|
type: z.ZodLiteral<"token_address">;
|
|
@@ -13673,17 +13673,17 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
13673
13673
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
13674
13674
|
type: z.ZodString;
|
|
13675
13675
|
}, "strip", z.ZodTypeAny, {
|
|
13676
|
-
name: string;
|
|
13677
13676
|
address: string;
|
|
13678
13677
|
type: string;
|
|
13678
|
+
name: string;
|
|
13679
13679
|
unknown: boolean;
|
|
13680
13680
|
symbol?: string | undefined;
|
|
13681
13681
|
decimals?: number | undefined;
|
|
13682
13682
|
iconUrl?: string | undefined;
|
|
13683
13683
|
}, {
|
|
13684
|
-
name: string;
|
|
13685
13684
|
address: string;
|
|
13686
13685
|
type: string;
|
|
13686
|
+
name: string;
|
|
13687
13687
|
unknown: boolean;
|
|
13688
13688
|
symbol?: string | undefined;
|
|
13689
13689
|
decimals?: number | undefined;
|
|
@@ -13692,9 +13692,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
13692
13692
|
}, "strip", z.ZodTypeAny, {
|
|
13693
13693
|
type: "token_address";
|
|
13694
13694
|
token: {
|
|
13695
|
-
name: string;
|
|
13696
13695
|
address: string;
|
|
13697
13696
|
type: string;
|
|
13697
|
+
name: string;
|
|
13698
13698
|
unknown: boolean;
|
|
13699
13699
|
symbol?: string | undefined;
|
|
13700
13700
|
decimals?: number | undefined;
|
|
@@ -13704,9 +13704,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
13704
13704
|
}, {
|
|
13705
13705
|
type: "token_address";
|
|
13706
13706
|
token: {
|
|
13707
|
-
name: string;
|
|
13708
13707
|
address: string;
|
|
13709
13708
|
type: string;
|
|
13709
|
+
name: string;
|
|
13710
13710
|
unknown: boolean;
|
|
13711
13711
|
symbol?: string | undefined;
|
|
13712
13712
|
decimals?: number | undefined;
|
|
@@ -13764,17 +13764,17 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
13764
13764
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
13765
13765
|
type: z.ZodString;
|
|
13766
13766
|
}, "strip", z.ZodTypeAny, {
|
|
13767
|
-
name: string;
|
|
13768
13767
|
address: string;
|
|
13769
13768
|
type: string;
|
|
13769
|
+
name: string;
|
|
13770
13770
|
unknown: boolean;
|
|
13771
13771
|
symbol?: string | undefined;
|
|
13772
13772
|
decimals?: number | undefined;
|
|
13773
13773
|
iconUrl?: string | undefined;
|
|
13774
13774
|
}, {
|
|
13775
|
-
name: string;
|
|
13776
13775
|
address: string;
|
|
13777
13776
|
type: string;
|
|
13777
|
+
name: string;
|
|
13778
13778
|
unknown: boolean;
|
|
13779
13779
|
symbol?: string | undefined;
|
|
13780
13780
|
decimals?: number | undefined;
|
|
@@ -13783,9 +13783,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
13783
13783
|
}, "strip", z.ZodTypeAny, {
|
|
13784
13784
|
type: "nft";
|
|
13785
13785
|
token: {
|
|
13786
|
-
name: string;
|
|
13787
13786
|
address: string;
|
|
13788
13787
|
type: string;
|
|
13788
|
+
name: string;
|
|
13789
13789
|
unknown: boolean;
|
|
13790
13790
|
symbol?: string | undefined;
|
|
13791
13791
|
decimals?: number | undefined;
|
|
@@ -13795,9 +13795,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
13795
13795
|
}, {
|
|
13796
13796
|
type: "nft";
|
|
13797
13797
|
token: {
|
|
13798
|
-
name: string;
|
|
13799
13798
|
address: string;
|
|
13800
13799
|
type: string;
|
|
13800
|
+
name: string;
|
|
13801
13801
|
unknown: boolean;
|
|
13802
13802
|
symbol?: string | undefined;
|
|
13803
13803
|
decimals?: number | undefined;
|
|
@@ -13811,9 +13811,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
13811
13811
|
type: "amount";
|
|
13812
13812
|
amount: string;
|
|
13813
13813
|
token: {
|
|
13814
|
-
name: string;
|
|
13815
13814
|
address: string;
|
|
13816
13815
|
type: string;
|
|
13816
|
+
name: string;
|
|
13817
13817
|
unknown: boolean;
|
|
13818
13818
|
symbol?: string | undefined;
|
|
13819
13819
|
decimals?: number | undefined;
|
|
@@ -13829,15 +13829,15 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
13829
13829
|
verified?: boolean | undefined;
|
|
13830
13830
|
addressName?: string | undefined;
|
|
13831
13831
|
} | {
|
|
13832
|
-
value: string;
|
|
13833
13832
|
type: "timestamp";
|
|
13833
|
+
value: string;
|
|
13834
13834
|
label: string;
|
|
13835
13835
|
} | {
|
|
13836
13836
|
type: "token_address";
|
|
13837
13837
|
token: {
|
|
13838
|
-
name: string;
|
|
13839
13838
|
address: string;
|
|
13840
13839
|
type: string;
|
|
13840
|
+
name: string;
|
|
13841
13841
|
unknown: boolean;
|
|
13842
13842
|
symbol?: string | undefined;
|
|
13843
13843
|
decimals?: number | undefined;
|
|
@@ -13860,9 +13860,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
13860
13860
|
} | {
|
|
13861
13861
|
type: "nft";
|
|
13862
13862
|
token: {
|
|
13863
|
-
name: string;
|
|
13864
13863
|
address: string;
|
|
13865
13864
|
type: string;
|
|
13865
|
+
name: string;
|
|
13866
13866
|
unknown: boolean;
|
|
13867
13867
|
symbol?: string | undefined;
|
|
13868
13868
|
decimals?: number | undefined;
|
|
@@ -13874,9 +13874,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
13874
13874
|
type: "amount";
|
|
13875
13875
|
amount: string;
|
|
13876
13876
|
token: {
|
|
13877
|
-
name: string;
|
|
13878
13877
|
address: string;
|
|
13879
13878
|
type: string;
|
|
13879
|
+
name: string;
|
|
13880
13880
|
unknown: boolean;
|
|
13881
13881
|
symbol?: string | undefined;
|
|
13882
13882
|
decimals?: number | undefined;
|
|
@@ -13892,15 +13892,15 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
13892
13892
|
verified?: boolean | undefined;
|
|
13893
13893
|
addressName?: string | undefined;
|
|
13894
13894
|
} | {
|
|
13895
|
-
value: string;
|
|
13896
13895
|
type: "timestamp";
|
|
13896
|
+
value: string;
|
|
13897
13897
|
label: string;
|
|
13898
13898
|
} | {
|
|
13899
13899
|
type: "token_address";
|
|
13900
13900
|
token: {
|
|
13901
|
-
name: string;
|
|
13902
13901
|
address: string;
|
|
13903
13902
|
type: string;
|
|
13903
|
+
name: string;
|
|
13904
13904
|
unknown: boolean;
|
|
13905
13905
|
symbol?: string | undefined;
|
|
13906
13906
|
decimals?: number | undefined;
|
|
@@ -13923,9 +13923,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
13923
13923
|
} | {
|
|
13924
13924
|
type: "nft";
|
|
13925
13925
|
token: {
|
|
13926
|
-
name: string;
|
|
13927
13926
|
address: string;
|
|
13928
13927
|
type: string;
|
|
13928
|
+
name: string;
|
|
13929
13929
|
unknown: boolean;
|
|
13930
13930
|
symbol?: string | undefined;
|
|
13931
13931
|
decimals?: number | undefined;
|
|
@@ -13939,9 +13939,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
13939
13939
|
type: "amount";
|
|
13940
13940
|
amount: string;
|
|
13941
13941
|
token: {
|
|
13942
|
-
name: string;
|
|
13943
13942
|
address: string;
|
|
13944
13943
|
type: string;
|
|
13944
|
+
name: string;
|
|
13945
13945
|
unknown: boolean;
|
|
13946
13946
|
symbol?: string | undefined;
|
|
13947
13947
|
decimals?: number | undefined;
|
|
@@ -13957,15 +13957,15 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
13957
13957
|
verified?: boolean | undefined;
|
|
13958
13958
|
addressName?: string | undefined;
|
|
13959
13959
|
} | {
|
|
13960
|
-
value: string;
|
|
13961
13960
|
type: "timestamp";
|
|
13961
|
+
value: string;
|
|
13962
13962
|
label: string;
|
|
13963
13963
|
} | {
|
|
13964
13964
|
type: "token_address";
|
|
13965
13965
|
token: {
|
|
13966
|
-
name: string;
|
|
13967
13966
|
address: string;
|
|
13968
13967
|
type: string;
|
|
13968
|
+
name: string;
|
|
13969
13969
|
unknown: boolean;
|
|
13970
13970
|
symbol?: string | undefined;
|
|
13971
13971
|
decimals?: number | undefined;
|
|
@@ -13988,9 +13988,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
13988
13988
|
} | {
|
|
13989
13989
|
type: "nft";
|
|
13990
13990
|
token: {
|
|
13991
|
-
name: string;
|
|
13992
13991
|
address: string;
|
|
13993
13992
|
type: string;
|
|
13993
|
+
name: string;
|
|
13994
13994
|
unknown: boolean;
|
|
13995
13995
|
symbol?: string | undefined;
|
|
13996
13996
|
decimals?: number | undefined;
|
|
@@ -14002,9 +14002,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
14002
14002
|
type: "amount";
|
|
14003
14003
|
amount: string;
|
|
14004
14004
|
token: {
|
|
14005
|
-
name: string;
|
|
14006
14005
|
address: string;
|
|
14007
14006
|
type: string;
|
|
14007
|
+
name: string;
|
|
14008
14008
|
unknown: boolean;
|
|
14009
14009
|
symbol?: string | undefined;
|
|
14010
14010
|
decimals?: number | undefined;
|
|
@@ -14020,15 +14020,15 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
14020
14020
|
verified?: boolean | undefined;
|
|
14021
14021
|
addressName?: string | undefined;
|
|
14022
14022
|
} | {
|
|
14023
|
-
value: string;
|
|
14024
14023
|
type: "timestamp";
|
|
14024
|
+
value: string;
|
|
14025
14025
|
label: string;
|
|
14026
14026
|
} | {
|
|
14027
14027
|
type: "token_address";
|
|
14028
14028
|
token: {
|
|
14029
|
-
name: string;
|
|
14030
14029
|
address: string;
|
|
14031
14030
|
type: string;
|
|
14031
|
+
name: string;
|
|
14032
14032
|
unknown: boolean;
|
|
14033
14033
|
symbol?: string | undefined;
|
|
14034
14034
|
decimals?: number | undefined;
|
|
@@ -14051,9 +14051,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
14051
14051
|
} | {
|
|
14052
14052
|
type: "nft";
|
|
14053
14053
|
token: {
|
|
14054
|
-
name: string;
|
|
14055
14054
|
address: string;
|
|
14056
14055
|
type: string;
|
|
14056
|
+
name: string;
|
|
14057
14057
|
unknown: boolean;
|
|
14058
14058
|
symbol?: string | undefined;
|
|
14059
14059
|
decimals?: number | undefined;
|
|
@@ -14071,8 +14071,8 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
14071
14071
|
signers: string[];
|
|
14072
14072
|
}>>;
|
|
14073
14073
|
}, "strip", z.ZodTypeAny, {
|
|
14074
|
-
status: "pending" | "success" | "failure";
|
|
14075
14074
|
type: "staking" | "payment" | "approval" | "changePubKey" | "dappInteraction" | "deploy" | "gift" | "multicall" | "security" | "trade";
|
|
14075
|
+
status: "pending" | "success" | "failure";
|
|
14076
14076
|
network: string;
|
|
14077
14077
|
wallet: `0x${string}`;
|
|
14078
14078
|
id: string;
|
|
@@ -14155,8 +14155,8 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
14155
14155
|
} | {
|
|
14156
14156
|
type: "staking";
|
|
14157
14157
|
stakerInfo: {
|
|
14158
|
-
name?: string | undefined;
|
|
14159
14158
|
address?: string | undefined;
|
|
14159
|
+
name?: string | undefined;
|
|
14160
14160
|
iconUrl?: string | undefined;
|
|
14161
14161
|
};
|
|
14162
14162
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -14265,8 +14265,8 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
14265
14265
|
} | {
|
|
14266
14266
|
type: "staking";
|
|
14267
14267
|
stakerInfo: {
|
|
14268
|
-
name?: string | undefined;
|
|
14269
14268
|
address?: string | undefined;
|
|
14269
|
+
name?: string | undefined;
|
|
14270
14270
|
iconUrl?: string | undefined;
|
|
14271
14271
|
};
|
|
14272
14272
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -14377,9 +14377,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
14377
14377
|
type: "amount";
|
|
14378
14378
|
amount: string;
|
|
14379
14379
|
token: {
|
|
14380
|
-
name: string;
|
|
14381
14380
|
address: string;
|
|
14382
14381
|
type: string;
|
|
14382
|
+
name: string;
|
|
14383
14383
|
unknown: boolean;
|
|
14384
14384
|
symbol?: string | undefined;
|
|
14385
14385
|
decimals?: number | undefined;
|
|
@@ -14395,15 +14395,15 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
14395
14395
|
verified?: boolean | undefined;
|
|
14396
14396
|
addressName?: string | undefined;
|
|
14397
14397
|
} | {
|
|
14398
|
-
value: string;
|
|
14399
14398
|
type: "timestamp";
|
|
14399
|
+
value: string;
|
|
14400
14400
|
label: string;
|
|
14401
14401
|
} | {
|
|
14402
14402
|
type: "token_address";
|
|
14403
14403
|
token: {
|
|
14404
|
-
name: string;
|
|
14405
14404
|
address: string;
|
|
14406
14405
|
type: string;
|
|
14406
|
+
name: string;
|
|
14407
14407
|
unknown: boolean;
|
|
14408
14408
|
symbol?: string | undefined;
|
|
14409
14409
|
decimals?: number | undefined;
|
|
@@ -14426,9 +14426,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
14426
14426
|
} | {
|
|
14427
14427
|
type: "nft";
|
|
14428
14428
|
token: {
|
|
14429
|
-
name: string;
|
|
14430
14429
|
address: string;
|
|
14431
14430
|
type: string;
|
|
14431
|
+
name: string;
|
|
14432
14432
|
unknown: boolean;
|
|
14433
14433
|
symbol?: string | undefined;
|
|
14434
14434
|
decimals?: number | undefined;
|
|
@@ -14440,9 +14440,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
14440
14440
|
type: "amount";
|
|
14441
14441
|
amount: string;
|
|
14442
14442
|
token: {
|
|
14443
|
-
name: string;
|
|
14444
14443
|
address: string;
|
|
14445
14444
|
type: string;
|
|
14445
|
+
name: string;
|
|
14446
14446
|
unknown: boolean;
|
|
14447
14447
|
symbol?: string | undefined;
|
|
14448
14448
|
decimals?: number | undefined;
|
|
@@ -14458,15 +14458,15 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
14458
14458
|
verified?: boolean | undefined;
|
|
14459
14459
|
addressName?: string | undefined;
|
|
14460
14460
|
} | {
|
|
14461
|
-
value: string;
|
|
14462
14461
|
type: "timestamp";
|
|
14462
|
+
value: string;
|
|
14463
14463
|
label: string;
|
|
14464
14464
|
} | {
|
|
14465
14465
|
type: "token_address";
|
|
14466
14466
|
token: {
|
|
14467
|
-
name: string;
|
|
14468
14467
|
address: string;
|
|
14469
14468
|
type: string;
|
|
14469
|
+
name: string;
|
|
14470
14470
|
unknown: boolean;
|
|
14471
14471
|
symbol?: string | undefined;
|
|
14472
14472
|
decimals?: number | undefined;
|
|
@@ -14489,9 +14489,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
14489
14489
|
} | {
|
|
14490
14490
|
type: "nft";
|
|
14491
14491
|
token: {
|
|
14492
|
-
name: string;
|
|
14493
14492
|
address: string;
|
|
14494
14493
|
type: string;
|
|
14494
|
+
name: string;
|
|
14495
14495
|
unknown: boolean;
|
|
14496
14496
|
symbol?: string | undefined;
|
|
14497
14497
|
decimals?: number | undefined;
|
|
@@ -14505,8 +14505,8 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
14505
14505
|
signers: `0x${string}`[];
|
|
14506
14506
|
} | undefined;
|
|
14507
14507
|
}, {
|
|
14508
|
-
status: "pending" | "success" | "failure";
|
|
14509
14508
|
type: "staking" | "payment" | "approval" | "changePubKey" | "dappInteraction" | "deploy" | "gift" | "multicall" | "security" | "trade";
|
|
14509
|
+
status: "pending" | "success" | "failure";
|
|
14510
14510
|
network: string;
|
|
14511
14511
|
wallet: string;
|
|
14512
14512
|
id: string;
|
|
@@ -14589,8 +14589,8 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
14589
14589
|
} | {
|
|
14590
14590
|
type: "staking";
|
|
14591
14591
|
stakerInfo: {
|
|
14592
|
-
name?: string | undefined;
|
|
14593
14592
|
address?: string | undefined;
|
|
14593
|
+
name?: string | undefined;
|
|
14594
14594
|
iconUrl?: string | undefined;
|
|
14595
14595
|
};
|
|
14596
14596
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -14699,8 +14699,8 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
14699
14699
|
} | {
|
|
14700
14700
|
type: "staking";
|
|
14701
14701
|
stakerInfo: {
|
|
14702
|
-
name?: string | undefined;
|
|
14703
14702
|
address?: string | undefined;
|
|
14703
|
+
name?: string | undefined;
|
|
14704
14704
|
iconUrl?: string | undefined;
|
|
14705
14705
|
};
|
|
14706
14706
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -14811,9 +14811,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
14811
14811
|
type: "amount";
|
|
14812
14812
|
amount: string;
|
|
14813
14813
|
token: {
|
|
14814
|
-
name: string;
|
|
14815
14814
|
address: string;
|
|
14816
14815
|
type: string;
|
|
14816
|
+
name: string;
|
|
14817
14817
|
unknown: boolean;
|
|
14818
14818
|
symbol?: string | undefined;
|
|
14819
14819
|
decimals?: number | undefined;
|
|
@@ -14829,15 +14829,15 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
14829
14829
|
verified?: boolean | undefined;
|
|
14830
14830
|
addressName?: string | undefined;
|
|
14831
14831
|
} | {
|
|
14832
|
-
value: string;
|
|
14833
14832
|
type: "timestamp";
|
|
14833
|
+
value: string;
|
|
14834
14834
|
label: string;
|
|
14835
14835
|
} | {
|
|
14836
14836
|
type: "token_address";
|
|
14837
14837
|
token: {
|
|
14838
|
-
name: string;
|
|
14839
14838
|
address: string;
|
|
14840
14839
|
type: string;
|
|
14840
|
+
name: string;
|
|
14841
14841
|
unknown: boolean;
|
|
14842
14842
|
symbol?: string | undefined;
|
|
14843
14843
|
decimals?: number | undefined;
|
|
@@ -14860,9 +14860,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
14860
14860
|
} | {
|
|
14861
14861
|
type: "nft";
|
|
14862
14862
|
token: {
|
|
14863
|
-
name: string;
|
|
14864
14863
|
address: string;
|
|
14865
14864
|
type: string;
|
|
14865
|
+
name: string;
|
|
14866
14866
|
unknown: boolean;
|
|
14867
14867
|
symbol?: string | undefined;
|
|
14868
14868
|
decimals?: number | undefined;
|
|
@@ -14874,9 +14874,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
14874
14874
|
type: "amount";
|
|
14875
14875
|
amount: string;
|
|
14876
14876
|
token: {
|
|
14877
|
-
name: string;
|
|
14878
14877
|
address: string;
|
|
14879
14878
|
type: string;
|
|
14879
|
+
name: string;
|
|
14880
14880
|
unknown: boolean;
|
|
14881
14881
|
symbol?: string | undefined;
|
|
14882
14882
|
decimals?: number | undefined;
|
|
@@ -14892,15 +14892,15 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
14892
14892
|
verified?: boolean | undefined;
|
|
14893
14893
|
addressName?: string | undefined;
|
|
14894
14894
|
} | {
|
|
14895
|
-
value: string;
|
|
14896
14895
|
type: "timestamp";
|
|
14896
|
+
value: string;
|
|
14897
14897
|
label: string;
|
|
14898
14898
|
} | {
|
|
14899
14899
|
type: "token_address";
|
|
14900
14900
|
token: {
|
|
14901
|
-
name: string;
|
|
14902
14901
|
address: string;
|
|
14903
14902
|
type: string;
|
|
14903
|
+
name: string;
|
|
14904
14904
|
unknown: boolean;
|
|
14905
14905
|
symbol?: string | undefined;
|
|
14906
14906
|
decimals?: number | undefined;
|
|
@@ -14923,9 +14923,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
14923
14923
|
} | {
|
|
14924
14924
|
type: "nft";
|
|
14925
14925
|
token: {
|
|
14926
|
-
name: string;
|
|
14927
14926
|
address: string;
|
|
14928
14927
|
type: string;
|
|
14928
|
+
name: string;
|
|
14929
14929
|
unknown: boolean;
|
|
14930
14930
|
symbol?: string | undefined;
|
|
14931
14931
|
decimals?: number | undefined;
|
|
@@ -14947,8 +14947,8 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
14947
14947
|
totalPages: number;
|
|
14948
14948
|
page: number;
|
|
14949
14949
|
activities: {
|
|
14950
|
-
status: "pending" | "success" | "failure";
|
|
14951
14950
|
type: "staking" | "payment" | "approval" | "changePubKey" | "dappInteraction" | "deploy" | "gift" | "multicall" | "security" | "trade";
|
|
14951
|
+
status: "pending" | "success" | "failure";
|
|
14952
14952
|
network: string;
|
|
14953
14953
|
wallet: `0x${string}`;
|
|
14954
14954
|
id: string;
|
|
@@ -15031,8 +15031,8 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
15031
15031
|
} | {
|
|
15032
15032
|
type: "staking";
|
|
15033
15033
|
stakerInfo: {
|
|
15034
|
-
name?: string | undefined;
|
|
15035
15034
|
address?: string | undefined;
|
|
15035
|
+
name?: string | undefined;
|
|
15036
15036
|
iconUrl?: string | undefined;
|
|
15037
15037
|
};
|
|
15038
15038
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -15141,8 +15141,8 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
15141
15141
|
} | {
|
|
15142
15142
|
type: "staking";
|
|
15143
15143
|
stakerInfo: {
|
|
15144
|
-
name?: string | undefined;
|
|
15145
15144
|
address?: string | undefined;
|
|
15145
|
+
name?: string | undefined;
|
|
15146
15146
|
iconUrl?: string | undefined;
|
|
15147
15147
|
};
|
|
15148
15148
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -15253,9 +15253,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
15253
15253
|
type: "amount";
|
|
15254
15254
|
amount: string;
|
|
15255
15255
|
token: {
|
|
15256
|
-
name: string;
|
|
15257
15256
|
address: string;
|
|
15258
15257
|
type: string;
|
|
15258
|
+
name: string;
|
|
15259
15259
|
unknown: boolean;
|
|
15260
15260
|
symbol?: string | undefined;
|
|
15261
15261
|
decimals?: number | undefined;
|
|
@@ -15271,15 +15271,15 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
15271
15271
|
verified?: boolean | undefined;
|
|
15272
15272
|
addressName?: string | undefined;
|
|
15273
15273
|
} | {
|
|
15274
|
-
value: string;
|
|
15275
15274
|
type: "timestamp";
|
|
15275
|
+
value: string;
|
|
15276
15276
|
label: string;
|
|
15277
15277
|
} | {
|
|
15278
15278
|
type: "token_address";
|
|
15279
15279
|
token: {
|
|
15280
|
-
name: string;
|
|
15281
15280
|
address: string;
|
|
15282
15281
|
type: string;
|
|
15282
|
+
name: string;
|
|
15283
15283
|
unknown: boolean;
|
|
15284
15284
|
symbol?: string | undefined;
|
|
15285
15285
|
decimals?: number | undefined;
|
|
@@ -15302,9 +15302,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
15302
15302
|
} | {
|
|
15303
15303
|
type: "nft";
|
|
15304
15304
|
token: {
|
|
15305
|
-
name: string;
|
|
15306
15305
|
address: string;
|
|
15307
15306
|
type: string;
|
|
15307
|
+
name: string;
|
|
15308
15308
|
unknown: boolean;
|
|
15309
15309
|
symbol?: string | undefined;
|
|
15310
15310
|
decimals?: number | undefined;
|
|
@@ -15316,9 +15316,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
15316
15316
|
type: "amount";
|
|
15317
15317
|
amount: string;
|
|
15318
15318
|
token: {
|
|
15319
|
-
name: string;
|
|
15320
15319
|
address: string;
|
|
15321
15320
|
type: string;
|
|
15321
|
+
name: string;
|
|
15322
15322
|
unknown: boolean;
|
|
15323
15323
|
symbol?: string | undefined;
|
|
15324
15324
|
decimals?: number | undefined;
|
|
@@ -15334,15 +15334,15 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
15334
15334
|
verified?: boolean | undefined;
|
|
15335
15335
|
addressName?: string | undefined;
|
|
15336
15336
|
} | {
|
|
15337
|
-
value: string;
|
|
15338
15337
|
type: "timestamp";
|
|
15338
|
+
value: string;
|
|
15339
15339
|
label: string;
|
|
15340
15340
|
} | {
|
|
15341
15341
|
type: "token_address";
|
|
15342
15342
|
token: {
|
|
15343
|
-
name: string;
|
|
15344
15343
|
address: string;
|
|
15345
15344
|
type: string;
|
|
15345
|
+
name: string;
|
|
15346
15346
|
unknown: boolean;
|
|
15347
15347
|
symbol?: string | undefined;
|
|
15348
15348
|
decimals?: number | undefined;
|
|
@@ -15365,9 +15365,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
15365
15365
|
} | {
|
|
15366
15366
|
type: "nft";
|
|
15367
15367
|
token: {
|
|
15368
|
-
name: string;
|
|
15369
15368
|
address: string;
|
|
15370
15369
|
type: string;
|
|
15370
|
+
name: string;
|
|
15371
15371
|
unknown: boolean;
|
|
15372
15372
|
symbol?: string | undefined;
|
|
15373
15373
|
decimals?: number | undefined;
|
|
@@ -15387,8 +15387,8 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
15387
15387
|
totalPages: number;
|
|
15388
15388
|
page: number;
|
|
15389
15389
|
activities: {
|
|
15390
|
-
status: "pending" | "success" | "failure";
|
|
15391
15390
|
type: "staking" | "payment" | "approval" | "changePubKey" | "dappInteraction" | "deploy" | "gift" | "multicall" | "security" | "trade";
|
|
15391
|
+
status: "pending" | "success" | "failure";
|
|
15392
15392
|
network: string;
|
|
15393
15393
|
wallet: string;
|
|
15394
15394
|
id: string;
|
|
@@ -15471,8 +15471,8 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
15471
15471
|
} | {
|
|
15472
15472
|
type: "staking";
|
|
15473
15473
|
stakerInfo: {
|
|
15474
|
-
name?: string | undefined;
|
|
15475
15474
|
address?: string | undefined;
|
|
15475
|
+
name?: string | undefined;
|
|
15476
15476
|
iconUrl?: string | undefined;
|
|
15477
15477
|
};
|
|
15478
15478
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -15581,8 +15581,8 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
15581
15581
|
} | {
|
|
15582
15582
|
type: "staking";
|
|
15583
15583
|
stakerInfo: {
|
|
15584
|
-
name?: string | undefined;
|
|
15585
15584
|
address?: string | undefined;
|
|
15585
|
+
name?: string | undefined;
|
|
15586
15586
|
iconUrl?: string | undefined;
|
|
15587
15587
|
};
|
|
15588
15588
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -15693,9 +15693,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
15693
15693
|
type: "amount";
|
|
15694
15694
|
amount: string;
|
|
15695
15695
|
token: {
|
|
15696
|
-
name: string;
|
|
15697
15696
|
address: string;
|
|
15698
15697
|
type: string;
|
|
15698
|
+
name: string;
|
|
15699
15699
|
unknown: boolean;
|
|
15700
15700
|
symbol?: string | undefined;
|
|
15701
15701
|
decimals?: number | undefined;
|
|
@@ -15711,15 +15711,15 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
15711
15711
|
verified?: boolean | undefined;
|
|
15712
15712
|
addressName?: string | undefined;
|
|
15713
15713
|
} | {
|
|
15714
|
-
value: string;
|
|
15715
15714
|
type: "timestamp";
|
|
15715
|
+
value: string;
|
|
15716
15716
|
label: string;
|
|
15717
15717
|
} | {
|
|
15718
15718
|
type: "token_address";
|
|
15719
15719
|
token: {
|
|
15720
|
-
name: string;
|
|
15721
15720
|
address: string;
|
|
15722
15721
|
type: string;
|
|
15722
|
+
name: string;
|
|
15723
15723
|
unknown: boolean;
|
|
15724
15724
|
symbol?: string | undefined;
|
|
15725
15725
|
decimals?: number | undefined;
|
|
@@ -15742,9 +15742,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
15742
15742
|
} | {
|
|
15743
15743
|
type: "nft";
|
|
15744
15744
|
token: {
|
|
15745
|
-
name: string;
|
|
15746
15745
|
address: string;
|
|
15747
15746
|
type: string;
|
|
15747
|
+
name: string;
|
|
15748
15748
|
unknown: boolean;
|
|
15749
15749
|
symbol?: string | undefined;
|
|
15750
15750
|
decimals?: number | undefined;
|
|
@@ -15756,9 +15756,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
15756
15756
|
type: "amount";
|
|
15757
15757
|
amount: string;
|
|
15758
15758
|
token: {
|
|
15759
|
-
name: string;
|
|
15760
15759
|
address: string;
|
|
15761
15760
|
type: string;
|
|
15761
|
+
name: string;
|
|
15762
15762
|
unknown: boolean;
|
|
15763
15763
|
symbol?: string | undefined;
|
|
15764
15764
|
decimals?: number | undefined;
|
|
@@ -15774,15 +15774,15 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
15774
15774
|
verified?: boolean | undefined;
|
|
15775
15775
|
addressName?: string | undefined;
|
|
15776
15776
|
} | {
|
|
15777
|
-
value: string;
|
|
15778
15777
|
type: "timestamp";
|
|
15778
|
+
value: string;
|
|
15779
15779
|
label: string;
|
|
15780
15780
|
} | {
|
|
15781
15781
|
type: "token_address";
|
|
15782
15782
|
token: {
|
|
15783
|
-
name: string;
|
|
15784
15783
|
address: string;
|
|
15785
15784
|
type: string;
|
|
15785
|
+
name: string;
|
|
15786
15786
|
unknown: boolean;
|
|
15787
15787
|
symbol?: string | undefined;
|
|
15788
15788
|
decimals?: number | undefined;
|
|
@@ -15805,9 +15805,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
15805
15805
|
} | {
|
|
15806
15806
|
type: "nft";
|
|
15807
15807
|
token: {
|
|
15808
|
-
name: string;
|
|
15809
15808
|
address: string;
|
|
15810
15809
|
type: string;
|
|
15810
|
+
name: string;
|
|
15811
15811
|
unknown: boolean;
|
|
15812
15812
|
symbol?: string | undefined;
|
|
15813
15813
|
decimals?: number | undefined;
|