@argent/x-shared 1.62.12 → 1.64.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.cjs +1 -1
- package/dist/src/features/simulation/activity/schema.d.ts +368 -356
- package/dist/src/features/simulation/activity/schema.js +20 -19
- package/dist/src/features/simulation/activity/utils/createNativeActivity.d.ts +8 -8
- package/dist/src/features/simulation/transactionReview/schema.d.ts +1484 -1484
- 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;
|
|
@@ -4195,9 +4195,10 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
4195
4195
|
}, {
|
|
4196
4196
|
signers: string[];
|
|
4197
4197
|
}>>;
|
|
4198
|
+
isLootboxReward: z.ZodOptional<z.ZodBoolean>;
|
|
4198
4199
|
}, "strip", z.ZodTypeAny, {
|
|
4199
|
-
status: "pending" | "success" | "failure";
|
|
4200
4200
|
type: "staking" | "payment" | "approval" | "changePubKey" | "dappInteraction" | "deploy" | "gift" | "multicall" | "security" | "trade";
|
|
4201
|
+
status: "pending" | "success" | "failure";
|
|
4201
4202
|
network: string;
|
|
4202
4203
|
wallet: `0x${string}`;
|
|
4203
4204
|
id: string;
|
|
@@ -4280,8 +4281,8 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
4280
4281
|
} | {
|
|
4281
4282
|
type: "staking";
|
|
4282
4283
|
stakerInfo: {
|
|
4283
|
-
name?: string | undefined;
|
|
4284
4284
|
address?: string | undefined;
|
|
4285
|
+
name?: string | undefined;
|
|
4285
4286
|
iconUrl?: string | undefined;
|
|
4286
4287
|
};
|
|
4287
4288
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -4390,8 +4391,8 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
4390
4391
|
} | {
|
|
4391
4392
|
type: "staking";
|
|
4392
4393
|
stakerInfo: {
|
|
4393
|
-
name?: string | undefined;
|
|
4394
4394
|
address?: string | undefined;
|
|
4395
|
+
name?: string | undefined;
|
|
4395
4396
|
iconUrl?: string | undefined;
|
|
4396
4397
|
};
|
|
4397
4398
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -4502,9 +4503,9 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
4502
4503
|
type: "amount";
|
|
4503
4504
|
amount: string;
|
|
4504
4505
|
token: {
|
|
4505
|
-
name: string;
|
|
4506
4506
|
address: string;
|
|
4507
4507
|
type: string;
|
|
4508
|
+
name: string;
|
|
4508
4509
|
unknown: boolean;
|
|
4509
4510
|
symbol?: string | undefined;
|
|
4510
4511
|
decimals?: number | undefined;
|
|
@@ -4520,15 +4521,15 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
4520
4521
|
verified?: boolean | undefined;
|
|
4521
4522
|
addressName?: string | undefined;
|
|
4522
4523
|
} | {
|
|
4523
|
-
value: string;
|
|
4524
4524
|
type: "timestamp";
|
|
4525
|
+
value: string;
|
|
4525
4526
|
label: string;
|
|
4526
4527
|
} | {
|
|
4527
4528
|
type: "token_address";
|
|
4528
4529
|
token: {
|
|
4529
|
-
name: string;
|
|
4530
4530
|
address: string;
|
|
4531
4531
|
type: string;
|
|
4532
|
+
name: string;
|
|
4532
4533
|
unknown: boolean;
|
|
4533
4534
|
symbol?: string | undefined;
|
|
4534
4535
|
decimals?: number | undefined;
|
|
@@ -4551,9 +4552,9 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
4551
4552
|
} | {
|
|
4552
4553
|
type: "nft";
|
|
4553
4554
|
token: {
|
|
4554
|
-
name: string;
|
|
4555
4555
|
address: string;
|
|
4556
4556
|
type: string;
|
|
4557
|
+
name: string;
|
|
4557
4558
|
unknown: boolean;
|
|
4558
4559
|
symbol?: string | undefined;
|
|
4559
4560
|
decimals?: number | undefined;
|
|
@@ -4565,9 +4566,9 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
4565
4566
|
type: "amount";
|
|
4566
4567
|
amount: string;
|
|
4567
4568
|
token: {
|
|
4568
|
-
name: string;
|
|
4569
4569
|
address: string;
|
|
4570
4570
|
type: string;
|
|
4571
|
+
name: string;
|
|
4571
4572
|
unknown: boolean;
|
|
4572
4573
|
symbol?: string | undefined;
|
|
4573
4574
|
decimals?: number | undefined;
|
|
@@ -4583,15 +4584,15 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
4583
4584
|
verified?: boolean | undefined;
|
|
4584
4585
|
addressName?: string | undefined;
|
|
4585
4586
|
} | {
|
|
4586
|
-
value: string;
|
|
4587
4587
|
type: "timestamp";
|
|
4588
|
+
value: string;
|
|
4588
4589
|
label: string;
|
|
4589
4590
|
} | {
|
|
4590
4591
|
type: "token_address";
|
|
4591
4592
|
token: {
|
|
4592
|
-
name: string;
|
|
4593
4593
|
address: string;
|
|
4594
4594
|
type: string;
|
|
4595
|
+
name: string;
|
|
4595
4596
|
unknown: boolean;
|
|
4596
4597
|
symbol?: string | undefined;
|
|
4597
4598
|
decimals?: number | undefined;
|
|
@@ -4614,9 +4615,9 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
4614
4615
|
} | {
|
|
4615
4616
|
type: "nft";
|
|
4616
4617
|
token: {
|
|
4617
|
-
name: string;
|
|
4618
4618
|
address: string;
|
|
4619
4619
|
type: string;
|
|
4620
|
+
name: string;
|
|
4620
4621
|
unknown: boolean;
|
|
4621
4622
|
symbol?: string | undefined;
|
|
4622
4623
|
decimals?: number | undefined;
|
|
@@ -4629,9 +4630,10 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
4629
4630
|
multisigDetails?: {
|
|
4630
4631
|
signers: `0x${string}`[];
|
|
4631
4632
|
} | undefined;
|
|
4633
|
+
isLootboxReward?: boolean | undefined;
|
|
4632
4634
|
}, {
|
|
4633
|
-
status: "pending" | "success" | "failure";
|
|
4634
4635
|
type: "staking" | "payment" | "approval" | "changePubKey" | "dappInteraction" | "deploy" | "gift" | "multicall" | "security" | "trade";
|
|
4636
|
+
status: "pending" | "success" | "failure";
|
|
4635
4637
|
network: string;
|
|
4636
4638
|
wallet: string;
|
|
4637
4639
|
id: string;
|
|
@@ -4714,8 +4716,8 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
4714
4716
|
} | {
|
|
4715
4717
|
type: "staking";
|
|
4716
4718
|
stakerInfo: {
|
|
4717
|
-
name?: string | undefined;
|
|
4718
4719
|
address?: string | undefined;
|
|
4720
|
+
name?: string | undefined;
|
|
4719
4721
|
iconUrl?: string | undefined;
|
|
4720
4722
|
};
|
|
4721
4723
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -4824,8 +4826,8 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
4824
4826
|
} | {
|
|
4825
4827
|
type: "staking";
|
|
4826
4828
|
stakerInfo: {
|
|
4827
|
-
name?: string | undefined;
|
|
4828
4829
|
address?: string | undefined;
|
|
4830
|
+
name?: string | undefined;
|
|
4829
4831
|
iconUrl?: string | undefined;
|
|
4830
4832
|
};
|
|
4831
4833
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -4936,9 +4938,9 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
4936
4938
|
type: "amount";
|
|
4937
4939
|
amount: string;
|
|
4938
4940
|
token: {
|
|
4939
|
-
name: string;
|
|
4940
4941
|
address: string;
|
|
4941
4942
|
type: string;
|
|
4943
|
+
name: string;
|
|
4942
4944
|
unknown: boolean;
|
|
4943
4945
|
symbol?: string | undefined;
|
|
4944
4946
|
decimals?: number | undefined;
|
|
@@ -4954,15 +4956,15 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
4954
4956
|
verified?: boolean | undefined;
|
|
4955
4957
|
addressName?: string | undefined;
|
|
4956
4958
|
} | {
|
|
4957
|
-
value: string;
|
|
4958
4959
|
type: "timestamp";
|
|
4960
|
+
value: string;
|
|
4959
4961
|
label: string;
|
|
4960
4962
|
} | {
|
|
4961
4963
|
type: "token_address";
|
|
4962
4964
|
token: {
|
|
4963
|
-
name: string;
|
|
4964
4965
|
address: string;
|
|
4965
4966
|
type: string;
|
|
4967
|
+
name: string;
|
|
4966
4968
|
unknown: boolean;
|
|
4967
4969
|
symbol?: string | undefined;
|
|
4968
4970
|
decimals?: number | undefined;
|
|
@@ -4985,9 +4987,9 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
4985
4987
|
} | {
|
|
4986
4988
|
type: "nft";
|
|
4987
4989
|
token: {
|
|
4988
|
-
name: string;
|
|
4989
4990
|
address: string;
|
|
4990
4991
|
type: string;
|
|
4992
|
+
name: string;
|
|
4991
4993
|
unknown: boolean;
|
|
4992
4994
|
symbol?: string | undefined;
|
|
4993
4995
|
decimals?: number | undefined;
|
|
@@ -4999,9 +5001,9 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
4999
5001
|
type: "amount";
|
|
5000
5002
|
amount: string;
|
|
5001
5003
|
token: {
|
|
5002
|
-
name: string;
|
|
5003
5004
|
address: string;
|
|
5004
5005
|
type: string;
|
|
5006
|
+
name: string;
|
|
5005
5007
|
unknown: boolean;
|
|
5006
5008
|
symbol?: string | undefined;
|
|
5007
5009
|
decimals?: number | undefined;
|
|
@@ -5017,15 +5019,15 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
5017
5019
|
verified?: boolean | undefined;
|
|
5018
5020
|
addressName?: string | undefined;
|
|
5019
5021
|
} | {
|
|
5020
|
-
value: string;
|
|
5021
5022
|
type: "timestamp";
|
|
5023
|
+
value: string;
|
|
5022
5024
|
label: string;
|
|
5023
5025
|
} | {
|
|
5024
5026
|
type: "token_address";
|
|
5025
5027
|
token: {
|
|
5026
|
-
name: string;
|
|
5027
5028
|
address: string;
|
|
5028
5029
|
type: string;
|
|
5030
|
+
name: string;
|
|
5029
5031
|
unknown: boolean;
|
|
5030
5032
|
symbol?: string | undefined;
|
|
5031
5033
|
decimals?: number | undefined;
|
|
@@ -5048,9 +5050,9 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
5048
5050
|
} | {
|
|
5049
5051
|
type: "nft";
|
|
5050
5052
|
token: {
|
|
5051
|
-
name: string;
|
|
5052
5053
|
address: string;
|
|
5053
5054
|
type: string;
|
|
5055
|
+
name: string;
|
|
5054
5056
|
unknown: boolean;
|
|
5055
5057
|
symbol?: string | undefined;
|
|
5056
5058
|
decimals?: number | undefined;
|
|
@@ -5063,6 +5065,7 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
5063
5065
|
multisigDetails?: {
|
|
5064
5066
|
signers: string[];
|
|
5065
5067
|
} | undefined;
|
|
5068
|
+
isLootboxReward?: boolean | undefined;
|
|
5066
5069
|
}>;
|
|
5067
5070
|
export type Activity = z.infer<typeof activitySchema>;
|
|
5068
5071
|
/** 'native' is an activity originating within individual product, e.g. not created by dapp */
|
|
@@ -5082,12 +5085,12 @@ export declare const nativeActivityMetaSchema: z.ZodObject<{
|
|
|
5082
5085
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
5083
5086
|
address: z.ZodOptional<z.ZodString>;
|
|
5084
5087
|
}, "strip", z.ZodTypeAny, {
|
|
5085
|
-
name?: string | undefined;
|
|
5086
5088
|
address?: string | undefined;
|
|
5089
|
+
name?: string | undefined;
|
|
5087
5090
|
iconUrl?: string | undefined;
|
|
5088
5091
|
}, {
|
|
5089
|
-
name?: string | undefined;
|
|
5090
5092
|
address?: string | undefined;
|
|
5093
|
+
name?: string | undefined;
|
|
5091
5094
|
iconUrl?: string | undefined;
|
|
5092
5095
|
}>;
|
|
5093
5096
|
tokenAddress: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -5096,8 +5099,8 @@ export declare const nativeActivityMetaSchema: z.ZodObject<{
|
|
|
5096
5099
|
amount: string;
|
|
5097
5100
|
tokenAddress: `0x${string}`;
|
|
5098
5101
|
stakerInfo: {
|
|
5099
|
-
name?: string | undefined;
|
|
5100
5102
|
address?: string | undefined;
|
|
5103
|
+
name?: string | undefined;
|
|
5101
5104
|
iconUrl?: string | undefined;
|
|
5102
5105
|
};
|
|
5103
5106
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -5108,8 +5111,8 @@ export declare const nativeActivityMetaSchema: z.ZodObject<{
|
|
|
5108
5111
|
amount: string;
|
|
5109
5112
|
tokenAddress: string;
|
|
5110
5113
|
stakerInfo: {
|
|
5111
|
-
name?: string | undefined;
|
|
5112
5114
|
address?: string | undefined;
|
|
5115
|
+
name?: string | undefined;
|
|
5113
5116
|
iconUrl?: string | undefined;
|
|
5114
5117
|
};
|
|
5115
5118
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -5127,8 +5130,8 @@ export declare const nativeActivityMetaSchema: z.ZodObject<{
|
|
|
5127
5130
|
amount: string;
|
|
5128
5131
|
tokenAddress: `0x${string}`;
|
|
5129
5132
|
stakerInfo: {
|
|
5130
|
-
name?: string | undefined;
|
|
5131
5133
|
address?: string | undefined;
|
|
5134
|
+
name?: string | undefined;
|
|
5132
5135
|
iconUrl?: string | undefined;
|
|
5133
5136
|
};
|
|
5134
5137
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -5146,8 +5149,8 @@ export declare const nativeActivityMetaSchema: z.ZodObject<{
|
|
|
5146
5149
|
amount: string;
|
|
5147
5150
|
tokenAddress: string;
|
|
5148
5151
|
stakerInfo: {
|
|
5149
|
-
name?: string | undefined;
|
|
5150
5152
|
address?: string | undefined;
|
|
5153
|
+
name?: string | undefined;
|
|
5151
5154
|
iconUrl?: string | undefined;
|
|
5152
5155
|
};
|
|
5153
5156
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -5741,19 +5744,19 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
5741
5744
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
5742
5745
|
address: z.ZodOptional<z.ZodString>;
|
|
5743
5746
|
}, "strip", z.ZodTypeAny, {
|
|
5744
|
-
name?: string | undefined;
|
|
5745
5747
|
address?: string | undefined;
|
|
5748
|
+
name?: string | undefined;
|
|
5746
5749
|
iconUrl?: string | undefined;
|
|
5747
5750
|
}, {
|
|
5748
|
-
name?: string | undefined;
|
|
5749
5751
|
address?: string | undefined;
|
|
5752
|
+
name?: string | undefined;
|
|
5750
5753
|
iconUrl?: string | undefined;
|
|
5751
5754
|
}>;
|
|
5752
5755
|
}, "strip", z.ZodTypeAny, {
|
|
5753
5756
|
type: "staking";
|
|
5754
5757
|
stakerInfo: {
|
|
5755
|
-
name?: string | undefined;
|
|
5756
5758
|
address?: string | undefined;
|
|
5759
|
+
name?: string | undefined;
|
|
5757
5760
|
iconUrl?: string | undefined;
|
|
5758
5761
|
};
|
|
5759
5762
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -5770,8 +5773,8 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
5770
5773
|
}, {
|
|
5771
5774
|
type: "staking";
|
|
5772
5775
|
stakerInfo: {
|
|
5773
|
-
name?: string | undefined;
|
|
5774
5776
|
address?: string | undefined;
|
|
5777
|
+
name?: string | undefined;
|
|
5775
5778
|
iconUrl?: string | undefined;
|
|
5776
5779
|
};
|
|
5777
5780
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -6253,19 +6256,19 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6253
6256
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
6254
6257
|
address: z.ZodOptional<z.ZodString>;
|
|
6255
6258
|
}, "strip", z.ZodTypeAny, {
|
|
6256
|
-
name?: string | undefined;
|
|
6257
6259
|
address?: string | undefined;
|
|
6260
|
+
name?: string | undefined;
|
|
6258
6261
|
iconUrl?: string | undefined;
|
|
6259
6262
|
}, {
|
|
6260
|
-
name?: string | undefined;
|
|
6261
6263
|
address?: string | undefined;
|
|
6264
|
+
name?: string | undefined;
|
|
6262
6265
|
iconUrl?: string | undefined;
|
|
6263
6266
|
}>;
|
|
6264
6267
|
}, "strip", z.ZodTypeAny, {
|
|
6265
6268
|
type: "staking";
|
|
6266
6269
|
stakerInfo: {
|
|
6267
|
-
name?: string | undefined;
|
|
6268
6270
|
address?: string | undefined;
|
|
6271
|
+
name?: string | undefined;
|
|
6269
6272
|
iconUrl?: string | undefined;
|
|
6270
6273
|
};
|
|
6271
6274
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -6282,8 +6285,8 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6282
6285
|
}, {
|
|
6283
6286
|
type: "staking";
|
|
6284
6287
|
stakerInfo: {
|
|
6285
|
-
name?: string | undefined;
|
|
6286
6288
|
address?: string | undefined;
|
|
6289
|
+
name?: string | undefined;
|
|
6287
6290
|
iconUrl?: string | undefined;
|
|
6288
6291
|
};
|
|
6289
6292
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -6441,8 +6444,8 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6441
6444
|
} | {
|
|
6442
6445
|
type: "staking";
|
|
6443
6446
|
stakerInfo: {
|
|
6444
|
-
name?: string | undefined;
|
|
6445
6447
|
address?: string | undefined;
|
|
6448
|
+
name?: string | undefined;
|
|
6446
6449
|
iconUrl?: string | undefined;
|
|
6447
6450
|
};
|
|
6448
6451
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -6550,8 +6553,8 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6550
6553
|
} | {
|
|
6551
6554
|
type: "staking";
|
|
6552
6555
|
stakerInfo: {
|
|
6553
|
-
name?: string | undefined;
|
|
6554
6556
|
address?: string | undefined;
|
|
6557
|
+
name?: string | undefined;
|
|
6555
6558
|
iconUrl?: string | undefined;
|
|
6556
6559
|
};
|
|
6557
6560
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -6662,8 +6665,8 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6662
6665
|
} | {
|
|
6663
6666
|
type: "staking";
|
|
6664
6667
|
stakerInfo: {
|
|
6665
|
-
name?: string | undefined;
|
|
6666
6668
|
address?: string | undefined;
|
|
6669
|
+
name?: string | undefined;
|
|
6667
6670
|
iconUrl?: string | undefined;
|
|
6668
6671
|
};
|
|
6669
6672
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -6774,8 +6777,8 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6774
6777
|
} | {
|
|
6775
6778
|
type: "staking";
|
|
6776
6779
|
stakerInfo: {
|
|
6777
|
-
name?: string | undefined;
|
|
6778
6780
|
address?: string | undefined;
|
|
6781
|
+
name?: string | undefined;
|
|
6779
6782
|
iconUrl?: string | undefined;
|
|
6780
6783
|
};
|
|
6781
6784
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -6931,17 +6934,17 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6931
6934
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
6932
6935
|
type: z.ZodString;
|
|
6933
6936
|
}, "strip", z.ZodTypeAny, {
|
|
6934
|
-
name: string;
|
|
6935
6937
|
address: string;
|
|
6936
6938
|
type: string;
|
|
6939
|
+
name: string;
|
|
6937
6940
|
unknown: boolean;
|
|
6938
6941
|
symbol?: string | undefined;
|
|
6939
6942
|
decimals?: number | undefined;
|
|
6940
6943
|
iconUrl?: string | undefined;
|
|
6941
6944
|
}, {
|
|
6942
|
-
name: string;
|
|
6943
6945
|
address: string;
|
|
6944
6946
|
type: string;
|
|
6947
|
+
name: string;
|
|
6945
6948
|
unknown: boolean;
|
|
6946
6949
|
symbol?: string | undefined;
|
|
6947
6950
|
decimals?: number | undefined;
|
|
@@ -6954,9 +6957,9 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6954
6957
|
type: "amount";
|
|
6955
6958
|
amount: string;
|
|
6956
6959
|
token: {
|
|
6957
|
-
name: string;
|
|
6958
6960
|
address: string;
|
|
6959
6961
|
type: string;
|
|
6962
|
+
name: string;
|
|
6960
6963
|
unknown: boolean;
|
|
6961
6964
|
symbol?: string | undefined;
|
|
6962
6965
|
decimals?: number | undefined;
|
|
@@ -6969,9 +6972,9 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6969
6972
|
type: "amount";
|
|
6970
6973
|
amount: string;
|
|
6971
6974
|
token: {
|
|
6972
|
-
name: string;
|
|
6973
6975
|
address: string;
|
|
6974
6976
|
type: string;
|
|
6977
|
+
name: string;
|
|
6975
6978
|
unknown: boolean;
|
|
6976
6979
|
symbol?: string | undefined;
|
|
6977
6980
|
decimals?: number | undefined;
|
|
@@ -7003,12 +7006,12 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7003
7006
|
label: z.ZodString;
|
|
7004
7007
|
value: z.ZodString;
|
|
7005
7008
|
}, "strip", z.ZodTypeAny, {
|
|
7006
|
-
value: string;
|
|
7007
7009
|
type: "timestamp";
|
|
7010
|
+
value: string;
|
|
7008
7011
|
label: string;
|
|
7009
7012
|
}, {
|
|
7010
|
-
value: string;
|
|
7011
7013
|
type: "timestamp";
|
|
7014
|
+
value: string;
|
|
7012
7015
|
label: string;
|
|
7013
7016
|
}>, z.ZodObject<{
|
|
7014
7017
|
type: z.ZodLiteral<"token_address">;
|
|
@@ -7022,17 +7025,17 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7022
7025
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
7023
7026
|
type: z.ZodString;
|
|
7024
7027
|
}, "strip", z.ZodTypeAny, {
|
|
7025
|
-
name: string;
|
|
7026
7028
|
address: string;
|
|
7027
7029
|
type: string;
|
|
7030
|
+
name: string;
|
|
7028
7031
|
unknown: boolean;
|
|
7029
7032
|
symbol?: string | undefined;
|
|
7030
7033
|
decimals?: number | undefined;
|
|
7031
7034
|
iconUrl?: string | undefined;
|
|
7032
7035
|
}, {
|
|
7033
|
-
name: string;
|
|
7034
7036
|
address: string;
|
|
7035
7037
|
type: string;
|
|
7038
|
+
name: string;
|
|
7036
7039
|
unknown: boolean;
|
|
7037
7040
|
symbol?: string | undefined;
|
|
7038
7041
|
decimals?: number | undefined;
|
|
@@ -7041,9 +7044,9 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7041
7044
|
}, "strip", z.ZodTypeAny, {
|
|
7042
7045
|
type: "token_address";
|
|
7043
7046
|
token: {
|
|
7044
|
-
name: string;
|
|
7045
7047
|
address: string;
|
|
7046
7048
|
type: string;
|
|
7049
|
+
name: string;
|
|
7047
7050
|
unknown: boolean;
|
|
7048
7051
|
symbol?: string | undefined;
|
|
7049
7052
|
decimals?: number | undefined;
|
|
@@ -7053,9 +7056,9 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7053
7056
|
}, {
|
|
7054
7057
|
type: "token_address";
|
|
7055
7058
|
token: {
|
|
7056
|
-
name: string;
|
|
7057
7059
|
address: string;
|
|
7058
7060
|
type: string;
|
|
7061
|
+
name: string;
|
|
7059
7062
|
unknown: boolean;
|
|
7060
7063
|
symbol?: string | undefined;
|
|
7061
7064
|
decimals?: number | undefined;
|
|
@@ -7113,17 +7116,17 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7113
7116
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
7114
7117
|
type: z.ZodString;
|
|
7115
7118
|
}, "strip", z.ZodTypeAny, {
|
|
7116
|
-
name: string;
|
|
7117
7119
|
address: string;
|
|
7118
7120
|
type: string;
|
|
7121
|
+
name: string;
|
|
7119
7122
|
unknown: boolean;
|
|
7120
7123
|
symbol?: string | undefined;
|
|
7121
7124
|
decimals?: number | undefined;
|
|
7122
7125
|
iconUrl?: string | undefined;
|
|
7123
7126
|
}, {
|
|
7124
|
-
name: string;
|
|
7125
7127
|
address: string;
|
|
7126
7128
|
type: string;
|
|
7129
|
+
name: string;
|
|
7127
7130
|
unknown: boolean;
|
|
7128
7131
|
symbol?: string | undefined;
|
|
7129
7132
|
decimals?: number | undefined;
|
|
@@ -7132,9 +7135,9 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7132
7135
|
}, "strip", z.ZodTypeAny, {
|
|
7133
7136
|
type: "nft";
|
|
7134
7137
|
token: {
|
|
7135
|
-
name: string;
|
|
7136
7138
|
address: string;
|
|
7137
7139
|
type: string;
|
|
7140
|
+
name: string;
|
|
7138
7141
|
unknown: boolean;
|
|
7139
7142
|
symbol?: string | undefined;
|
|
7140
7143
|
decimals?: number | undefined;
|
|
@@ -7144,9 +7147,9 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7144
7147
|
}, {
|
|
7145
7148
|
type: "nft";
|
|
7146
7149
|
token: {
|
|
7147
|
-
name: string;
|
|
7148
7150
|
address: string;
|
|
7149
7151
|
type: string;
|
|
7152
|
+
name: string;
|
|
7150
7153
|
unknown: boolean;
|
|
7151
7154
|
symbol?: string | undefined;
|
|
7152
7155
|
decimals?: number | undefined;
|
|
@@ -7166,17 +7169,17 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7166
7169
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
7167
7170
|
type: z.ZodString;
|
|
7168
7171
|
}, "strip", z.ZodTypeAny, {
|
|
7169
|
-
name: string;
|
|
7170
7172
|
address: string;
|
|
7171
7173
|
type: string;
|
|
7174
|
+
name: string;
|
|
7172
7175
|
unknown: boolean;
|
|
7173
7176
|
symbol?: string | undefined;
|
|
7174
7177
|
decimals?: number | undefined;
|
|
7175
7178
|
iconUrl?: string | undefined;
|
|
7176
7179
|
}, {
|
|
7177
|
-
name: string;
|
|
7178
7180
|
address: string;
|
|
7179
7181
|
type: string;
|
|
7182
|
+
name: string;
|
|
7180
7183
|
unknown: boolean;
|
|
7181
7184
|
symbol?: string | undefined;
|
|
7182
7185
|
decimals?: number | undefined;
|
|
@@ -7189,9 +7192,9 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7189
7192
|
type: "amount";
|
|
7190
7193
|
amount: string;
|
|
7191
7194
|
token: {
|
|
7192
|
-
name: string;
|
|
7193
7195
|
address: string;
|
|
7194
7196
|
type: string;
|
|
7197
|
+
name: string;
|
|
7195
7198
|
unknown: boolean;
|
|
7196
7199
|
symbol?: string | undefined;
|
|
7197
7200
|
decimals?: number | undefined;
|
|
@@ -7204,9 +7207,9 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7204
7207
|
type: "amount";
|
|
7205
7208
|
amount: string;
|
|
7206
7209
|
token: {
|
|
7207
|
-
name: string;
|
|
7208
7210
|
address: string;
|
|
7209
7211
|
type: string;
|
|
7212
|
+
name: string;
|
|
7210
7213
|
unknown: boolean;
|
|
7211
7214
|
symbol?: string | undefined;
|
|
7212
7215
|
decimals?: number | undefined;
|
|
@@ -7238,12 +7241,12 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7238
7241
|
label: z.ZodString;
|
|
7239
7242
|
value: z.ZodString;
|
|
7240
7243
|
}, "strip", z.ZodTypeAny, {
|
|
7241
|
-
value: string;
|
|
7242
7244
|
type: "timestamp";
|
|
7245
|
+
value: string;
|
|
7243
7246
|
label: string;
|
|
7244
7247
|
}, {
|
|
7245
|
-
value: string;
|
|
7246
7248
|
type: "timestamp";
|
|
7249
|
+
value: string;
|
|
7247
7250
|
label: string;
|
|
7248
7251
|
}>, z.ZodObject<{
|
|
7249
7252
|
type: z.ZodLiteral<"token_address">;
|
|
@@ -7257,17 +7260,17 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7257
7260
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
7258
7261
|
type: z.ZodString;
|
|
7259
7262
|
}, "strip", z.ZodTypeAny, {
|
|
7260
|
-
name: string;
|
|
7261
7263
|
address: string;
|
|
7262
7264
|
type: string;
|
|
7265
|
+
name: string;
|
|
7263
7266
|
unknown: boolean;
|
|
7264
7267
|
symbol?: string | undefined;
|
|
7265
7268
|
decimals?: number | undefined;
|
|
7266
7269
|
iconUrl?: string | undefined;
|
|
7267
7270
|
}, {
|
|
7268
|
-
name: string;
|
|
7269
7271
|
address: string;
|
|
7270
7272
|
type: string;
|
|
7273
|
+
name: string;
|
|
7271
7274
|
unknown: boolean;
|
|
7272
7275
|
symbol?: string | undefined;
|
|
7273
7276
|
decimals?: number | undefined;
|
|
@@ -7276,9 +7279,9 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7276
7279
|
}, "strip", z.ZodTypeAny, {
|
|
7277
7280
|
type: "token_address";
|
|
7278
7281
|
token: {
|
|
7279
|
-
name: string;
|
|
7280
7282
|
address: string;
|
|
7281
7283
|
type: string;
|
|
7284
|
+
name: string;
|
|
7282
7285
|
unknown: boolean;
|
|
7283
7286
|
symbol?: string | undefined;
|
|
7284
7287
|
decimals?: number | undefined;
|
|
@@ -7288,9 +7291,9 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7288
7291
|
}, {
|
|
7289
7292
|
type: "token_address";
|
|
7290
7293
|
token: {
|
|
7291
|
-
name: string;
|
|
7292
7294
|
address: string;
|
|
7293
7295
|
type: string;
|
|
7296
|
+
name: string;
|
|
7294
7297
|
unknown: boolean;
|
|
7295
7298
|
symbol?: string | undefined;
|
|
7296
7299
|
decimals?: number | undefined;
|
|
@@ -7348,17 +7351,17 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7348
7351
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
7349
7352
|
type: z.ZodString;
|
|
7350
7353
|
}, "strip", z.ZodTypeAny, {
|
|
7351
|
-
name: string;
|
|
7352
7354
|
address: string;
|
|
7353
7355
|
type: string;
|
|
7356
|
+
name: string;
|
|
7354
7357
|
unknown: boolean;
|
|
7355
7358
|
symbol?: string | undefined;
|
|
7356
7359
|
decimals?: number | undefined;
|
|
7357
7360
|
iconUrl?: string | undefined;
|
|
7358
7361
|
}, {
|
|
7359
|
-
name: string;
|
|
7360
7362
|
address: string;
|
|
7361
7363
|
type: string;
|
|
7364
|
+
name: string;
|
|
7362
7365
|
unknown: boolean;
|
|
7363
7366
|
symbol?: string | undefined;
|
|
7364
7367
|
decimals?: number | undefined;
|
|
@@ -7367,9 +7370,9 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7367
7370
|
}, "strip", z.ZodTypeAny, {
|
|
7368
7371
|
type: "nft";
|
|
7369
7372
|
token: {
|
|
7370
|
-
name: string;
|
|
7371
7373
|
address: string;
|
|
7372
7374
|
type: string;
|
|
7375
|
+
name: string;
|
|
7373
7376
|
unknown: boolean;
|
|
7374
7377
|
symbol?: string | undefined;
|
|
7375
7378
|
decimals?: number | undefined;
|
|
@@ -7379,9 +7382,9 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7379
7382
|
}, {
|
|
7380
7383
|
type: "nft";
|
|
7381
7384
|
token: {
|
|
7382
|
-
name: string;
|
|
7383
7385
|
address: string;
|
|
7384
7386
|
type: string;
|
|
7387
|
+
name: string;
|
|
7385
7388
|
unknown: boolean;
|
|
7386
7389
|
symbol?: string | undefined;
|
|
7387
7390
|
decimals?: number | undefined;
|
|
@@ -7395,9 +7398,9 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7395
7398
|
type: "amount";
|
|
7396
7399
|
amount: string;
|
|
7397
7400
|
token: {
|
|
7398
|
-
name: string;
|
|
7399
7401
|
address: string;
|
|
7400
7402
|
type: string;
|
|
7403
|
+
name: string;
|
|
7401
7404
|
unknown: boolean;
|
|
7402
7405
|
symbol?: string | undefined;
|
|
7403
7406
|
decimals?: number | undefined;
|
|
@@ -7413,15 +7416,15 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7413
7416
|
verified?: boolean | undefined;
|
|
7414
7417
|
addressName?: string | undefined;
|
|
7415
7418
|
} | {
|
|
7416
|
-
value: string;
|
|
7417
7419
|
type: "timestamp";
|
|
7420
|
+
value: string;
|
|
7418
7421
|
label: string;
|
|
7419
7422
|
} | {
|
|
7420
7423
|
type: "token_address";
|
|
7421
7424
|
token: {
|
|
7422
|
-
name: string;
|
|
7423
7425
|
address: string;
|
|
7424
7426
|
type: string;
|
|
7427
|
+
name: string;
|
|
7425
7428
|
unknown: boolean;
|
|
7426
7429
|
symbol?: string | undefined;
|
|
7427
7430
|
decimals?: number | undefined;
|
|
@@ -7444,9 +7447,9 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7444
7447
|
} | {
|
|
7445
7448
|
type: "nft";
|
|
7446
7449
|
token: {
|
|
7447
|
-
name: string;
|
|
7448
7450
|
address: string;
|
|
7449
7451
|
type: string;
|
|
7452
|
+
name: string;
|
|
7450
7453
|
unknown: boolean;
|
|
7451
7454
|
symbol?: string | undefined;
|
|
7452
7455
|
decimals?: number | undefined;
|
|
@@ -7458,9 +7461,9 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7458
7461
|
type: "amount";
|
|
7459
7462
|
amount: string;
|
|
7460
7463
|
token: {
|
|
7461
|
-
name: string;
|
|
7462
7464
|
address: string;
|
|
7463
7465
|
type: string;
|
|
7466
|
+
name: string;
|
|
7464
7467
|
unknown: boolean;
|
|
7465
7468
|
symbol?: string | undefined;
|
|
7466
7469
|
decimals?: number | undefined;
|
|
@@ -7476,15 +7479,15 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7476
7479
|
verified?: boolean | undefined;
|
|
7477
7480
|
addressName?: string | undefined;
|
|
7478
7481
|
} | {
|
|
7479
|
-
value: string;
|
|
7480
7482
|
type: "timestamp";
|
|
7483
|
+
value: string;
|
|
7481
7484
|
label: string;
|
|
7482
7485
|
} | {
|
|
7483
7486
|
type: "token_address";
|
|
7484
7487
|
token: {
|
|
7485
|
-
name: string;
|
|
7486
7488
|
address: string;
|
|
7487
7489
|
type: string;
|
|
7490
|
+
name: string;
|
|
7488
7491
|
unknown: boolean;
|
|
7489
7492
|
symbol?: string | undefined;
|
|
7490
7493
|
decimals?: number | undefined;
|
|
@@ -7507,9 +7510,9 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7507
7510
|
} | {
|
|
7508
7511
|
type: "nft";
|
|
7509
7512
|
token: {
|
|
7510
|
-
name: string;
|
|
7511
7513
|
address: string;
|
|
7512
7514
|
type: string;
|
|
7515
|
+
name: string;
|
|
7513
7516
|
unknown: boolean;
|
|
7514
7517
|
symbol?: string | undefined;
|
|
7515
7518
|
decimals?: number | undefined;
|
|
@@ -7523,9 +7526,9 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7523
7526
|
type: "amount";
|
|
7524
7527
|
amount: string;
|
|
7525
7528
|
token: {
|
|
7526
|
-
name: string;
|
|
7527
7529
|
address: string;
|
|
7528
7530
|
type: string;
|
|
7531
|
+
name: string;
|
|
7529
7532
|
unknown: boolean;
|
|
7530
7533
|
symbol?: string | undefined;
|
|
7531
7534
|
decimals?: number | undefined;
|
|
@@ -7541,15 +7544,15 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7541
7544
|
verified?: boolean | undefined;
|
|
7542
7545
|
addressName?: string | undefined;
|
|
7543
7546
|
} | {
|
|
7544
|
-
value: string;
|
|
7545
7547
|
type: "timestamp";
|
|
7548
|
+
value: string;
|
|
7546
7549
|
label: string;
|
|
7547
7550
|
} | {
|
|
7548
7551
|
type: "token_address";
|
|
7549
7552
|
token: {
|
|
7550
|
-
name: string;
|
|
7551
7553
|
address: string;
|
|
7552
7554
|
type: string;
|
|
7555
|
+
name: string;
|
|
7553
7556
|
unknown: boolean;
|
|
7554
7557
|
symbol?: string | undefined;
|
|
7555
7558
|
decimals?: number | undefined;
|
|
@@ -7572,9 +7575,9 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7572
7575
|
} | {
|
|
7573
7576
|
type: "nft";
|
|
7574
7577
|
token: {
|
|
7575
|
-
name: string;
|
|
7576
7578
|
address: string;
|
|
7577
7579
|
type: string;
|
|
7580
|
+
name: string;
|
|
7578
7581
|
unknown: boolean;
|
|
7579
7582
|
symbol?: string | undefined;
|
|
7580
7583
|
decimals?: number | undefined;
|
|
@@ -7586,9 +7589,9 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7586
7589
|
type: "amount";
|
|
7587
7590
|
amount: string;
|
|
7588
7591
|
token: {
|
|
7589
|
-
name: string;
|
|
7590
7592
|
address: string;
|
|
7591
7593
|
type: string;
|
|
7594
|
+
name: string;
|
|
7592
7595
|
unknown: boolean;
|
|
7593
7596
|
symbol?: string | undefined;
|
|
7594
7597
|
decimals?: number | undefined;
|
|
@@ -7604,15 +7607,15 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7604
7607
|
verified?: boolean | undefined;
|
|
7605
7608
|
addressName?: string | undefined;
|
|
7606
7609
|
} | {
|
|
7607
|
-
value: string;
|
|
7608
7610
|
type: "timestamp";
|
|
7611
|
+
value: string;
|
|
7609
7612
|
label: string;
|
|
7610
7613
|
} | {
|
|
7611
7614
|
type: "token_address";
|
|
7612
7615
|
token: {
|
|
7613
|
-
name: string;
|
|
7614
7616
|
address: string;
|
|
7615
7617
|
type: string;
|
|
7618
|
+
name: string;
|
|
7616
7619
|
unknown: boolean;
|
|
7617
7620
|
symbol?: string | undefined;
|
|
7618
7621
|
decimals?: number | undefined;
|
|
@@ -7635,9 +7638,9 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7635
7638
|
} | {
|
|
7636
7639
|
type: "nft";
|
|
7637
7640
|
token: {
|
|
7638
|
-
name: string;
|
|
7639
7641
|
address: string;
|
|
7640
7642
|
type: string;
|
|
7643
|
+
name: string;
|
|
7641
7644
|
unknown: boolean;
|
|
7642
7645
|
symbol?: string | undefined;
|
|
7643
7646
|
decimals?: number | undefined;
|
|
@@ -7654,6 +7657,7 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7654
7657
|
}, {
|
|
7655
7658
|
signers: string[];
|
|
7656
7659
|
}>>;
|
|
7660
|
+
isLootboxReward: z.ZodOptional<z.ZodBoolean>;
|
|
7657
7661
|
}, "status" | "fees" | "submitted" | "lastModified" | "transferSummary" | "actions" | "multisigDetails">, {
|
|
7658
7662
|
status: z.ZodUnion<[z.ZodEnum<["pending", "success", "failure"]>, z.ZodEnum<["rejected", "cancelled", "queued"]>]>;
|
|
7659
7663
|
type: z.ZodLiteral<"native">;
|
|
@@ -7726,12 +7730,12 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7726
7730
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
7727
7731
|
address: z.ZodOptional<z.ZodString>;
|
|
7728
7732
|
}, "strip", z.ZodTypeAny, {
|
|
7729
|
-
name?: string | undefined;
|
|
7730
7733
|
address?: string | undefined;
|
|
7734
|
+
name?: string | undefined;
|
|
7731
7735
|
iconUrl?: string | undefined;
|
|
7732
7736
|
}, {
|
|
7733
|
-
name?: string | undefined;
|
|
7734
7737
|
address?: string | undefined;
|
|
7738
|
+
name?: string | undefined;
|
|
7735
7739
|
iconUrl?: string | undefined;
|
|
7736
7740
|
}>;
|
|
7737
7741
|
tokenAddress: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -7740,8 +7744,8 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7740
7744
|
amount: string;
|
|
7741
7745
|
tokenAddress: `0x${string}`;
|
|
7742
7746
|
stakerInfo: {
|
|
7743
|
-
name?: string | undefined;
|
|
7744
7747
|
address?: string | undefined;
|
|
7748
|
+
name?: string | undefined;
|
|
7745
7749
|
iconUrl?: string | undefined;
|
|
7746
7750
|
};
|
|
7747
7751
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -7752,8 +7756,8 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7752
7756
|
amount: string;
|
|
7753
7757
|
tokenAddress: string;
|
|
7754
7758
|
stakerInfo: {
|
|
7755
|
-
name?: string | undefined;
|
|
7756
7759
|
address?: string | undefined;
|
|
7760
|
+
name?: string | undefined;
|
|
7757
7761
|
iconUrl?: string | undefined;
|
|
7758
7762
|
};
|
|
7759
7763
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -7771,8 +7775,8 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7771
7775
|
amount: string;
|
|
7772
7776
|
tokenAddress: `0x${string}`;
|
|
7773
7777
|
stakerInfo: {
|
|
7774
|
-
name?: string | undefined;
|
|
7775
7778
|
address?: string | undefined;
|
|
7779
|
+
name?: string | undefined;
|
|
7776
7780
|
iconUrl?: string | undefined;
|
|
7777
7781
|
};
|
|
7778
7782
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -7790,8 +7794,8 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7790
7794
|
amount: string;
|
|
7791
7795
|
tokenAddress: string;
|
|
7792
7796
|
stakerInfo: {
|
|
7793
|
-
name?: string | undefined;
|
|
7794
7797
|
address?: string | undefined;
|
|
7798
|
+
name?: string | undefined;
|
|
7795
7799
|
iconUrl?: string | undefined;
|
|
7796
7800
|
};
|
|
7797
7801
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -7802,8 +7806,8 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7802
7806
|
isExecuteFromOutside?: boolean | undefined;
|
|
7803
7807
|
}>>;
|
|
7804
7808
|
}>, "strip", z.ZodTypeAny, {
|
|
7805
|
-
status: "rejected" | "pending" | "success" | "failure" | "cancelled" | "queued";
|
|
7806
7809
|
type: "native";
|
|
7810
|
+
status: "rejected" | "pending" | "success" | "failure" | "cancelled" | "queued";
|
|
7807
7811
|
submitted: number;
|
|
7808
7812
|
lastModified: number;
|
|
7809
7813
|
transaction: {
|
|
@@ -7861,9 +7865,9 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7861
7865
|
type: "amount";
|
|
7862
7866
|
amount: string;
|
|
7863
7867
|
token: {
|
|
7864
|
-
name: string;
|
|
7865
7868
|
address: string;
|
|
7866
7869
|
type: string;
|
|
7870
|
+
name: string;
|
|
7867
7871
|
unknown: boolean;
|
|
7868
7872
|
symbol?: string | undefined;
|
|
7869
7873
|
decimals?: number | undefined;
|
|
@@ -7879,15 +7883,15 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7879
7883
|
verified?: boolean | undefined;
|
|
7880
7884
|
addressName?: string | undefined;
|
|
7881
7885
|
} | {
|
|
7882
|
-
value: string;
|
|
7883
7886
|
type: "timestamp";
|
|
7887
|
+
value: string;
|
|
7884
7888
|
label: string;
|
|
7885
7889
|
} | {
|
|
7886
7890
|
type: "token_address";
|
|
7887
7891
|
token: {
|
|
7888
|
-
name: string;
|
|
7889
7892
|
address: string;
|
|
7890
7893
|
type: string;
|
|
7894
|
+
name: string;
|
|
7891
7895
|
unknown: boolean;
|
|
7892
7896
|
symbol?: string | undefined;
|
|
7893
7897
|
decimals?: number | undefined;
|
|
@@ -7910,9 +7914,9 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7910
7914
|
} | {
|
|
7911
7915
|
type: "nft";
|
|
7912
7916
|
token: {
|
|
7913
|
-
name: string;
|
|
7914
7917
|
address: string;
|
|
7915
7918
|
type: string;
|
|
7919
|
+
name: string;
|
|
7916
7920
|
unknown: boolean;
|
|
7917
7921
|
symbol?: string | undefined;
|
|
7918
7922
|
decimals?: number | undefined;
|
|
@@ -7924,9 +7928,9 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7924
7928
|
type: "amount";
|
|
7925
7929
|
amount: string;
|
|
7926
7930
|
token: {
|
|
7927
|
-
name: string;
|
|
7928
7931
|
address: string;
|
|
7929
7932
|
type: string;
|
|
7933
|
+
name: string;
|
|
7930
7934
|
unknown: boolean;
|
|
7931
7935
|
symbol?: string | undefined;
|
|
7932
7936
|
decimals?: number | undefined;
|
|
@@ -7942,15 +7946,15 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7942
7946
|
verified?: boolean | undefined;
|
|
7943
7947
|
addressName?: string | undefined;
|
|
7944
7948
|
} | {
|
|
7945
|
-
value: string;
|
|
7946
7949
|
type: "timestamp";
|
|
7950
|
+
value: string;
|
|
7947
7951
|
label: string;
|
|
7948
7952
|
} | {
|
|
7949
7953
|
type: "token_address";
|
|
7950
7954
|
token: {
|
|
7951
|
-
name: string;
|
|
7952
7955
|
address: string;
|
|
7953
7956
|
type: string;
|
|
7957
|
+
name: string;
|
|
7954
7958
|
unknown: boolean;
|
|
7955
7959
|
symbol?: string | undefined;
|
|
7956
7960
|
decimals?: number | undefined;
|
|
@@ -7973,9 +7977,9 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7973
7977
|
} | {
|
|
7974
7978
|
type: "nft";
|
|
7975
7979
|
token: {
|
|
7976
|
-
name: string;
|
|
7977
7980
|
address: string;
|
|
7978
7981
|
type: string;
|
|
7982
|
+
name: string;
|
|
7979
7983
|
unknown: boolean;
|
|
7980
7984
|
symbol?: string | undefined;
|
|
7981
7985
|
decimals?: number | undefined;
|
|
@@ -7996,8 +8000,8 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7996
8000
|
amount: string;
|
|
7997
8001
|
tokenAddress: `0x${string}`;
|
|
7998
8002
|
stakerInfo: {
|
|
7999
|
-
name?: string | undefined;
|
|
8000
8003
|
address?: string | undefined;
|
|
8004
|
+
name?: string | undefined;
|
|
8001
8005
|
iconUrl?: string | undefined;
|
|
8002
8006
|
};
|
|
8003
8007
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -8008,8 +8012,8 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
8008
8012
|
isExecuteFromOutside?: boolean | undefined;
|
|
8009
8013
|
} | undefined;
|
|
8010
8014
|
}, {
|
|
8011
|
-
status: "rejected" | "pending" | "success" | "failure" | "cancelled" | "queued";
|
|
8012
8015
|
type: "native";
|
|
8016
|
+
status: "rejected" | "pending" | "success" | "failure" | "cancelled" | "queued";
|
|
8013
8017
|
submitted: number;
|
|
8014
8018
|
lastModified: number;
|
|
8015
8019
|
transaction: {
|
|
@@ -8067,9 +8071,9 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
8067
8071
|
type: "amount";
|
|
8068
8072
|
amount: string;
|
|
8069
8073
|
token: {
|
|
8070
|
-
name: string;
|
|
8071
8074
|
address: string;
|
|
8072
8075
|
type: string;
|
|
8076
|
+
name: string;
|
|
8073
8077
|
unknown: boolean;
|
|
8074
8078
|
symbol?: string | undefined;
|
|
8075
8079
|
decimals?: number | undefined;
|
|
@@ -8085,15 +8089,15 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
8085
8089
|
verified?: boolean | undefined;
|
|
8086
8090
|
addressName?: string | undefined;
|
|
8087
8091
|
} | {
|
|
8088
|
-
value: string;
|
|
8089
8092
|
type: "timestamp";
|
|
8093
|
+
value: string;
|
|
8090
8094
|
label: string;
|
|
8091
8095
|
} | {
|
|
8092
8096
|
type: "token_address";
|
|
8093
8097
|
token: {
|
|
8094
|
-
name: string;
|
|
8095
8098
|
address: string;
|
|
8096
8099
|
type: string;
|
|
8100
|
+
name: string;
|
|
8097
8101
|
unknown: boolean;
|
|
8098
8102
|
symbol?: string | undefined;
|
|
8099
8103
|
decimals?: number | undefined;
|
|
@@ -8116,9 +8120,9 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
8116
8120
|
} | {
|
|
8117
8121
|
type: "nft";
|
|
8118
8122
|
token: {
|
|
8119
|
-
name: string;
|
|
8120
8123
|
address: string;
|
|
8121
8124
|
type: string;
|
|
8125
|
+
name: string;
|
|
8122
8126
|
unknown: boolean;
|
|
8123
8127
|
symbol?: string | undefined;
|
|
8124
8128
|
decimals?: number | undefined;
|
|
@@ -8130,9 +8134,9 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
8130
8134
|
type: "amount";
|
|
8131
8135
|
amount: string;
|
|
8132
8136
|
token: {
|
|
8133
|
-
name: string;
|
|
8134
8137
|
address: string;
|
|
8135
8138
|
type: string;
|
|
8139
|
+
name: string;
|
|
8136
8140
|
unknown: boolean;
|
|
8137
8141
|
symbol?: string | undefined;
|
|
8138
8142
|
decimals?: number | undefined;
|
|
@@ -8148,15 +8152,15 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
8148
8152
|
verified?: boolean | undefined;
|
|
8149
8153
|
addressName?: string | undefined;
|
|
8150
8154
|
} | {
|
|
8151
|
-
value: string;
|
|
8152
8155
|
type: "timestamp";
|
|
8156
|
+
value: string;
|
|
8153
8157
|
label: string;
|
|
8154
8158
|
} | {
|
|
8155
8159
|
type: "token_address";
|
|
8156
8160
|
token: {
|
|
8157
|
-
name: string;
|
|
8158
8161
|
address: string;
|
|
8159
8162
|
type: string;
|
|
8163
|
+
name: string;
|
|
8160
8164
|
unknown: boolean;
|
|
8161
8165
|
symbol?: string | undefined;
|
|
8162
8166
|
decimals?: number | undefined;
|
|
@@ -8179,9 +8183,9 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
8179
8183
|
} | {
|
|
8180
8184
|
type: "nft";
|
|
8181
8185
|
token: {
|
|
8182
|
-
name: string;
|
|
8183
8186
|
address: string;
|
|
8184
8187
|
type: string;
|
|
8188
|
+
name: string;
|
|
8185
8189
|
unknown: boolean;
|
|
8186
8190
|
symbol?: string | undefined;
|
|
8187
8191
|
decimals?: number | undefined;
|
|
@@ -8202,8 +8206,8 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
8202
8206
|
amount: string;
|
|
8203
8207
|
tokenAddress: string;
|
|
8204
8208
|
stakerInfo: {
|
|
8205
|
-
name?: string | undefined;
|
|
8206
8209
|
address?: string | undefined;
|
|
8210
|
+
name?: string | undefined;
|
|
8207
8211
|
iconUrl?: string | undefined;
|
|
8208
8212
|
};
|
|
8209
8213
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -8795,19 +8799,19 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
8795
8799
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
8796
8800
|
address: z.ZodOptional<z.ZodString>;
|
|
8797
8801
|
}, "strip", z.ZodTypeAny, {
|
|
8798
|
-
name?: string | undefined;
|
|
8799
8802
|
address?: string | undefined;
|
|
8803
|
+
name?: string | undefined;
|
|
8800
8804
|
iconUrl?: string | undefined;
|
|
8801
8805
|
}, {
|
|
8802
|
-
name?: string | undefined;
|
|
8803
8806
|
address?: string | undefined;
|
|
8807
|
+
name?: string | undefined;
|
|
8804
8808
|
iconUrl?: string | undefined;
|
|
8805
8809
|
}>;
|
|
8806
8810
|
}, "strip", z.ZodTypeAny, {
|
|
8807
8811
|
type: "staking";
|
|
8808
8812
|
stakerInfo: {
|
|
8809
|
-
name?: string | undefined;
|
|
8810
8813
|
address?: string | undefined;
|
|
8814
|
+
name?: string | undefined;
|
|
8811
8815
|
iconUrl?: string | undefined;
|
|
8812
8816
|
};
|
|
8813
8817
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -8824,8 +8828,8 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
8824
8828
|
}, {
|
|
8825
8829
|
type: "staking";
|
|
8826
8830
|
stakerInfo: {
|
|
8827
|
-
name?: string | undefined;
|
|
8828
8831
|
address?: string | undefined;
|
|
8832
|
+
name?: string | undefined;
|
|
8829
8833
|
iconUrl?: string | undefined;
|
|
8830
8834
|
};
|
|
8831
8835
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -9307,19 +9311,19 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
9307
9311
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
9308
9312
|
address: z.ZodOptional<z.ZodString>;
|
|
9309
9313
|
}, "strip", z.ZodTypeAny, {
|
|
9310
|
-
name?: string | undefined;
|
|
9311
9314
|
address?: string | undefined;
|
|
9315
|
+
name?: string | undefined;
|
|
9312
9316
|
iconUrl?: string | undefined;
|
|
9313
9317
|
}, {
|
|
9314
|
-
name?: string | undefined;
|
|
9315
9318
|
address?: string | undefined;
|
|
9319
|
+
name?: string | undefined;
|
|
9316
9320
|
iconUrl?: string | undefined;
|
|
9317
9321
|
}>;
|
|
9318
9322
|
}, "strip", z.ZodTypeAny, {
|
|
9319
9323
|
type: "staking";
|
|
9320
9324
|
stakerInfo: {
|
|
9321
|
-
name?: string | undefined;
|
|
9322
9325
|
address?: string | undefined;
|
|
9326
|
+
name?: string | undefined;
|
|
9323
9327
|
iconUrl?: string | undefined;
|
|
9324
9328
|
};
|
|
9325
9329
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -9336,8 +9340,8 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
9336
9340
|
}, {
|
|
9337
9341
|
type: "staking";
|
|
9338
9342
|
stakerInfo: {
|
|
9339
|
-
name?: string | undefined;
|
|
9340
9343
|
address?: string | undefined;
|
|
9344
|
+
name?: string | undefined;
|
|
9341
9345
|
iconUrl?: string | undefined;
|
|
9342
9346
|
};
|
|
9343
9347
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -9495,8 +9499,8 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
9495
9499
|
} | {
|
|
9496
9500
|
type: "staking";
|
|
9497
9501
|
stakerInfo: {
|
|
9498
|
-
name?: string | undefined;
|
|
9499
9502
|
address?: string | undefined;
|
|
9503
|
+
name?: string | undefined;
|
|
9500
9504
|
iconUrl?: string | undefined;
|
|
9501
9505
|
};
|
|
9502
9506
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -9604,8 +9608,8 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
9604
9608
|
} | {
|
|
9605
9609
|
type: "staking";
|
|
9606
9610
|
stakerInfo: {
|
|
9607
|
-
name?: string | undefined;
|
|
9608
9611
|
address?: string | undefined;
|
|
9612
|
+
name?: string | undefined;
|
|
9609
9613
|
iconUrl?: string | undefined;
|
|
9610
9614
|
};
|
|
9611
9615
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -9716,8 +9720,8 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
9716
9720
|
} | {
|
|
9717
9721
|
type: "staking";
|
|
9718
9722
|
stakerInfo: {
|
|
9719
|
-
name?: string | undefined;
|
|
9720
9723
|
address?: string | undefined;
|
|
9724
|
+
name?: string | undefined;
|
|
9721
9725
|
iconUrl?: string | undefined;
|
|
9722
9726
|
};
|
|
9723
9727
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -9828,8 +9832,8 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
9828
9832
|
} | {
|
|
9829
9833
|
type: "staking";
|
|
9830
9834
|
stakerInfo: {
|
|
9831
|
-
name?: string | undefined;
|
|
9832
9835
|
address?: string | undefined;
|
|
9836
|
+
name?: string | undefined;
|
|
9833
9837
|
iconUrl?: string | undefined;
|
|
9834
9838
|
};
|
|
9835
9839
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -9985,17 +9989,17 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
9985
9989
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
9986
9990
|
type: z.ZodString;
|
|
9987
9991
|
}, "strip", z.ZodTypeAny, {
|
|
9988
|
-
name: string;
|
|
9989
9992
|
address: string;
|
|
9990
9993
|
type: string;
|
|
9994
|
+
name: string;
|
|
9991
9995
|
unknown: boolean;
|
|
9992
9996
|
symbol?: string | undefined;
|
|
9993
9997
|
decimals?: number | undefined;
|
|
9994
9998
|
iconUrl?: string | undefined;
|
|
9995
9999
|
}, {
|
|
9996
|
-
name: string;
|
|
9997
10000
|
address: string;
|
|
9998
10001
|
type: string;
|
|
10002
|
+
name: string;
|
|
9999
10003
|
unknown: boolean;
|
|
10000
10004
|
symbol?: string | undefined;
|
|
10001
10005
|
decimals?: number | undefined;
|
|
@@ -10008,9 +10012,9 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
10008
10012
|
type: "amount";
|
|
10009
10013
|
amount: string;
|
|
10010
10014
|
token: {
|
|
10011
|
-
name: string;
|
|
10012
10015
|
address: string;
|
|
10013
10016
|
type: string;
|
|
10017
|
+
name: string;
|
|
10014
10018
|
unknown: boolean;
|
|
10015
10019
|
symbol?: string | undefined;
|
|
10016
10020
|
decimals?: number | undefined;
|
|
@@ -10023,9 +10027,9 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
10023
10027
|
type: "amount";
|
|
10024
10028
|
amount: string;
|
|
10025
10029
|
token: {
|
|
10026
|
-
name: string;
|
|
10027
10030
|
address: string;
|
|
10028
10031
|
type: string;
|
|
10032
|
+
name: string;
|
|
10029
10033
|
unknown: boolean;
|
|
10030
10034
|
symbol?: string | undefined;
|
|
10031
10035
|
decimals?: number | undefined;
|
|
@@ -10057,12 +10061,12 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
10057
10061
|
label: z.ZodString;
|
|
10058
10062
|
value: z.ZodString;
|
|
10059
10063
|
}, "strip", z.ZodTypeAny, {
|
|
10060
|
-
value: string;
|
|
10061
10064
|
type: "timestamp";
|
|
10065
|
+
value: string;
|
|
10062
10066
|
label: string;
|
|
10063
10067
|
}, {
|
|
10064
|
-
value: string;
|
|
10065
10068
|
type: "timestamp";
|
|
10069
|
+
value: string;
|
|
10066
10070
|
label: string;
|
|
10067
10071
|
}>, z.ZodObject<{
|
|
10068
10072
|
type: z.ZodLiteral<"token_address">;
|
|
@@ -10076,17 +10080,17 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
10076
10080
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
10077
10081
|
type: z.ZodString;
|
|
10078
10082
|
}, "strip", z.ZodTypeAny, {
|
|
10079
|
-
name: string;
|
|
10080
10083
|
address: string;
|
|
10081
10084
|
type: string;
|
|
10085
|
+
name: string;
|
|
10082
10086
|
unknown: boolean;
|
|
10083
10087
|
symbol?: string | undefined;
|
|
10084
10088
|
decimals?: number | undefined;
|
|
10085
10089
|
iconUrl?: string | undefined;
|
|
10086
10090
|
}, {
|
|
10087
|
-
name: string;
|
|
10088
10091
|
address: string;
|
|
10089
10092
|
type: string;
|
|
10093
|
+
name: string;
|
|
10090
10094
|
unknown: boolean;
|
|
10091
10095
|
symbol?: string | undefined;
|
|
10092
10096
|
decimals?: number | undefined;
|
|
@@ -10095,9 +10099,9 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
10095
10099
|
}, "strip", z.ZodTypeAny, {
|
|
10096
10100
|
type: "token_address";
|
|
10097
10101
|
token: {
|
|
10098
|
-
name: string;
|
|
10099
10102
|
address: string;
|
|
10100
10103
|
type: string;
|
|
10104
|
+
name: string;
|
|
10101
10105
|
unknown: boolean;
|
|
10102
10106
|
symbol?: string | undefined;
|
|
10103
10107
|
decimals?: number | undefined;
|
|
@@ -10107,9 +10111,9 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
10107
10111
|
}, {
|
|
10108
10112
|
type: "token_address";
|
|
10109
10113
|
token: {
|
|
10110
|
-
name: string;
|
|
10111
10114
|
address: string;
|
|
10112
10115
|
type: string;
|
|
10116
|
+
name: string;
|
|
10113
10117
|
unknown: boolean;
|
|
10114
10118
|
symbol?: string | undefined;
|
|
10115
10119
|
decimals?: number | undefined;
|
|
@@ -10167,17 +10171,17 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
10167
10171
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
10168
10172
|
type: z.ZodString;
|
|
10169
10173
|
}, "strip", z.ZodTypeAny, {
|
|
10170
|
-
name: string;
|
|
10171
10174
|
address: string;
|
|
10172
10175
|
type: string;
|
|
10176
|
+
name: string;
|
|
10173
10177
|
unknown: boolean;
|
|
10174
10178
|
symbol?: string | undefined;
|
|
10175
10179
|
decimals?: number | undefined;
|
|
10176
10180
|
iconUrl?: string | undefined;
|
|
10177
10181
|
}, {
|
|
10178
|
-
name: string;
|
|
10179
10182
|
address: string;
|
|
10180
10183
|
type: string;
|
|
10184
|
+
name: string;
|
|
10181
10185
|
unknown: boolean;
|
|
10182
10186
|
symbol?: string | undefined;
|
|
10183
10187
|
decimals?: number | undefined;
|
|
@@ -10186,9 +10190,9 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
10186
10190
|
}, "strip", z.ZodTypeAny, {
|
|
10187
10191
|
type: "nft";
|
|
10188
10192
|
token: {
|
|
10189
|
-
name: string;
|
|
10190
10193
|
address: string;
|
|
10191
10194
|
type: string;
|
|
10195
|
+
name: string;
|
|
10192
10196
|
unknown: boolean;
|
|
10193
10197
|
symbol?: string | undefined;
|
|
10194
10198
|
decimals?: number | undefined;
|
|
@@ -10198,9 +10202,9 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
10198
10202
|
}, {
|
|
10199
10203
|
type: "nft";
|
|
10200
10204
|
token: {
|
|
10201
|
-
name: string;
|
|
10202
10205
|
address: string;
|
|
10203
10206
|
type: string;
|
|
10207
|
+
name: string;
|
|
10204
10208
|
unknown: boolean;
|
|
10205
10209
|
symbol?: string | undefined;
|
|
10206
10210
|
decimals?: number | undefined;
|
|
@@ -10220,17 +10224,17 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
10220
10224
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
10221
10225
|
type: z.ZodString;
|
|
10222
10226
|
}, "strip", z.ZodTypeAny, {
|
|
10223
|
-
name: string;
|
|
10224
10227
|
address: string;
|
|
10225
10228
|
type: string;
|
|
10229
|
+
name: string;
|
|
10226
10230
|
unknown: boolean;
|
|
10227
10231
|
symbol?: string | undefined;
|
|
10228
10232
|
decimals?: number | undefined;
|
|
10229
10233
|
iconUrl?: string | undefined;
|
|
10230
10234
|
}, {
|
|
10231
|
-
name: string;
|
|
10232
10235
|
address: string;
|
|
10233
10236
|
type: string;
|
|
10237
|
+
name: string;
|
|
10234
10238
|
unknown: boolean;
|
|
10235
10239
|
symbol?: string | undefined;
|
|
10236
10240
|
decimals?: number | undefined;
|
|
@@ -10243,9 +10247,9 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
10243
10247
|
type: "amount";
|
|
10244
10248
|
amount: string;
|
|
10245
10249
|
token: {
|
|
10246
|
-
name: string;
|
|
10247
10250
|
address: string;
|
|
10248
10251
|
type: string;
|
|
10252
|
+
name: string;
|
|
10249
10253
|
unknown: boolean;
|
|
10250
10254
|
symbol?: string | undefined;
|
|
10251
10255
|
decimals?: number | undefined;
|
|
@@ -10258,9 +10262,9 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
10258
10262
|
type: "amount";
|
|
10259
10263
|
amount: string;
|
|
10260
10264
|
token: {
|
|
10261
|
-
name: string;
|
|
10262
10265
|
address: string;
|
|
10263
10266
|
type: string;
|
|
10267
|
+
name: string;
|
|
10264
10268
|
unknown: boolean;
|
|
10265
10269
|
symbol?: string | undefined;
|
|
10266
10270
|
decimals?: number | undefined;
|
|
@@ -10292,12 +10296,12 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
10292
10296
|
label: z.ZodString;
|
|
10293
10297
|
value: z.ZodString;
|
|
10294
10298
|
}, "strip", z.ZodTypeAny, {
|
|
10295
|
-
value: string;
|
|
10296
10299
|
type: "timestamp";
|
|
10300
|
+
value: string;
|
|
10297
10301
|
label: string;
|
|
10298
10302
|
}, {
|
|
10299
|
-
value: string;
|
|
10300
10303
|
type: "timestamp";
|
|
10304
|
+
value: string;
|
|
10301
10305
|
label: string;
|
|
10302
10306
|
}>, z.ZodObject<{
|
|
10303
10307
|
type: z.ZodLiteral<"token_address">;
|
|
@@ -10311,17 +10315,17 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
10311
10315
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
10312
10316
|
type: z.ZodString;
|
|
10313
10317
|
}, "strip", z.ZodTypeAny, {
|
|
10314
|
-
name: string;
|
|
10315
10318
|
address: string;
|
|
10316
10319
|
type: string;
|
|
10320
|
+
name: string;
|
|
10317
10321
|
unknown: boolean;
|
|
10318
10322
|
symbol?: string | undefined;
|
|
10319
10323
|
decimals?: number | undefined;
|
|
10320
10324
|
iconUrl?: string | undefined;
|
|
10321
10325
|
}, {
|
|
10322
|
-
name: string;
|
|
10323
10326
|
address: string;
|
|
10324
10327
|
type: string;
|
|
10328
|
+
name: string;
|
|
10325
10329
|
unknown: boolean;
|
|
10326
10330
|
symbol?: string | undefined;
|
|
10327
10331
|
decimals?: number | undefined;
|
|
@@ -10330,9 +10334,9 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
10330
10334
|
}, "strip", z.ZodTypeAny, {
|
|
10331
10335
|
type: "token_address";
|
|
10332
10336
|
token: {
|
|
10333
|
-
name: string;
|
|
10334
10337
|
address: string;
|
|
10335
10338
|
type: string;
|
|
10339
|
+
name: string;
|
|
10336
10340
|
unknown: boolean;
|
|
10337
10341
|
symbol?: string | undefined;
|
|
10338
10342
|
decimals?: number | undefined;
|
|
@@ -10342,9 +10346,9 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
10342
10346
|
}, {
|
|
10343
10347
|
type: "token_address";
|
|
10344
10348
|
token: {
|
|
10345
|
-
name: string;
|
|
10346
10349
|
address: string;
|
|
10347
10350
|
type: string;
|
|
10351
|
+
name: string;
|
|
10348
10352
|
unknown: boolean;
|
|
10349
10353
|
symbol?: string | undefined;
|
|
10350
10354
|
decimals?: number | undefined;
|
|
@@ -10402,17 +10406,17 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
10402
10406
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
10403
10407
|
type: z.ZodString;
|
|
10404
10408
|
}, "strip", z.ZodTypeAny, {
|
|
10405
|
-
name: string;
|
|
10406
10409
|
address: string;
|
|
10407
10410
|
type: string;
|
|
10411
|
+
name: string;
|
|
10408
10412
|
unknown: boolean;
|
|
10409
10413
|
symbol?: string | undefined;
|
|
10410
10414
|
decimals?: number | undefined;
|
|
10411
10415
|
iconUrl?: string | undefined;
|
|
10412
10416
|
}, {
|
|
10413
|
-
name: string;
|
|
10414
10417
|
address: string;
|
|
10415
10418
|
type: string;
|
|
10419
|
+
name: string;
|
|
10416
10420
|
unknown: boolean;
|
|
10417
10421
|
symbol?: string | undefined;
|
|
10418
10422
|
decimals?: number | undefined;
|
|
@@ -10421,9 +10425,9 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
10421
10425
|
}, "strip", z.ZodTypeAny, {
|
|
10422
10426
|
type: "nft";
|
|
10423
10427
|
token: {
|
|
10424
|
-
name: string;
|
|
10425
10428
|
address: string;
|
|
10426
10429
|
type: string;
|
|
10430
|
+
name: string;
|
|
10427
10431
|
unknown: boolean;
|
|
10428
10432
|
symbol?: string | undefined;
|
|
10429
10433
|
decimals?: number | undefined;
|
|
@@ -10433,9 +10437,9 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
10433
10437
|
}, {
|
|
10434
10438
|
type: "nft";
|
|
10435
10439
|
token: {
|
|
10436
|
-
name: string;
|
|
10437
10440
|
address: string;
|
|
10438
10441
|
type: string;
|
|
10442
|
+
name: string;
|
|
10439
10443
|
unknown: boolean;
|
|
10440
10444
|
symbol?: string | undefined;
|
|
10441
10445
|
decimals?: number | undefined;
|
|
@@ -10449,9 +10453,9 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
10449
10453
|
type: "amount";
|
|
10450
10454
|
amount: string;
|
|
10451
10455
|
token: {
|
|
10452
|
-
name: string;
|
|
10453
10456
|
address: string;
|
|
10454
10457
|
type: string;
|
|
10458
|
+
name: string;
|
|
10455
10459
|
unknown: boolean;
|
|
10456
10460
|
symbol?: string | undefined;
|
|
10457
10461
|
decimals?: number | undefined;
|
|
@@ -10467,15 +10471,15 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
10467
10471
|
verified?: boolean | undefined;
|
|
10468
10472
|
addressName?: string | undefined;
|
|
10469
10473
|
} | {
|
|
10470
|
-
value: string;
|
|
10471
10474
|
type: "timestamp";
|
|
10475
|
+
value: string;
|
|
10472
10476
|
label: string;
|
|
10473
10477
|
} | {
|
|
10474
10478
|
type: "token_address";
|
|
10475
10479
|
token: {
|
|
10476
|
-
name: string;
|
|
10477
10480
|
address: string;
|
|
10478
10481
|
type: string;
|
|
10482
|
+
name: string;
|
|
10479
10483
|
unknown: boolean;
|
|
10480
10484
|
symbol?: string | undefined;
|
|
10481
10485
|
decimals?: number | undefined;
|
|
@@ -10498,9 +10502,9 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
10498
10502
|
} | {
|
|
10499
10503
|
type: "nft";
|
|
10500
10504
|
token: {
|
|
10501
|
-
name: string;
|
|
10502
10505
|
address: string;
|
|
10503
10506
|
type: string;
|
|
10507
|
+
name: string;
|
|
10504
10508
|
unknown: boolean;
|
|
10505
10509
|
symbol?: string | undefined;
|
|
10506
10510
|
decimals?: number | undefined;
|
|
@@ -10512,9 +10516,9 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
10512
10516
|
type: "amount";
|
|
10513
10517
|
amount: string;
|
|
10514
10518
|
token: {
|
|
10515
|
-
name: string;
|
|
10516
10519
|
address: string;
|
|
10517
10520
|
type: string;
|
|
10521
|
+
name: string;
|
|
10518
10522
|
unknown: boolean;
|
|
10519
10523
|
symbol?: string | undefined;
|
|
10520
10524
|
decimals?: number | undefined;
|
|
@@ -10530,15 +10534,15 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
10530
10534
|
verified?: boolean | undefined;
|
|
10531
10535
|
addressName?: string | undefined;
|
|
10532
10536
|
} | {
|
|
10533
|
-
value: string;
|
|
10534
10537
|
type: "timestamp";
|
|
10538
|
+
value: string;
|
|
10535
10539
|
label: string;
|
|
10536
10540
|
} | {
|
|
10537
10541
|
type: "token_address";
|
|
10538
10542
|
token: {
|
|
10539
|
-
name: string;
|
|
10540
10543
|
address: string;
|
|
10541
10544
|
type: string;
|
|
10545
|
+
name: string;
|
|
10542
10546
|
unknown: boolean;
|
|
10543
10547
|
symbol?: string | undefined;
|
|
10544
10548
|
decimals?: number | undefined;
|
|
@@ -10561,9 +10565,9 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
10561
10565
|
} | {
|
|
10562
10566
|
type: "nft";
|
|
10563
10567
|
token: {
|
|
10564
|
-
name: string;
|
|
10565
10568
|
address: string;
|
|
10566
10569
|
type: string;
|
|
10570
|
+
name: string;
|
|
10567
10571
|
unknown: boolean;
|
|
10568
10572
|
symbol?: string | undefined;
|
|
10569
10573
|
decimals?: number | undefined;
|
|
@@ -10577,9 +10581,9 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
10577
10581
|
type: "amount";
|
|
10578
10582
|
amount: string;
|
|
10579
10583
|
token: {
|
|
10580
|
-
name: string;
|
|
10581
10584
|
address: string;
|
|
10582
10585
|
type: string;
|
|
10586
|
+
name: string;
|
|
10583
10587
|
unknown: boolean;
|
|
10584
10588
|
symbol?: string | undefined;
|
|
10585
10589
|
decimals?: number | undefined;
|
|
@@ -10595,15 +10599,15 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
10595
10599
|
verified?: boolean | undefined;
|
|
10596
10600
|
addressName?: string | undefined;
|
|
10597
10601
|
} | {
|
|
10598
|
-
value: string;
|
|
10599
10602
|
type: "timestamp";
|
|
10603
|
+
value: string;
|
|
10600
10604
|
label: string;
|
|
10601
10605
|
} | {
|
|
10602
10606
|
type: "token_address";
|
|
10603
10607
|
token: {
|
|
10604
|
-
name: string;
|
|
10605
10608
|
address: string;
|
|
10606
10609
|
type: string;
|
|
10610
|
+
name: string;
|
|
10607
10611
|
unknown: boolean;
|
|
10608
10612
|
symbol?: string | undefined;
|
|
10609
10613
|
decimals?: number | undefined;
|
|
@@ -10626,9 +10630,9 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
10626
10630
|
} | {
|
|
10627
10631
|
type: "nft";
|
|
10628
10632
|
token: {
|
|
10629
|
-
name: string;
|
|
10630
10633
|
address: string;
|
|
10631
10634
|
type: string;
|
|
10635
|
+
name: string;
|
|
10632
10636
|
unknown: boolean;
|
|
10633
10637
|
symbol?: string | undefined;
|
|
10634
10638
|
decimals?: number | undefined;
|
|
@@ -10640,9 +10644,9 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
10640
10644
|
type: "amount";
|
|
10641
10645
|
amount: string;
|
|
10642
10646
|
token: {
|
|
10643
|
-
name: string;
|
|
10644
10647
|
address: string;
|
|
10645
10648
|
type: string;
|
|
10649
|
+
name: string;
|
|
10646
10650
|
unknown: boolean;
|
|
10647
10651
|
symbol?: string | undefined;
|
|
10648
10652
|
decimals?: number | undefined;
|
|
@@ -10658,15 +10662,15 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
10658
10662
|
verified?: boolean | undefined;
|
|
10659
10663
|
addressName?: string | undefined;
|
|
10660
10664
|
} | {
|
|
10661
|
-
value: string;
|
|
10662
10665
|
type: "timestamp";
|
|
10666
|
+
value: string;
|
|
10663
10667
|
label: string;
|
|
10664
10668
|
} | {
|
|
10665
10669
|
type: "token_address";
|
|
10666
10670
|
token: {
|
|
10667
|
-
name: string;
|
|
10668
10671
|
address: string;
|
|
10669
10672
|
type: string;
|
|
10673
|
+
name: string;
|
|
10670
10674
|
unknown: boolean;
|
|
10671
10675
|
symbol?: string | undefined;
|
|
10672
10676
|
decimals?: number | undefined;
|
|
@@ -10689,9 +10693,9 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
10689
10693
|
} | {
|
|
10690
10694
|
type: "nft";
|
|
10691
10695
|
token: {
|
|
10692
|
-
name: string;
|
|
10693
10696
|
address: string;
|
|
10694
10697
|
type: string;
|
|
10698
|
+
name: string;
|
|
10695
10699
|
unknown: boolean;
|
|
10696
10700
|
symbol?: string | undefined;
|
|
10697
10701
|
decimals?: number | undefined;
|
|
@@ -10708,9 +10712,10 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
10708
10712
|
}, {
|
|
10709
10713
|
signers: string[];
|
|
10710
10714
|
}>>;
|
|
10715
|
+
isLootboxReward: z.ZodOptional<z.ZodBoolean>;
|
|
10711
10716
|
}, "strip", z.ZodTypeAny, {
|
|
10712
|
-
status: "pending" | "success" | "failure";
|
|
10713
10717
|
type: "staking" | "payment" | "approval" | "changePubKey" | "dappInteraction" | "deploy" | "gift" | "multicall" | "security" | "trade";
|
|
10718
|
+
status: "pending" | "success" | "failure";
|
|
10714
10719
|
network: string;
|
|
10715
10720
|
wallet: `0x${string}`;
|
|
10716
10721
|
id: string;
|
|
@@ -10793,8 +10798,8 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
10793
10798
|
} | {
|
|
10794
10799
|
type: "staking";
|
|
10795
10800
|
stakerInfo: {
|
|
10796
|
-
name?: string | undefined;
|
|
10797
10801
|
address?: string | undefined;
|
|
10802
|
+
name?: string | undefined;
|
|
10798
10803
|
iconUrl?: string | undefined;
|
|
10799
10804
|
};
|
|
10800
10805
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -10903,8 +10908,8 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
10903
10908
|
} | {
|
|
10904
10909
|
type: "staking";
|
|
10905
10910
|
stakerInfo: {
|
|
10906
|
-
name?: string | undefined;
|
|
10907
10911
|
address?: string | undefined;
|
|
10912
|
+
name?: string | undefined;
|
|
10908
10913
|
iconUrl?: string | undefined;
|
|
10909
10914
|
};
|
|
10910
10915
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -11015,9 +11020,9 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
11015
11020
|
type: "amount";
|
|
11016
11021
|
amount: string;
|
|
11017
11022
|
token: {
|
|
11018
|
-
name: string;
|
|
11019
11023
|
address: string;
|
|
11020
11024
|
type: string;
|
|
11025
|
+
name: string;
|
|
11021
11026
|
unknown: boolean;
|
|
11022
11027
|
symbol?: string | undefined;
|
|
11023
11028
|
decimals?: number | undefined;
|
|
@@ -11033,15 +11038,15 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
11033
11038
|
verified?: boolean | undefined;
|
|
11034
11039
|
addressName?: string | undefined;
|
|
11035
11040
|
} | {
|
|
11036
|
-
value: string;
|
|
11037
11041
|
type: "timestamp";
|
|
11042
|
+
value: string;
|
|
11038
11043
|
label: string;
|
|
11039
11044
|
} | {
|
|
11040
11045
|
type: "token_address";
|
|
11041
11046
|
token: {
|
|
11042
|
-
name: string;
|
|
11043
11047
|
address: string;
|
|
11044
11048
|
type: string;
|
|
11049
|
+
name: string;
|
|
11045
11050
|
unknown: boolean;
|
|
11046
11051
|
symbol?: string | undefined;
|
|
11047
11052
|
decimals?: number | undefined;
|
|
@@ -11064,9 +11069,9 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
11064
11069
|
} | {
|
|
11065
11070
|
type: "nft";
|
|
11066
11071
|
token: {
|
|
11067
|
-
name: string;
|
|
11068
11072
|
address: string;
|
|
11069
11073
|
type: string;
|
|
11074
|
+
name: string;
|
|
11070
11075
|
unknown: boolean;
|
|
11071
11076
|
symbol?: string | undefined;
|
|
11072
11077
|
decimals?: number | undefined;
|
|
@@ -11078,9 +11083,9 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
11078
11083
|
type: "amount";
|
|
11079
11084
|
amount: string;
|
|
11080
11085
|
token: {
|
|
11081
|
-
name: string;
|
|
11082
11086
|
address: string;
|
|
11083
11087
|
type: string;
|
|
11088
|
+
name: string;
|
|
11084
11089
|
unknown: boolean;
|
|
11085
11090
|
symbol?: string | undefined;
|
|
11086
11091
|
decimals?: number | undefined;
|
|
@@ -11096,15 +11101,15 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
11096
11101
|
verified?: boolean | undefined;
|
|
11097
11102
|
addressName?: string | undefined;
|
|
11098
11103
|
} | {
|
|
11099
|
-
value: string;
|
|
11100
11104
|
type: "timestamp";
|
|
11105
|
+
value: string;
|
|
11101
11106
|
label: string;
|
|
11102
11107
|
} | {
|
|
11103
11108
|
type: "token_address";
|
|
11104
11109
|
token: {
|
|
11105
|
-
name: string;
|
|
11106
11110
|
address: string;
|
|
11107
11111
|
type: string;
|
|
11112
|
+
name: string;
|
|
11108
11113
|
unknown: boolean;
|
|
11109
11114
|
symbol?: string | undefined;
|
|
11110
11115
|
decimals?: number | undefined;
|
|
@@ -11127,9 +11132,9 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
11127
11132
|
} | {
|
|
11128
11133
|
type: "nft";
|
|
11129
11134
|
token: {
|
|
11130
|
-
name: string;
|
|
11131
11135
|
address: string;
|
|
11132
11136
|
type: string;
|
|
11137
|
+
name: string;
|
|
11133
11138
|
unknown: boolean;
|
|
11134
11139
|
symbol?: string | undefined;
|
|
11135
11140
|
decimals?: number | undefined;
|
|
@@ -11142,9 +11147,10 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
11142
11147
|
multisigDetails?: {
|
|
11143
11148
|
signers: `0x${string}`[];
|
|
11144
11149
|
} | undefined;
|
|
11150
|
+
isLootboxReward?: boolean | undefined;
|
|
11145
11151
|
}, {
|
|
11146
|
-
status: "pending" | "success" | "failure";
|
|
11147
11152
|
type: "staking" | "payment" | "approval" | "changePubKey" | "dappInteraction" | "deploy" | "gift" | "multicall" | "security" | "trade";
|
|
11153
|
+
status: "pending" | "success" | "failure";
|
|
11148
11154
|
network: string;
|
|
11149
11155
|
wallet: string;
|
|
11150
11156
|
id: string;
|
|
@@ -11227,8 +11233,8 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
11227
11233
|
} | {
|
|
11228
11234
|
type: "staking";
|
|
11229
11235
|
stakerInfo: {
|
|
11230
|
-
name?: string | undefined;
|
|
11231
11236
|
address?: string | undefined;
|
|
11237
|
+
name?: string | undefined;
|
|
11232
11238
|
iconUrl?: string | undefined;
|
|
11233
11239
|
};
|
|
11234
11240
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -11337,8 +11343,8 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
11337
11343
|
} | {
|
|
11338
11344
|
type: "staking";
|
|
11339
11345
|
stakerInfo: {
|
|
11340
|
-
name?: string | undefined;
|
|
11341
11346
|
address?: string | undefined;
|
|
11347
|
+
name?: string | undefined;
|
|
11342
11348
|
iconUrl?: string | undefined;
|
|
11343
11349
|
};
|
|
11344
11350
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -11449,9 +11455,9 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
11449
11455
|
type: "amount";
|
|
11450
11456
|
amount: string;
|
|
11451
11457
|
token: {
|
|
11452
|
-
name: string;
|
|
11453
11458
|
address: string;
|
|
11454
11459
|
type: string;
|
|
11460
|
+
name: string;
|
|
11455
11461
|
unknown: boolean;
|
|
11456
11462
|
symbol?: string | undefined;
|
|
11457
11463
|
decimals?: number | undefined;
|
|
@@ -11467,15 +11473,15 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
11467
11473
|
verified?: boolean | undefined;
|
|
11468
11474
|
addressName?: string | undefined;
|
|
11469
11475
|
} | {
|
|
11470
|
-
value: string;
|
|
11471
11476
|
type: "timestamp";
|
|
11477
|
+
value: string;
|
|
11472
11478
|
label: string;
|
|
11473
11479
|
} | {
|
|
11474
11480
|
type: "token_address";
|
|
11475
11481
|
token: {
|
|
11476
|
-
name: string;
|
|
11477
11482
|
address: string;
|
|
11478
11483
|
type: string;
|
|
11484
|
+
name: string;
|
|
11479
11485
|
unknown: boolean;
|
|
11480
11486
|
symbol?: string | undefined;
|
|
11481
11487
|
decimals?: number | undefined;
|
|
@@ -11498,9 +11504,9 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
11498
11504
|
} | {
|
|
11499
11505
|
type: "nft";
|
|
11500
11506
|
token: {
|
|
11501
|
-
name: string;
|
|
11502
11507
|
address: string;
|
|
11503
11508
|
type: string;
|
|
11509
|
+
name: string;
|
|
11504
11510
|
unknown: boolean;
|
|
11505
11511
|
symbol?: string | undefined;
|
|
11506
11512
|
decimals?: number | undefined;
|
|
@@ -11512,9 +11518,9 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
11512
11518
|
type: "amount";
|
|
11513
11519
|
amount: string;
|
|
11514
11520
|
token: {
|
|
11515
|
-
name: string;
|
|
11516
11521
|
address: string;
|
|
11517
11522
|
type: string;
|
|
11523
|
+
name: string;
|
|
11518
11524
|
unknown: boolean;
|
|
11519
11525
|
symbol?: string | undefined;
|
|
11520
11526
|
decimals?: number | undefined;
|
|
@@ -11530,15 +11536,15 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
11530
11536
|
verified?: boolean | undefined;
|
|
11531
11537
|
addressName?: string | undefined;
|
|
11532
11538
|
} | {
|
|
11533
|
-
value: string;
|
|
11534
11539
|
type: "timestamp";
|
|
11540
|
+
value: string;
|
|
11535
11541
|
label: string;
|
|
11536
11542
|
} | {
|
|
11537
11543
|
type: "token_address";
|
|
11538
11544
|
token: {
|
|
11539
|
-
name: string;
|
|
11540
11545
|
address: string;
|
|
11541
11546
|
type: string;
|
|
11547
|
+
name: string;
|
|
11542
11548
|
unknown: boolean;
|
|
11543
11549
|
symbol?: string | undefined;
|
|
11544
11550
|
decimals?: number | undefined;
|
|
@@ -11561,9 +11567,9 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
11561
11567
|
} | {
|
|
11562
11568
|
type: "nft";
|
|
11563
11569
|
token: {
|
|
11564
|
-
name: string;
|
|
11565
11570
|
address: string;
|
|
11566
11571
|
type: string;
|
|
11572
|
+
name: string;
|
|
11567
11573
|
unknown: boolean;
|
|
11568
11574
|
symbol?: string | undefined;
|
|
11569
11575
|
decimals?: number | undefined;
|
|
@@ -11576,6 +11582,7 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
11576
11582
|
multisigDetails?: {
|
|
11577
11583
|
signers: string[];
|
|
11578
11584
|
} | undefined;
|
|
11585
|
+
isLootboxReward?: boolean | undefined;
|
|
11579
11586
|
}>, "many">;
|
|
11580
11587
|
export declare const activityResponseSchema: z.ZodObject<{
|
|
11581
11588
|
activities: z.ZodArray<z.ZodObject<{
|
|
@@ -12157,19 +12164,19 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
12157
12164
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
12158
12165
|
address: z.ZodOptional<z.ZodString>;
|
|
12159
12166
|
}, "strip", z.ZodTypeAny, {
|
|
12160
|
-
name?: string | undefined;
|
|
12161
12167
|
address?: string | undefined;
|
|
12168
|
+
name?: string | undefined;
|
|
12162
12169
|
iconUrl?: string | undefined;
|
|
12163
12170
|
}, {
|
|
12164
|
-
name?: string | undefined;
|
|
12165
12171
|
address?: string | undefined;
|
|
12172
|
+
name?: string | undefined;
|
|
12166
12173
|
iconUrl?: string | undefined;
|
|
12167
12174
|
}>;
|
|
12168
12175
|
}, "strip", z.ZodTypeAny, {
|
|
12169
12176
|
type: "staking";
|
|
12170
12177
|
stakerInfo: {
|
|
12171
|
-
name?: string | undefined;
|
|
12172
12178
|
address?: string | undefined;
|
|
12179
|
+
name?: string | undefined;
|
|
12173
12180
|
iconUrl?: string | undefined;
|
|
12174
12181
|
};
|
|
12175
12182
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -12186,8 +12193,8 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
12186
12193
|
}, {
|
|
12187
12194
|
type: "staking";
|
|
12188
12195
|
stakerInfo: {
|
|
12189
|
-
name?: string | undefined;
|
|
12190
12196
|
address?: string | undefined;
|
|
12197
|
+
name?: string | undefined;
|
|
12191
12198
|
iconUrl?: string | undefined;
|
|
12192
12199
|
};
|
|
12193
12200
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -12669,19 +12676,19 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
12669
12676
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
12670
12677
|
address: z.ZodOptional<z.ZodString>;
|
|
12671
12678
|
}, "strip", z.ZodTypeAny, {
|
|
12672
|
-
name?: string | undefined;
|
|
12673
12679
|
address?: string | undefined;
|
|
12680
|
+
name?: string | undefined;
|
|
12674
12681
|
iconUrl?: string | undefined;
|
|
12675
12682
|
}, {
|
|
12676
|
-
name?: string | undefined;
|
|
12677
12683
|
address?: string | undefined;
|
|
12684
|
+
name?: string | undefined;
|
|
12678
12685
|
iconUrl?: string | undefined;
|
|
12679
12686
|
}>;
|
|
12680
12687
|
}, "strip", z.ZodTypeAny, {
|
|
12681
12688
|
type: "staking";
|
|
12682
12689
|
stakerInfo: {
|
|
12683
|
-
name?: string | undefined;
|
|
12684
12690
|
address?: string | undefined;
|
|
12691
|
+
name?: string | undefined;
|
|
12685
12692
|
iconUrl?: string | undefined;
|
|
12686
12693
|
};
|
|
12687
12694
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -12698,8 +12705,8 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
12698
12705
|
}, {
|
|
12699
12706
|
type: "staking";
|
|
12700
12707
|
stakerInfo: {
|
|
12701
|
-
name?: string | undefined;
|
|
12702
12708
|
address?: string | undefined;
|
|
12709
|
+
name?: string | undefined;
|
|
12703
12710
|
iconUrl?: string | undefined;
|
|
12704
12711
|
};
|
|
12705
12712
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -12857,8 +12864,8 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
12857
12864
|
} | {
|
|
12858
12865
|
type: "staking";
|
|
12859
12866
|
stakerInfo: {
|
|
12860
|
-
name?: string | undefined;
|
|
12861
12867
|
address?: string | undefined;
|
|
12868
|
+
name?: string | undefined;
|
|
12862
12869
|
iconUrl?: string | undefined;
|
|
12863
12870
|
};
|
|
12864
12871
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -12966,8 +12973,8 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
12966
12973
|
} | {
|
|
12967
12974
|
type: "staking";
|
|
12968
12975
|
stakerInfo: {
|
|
12969
|
-
name?: string | undefined;
|
|
12970
12976
|
address?: string | undefined;
|
|
12977
|
+
name?: string | undefined;
|
|
12971
12978
|
iconUrl?: string | undefined;
|
|
12972
12979
|
};
|
|
12973
12980
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -13078,8 +13085,8 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
13078
13085
|
} | {
|
|
13079
13086
|
type: "staking";
|
|
13080
13087
|
stakerInfo: {
|
|
13081
|
-
name?: string | undefined;
|
|
13082
13088
|
address?: string | undefined;
|
|
13089
|
+
name?: string | undefined;
|
|
13083
13090
|
iconUrl?: string | undefined;
|
|
13084
13091
|
};
|
|
13085
13092
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -13190,8 +13197,8 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
13190
13197
|
} | {
|
|
13191
13198
|
type: "staking";
|
|
13192
13199
|
stakerInfo: {
|
|
13193
|
-
name?: string | undefined;
|
|
13194
13200
|
address?: string | undefined;
|
|
13201
|
+
name?: string | undefined;
|
|
13195
13202
|
iconUrl?: string | undefined;
|
|
13196
13203
|
};
|
|
13197
13204
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -13347,17 +13354,17 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
13347
13354
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
13348
13355
|
type: z.ZodString;
|
|
13349
13356
|
}, "strip", z.ZodTypeAny, {
|
|
13350
|
-
name: string;
|
|
13351
13357
|
address: string;
|
|
13352
13358
|
type: string;
|
|
13359
|
+
name: string;
|
|
13353
13360
|
unknown: boolean;
|
|
13354
13361
|
symbol?: string | undefined;
|
|
13355
13362
|
decimals?: number | undefined;
|
|
13356
13363
|
iconUrl?: string | undefined;
|
|
13357
13364
|
}, {
|
|
13358
|
-
name: string;
|
|
13359
13365
|
address: string;
|
|
13360
13366
|
type: string;
|
|
13367
|
+
name: string;
|
|
13361
13368
|
unknown: boolean;
|
|
13362
13369
|
symbol?: string | undefined;
|
|
13363
13370
|
decimals?: number | undefined;
|
|
@@ -13370,9 +13377,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
13370
13377
|
type: "amount";
|
|
13371
13378
|
amount: string;
|
|
13372
13379
|
token: {
|
|
13373
|
-
name: string;
|
|
13374
13380
|
address: string;
|
|
13375
13381
|
type: string;
|
|
13382
|
+
name: string;
|
|
13376
13383
|
unknown: boolean;
|
|
13377
13384
|
symbol?: string | undefined;
|
|
13378
13385
|
decimals?: number | undefined;
|
|
@@ -13385,9 +13392,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
13385
13392
|
type: "amount";
|
|
13386
13393
|
amount: string;
|
|
13387
13394
|
token: {
|
|
13388
|
-
name: string;
|
|
13389
13395
|
address: string;
|
|
13390
13396
|
type: string;
|
|
13397
|
+
name: string;
|
|
13391
13398
|
unknown: boolean;
|
|
13392
13399
|
symbol?: string | undefined;
|
|
13393
13400
|
decimals?: number | undefined;
|
|
@@ -13419,12 +13426,12 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
13419
13426
|
label: z.ZodString;
|
|
13420
13427
|
value: z.ZodString;
|
|
13421
13428
|
}, "strip", z.ZodTypeAny, {
|
|
13422
|
-
value: string;
|
|
13423
13429
|
type: "timestamp";
|
|
13430
|
+
value: string;
|
|
13424
13431
|
label: string;
|
|
13425
13432
|
}, {
|
|
13426
|
-
value: string;
|
|
13427
13433
|
type: "timestamp";
|
|
13434
|
+
value: string;
|
|
13428
13435
|
label: string;
|
|
13429
13436
|
}>, z.ZodObject<{
|
|
13430
13437
|
type: z.ZodLiteral<"token_address">;
|
|
@@ -13438,17 +13445,17 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
13438
13445
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
13439
13446
|
type: z.ZodString;
|
|
13440
13447
|
}, "strip", z.ZodTypeAny, {
|
|
13441
|
-
name: string;
|
|
13442
13448
|
address: string;
|
|
13443
13449
|
type: string;
|
|
13450
|
+
name: string;
|
|
13444
13451
|
unknown: boolean;
|
|
13445
13452
|
symbol?: string | undefined;
|
|
13446
13453
|
decimals?: number | undefined;
|
|
13447
13454
|
iconUrl?: string | undefined;
|
|
13448
13455
|
}, {
|
|
13449
|
-
name: string;
|
|
13450
13456
|
address: string;
|
|
13451
13457
|
type: string;
|
|
13458
|
+
name: string;
|
|
13452
13459
|
unknown: boolean;
|
|
13453
13460
|
symbol?: string | undefined;
|
|
13454
13461
|
decimals?: number | undefined;
|
|
@@ -13457,9 +13464,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
13457
13464
|
}, "strip", z.ZodTypeAny, {
|
|
13458
13465
|
type: "token_address";
|
|
13459
13466
|
token: {
|
|
13460
|
-
name: string;
|
|
13461
13467
|
address: string;
|
|
13462
13468
|
type: string;
|
|
13469
|
+
name: string;
|
|
13463
13470
|
unknown: boolean;
|
|
13464
13471
|
symbol?: string | undefined;
|
|
13465
13472
|
decimals?: number | undefined;
|
|
@@ -13469,9 +13476,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
13469
13476
|
}, {
|
|
13470
13477
|
type: "token_address";
|
|
13471
13478
|
token: {
|
|
13472
|
-
name: string;
|
|
13473
13479
|
address: string;
|
|
13474
13480
|
type: string;
|
|
13481
|
+
name: string;
|
|
13475
13482
|
unknown: boolean;
|
|
13476
13483
|
symbol?: string | undefined;
|
|
13477
13484
|
decimals?: number | undefined;
|
|
@@ -13529,17 +13536,17 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
13529
13536
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
13530
13537
|
type: z.ZodString;
|
|
13531
13538
|
}, "strip", z.ZodTypeAny, {
|
|
13532
|
-
name: string;
|
|
13533
13539
|
address: string;
|
|
13534
13540
|
type: string;
|
|
13541
|
+
name: string;
|
|
13535
13542
|
unknown: boolean;
|
|
13536
13543
|
symbol?: string | undefined;
|
|
13537
13544
|
decimals?: number | undefined;
|
|
13538
13545
|
iconUrl?: string | undefined;
|
|
13539
13546
|
}, {
|
|
13540
|
-
name: string;
|
|
13541
13547
|
address: string;
|
|
13542
13548
|
type: string;
|
|
13549
|
+
name: string;
|
|
13543
13550
|
unknown: boolean;
|
|
13544
13551
|
symbol?: string | undefined;
|
|
13545
13552
|
decimals?: number | undefined;
|
|
@@ -13548,9 +13555,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
13548
13555
|
}, "strip", z.ZodTypeAny, {
|
|
13549
13556
|
type: "nft";
|
|
13550
13557
|
token: {
|
|
13551
|
-
name: string;
|
|
13552
13558
|
address: string;
|
|
13553
13559
|
type: string;
|
|
13560
|
+
name: string;
|
|
13554
13561
|
unknown: boolean;
|
|
13555
13562
|
symbol?: string | undefined;
|
|
13556
13563
|
decimals?: number | undefined;
|
|
@@ -13560,9 +13567,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
13560
13567
|
}, {
|
|
13561
13568
|
type: "nft";
|
|
13562
13569
|
token: {
|
|
13563
|
-
name: string;
|
|
13564
13570
|
address: string;
|
|
13565
13571
|
type: string;
|
|
13572
|
+
name: string;
|
|
13566
13573
|
unknown: boolean;
|
|
13567
13574
|
symbol?: string | undefined;
|
|
13568
13575
|
decimals?: number | undefined;
|
|
@@ -13582,17 +13589,17 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
13582
13589
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
13583
13590
|
type: z.ZodString;
|
|
13584
13591
|
}, "strip", z.ZodTypeAny, {
|
|
13585
|
-
name: string;
|
|
13586
13592
|
address: string;
|
|
13587
13593
|
type: string;
|
|
13594
|
+
name: string;
|
|
13588
13595
|
unknown: boolean;
|
|
13589
13596
|
symbol?: string | undefined;
|
|
13590
13597
|
decimals?: number | undefined;
|
|
13591
13598
|
iconUrl?: string | undefined;
|
|
13592
13599
|
}, {
|
|
13593
|
-
name: string;
|
|
13594
13600
|
address: string;
|
|
13595
13601
|
type: string;
|
|
13602
|
+
name: string;
|
|
13596
13603
|
unknown: boolean;
|
|
13597
13604
|
symbol?: string | undefined;
|
|
13598
13605
|
decimals?: number | undefined;
|
|
@@ -13605,9 +13612,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
13605
13612
|
type: "amount";
|
|
13606
13613
|
amount: string;
|
|
13607
13614
|
token: {
|
|
13608
|
-
name: string;
|
|
13609
13615
|
address: string;
|
|
13610
13616
|
type: string;
|
|
13617
|
+
name: string;
|
|
13611
13618
|
unknown: boolean;
|
|
13612
13619
|
symbol?: string | undefined;
|
|
13613
13620
|
decimals?: number | undefined;
|
|
@@ -13620,9 +13627,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
13620
13627
|
type: "amount";
|
|
13621
13628
|
amount: string;
|
|
13622
13629
|
token: {
|
|
13623
|
-
name: string;
|
|
13624
13630
|
address: string;
|
|
13625
13631
|
type: string;
|
|
13632
|
+
name: string;
|
|
13626
13633
|
unknown: boolean;
|
|
13627
13634
|
symbol?: string | undefined;
|
|
13628
13635
|
decimals?: number | undefined;
|
|
@@ -13654,12 +13661,12 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
13654
13661
|
label: z.ZodString;
|
|
13655
13662
|
value: z.ZodString;
|
|
13656
13663
|
}, "strip", z.ZodTypeAny, {
|
|
13657
|
-
value: string;
|
|
13658
13664
|
type: "timestamp";
|
|
13665
|
+
value: string;
|
|
13659
13666
|
label: string;
|
|
13660
13667
|
}, {
|
|
13661
|
-
value: string;
|
|
13662
13668
|
type: "timestamp";
|
|
13669
|
+
value: string;
|
|
13663
13670
|
label: string;
|
|
13664
13671
|
}>, z.ZodObject<{
|
|
13665
13672
|
type: z.ZodLiteral<"token_address">;
|
|
@@ -13673,17 +13680,17 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
13673
13680
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
13674
13681
|
type: z.ZodString;
|
|
13675
13682
|
}, "strip", z.ZodTypeAny, {
|
|
13676
|
-
name: string;
|
|
13677
13683
|
address: string;
|
|
13678
13684
|
type: string;
|
|
13685
|
+
name: string;
|
|
13679
13686
|
unknown: boolean;
|
|
13680
13687
|
symbol?: string | undefined;
|
|
13681
13688
|
decimals?: number | undefined;
|
|
13682
13689
|
iconUrl?: string | undefined;
|
|
13683
13690
|
}, {
|
|
13684
|
-
name: string;
|
|
13685
13691
|
address: string;
|
|
13686
13692
|
type: string;
|
|
13693
|
+
name: string;
|
|
13687
13694
|
unknown: boolean;
|
|
13688
13695
|
symbol?: string | undefined;
|
|
13689
13696
|
decimals?: number | undefined;
|
|
@@ -13692,9 +13699,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
13692
13699
|
}, "strip", z.ZodTypeAny, {
|
|
13693
13700
|
type: "token_address";
|
|
13694
13701
|
token: {
|
|
13695
|
-
name: string;
|
|
13696
13702
|
address: string;
|
|
13697
13703
|
type: string;
|
|
13704
|
+
name: string;
|
|
13698
13705
|
unknown: boolean;
|
|
13699
13706
|
symbol?: string | undefined;
|
|
13700
13707
|
decimals?: number | undefined;
|
|
@@ -13704,9 +13711,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
13704
13711
|
}, {
|
|
13705
13712
|
type: "token_address";
|
|
13706
13713
|
token: {
|
|
13707
|
-
name: string;
|
|
13708
13714
|
address: string;
|
|
13709
13715
|
type: string;
|
|
13716
|
+
name: string;
|
|
13710
13717
|
unknown: boolean;
|
|
13711
13718
|
symbol?: string | undefined;
|
|
13712
13719
|
decimals?: number | undefined;
|
|
@@ -13764,17 +13771,17 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
13764
13771
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
13765
13772
|
type: z.ZodString;
|
|
13766
13773
|
}, "strip", z.ZodTypeAny, {
|
|
13767
|
-
name: string;
|
|
13768
13774
|
address: string;
|
|
13769
13775
|
type: string;
|
|
13776
|
+
name: string;
|
|
13770
13777
|
unknown: boolean;
|
|
13771
13778
|
symbol?: string | undefined;
|
|
13772
13779
|
decimals?: number | undefined;
|
|
13773
13780
|
iconUrl?: string | undefined;
|
|
13774
13781
|
}, {
|
|
13775
|
-
name: string;
|
|
13776
13782
|
address: string;
|
|
13777
13783
|
type: string;
|
|
13784
|
+
name: string;
|
|
13778
13785
|
unknown: boolean;
|
|
13779
13786
|
symbol?: string | undefined;
|
|
13780
13787
|
decimals?: number | undefined;
|
|
@@ -13783,9 +13790,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
13783
13790
|
}, "strip", z.ZodTypeAny, {
|
|
13784
13791
|
type: "nft";
|
|
13785
13792
|
token: {
|
|
13786
|
-
name: string;
|
|
13787
13793
|
address: string;
|
|
13788
13794
|
type: string;
|
|
13795
|
+
name: string;
|
|
13789
13796
|
unknown: boolean;
|
|
13790
13797
|
symbol?: string | undefined;
|
|
13791
13798
|
decimals?: number | undefined;
|
|
@@ -13795,9 +13802,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
13795
13802
|
}, {
|
|
13796
13803
|
type: "nft";
|
|
13797
13804
|
token: {
|
|
13798
|
-
name: string;
|
|
13799
13805
|
address: string;
|
|
13800
13806
|
type: string;
|
|
13807
|
+
name: string;
|
|
13801
13808
|
unknown: boolean;
|
|
13802
13809
|
symbol?: string | undefined;
|
|
13803
13810
|
decimals?: number | undefined;
|
|
@@ -13811,9 +13818,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
13811
13818
|
type: "amount";
|
|
13812
13819
|
amount: string;
|
|
13813
13820
|
token: {
|
|
13814
|
-
name: string;
|
|
13815
13821
|
address: string;
|
|
13816
13822
|
type: string;
|
|
13823
|
+
name: string;
|
|
13817
13824
|
unknown: boolean;
|
|
13818
13825
|
symbol?: string | undefined;
|
|
13819
13826
|
decimals?: number | undefined;
|
|
@@ -13829,15 +13836,15 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
13829
13836
|
verified?: boolean | undefined;
|
|
13830
13837
|
addressName?: string | undefined;
|
|
13831
13838
|
} | {
|
|
13832
|
-
value: string;
|
|
13833
13839
|
type: "timestamp";
|
|
13840
|
+
value: string;
|
|
13834
13841
|
label: string;
|
|
13835
13842
|
} | {
|
|
13836
13843
|
type: "token_address";
|
|
13837
13844
|
token: {
|
|
13838
|
-
name: string;
|
|
13839
13845
|
address: string;
|
|
13840
13846
|
type: string;
|
|
13847
|
+
name: string;
|
|
13841
13848
|
unknown: boolean;
|
|
13842
13849
|
symbol?: string | undefined;
|
|
13843
13850
|
decimals?: number | undefined;
|
|
@@ -13860,9 +13867,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
13860
13867
|
} | {
|
|
13861
13868
|
type: "nft";
|
|
13862
13869
|
token: {
|
|
13863
|
-
name: string;
|
|
13864
13870
|
address: string;
|
|
13865
13871
|
type: string;
|
|
13872
|
+
name: string;
|
|
13866
13873
|
unknown: boolean;
|
|
13867
13874
|
symbol?: string | undefined;
|
|
13868
13875
|
decimals?: number | undefined;
|
|
@@ -13874,9 +13881,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
13874
13881
|
type: "amount";
|
|
13875
13882
|
amount: string;
|
|
13876
13883
|
token: {
|
|
13877
|
-
name: string;
|
|
13878
13884
|
address: string;
|
|
13879
13885
|
type: string;
|
|
13886
|
+
name: string;
|
|
13880
13887
|
unknown: boolean;
|
|
13881
13888
|
symbol?: string | undefined;
|
|
13882
13889
|
decimals?: number | undefined;
|
|
@@ -13892,15 +13899,15 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
13892
13899
|
verified?: boolean | undefined;
|
|
13893
13900
|
addressName?: string | undefined;
|
|
13894
13901
|
} | {
|
|
13895
|
-
value: string;
|
|
13896
13902
|
type: "timestamp";
|
|
13903
|
+
value: string;
|
|
13897
13904
|
label: string;
|
|
13898
13905
|
} | {
|
|
13899
13906
|
type: "token_address";
|
|
13900
13907
|
token: {
|
|
13901
|
-
name: string;
|
|
13902
13908
|
address: string;
|
|
13903
13909
|
type: string;
|
|
13910
|
+
name: string;
|
|
13904
13911
|
unknown: boolean;
|
|
13905
13912
|
symbol?: string | undefined;
|
|
13906
13913
|
decimals?: number | undefined;
|
|
@@ -13923,9 +13930,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
13923
13930
|
} | {
|
|
13924
13931
|
type: "nft";
|
|
13925
13932
|
token: {
|
|
13926
|
-
name: string;
|
|
13927
13933
|
address: string;
|
|
13928
13934
|
type: string;
|
|
13935
|
+
name: string;
|
|
13929
13936
|
unknown: boolean;
|
|
13930
13937
|
symbol?: string | undefined;
|
|
13931
13938
|
decimals?: number | undefined;
|
|
@@ -13939,9 +13946,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
13939
13946
|
type: "amount";
|
|
13940
13947
|
amount: string;
|
|
13941
13948
|
token: {
|
|
13942
|
-
name: string;
|
|
13943
13949
|
address: string;
|
|
13944
13950
|
type: string;
|
|
13951
|
+
name: string;
|
|
13945
13952
|
unknown: boolean;
|
|
13946
13953
|
symbol?: string | undefined;
|
|
13947
13954
|
decimals?: number | undefined;
|
|
@@ -13957,15 +13964,15 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
13957
13964
|
verified?: boolean | undefined;
|
|
13958
13965
|
addressName?: string | undefined;
|
|
13959
13966
|
} | {
|
|
13960
|
-
value: string;
|
|
13961
13967
|
type: "timestamp";
|
|
13968
|
+
value: string;
|
|
13962
13969
|
label: string;
|
|
13963
13970
|
} | {
|
|
13964
13971
|
type: "token_address";
|
|
13965
13972
|
token: {
|
|
13966
|
-
name: string;
|
|
13967
13973
|
address: string;
|
|
13968
13974
|
type: string;
|
|
13975
|
+
name: string;
|
|
13969
13976
|
unknown: boolean;
|
|
13970
13977
|
symbol?: string | undefined;
|
|
13971
13978
|
decimals?: number | undefined;
|
|
@@ -13988,9 +13995,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
13988
13995
|
} | {
|
|
13989
13996
|
type: "nft";
|
|
13990
13997
|
token: {
|
|
13991
|
-
name: string;
|
|
13992
13998
|
address: string;
|
|
13993
13999
|
type: string;
|
|
14000
|
+
name: string;
|
|
13994
14001
|
unknown: boolean;
|
|
13995
14002
|
symbol?: string | undefined;
|
|
13996
14003
|
decimals?: number | undefined;
|
|
@@ -14002,9 +14009,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
14002
14009
|
type: "amount";
|
|
14003
14010
|
amount: string;
|
|
14004
14011
|
token: {
|
|
14005
|
-
name: string;
|
|
14006
14012
|
address: string;
|
|
14007
14013
|
type: string;
|
|
14014
|
+
name: string;
|
|
14008
14015
|
unknown: boolean;
|
|
14009
14016
|
symbol?: string | undefined;
|
|
14010
14017
|
decimals?: number | undefined;
|
|
@@ -14020,15 +14027,15 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
14020
14027
|
verified?: boolean | undefined;
|
|
14021
14028
|
addressName?: string | undefined;
|
|
14022
14029
|
} | {
|
|
14023
|
-
value: string;
|
|
14024
14030
|
type: "timestamp";
|
|
14031
|
+
value: string;
|
|
14025
14032
|
label: string;
|
|
14026
14033
|
} | {
|
|
14027
14034
|
type: "token_address";
|
|
14028
14035
|
token: {
|
|
14029
|
-
name: string;
|
|
14030
14036
|
address: string;
|
|
14031
14037
|
type: string;
|
|
14038
|
+
name: string;
|
|
14032
14039
|
unknown: boolean;
|
|
14033
14040
|
symbol?: string | undefined;
|
|
14034
14041
|
decimals?: number | undefined;
|
|
@@ -14051,9 +14058,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
14051
14058
|
} | {
|
|
14052
14059
|
type: "nft";
|
|
14053
14060
|
token: {
|
|
14054
|
-
name: string;
|
|
14055
14061
|
address: string;
|
|
14056
14062
|
type: string;
|
|
14063
|
+
name: string;
|
|
14057
14064
|
unknown: boolean;
|
|
14058
14065
|
symbol?: string | undefined;
|
|
14059
14066
|
decimals?: number | undefined;
|
|
@@ -14070,9 +14077,10 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
14070
14077
|
}, {
|
|
14071
14078
|
signers: string[];
|
|
14072
14079
|
}>>;
|
|
14080
|
+
isLootboxReward: z.ZodOptional<z.ZodBoolean>;
|
|
14073
14081
|
}, "strip", z.ZodTypeAny, {
|
|
14074
|
-
status: "pending" | "success" | "failure";
|
|
14075
14082
|
type: "staking" | "payment" | "approval" | "changePubKey" | "dappInteraction" | "deploy" | "gift" | "multicall" | "security" | "trade";
|
|
14083
|
+
status: "pending" | "success" | "failure";
|
|
14076
14084
|
network: string;
|
|
14077
14085
|
wallet: `0x${string}`;
|
|
14078
14086
|
id: string;
|
|
@@ -14155,8 +14163,8 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
14155
14163
|
} | {
|
|
14156
14164
|
type: "staking";
|
|
14157
14165
|
stakerInfo: {
|
|
14158
|
-
name?: string | undefined;
|
|
14159
14166
|
address?: string | undefined;
|
|
14167
|
+
name?: string | undefined;
|
|
14160
14168
|
iconUrl?: string | undefined;
|
|
14161
14169
|
};
|
|
14162
14170
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -14265,8 +14273,8 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
14265
14273
|
} | {
|
|
14266
14274
|
type: "staking";
|
|
14267
14275
|
stakerInfo: {
|
|
14268
|
-
name?: string | undefined;
|
|
14269
14276
|
address?: string | undefined;
|
|
14277
|
+
name?: string | undefined;
|
|
14270
14278
|
iconUrl?: string | undefined;
|
|
14271
14279
|
};
|
|
14272
14280
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -14377,9 +14385,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
14377
14385
|
type: "amount";
|
|
14378
14386
|
amount: string;
|
|
14379
14387
|
token: {
|
|
14380
|
-
name: string;
|
|
14381
14388
|
address: string;
|
|
14382
14389
|
type: string;
|
|
14390
|
+
name: string;
|
|
14383
14391
|
unknown: boolean;
|
|
14384
14392
|
symbol?: string | undefined;
|
|
14385
14393
|
decimals?: number | undefined;
|
|
@@ -14395,15 +14403,15 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
14395
14403
|
verified?: boolean | undefined;
|
|
14396
14404
|
addressName?: string | undefined;
|
|
14397
14405
|
} | {
|
|
14398
|
-
value: string;
|
|
14399
14406
|
type: "timestamp";
|
|
14407
|
+
value: string;
|
|
14400
14408
|
label: string;
|
|
14401
14409
|
} | {
|
|
14402
14410
|
type: "token_address";
|
|
14403
14411
|
token: {
|
|
14404
|
-
name: string;
|
|
14405
14412
|
address: string;
|
|
14406
14413
|
type: string;
|
|
14414
|
+
name: string;
|
|
14407
14415
|
unknown: boolean;
|
|
14408
14416
|
symbol?: string | undefined;
|
|
14409
14417
|
decimals?: number | undefined;
|
|
@@ -14426,9 +14434,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
14426
14434
|
} | {
|
|
14427
14435
|
type: "nft";
|
|
14428
14436
|
token: {
|
|
14429
|
-
name: string;
|
|
14430
14437
|
address: string;
|
|
14431
14438
|
type: string;
|
|
14439
|
+
name: string;
|
|
14432
14440
|
unknown: boolean;
|
|
14433
14441
|
symbol?: string | undefined;
|
|
14434
14442
|
decimals?: number | undefined;
|
|
@@ -14440,9 +14448,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
14440
14448
|
type: "amount";
|
|
14441
14449
|
amount: string;
|
|
14442
14450
|
token: {
|
|
14443
|
-
name: string;
|
|
14444
14451
|
address: string;
|
|
14445
14452
|
type: string;
|
|
14453
|
+
name: string;
|
|
14446
14454
|
unknown: boolean;
|
|
14447
14455
|
symbol?: string | undefined;
|
|
14448
14456
|
decimals?: number | undefined;
|
|
@@ -14458,15 +14466,15 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
14458
14466
|
verified?: boolean | undefined;
|
|
14459
14467
|
addressName?: string | undefined;
|
|
14460
14468
|
} | {
|
|
14461
|
-
value: string;
|
|
14462
14469
|
type: "timestamp";
|
|
14470
|
+
value: string;
|
|
14463
14471
|
label: string;
|
|
14464
14472
|
} | {
|
|
14465
14473
|
type: "token_address";
|
|
14466
14474
|
token: {
|
|
14467
|
-
name: string;
|
|
14468
14475
|
address: string;
|
|
14469
14476
|
type: string;
|
|
14477
|
+
name: string;
|
|
14470
14478
|
unknown: boolean;
|
|
14471
14479
|
symbol?: string | undefined;
|
|
14472
14480
|
decimals?: number | undefined;
|
|
@@ -14489,9 +14497,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
14489
14497
|
} | {
|
|
14490
14498
|
type: "nft";
|
|
14491
14499
|
token: {
|
|
14492
|
-
name: string;
|
|
14493
14500
|
address: string;
|
|
14494
14501
|
type: string;
|
|
14502
|
+
name: string;
|
|
14495
14503
|
unknown: boolean;
|
|
14496
14504
|
symbol?: string | undefined;
|
|
14497
14505
|
decimals?: number | undefined;
|
|
@@ -14504,9 +14512,10 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
14504
14512
|
multisigDetails?: {
|
|
14505
14513
|
signers: `0x${string}`[];
|
|
14506
14514
|
} | undefined;
|
|
14515
|
+
isLootboxReward?: boolean | undefined;
|
|
14507
14516
|
}, {
|
|
14508
|
-
status: "pending" | "success" | "failure";
|
|
14509
14517
|
type: "staking" | "payment" | "approval" | "changePubKey" | "dappInteraction" | "deploy" | "gift" | "multicall" | "security" | "trade";
|
|
14518
|
+
status: "pending" | "success" | "failure";
|
|
14510
14519
|
network: string;
|
|
14511
14520
|
wallet: string;
|
|
14512
14521
|
id: string;
|
|
@@ -14589,8 +14598,8 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
14589
14598
|
} | {
|
|
14590
14599
|
type: "staking";
|
|
14591
14600
|
stakerInfo: {
|
|
14592
|
-
name?: string | undefined;
|
|
14593
14601
|
address?: string | undefined;
|
|
14602
|
+
name?: string | undefined;
|
|
14594
14603
|
iconUrl?: string | undefined;
|
|
14595
14604
|
};
|
|
14596
14605
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -14699,8 +14708,8 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
14699
14708
|
} | {
|
|
14700
14709
|
type: "staking";
|
|
14701
14710
|
stakerInfo: {
|
|
14702
|
-
name?: string | undefined;
|
|
14703
14711
|
address?: string | undefined;
|
|
14712
|
+
name?: string | undefined;
|
|
14704
14713
|
iconUrl?: string | undefined;
|
|
14705
14714
|
};
|
|
14706
14715
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -14811,9 +14820,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
14811
14820
|
type: "amount";
|
|
14812
14821
|
amount: string;
|
|
14813
14822
|
token: {
|
|
14814
|
-
name: string;
|
|
14815
14823
|
address: string;
|
|
14816
14824
|
type: string;
|
|
14825
|
+
name: string;
|
|
14817
14826
|
unknown: boolean;
|
|
14818
14827
|
symbol?: string | undefined;
|
|
14819
14828
|
decimals?: number | undefined;
|
|
@@ -14829,15 +14838,15 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
14829
14838
|
verified?: boolean | undefined;
|
|
14830
14839
|
addressName?: string | undefined;
|
|
14831
14840
|
} | {
|
|
14832
|
-
value: string;
|
|
14833
14841
|
type: "timestamp";
|
|
14842
|
+
value: string;
|
|
14834
14843
|
label: string;
|
|
14835
14844
|
} | {
|
|
14836
14845
|
type: "token_address";
|
|
14837
14846
|
token: {
|
|
14838
|
-
name: string;
|
|
14839
14847
|
address: string;
|
|
14840
14848
|
type: string;
|
|
14849
|
+
name: string;
|
|
14841
14850
|
unknown: boolean;
|
|
14842
14851
|
symbol?: string | undefined;
|
|
14843
14852
|
decimals?: number | undefined;
|
|
@@ -14860,9 +14869,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
14860
14869
|
} | {
|
|
14861
14870
|
type: "nft";
|
|
14862
14871
|
token: {
|
|
14863
|
-
name: string;
|
|
14864
14872
|
address: string;
|
|
14865
14873
|
type: string;
|
|
14874
|
+
name: string;
|
|
14866
14875
|
unknown: boolean;
|
|
14867
14876
|
symbol?: string | undefined;
|
|
14868
14877
|
decimals?: number | undefined;
|
|
@@ -14874,9 +14883,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
14874
14883
|
type: "amount";
|
|
14875
14884
|
amount: string;
|
|
14876
14885
|
token: {
|
|
14877
|
-
name: string;
|
|
14878
14886
|
address: string;
|
|
14879
14887
|
type: string;
|
|
14888
|
+
name: string;
|
|
14880
14889
|
unknown: boolean;
|
|
14881
14890
|
symbol?: string | undefined;
|
|
14882
14891
|
decimals?: number | undefined;
|
|
@@ -14892,15 +14901,15 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
14892
14901
|
verified?: boolean | undefined;
|
|
14893
14902
|
addressName?: string | undefined;
|
|
14894
14903
|
} | {
|
|
14895
|
-
value: string;
|
|
14896
14904
|
type: "timestamp";
|
|
14905
|
+
value: string;
|
|
14897
14906
|
label: string;
|
|
14898
14907
|
} | {
|
|
14899
14908
|
type: "token_address";
|
|
14900
14909
|
token: {
|
|
14901
|
-
name: string;
|
|
14902
14910
|
address: string;
|
|
14903
14911
|
type: string;
|
|
14912
|
+
name: string;
|
|
14904
14913
|
unknown: boolean;
|
|
14905
14914
|
symbol?: string | undefined;
|
|
14906
14915
|
decimals?: number | undefined;
|
|
@@ -14923,9 +14932,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
14923
14932
|
} | {
|
|
14924
14933
|
type: "nft";
|
|
14925
14934
|
token: {
|
|
14926
|
-
name: string;
|
|
14927
14935
|
address: string;
|
|
14928
14936
|
type: string;
|
|
14937
|
+
name: string;
|
|
14929
14938
|
unknown: boolean;
|
|
14930
14939
|
symbol?: string | undefined;
|
|
14931
14940
|
decimals?: number | undefined;
|
|
@@ -14938,6 +14947,7 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
14938
14947
|
multisigDetails?: {
|
|
14939
14948
|
signers: string[];
|
|
14940
14949
|
} | undefined;
|
|
14950
|
+
isLootboxReward?: boolean | undefined;
|
|
14941
14951
|
}>, "many">;
|
|
14942
14952
|
page: z.ZodNumber;
|
|
14943
14953
|
pageSize: z.ZodNumber;
|
|
@@ -14947,8 +14957,8 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
14947
14957
|
totalPages: number;
|
|
14948
14958
|
page: number;
|
|
14949
14959
|
activities: {
|
|
14950
|
-
status: "pending" | "success" | "failure";
|
|
14951
14960
|
type: "staking" | "payment" | "approval" | "changePubKey" | "dappInteraction" | "deploy" | "gift" | "multicall" | "security" | "trade";
|
|
14961
|
+
status: "pending" | "success" | "failure";
|
|
14952
14962
|
network: string;
|
|
14953
14963
|
wallet: `0x${string}`;
|
|
14954
14964
|
id: string;
|
|
@@ -15031,8 +15041,8 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
15031
15041
|
} | {
|
|
15032
15042
|
type: "staking";
|
|
15033
15043
|
stakerInfo: {
|
|
15034
|
-
name?: string | undefined;
|
|
15035
15044
|
address?: string | undefined;
|
|
15045
|
+
name?: string | undefined;
|
|
15036
15046
|
iconUrl?: string | undefined;
|
|
15037
15047
|
};
|
|
15038
15048
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -15141,8 +15151,8 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
15141
15151
|
} | {
|
|
15142
15152
|
type: "staking";
|
|
15143
15153
|
stakerInfo: {
|
|
15144
|
-
name?: string | undefined;
|
|
15145
15154
|
address?: string | undefined;
|
|
15155
|
+
name?: string | undefined;
|
|
15146
15156
|
iconUrl?: string | undefined;
|
|
15147
15157
|
};
|
|
15148
15158
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -15253,9 +15263,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
15253
15263
|
type: "amount";
|
|
15254
15264
|
amount: string;
|
|
15255
15265
|
token: {
|
|
15256
|
-
name: string;
|
|
15257
15266
|
address: string;
|
|
15258
15267
|
type: string;
|
|
15268
|
+
name: string;
|
|
15259
15269
|
unknown: boolean;
|
|
15260
15270
|
symbol?: string | undefined;
|
|
15261
15271
|
decimals?: number | undefined;
|
|
@@ -15271,15 +15281,15 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
15271
15281
|
verified?: boolean | undefined;
|
|
15272
15282
|
addressName?: string | undefined;
|
|
15273
15283
|
} | {
|
|
15274
|
-
value: string;
|
|
15275
15284
|
type: "timestamp";
|
|
15285
|
+
value: string;
|
|
15276
15286
|
label: string;
|
|
15277
15287
|
} | {
|
|
15278
15288
|
type: "token_address";
|
|
15279
15289
|
token: {
|
|
15280
|
-
name: string;
|
|
15281
15290
|
address: string;
|
|
15282
15291
|
type: string;
|
|
15292
|
+
name: string;
|
|
15283
15293
|
unknown: boolean;
|
|
15284
15294
|
symbol?: string | undefined;
|
|
15285
15295
|
decimals?: number | undefined;
|
|
@@ -15302,9 +15312,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
15302
15312
|
} | {
|
|
15303
15313
|
type: "nft";
|
|
15304
15314
|
token: {
|
|
15305
|
-
name: string;
|
|
15306
15315
|
address: string;
|
|
15307
15316
|
type: string;
|
|
15317
|
+
name: string;
|
|
15308
15318
|
unknown: boolean;
|
|
15309
15319
|
symbol?: string | undefined;
|
|
15310
15320
|
decimals?: number | undefined;
|
|
@@ -15316,9 +15326,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
15316
15326
|
type: "amount";
|
|
15317
15327
|
amount: string;
|
|
15318
15328
|
token: {
|
|
15319
|
-
name: string;
|
|
15320
15329
|
address: string;
|
|
15321
15330
|
type: string;
|
|
15331
|
+
name: string;
|
|
15322
15332
|
unknown: boolean;
|
|
15323
15333
|
symbol?: string | undefined;
|
|
15324
15334
|
decimals?: number | undefined;
|
|
@@ -15334,15 +15344,15 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
15334
15344
|
verified?: boolean | undefined;
|
|
15335
15345
|
addressName?: string | undefined;
|
|
15336
15346
|
} | {
|
|
15337
|
-
value: string;
|
|
15338
15347
|
type: "timestamp";
|
|
15348
|
+
value: string;
|
|
15339
15349
|
label: string;
|
|
15340
15350
|
} | {
|
|
15341
15351
|
type: "token_address";
|
|
15342
15352
|
token: {
|
|
15343
|
-
name: string;
|
|
15344
15353
|
address: string;
|
|
15345
15354
|
type: string;
|
|
15355
|
+
name: string;
|
|
15346
15356
|
unknown: boolean;
|
|
15347
15357
|
symbol?: string | undefined;
|
|
15348
15358
|
decimals?: number | undefined;
|
|
@@ -15365,9 +15375,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
15365
15375
|
} | {
|
|
15366
15376
|
type: "nft";
|
|
15367
15377
|
token: {
|
|
15368
|
-
name: string;
|
|
15369
15378
|
address: string;
|
|
15370
15379
|
type: string;
|
|
15380
|
+
name: string;
|
|
15371
15381
|
unknown: boolean;
|
|
15372
15382
|
symbol?: string | undefined;
|
|
15373
15383
|
decimals?: number | undefined;
|
|
@@ -15380,6 +15390,7 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
15380
15390
|
multisigDetails?: {
|
|
15381
15391
|
signers: `0x${string}`[];
|
|
15382
15392
|
} | undefined;
|
|
15393
|
+
isLootboxReward?: boolean | undefined;
|
|
15383
15394
|
}[];
|
|
15384
15395
|
pageSize: number;
|
|
15385
15396
|
totalElements: number;
|
|
@@ -15387,8 +15398,8 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
15387
15398
|
totalPages: number;
|
|
15388
15399
|
page: number;
|
|
15389
15400
|
activities: {
|
|
15390
|
-
status: "pending" | "success" | "failure";
|
|
15391
15401
|
type: "staking" | "payment" | "approval" | "changePubKey" | "dappInteraction" | "deploy" | "gift" | "multicall" | "security" | "trade";
|
|
15402
|
+
status: "pending" | "success" | "failure";
|
|
15392
15403
|
network: string;
|
|
15393
15404
|
wallet: string;
|
|
15394
15405
|
id: string;
|
|
@@ -15471,8 +15482,8 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
15471
15482
|
} | {
|
|
15472
15483
|
type: "staking";
|
|
15473
15484
|
stakerInfo: {
|
|
15474
|
-
name?: string | undefined;
|
|
15475
15485
|
address?: string | undefined;
|
|
15486
|
+
name?: string | undefined;
|
|
15476
15487
|
iconUrl?: string | undefined;
|
|
15477
15488
|
};
|
|
15478
15489
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -15581,8 +15592,8 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
15581
15592
|
} | {
|
|
15582
15593
|
type: "staking";
|
|
15583
15594
|
stakerInfo: {
|
|
15584
|
-
name?: string | undefined;
|
|
15585
15595
|
address?: string | undefined;
|
|
15596
|
+
name?: string | undefined;
|
|
15586
15597
|
iconUrl?: string | undefined;
|
|
15587
15598
|
};
|
|
15588
15599
|
stakingAction: "deposit" | "stake" | "initiateWithdraw" | "withdraw" | "claim";
|
|
@@ -15693,9 +15704,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
15693
15704
|
type: "amount";
|
|
15694
15705
|
amount: string;
|
|
15695
15706
|
token: {
|
|
15696
|
-
name: string;
|
|
15697
15707
|
address: string;
|
|
15698
15708
|
type: string;
|
|
15709
|
+
name: string;
|
|
15699
15710
|
unknown: boolean;
|
|
15700
15711
|
symbol?: string | undefined;
|
|
15701
15712
|
decimals?: number | undefined;
|
|
@@ -15711,15 +15722,15 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
15711
15722
|
verified?: boolean | undefined;
|
|
15712
15723
|
addressName?: string | undefined;
|
|
15713
15724
|
} | {
|
|
15714
|
-
value: string;
|
|
15715
15725
|
type: "timestamp";
|
|
15726
|
+
value: string;
|
|
15716
15727
|
label: string;
|
|
15717
15728
|
} | {
|
|
15718
15729
|
type: "token_address";
|
|
15719
15730
|
token: {
|
|
15720
|
-
name: string;
|
|
15721
15731
|
address: string;
|
|
15722
15732
|
type: string;
|
|
15733
|
+
name: string;
|
|
15723
15734
|
unknown: boolean;
|
|
15724
15735
|
symbol?: string | undefined;
|
|
15725
15736
|
decimals?: number | undefined;
|
|
@@ -15742,9 +15753,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
15742
15753
|
} | {
|
|
15743
15754
|
type: "nft";
|
|
15744
15755
|
token: {
|
|
15745
|
-
name: string;
|
|
15746
15756
|
address: string;
|
|
15747
15757
|
type: string;
|
|
15758
|
+
name: string;
|
|
15748
15759
|
unknown: boolean;
|
|
15749
15760
|
symbol?: string | undefined;
|
|
15750
15761
|
decimals?: number | undefined;
|
|
@@ -15756,9 +15767,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
15756
15767
|
type: "amount";
|
|
15757
15768
|
amount: string;
|
|
15758
15769
|
token: {
|
|
15759
|
-
name: string;
|
|
15760
15770
|
address: string;
|
|
15761
15771
|
type: string;
|
|
15772
|
+
name: string;
|
|
15762
15773
|
unknown: boolean;
|
|
15763
15774
|
symbol?: string | undefined;
|
|
15764
15775
|
decimals?: number | undefined;
|
|
@@ -15774,15 +15785,15 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
15774
15785
|
verified?: boolean | undefined;
|
|
15775
15786
|
addressName?: string | undefined;
|
|
15776
15787
|
} | {
|
|
15777
|
-
value: string;
|
|
15778
15788
|
type: "timestamp";
|
|
15789
|
+
value: string;
|
|
15779
15790
|
label: string;
|
|
15780
15791
|
} | {
|
|
15781
15792
|
type: "token_address";
|
|
15782
15793
|
token: {
|
|
15783
|
-
name: string;
|
|
15784
15794
|
address: string;
|
|
15785
15795
|
type: string;
|
|
15796
|
+
name: string;
|
|
15786
15797
|
unknown: boolean;
|
|
15787
15798
|
symbol?: string | undefined;
|
|
15788
15799
|
decimals?: number | undefined;
|
|
@@ -15805,9 +15816,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
15805
15816
|
} | {
|
|
15806
15817
|
type: "nft";
|
|
15807
15818
|
token: {
|
|
15808
|
-
name: string;
|
|
15809
15819
|
address: string;
|
|
15810
15820
|
type: string;
|
|
15821
|
+
name: string;
|
|
15811
15822
|
unknown: boolean;
|
|
15812
15823
|
symbol?: string | undefined;
|
|
15813
15824
|
decimals?: number | undefined;
|
|
@@ -15820,6 +15831,7 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
15820
15831
|
multisigDetails?: {
|
|
15821
15832
|
signers: string[];
|
|
15822
15833
|
} | undefined;
|
|
15834
|
+
isLootboxReward?: boolean | undefined;
|
|
15823
15835
|
}[];
|
|
15824
15836
|
pageSize: number;
|
|
15825
15837
|
totalElements: number;
|