@argent/x-shared 1.31.0 → 1.32.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/features/simulation/activity/schema.d.ts +52 -0
- package/dist/index.js +2 -2
- package/dist/index.mjs +504 -472
- package/dist/onchainRecovery/IOnchainRecoveryService.d.ts +2 -2
- package/dist/onchainRecovery/OnchainRecoveryService.d.ts +25 -3
- package/dist/onchainRecovery/schema.d.ts +25 -7
- package/dist/simulation.js +1 -1
- package/dist/simulation.mjs +2 -2
- package/dist/{transactionVersion-DpP30aO1.mjs → transactionVersion-ByCNdhj1.mjs} +4 -1
- package/dist/{transactionVersion-CnOPxZEg.js → transactionVersion-IV8urBdT.js} +1 -1
- package/package.json +1 -1
|
@@ -3013,6 +3013,13 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
3013
3013
|
})[] | undefined;
|
|
3014
3014
|
}>, "many">>;
|
|
3015
3015
|
title: z.ZodOptional<z.ZodString>;
|
|
3016
|
+
multisigDetails: z.ZodOptional<z.ZodObject<{
|
|
3017
|
+
signers: z.ZodArray<z.ZodEffects<z.ZodString, `0x${string}`, string>, "many">;
|
|
3018
|
+
}, "strip", z.ZodTypeAny, {
|
|
3019
|
+
signers: `0x${string}`[];
|
|
3020
|
+
}, {
|
|
3021
|
+
signers: string[];
|
|
3022
|
+
}>>;
|
|
3016
3023
|
}, "strip", z.ZodTypeAny, {
|
|
3017
3024
|
status: "pending" | "success" | "failure";
|
|
3018
3025
|
type: "payment" | "approval" | "changePubKey" | "dappInteraction" | "deploy" | "gift" | "multicall" | "security" | "trade";
|
|
@@ -3356,6 +3363,9 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
3356
3363
|
};
|
|
3357
3364
|
})[] | undefined;
|
|
3358
3365
|
}[] | undefined;
|
|
3366
|
+
multisigDetails?: {
|
|
3367
|
+
signers: `0x${string}`[];
|
|
3368
|
+
} | undefined;
|
|
3359
3369
|
}, {
|
|
3360
3370
|
status: "pending" | "success" | "failure";
|
|
3361
3371
|
type: "payment" | "approval" | "changePubKey" | "dappInteraction" | "deploy" | "gift" | "multicall" | "security" | "trade";
|
|
@@ -3699,6 +3709,9 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
3699
3709
|
};
|
|
3700
3710
|
})[] | undefined;
|
|
3701
3711
|
}[] | undefined;
|
|
3712
|
+
multisigDetails?: {
|
|
3713
|
+
signers: string[];
|
|
3714
|
+
} | undefined;
|
|
3702
3715
|
}>;
|
|
3703
3716
|
export type Activity = z.infer<typeof activitySchema>;
|
|
3704
3717
|
/** 'native' is an activity originating within individual product, e.g. not created by dapp */
|
|
@@ -5601,6 +5614,13 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
5601
5614
|
})[] | undefined;
|
|
5602
5615
|
}>, "many">>;
|
|
5603
5616
|
title: z.ZodOptional<z.ZodString>;
|
|
5617
|
+
multisigDetails: z.ZodOptional<z.ZodObject<{
|
|
5618
|
+
signers: z.ZodArray<z.ZodEffects<z.ZodString, `0x${string}`, string>, "many">;
|
|
5619
|
+
}, "strip", z.ZodTypeAny, {
|
|
5620
|
+
signers: `0x${string}`[];
|
|
5621
|
+
}, {
|
|
5622
|
+
signers: string[];
|
|
5623
|
+
}>>;
|
|
5604
5624
|
}, "status" | "submitted" | "lastModified" | "fees" | "transferSummary" | "actions">, {
|
|
5605
5625
|
status: z.ZodUnion<[z.ZodEnum<["pending", "success", "failure"]>, z.ZodEnum<["rejected", "cancelled", "queued"]>]>;
|
|
5606
5626
|
type: z.ZodLiteral<"native">;
|
|
@@ -7916,6 +7936,13 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
7916
7936
|
})[] | undefined;
|
|
7917
7937
|
}>, "many">>;
|
|
7918
7938
|
title: z.ZodOptional<z.ZodString>;
|
|
7939
|
+
multisigDetails: z.ZodOptional<z.ZodObject<{
|
|
7940
|
+
signers: z.ZodArray<z.ZodEffects<z.ZodString, `0x${string}`, string>, "many">;
|
|
7941
|
+
}, "strip", z.ZodTypeAny, {
|
|
7942
|
+
signers: `0x${string}`[];
|
|
7943
|
+
}, {
|
|
7944
|
+
signers: string[];
|
|
7945
|
+
}>>;
|
|
7919
7946
|
}, "strip", z.ZodTypeAny, {
|
|
7920
7947
|
status: "pending" | "success" | "failure";
|
|
7921
7948
|
type: "payment" | "approval" | "changePubKey" | "dappInteraction" | "deploy" | "gift" | "multicall" | "security" | "trade";
|
|
@@ -8259,6 +8286,9 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
8259
8286
|
};
|
|
8260
8287
|
})[] | undefined;
|
|
8261
8288
|
}[] | undefined;
|
|
8289
|
+
multisigDetails?: {
|
|
8290
|
+
signers: `0x${string}`[];
|
|
8291
|
+
} | undefined;
|
|
8262
8292
|
}, {
|
|
8263
8293
|
status: "pending" | "success" | "failure";
|
|
8264
8294
|
type: "payment" | "approval" | "changePubKey" | "dappInteraction" | "deploy" | "gift" | "multicall" | "security" | "trade";
|
|
@@ -8602,6 +8632,9 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
8602
8632
|
};
|
|
8603
8633
|
})[] | undefined;
|
|
8604
8634
|
}[] | undefined;
|
|
8635
|
+
multisigDetails?: {
|
|
8636
|
+
signers: string[];
|
|
8637
|
+
} | undefined;
|
|
8605
8638
|
}>, "many">;
|
|
8606
8639
|
export declare const activityResponseSchema: z.ZodObject<{
|
|
8607
8640
|
activities: z.ZodArray<z.ZodObject<{
|
|
@@ -10481,6 +10514,13 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
10481
10514
|
})[] | undefined;
|
|
10482
10515
|
}>, "many">>;
|
|
10483
10516
|
title: z.ZodOptional<z.ZodString>;
|
|
10517
|
+
multisigDetails: z.ZodOptional<z.ZodObject<{
|
|
10518
|
+
signers: z.ZodArray<z.ZodEffects<z.ZodString, `0x${string}`, string>, "many">;
|
|
10519
|
+
}, "strip", z.ZodTypeAny, {
|
|
10520
|
+
signers: `0x${string}`[];
|
|
10521
|
+
}, {
|
|
10522
|
+
signers: string[];
|
|
10523
|
+
}>>;
|
|
10484
10524
|
}, "strip", z.ZodTypeAny, {
|
|
10485
10525
|
status: "pending" | "success" | "failure";
|
|
10486
10526
|
type: "payment" | "approval" | "changePubKey" | "dappInteraction" | "deploy" | "gift" | "multicall" | "security" | "trade";
|
|
@@ -10824,6 +10864,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
10824
10864
|
};
|
|
10825
10865
|
})[] | undefined;
|
|
10826
10866
|
}[] | undefined;
|
|
10867
|
+
multisigDetails?: {
|
|
10868
|
+
signers: `0x${string}`[];
|
|
10869
|
+
} | undefined;
|
|
10827
10870
|
}, {
|
|
10828
10871
|
status: "pending" | "success" | "failure";
|
|
10829
10872
|
type: "payment" | "approval" | "changePubKey" | "dappInteraction" | "deploy" | "gift" | "multicall" | "security" | "trade";
|
|
@@ -11167,6 +11210,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
11167
11210
|
};
|
|
11168
11211
|
})[] | undefined;
|
|
11169
11212
|
}[] | undefined;
|
|
11213
|
+
multisigDetails?: {
|
|
11214
|
+
signers: string[];
|
|
11215
|
+
} | undefined;
|
|
11170
11216
|
}>, "many">;
|
|
11171
11217
|
page: z.ZodNumber;
|
|
11172
11218
|
pageSize: z.ZodNumber;
|
|
@@ -11518,6 +11564,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
11518
11564
|
};
|
|
11519
11565
|
})[] | undefined;
|
|
11520
11566
|
}[] | undefined;
|
|
11567
|
+
multisigDetails?: {
|
|
11568
|
+
signers: `0x${string}`[];
|
|
11569
|
+
} | undefined;
|
|
11521
11570
|
}[];
|
|
11522
11571
|
pageSize: number;
|
|
11523
11572
|
totalElements: number;
|
|
@@ -11867,6 +11916,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
11867
11916
|
};
|
|
11868
11917
|
})[] | undefined;
|
|
11869
11918
|
}[] | undefined;
|
|
11919
|
+
multisigDetails?: {
|
|
11920
|
+
signers: string[];
|
|
11921
|
+
} | undefined;
|
|
11870
11922
|
}[];
|
|
11871
11923
|
pageSize: number;
|
|
11872
11924
|
totalElements: number;
|