@continuumdao/ctm-mpc-defi 0.2.10 → 0.2.11
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/agent/catalog.cjs
CHANGED
|
@@ -523,6 +523,9 @@ var chainDetailSchema = zod.z.object({
|
|
|
523
523
|
"Optional gas config: { legacy?, gasLimit?, gasMultiplier?, gasPrice?, baseFee?, priorityFee?, baseFeeMultiplier? }."
|
|
524
524
|
);
|
|
525
525
|
var evmMultisignCommonInputSchema = zod.z.object({
|
|
526
|
+
keyGenId: zod.z.string().min(1).optional().describe(
|
|
527
|
+
"KeyGen request id from get_preferred_key_gen / conversation context. MCP server resolves keyGen, executorAddress, rpcUrl, and chainDetail \u2014 do not pass those fields when keyGenId is set."
|
|
528
|
+
),
|
|
526
529
|
keyGen: keyGenSchema,
|
|
527
530
|
purposeText: zod.z.string().min(1).describe(
|
|
528
531
|
"Human-readable purpose for the sign request. Stored in bodyForSign.purpose (may be appended with an automatic batch suffix)."
|