@continuumdao/ctm-mpc-defi 0.2.43 → 0.2.44
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 +146 -11
- package/dist/agent/catalog.cjs.map +1 -1
- package/dist/agent/catalog.d.ts +598 -9
- package/dist/agent/catalog.js +143 -12
- package/dist/agent/catalog.js.map +1 -1
- package/dist/agent/skills/aave-v4/SKILL.md +9 -1
- package/dist/agent/skills/euler-v2/SKILL.md +9 -0
- package/dist/agent/skills/morpho/SKILL.md +8 -2
- package/dist/merklDistributor-CdqtZC9N.d.ts +65 -0
- package/dist/multisign-Dr0j9fHm.d.ts +489 -0
- package/dist/protocols/evm/aave-v4/index.cjs +207 -2
- package/dist/protocols/evm/aave-v4/index.cjs.map +1 -1
- package/dist/protocols/evm/aave-v4/index.d.ts +12 -467
- package/dist/protocols/evm/aave-v4/index.js +192 -3
- package/dist/protocols/evm/aave-v4/index.js.map +1 -1
- package/dist/protocols/evm/euler-v2/index.cjs +209 -1
- package/dist/protocols/evm/euler-v2/index.cjs.map +1 -1
- package/dist/protocols/evm/euler-v2/index.d.ts +9 -1
- package/dist/protocols/evm/euler-v2/index.js +208 -2
- package/dist/protocols/evm/euler-v2/index.js.map +1 -1
- package/dist/protocols/evm/morpho/index.cjs +169 -1
- package/dist/protocols/evm/morpho/index.cjs.map +1 -1
- package/dist/protocols/evm/morpho/index.d.ts +9 -1
- package/dist/protocols/evm/morpho/index.js +155 -2
- package/dist/protocols/evm/morpho/index.js.map +1 -1
- package/package.json +1 -1
package/dist/agent/catalog.cjs
CHANGED
|
@@ -2489,6 +2489,45 @@ var mcpMorphoFetchMidnightOffersOutputSchema = zod.z.object({
|
|
|
2489
2489
|
})
|
|
2490
2490
|
)
|
|
2491
2491
|
});
|
|
2492
|
+
var mcpMerklRewardsFetchInputSchema = zod.z.object({
|
|
2493
|
+
chainId: agentEvmChainIdSchema,
|
|
2494
|
+
user: zod.z.string().min(1).optional().describe("Wallet address. Omit when keyGenId is set \u2014 server fills from the KeyGen Ethereum address."),
|
|
2495
|
+
keyGenId: zod.z.string().min(1).optional().describe("Preferred. Server resolves user from get_preferred_key_gen / conversation KeyGen.")
|
|
2496
|
+
}).refine((d) => Boolean(d.user?.trim() || d.keyGenId?.trim()), {
|
|
2497
|
+
message: "Pass keyGenId (preferred) or user.",
|
|
2498
|
+
path: ["user"]
|
|
2499
|
+
});
|
|
2500
|
+
var mcpMerklRewardsFetchOutputSchema = zod.z.object({
|
|
2501
|
+
chainId: zod.z.number().int(),
|
|
2502
|
+
user: zod.z.string(),
|
|
2503
|
+
distributor: zod.z.string(),
|
|
2504
|
+
claimable: zod.z.array(
|
|
2505
|
+
zod.z.object({
|
|
2506
|
+
symbol: zod.z.string(),
|
|
2507
|
+
token: zod.z.string(),
|
|
2508
|
+
amountHuman: zod.z.string(),
|
|
2509
|
+
amountWei: zod.z.string(),
|
|
2510
|
+
decimals: zod.z.number().int(),
|
|
2511
|
+
root: zod.z.string()
|
|
2512
|
+
})
|
|
2513
|
+
),
|
|
2514
|
+
claimableCount: zod.z.number().int(),
|
|
2515
|
+
firstRootClaimableCount: zod.z.number().int(),
|
|
2516
|
+
additionalRoots: zod.z.number().int(),
|
|
2517
|
+
skippedReulCount: zod.z.number().int(),
|
|
2518
|
+
notes: zod.z.string()
|
|
2519
|
+
});
|
|
2520
|
+
function preprocessMerklClaimInput(kind) {
|
|
2521
|
+
return (raw) => {
|
|
2522
|
+
if (!raw || typeof raw !== "object" || Array.isArray(raw)) return raw;
|
|
2523
|
+
const o = { ...raw };
|
|
2524
|
+
const purposeText = String(o.purposeText ?? o.purpose ?? "").trim();
|
|
2525
|
+
if (!purposeText) {
|
|
2526
|
+
o.purposeText = `${kind}: claim wallet-wide Merkl rewards`;
|
|
2527
|
+
}
|
|
2528
|
+
return o;
|
|
2529
|
+
};
|
|
2530
|
+
}
|
|
2492
2531
|
var mcpServerCommonInputSchema = zod.z.object({
|
|
2493
2532
|
keyGenId: zod.z.string().min(1).describe("KeyGen id from fetch_key_gen_result / node preferred KeyGen"),
|
|
2494
2533
|
chainId: zod.z.number().int().positive().describe("EVM chain id; RPC and gas config resolved from chain registry"),
|
|
@@ -2856,11 +2895,42 @@ var mcpMorphoBlueCollateralWithdrawInputSchema = mcpMultisignInput({
|
|
|
2856
2895
|
amountHuman: zod.z.string().min(1),
|
|
2857
2896
|
collateralDecimals: agentCoercedOptionalIntSchema(zod.z.number().int().min(0).max(36))
|
|
2858
2897
|
});
|
|
2859
|
-
var mcpMorphoMerklClaimInputSchema =
|
|
2860
|
-
|
|
2861
|
-
|
|
2862
|
-
|
|
2863
|
-
|
|
2898
|
+
var mcpMorphoMerklClaimInputSchema = withMultisignKeySourceRefine(
|
|
2899
|
+
zod.z.preprocess(
|
|
2900
|
+
preprocessMerklClaimInput("Morpho"),
|
|
2901
|
+
evmMultisignCommonInputSchema.extend({
|
|
2902
|
+
claimData: zod.z.string().min(1).optional().describe(
|
|
2903
|
+
"Optional. Hex calldata for Merkl Distributor.claim. Omit \u2014 server fetches wallet-wide Merkl proofs for keyGenId + chainId."
|
|
2904
|
+
),
|
|
2905
|
+
distributor: evmAddressSchema.optional(),
|
|
2906
|
+
valueWei: zod.z.string().optional()
|
|
2907
|
+
})
|
|
2908
|
+
)
|
|
2909
|
+
);
|
|
2910
|
+
var mcpEulerV2MerklClaimInputSchema = withMultisignKeySourceRefine(
|
|
2911
|
+
zod.z.preprocess(
|
|
2912
|
+
preprocessMerklClaimInput("Euler v2"),
|
|
2913
|
+
evmMultisignCommonInputSchema.extend({
|
|
2914
|
+
claimData: zod.z.string().min(1).optional().describe(
|
|
2915
|
+
"Optional. Hex calldata for Merkl Distributor.claim. Omit \u2014 server fetches wallet-wide Merkl proofs for keyGenId + chainId."
|
|
2916
|
+
),
|
|
2917
|
+
distributor: evmAddressSchema.optional(),
|
|
2918
|
+
valueWei: zod.z.string().optional()
|
|
2919
|
+
})
|
|
2920
|
+
)
|
|
2921
|
+
);
|
|
2922
|
+
var mcpAaveV4MerklClaimInputSchema = withMultisignKeySourceRefine(
|
|
2923
|
+
zod.z.preprocess(
|
|
2924
|
+
preprocessMerklClaimInput("Aave v4"),
|
|
2925
|
+
evmMultisignCommonInputSchema.extend({
|
|
2926
|
+
claimData: zod.z.string().min(1).optional().describe(
|
|
2927
|
+
"Optional. Hex calldata for Merkl Distributor.claim. Omit \u2014 server fetches wallet-wide Merkl proofs for keyGenId + chainId."
|
|
2928
|
+
),
|
|
2929
|
+
distributor: evmAddressSchema.optional(),
|
|
2930
|
+
valueWei: zod.z.string().optional()
|
|
2931
|
+
})
|
|
2932
|
+
)
|
|
2933
|
+
);
|
|
2864
2934
|
var mcpMorphoMidnightLendInputSchema = withMultisignKeySourceRefine(
|
|
2865
2935
|
zod.z.preprocess(
|
|
2866
2936
|
preprocessMorphoMidnightLendInput,
|
|
@@ -5039,6 +5109,16 @@ var MCP_PROTOCOL_TOOL_DEFINITIONS = [
|
|
|
5039
5109
|
handler: { importPath: "protocols/evm/aave-v4", exportName: "buildEvmMultisignBodyAaveV4SpokeRepay" },
|
|
5040
5110
|
inputZod: mcpAaveV4RepayInputSchema
|
|
5041
5111
|
}),
|
|
5112
|
+
defineProtocolMcpTool({
|
|
5113
|
+
name: "ctm_aave_v4_build_merkl_claim_multisign",
|
|
5114
|
+
actionId: "aave-v4.merkl-claim",
|
|
5115
|
+
protocolId: "aave-v4",
|
|
5116
|
+
chainCategory: "evm",
|
|
5117
|
+
description: "Build wallet-wide Merkl Distributor.claim. Pass keyGenId + chainId; server fetches proofs. Optional claimData override.",
|
|
5118
|
+
prerequisites: ["keyGenId", "chainId"],
|
|
5119
|
+
handler: { importPath: "protocols/evm/aave-v4", exportName: "buildEvmMultisignBodyAaveV4MerklDistributorClaim" },
|
|
5120
|
+
inputZod: mcpAaveV4MerklClaimInputSchema
|
|
5121
|
+
}),
|
|
5042
5122
|
defineProtocolMcpTool({
|
|
5043
5123
|
name: "ctm_euler_v2_build_isolated_lend_multisign",
|
|
5044
5124
|
actionId: "euler-v2.isolated-lend",
|
|
@@ -5099,6 +5179,16 @@ var MCP_PROTOCOL_TOOL_DEFINITIONS = [
|
|
|
5099
5179
|
handler: { importPath: "protocols/evm/euler-v2", exportName: "buildEvmMultisignBodyEulerV2BorrowCollateralWithdrawBatch" },
|
|
5100
5180
|
inputZod: mcpEulerV2CollateralWithdrawInputSchema
|
|
5101
5181
|
}),
|
|
5182
|
+
defineProtocolMcpTool({
|
|
5183
|
+
name: "ctm_euler_v2_build_merkl_claim_multisign",
|
|
5184
|
+
actionId: "euler-v2.merkl-claim",
|
|
5185
|
+
protocolId: "euler-v2",
|
|
5186
|
+
chainCategory: "evm",
|
|
5187
|
+
description: "Build wallet-wide Merkl Distributor.claim. Pass keyGenId + chainId; server fetches proofs. Optional claimData override. rEUL is omitted (Euler unlock stays in the node app).",
|
|
5188
|
+
prerequisites: ["keyGenId", "chainId"],
|
|
5189
|
+
handler: { importPath: "protocols/evm/euler-v2", exportName: "buildEvmMultisignBodyEulerV2MerklDistributorClaim" },
|
|
5190
|
+
inputZod: mcpEulerV2MerklClaimInputSchema
|
|
5191
|
+
}),
|
|
5102
5192
|
defineProtocolMcpTool({
|
|
5103
5193
|
name: "ctm_morpho_build_vault_deposit_multisign",
|
|
5104
5194
|
actionId: "morpho.vault-deposit",
|
|
@@ -5194,8 +5284,8 @@ var MCP_PROTOCOL_TOOL_DEFINITIONS = [
|
|
|
5194
5284
|
actionId: "morpho.merkl-claim",
|
|
5195
5285
|
protocolId: "morpho",
|
|
5196
5286
|
chainCategory: "evm",
|
|
5197
|
-
description: "Build
|
|
5198
|
-
prerequisites: ["keyGenId", "chainId"
|
|
5287
|
+
description: "Build wallet-wide Merkl Distributor.claim. Pass keyGenId + chainId; server fetches proofs. Optional claimData override.",
|
|
5288
|
+
prerequisites: ["keyGenId", "chainId"],
|
|
5199
5289
|
handler: { importPath: "protocols/evm/morpho", exportName: "buildEvmMultisignBodyMorphoMerklDistributorClaim" },
|
|
5200
5290
|
inputZod: mcpMorphoMerklClaimInputSchema
|
|
5201
5291
|
}),
|
|
@@ -7009,6 +7099,18 @@ var CORE_MCP_TOOL_DEFINITIONS = [
|
|
|
7009
7099
|
inputZod: mcpMorphoFetchPositionsInputSchema,
|
|
7010
7100
|
outputZod: mcpMorphoFetchPositionsOutputSchema
|
|
7011
7101
|
}),
|
|
7102
|
+
defineMcpTool({
|
|
7103
|
+
name: "ctm_morpho_fetch_merkl_rewards",
|
|
7104
|
+
actionId: "morpho.fetch-merkl-rewards",
|
|
7105
|
+
protocolId: "morpho",
|
|
7106
|
+
chainCategory: "evm",
|
|
7107
|
+
description: "Wallet-wide Merkl claimables for this address on a chain (not Morpho-only). Pass keyGenId or user. Other venues\u2019 campaigns can appear. rEUL is omitted. Follow with ctm_morpho_build_merkl_claim_multisign (keyGenId + chainId).",
|
|
7108
|
+
prerequisites: ["keyGenId or user", "chainId"],
|
|
7109
|
+
followUp: ["ctm_morpho_build_merkl_claim_multisign"],
|
|
7110
|
+
handler: { importPath: "protocols/evm/morpho", exportName: "morphoFetchMerklRewardsSummary" },
|
|
7111
|
+
inputZod: mcpMerklRewardsFetchInputSchema,
|
|
7112
|
+
outputZod: mcpMerklRewardsFetchOutputSchema
|
|
7113
|
+
}),
|
|
7012
7114
|
defineMcpTool({
|
|
7013
7115
|
name: "ctm_morpho_fetch_midnight_books",
|
|
7014
7116
|
actionId: "morpho.fetch-midnight-books",
|
|
@@ -7090,6 +7192,18 @@ var CORE_MCP_TOOL_DEFINITIONS = [
|
|
|
7090
7192
|
inputZod: mcpEulerV2FetchEarnVaultsInputSchema,
|
|
7091
7193
|
outputZod: mcpEulerV2FetchEarnVaultsOutputSchema
|
|
7092
7194
|
}),
|
|
7195
|
+
defineMcpTool({
|
|
7196
|
+
name: "ctm_euler_v2_fetch_merkl_rewards",
|
|
7197
|
+
actionId: "euler-v2.fetch-merkl-rewards",
|
|
7198
|
+
protocolId: "euler-v2",
|
|
7199
|
+
chainCategory: "evm",
|
|
7200
|
+
description: "Wallet-wide Merkl claimables for this address on a chain (not Euler-only). Pass keyGenId or user. Other venues\u2019 campaigns can appear. rEUL is omitted (skippedReulCount; unlock in the node app). Follow with ctm_euler_v2_build_merkl_claim_multisign.",
|
|
7201
|
+
prerequisites: ["keyGenId or user", "chainId"],
|
|
7202
|
+
followUp: ["ctm_euler_v2_build_merkl_claim_multisign"],
|
|
7203
|
+
handler: { importPath: "protocols/evm/euler-v2", exportName: "eulerV2FetchMerklRewardsSummary" },
|
|
7204
|
+
inputZod: mcpMerklRewardsFetchInputSchema,
|
|
7205
|
+
outputZod: mcpMerklRewardsFetchOutputSchema
|
|
7206
|
+
}),
|
|
7093
7207
|
defineMcpTool({
|
|
7094
7208
|
name: "ctm_cctp_fetch_supported_routes",
|
|
7095
7209
|
actionId: "circle-cctp.fetch-routes",
|
|
@@ -7699,6 +7813,18 @@ var CORE_MCP_TOOL_DEFINITIONS = [
|
|
|
7699
7813
|
inputZod: mcpAaveV4FetchMarketInputSchema,
|
|
7700
7814
|
outputZod: mcpAaveV4FetchMarketOutputSchema
|
|
7701
7815
|
}),
|
|
7816
|
+
defineMcpTool({
|
|
7817
|
+
name: "ctm_aave_v4_fetch_merkl_rewards",
|
|
7818
|
+
actionId: "aave-v4.fetch-merkl-rewards",
|
|
7819
|
+
protocolId: "aave-v4",
|
|
7820
|
+
chainCategory: "evm",
|
|
7821
|
+
description: "Wallet-wide Merkl claimables for this address on a chain (not Aave-only). Pass keyGenId or user. Other venues\u2019 campaigns can appear. rEUL is omitted. Follow with ctm_aave_v4_build_merkl_claim_multisign (keyGenId + chainId).",
|
|
7822
|
+
prerequisites: ["keyGenId or user", "chainId"],
|
|
7823
|
+
followUp: ["ctm_aave_v4_build_merkl_claim_multisign"],
|
|
7824
|
+
handler: { importPath: "protocols/evm/aave-v4", exportName: "aaveV4FetchMerklRewardsSummary" },
|
|
7825
|
+
inputZod: mcpMerklRewardsFetchInputSchema,
|
|
7826
|
+
outputZod: mcpMerklRewardsFetchOutputSchema
|
|
7827
|
+
}),
|
|
7702
7828
|
defineMcpTool({
|
|
7703
7829
|
name: "ctm_lido_fetch_steth_apr",
|
|
7704
7830
|
actionId: "lido.fetch-steth-apr",
|
|
@@ -8407,7 +8533,9 @@ var aaveV4ProtocolModule = {
|
|
|
8407
8533
|
{ id: "aave-v4.deposit", protocolId: AAVE_V4_PROTOCOL_ID, chainCategory: "evm", description: "Supply to Aave v4 Spoke", commonParams: ["keyGen", "purposeText", "useCustomGas"], params: {} },
|
|
8408
8534
|
{ id: "aave-v4.withdraw", protocolId: AAVE_V4_PROTOCOL_ID, chainCategory: "evm", description: "Withdraw from Spoke", commonParams: ["keyGen", "purposeText", "useCustomGas"], params: {} },
|
|
8409
8535
|
{ id: "aave-v4.borrow", protocolId: AAVE_V4_PROTOCOL_ID, chainCategory: "evm", description: "Borrow from Spoke", commonParams: ["keyGen", "purposeText", "useCustomGas"], params: {} },
|
|
8410
|
-
{ id: "aave-v4.repay", protocolId: AAVE_V4_PROTOCOL_ID, chainCategory: "evm", description: "Repay Spoke debt", commonParams: ["keyGen", "purposeText", "useCustomGas"], params: {} }
|
|
8536
|
+
{ id: "aave-v4.repay", protocolId: AAVE_V4_PROTOCOL_ID, chainCategory: "evm", description: "Repay Spoke debt", commonParams: ["keyGen", "purposeText", "useCustomGas"], params: {} },
|
|
8537
|
+
{ id: "aave-v4.fetch-merkl-rewards", protocolId: AAVE_V4_PROTOCOL_ID, chainCategory: "evm", description: "List wallet-wide Merkl claimables on a chain", commonParams: [], params: {} },
|
|
8538
|
+
{ id: "aave-v4.merkl-claim", protocolId: AAVE_V4_PROTOCOL_ID, chainCategory: "evm", description: "Claim wallet-wide Merkl rewards", commonParams: ["keyGen", "purposeText", "useCustomGas"], params: {} }
|
|
8411
8539
|
]
|
|
8412
8540
|
};
|
|
8413
8541
|
registerProtocolModule(aaveV4ProtocolModule);
|
|
@@ -8621,7 +8749,9 @@ var eulerV2ProtocolModule = {
|
|
|
8621
8749
|
{ id: "euler-v2.vault-withdraw", protocolId: EULER_V2_PROTOCOL_ID, chainCategory: "evm", description: "Withdraw from Euler vault", commonParams: ["keyGen", "purposeText", "useCustomGas"], params: {} },
|
|
8622
8750
|
{ id: "euler-v2.borrow-repay", protocolId: EULER_V2_PROTOCOL_ID, chainCategory: "evm", description: "Repay Euler borrow", commonParams: ["keyGen", "purposeText", "useCustomGas"], params: {} },
|
|
8623
8751
|
{ id: "euler-v2.collateral-deposit", protocolId: EULER_V2_PROTOCOL_ID, chainCategory: "evm", description: "Deposit borrow collateral", commonParams: ["keyGen", "purposeText", "useCustomGas"], params: {} },
|
|
8624
|
-
{ id: "euler-v2.collateral-withdraw", protocolId: EULER_V2_PROTOCOL_ID, chainCategory: "evm", description: "Withdraw borrow collateral", commonParams: ["keyGen", "purposeText", "useCustomGas"], params: {} }
|
|
8752
|
+
{ id: "euler-v2.collateral-withdraw", protocolId: EULER_V2_PROTOCOL_ID, chainCategory: "evm", description: "Withdraw borrow collateral", commonParams: ["keyGen", "purposeText", "useCustomGas"], params: {} },
|
|
8753
|
+
{ id: "euler-v2.fetch-merkl-rewards", protocolId: EULER_V2_PROTOCOL_ID, chainCategory: "evm", description: "List wallet-wide Merkl claimables on a chain", commonParams: [], params: {} },
|
|
8754
|
+
{ id: "euler-v2.merkl-claim", protocolId: EULER_V2_PROTOCOL_ID, chainCategory: "evm", description: "Claim wallet-wide Merkl rewards", commonParams: ["keyGen", "purposeText", "useCustomGas"], params: {} }
|
|
8625
8755
|
]
|
|
8626
8756
|
};
|
|
8627
8757
|
registerProtocolModule(eulerV2ProtocolModule);
|
|
@@ -9376,7 +9506,8 @@ var morphoProtocolModule = {
|
|
|
9376
9506
|
{ id: "morpho.blue-borrow", protocolId: MORPHO_PROTOCOL_ID, chainCategory: "evm", description: "Borrow from Morpho Blue market", commonParams: ["keyGen", "purposeText", "useCustomGas"], params: {} },
|
|
9377
9507
|
{ id: "morpho.blue-repay", protocolId: MORPHO_PROTOCOL_ID, chainCategory: "evm", description: "Repay Morpho Blue borrow", commonParams: ["keyGen", "purposeText", "useCustomGas"], params: {} },
|
|
9378
9508
|
{ id: "morpho.blue-collateral-withdraw", protocolId: MORPHO_PROTOCOL_ID, chainCategory: "evm", description: "Withdraw Morpho Blue collateral", commonParams: ["keyGen", "purposeText", "useCustomGas"], params: {} },
|
|
9379
|
-
{ id: "morpho.merkl-
|
|
9509
|
+
{ id: "morpho.fetch-merkl-rewards", protocolId: MORPHO_PROTOCOL_ID, chainCategory: "evm", description: "List wallet-wide Merkl claimables on a chain", commonParams: [], params: {} },
|
|
9510
|
+
{ id: "morpho.merkl-claim", protocolId: MORPHO_PROTOCOL_ID, chainCategory: "evm", description: "Claim wallet-wide Merkl rewards", commonParams: ["keyGen", "purposeText", "useCustomGas"], params: {} },
|
|
9380
9511
|
{ id: "morpho.fetch-blue-markets", protocolId: MORPHO_PROTOCOL_ID, chainCategory: "evm", description: "Search Morpho Blue variable-rate markets", commonParams: [], params: {} },
|
|
9381
9512
|
{ id: "morpho.fetch-stock-markets", protocolId: MORPHO_PROTOCOL_ID, chainCategory: "evm", description: "List Coinbase B20 stock-backed Morpho Blue and Midnight markets on Base", commonParams: [], params: {} },
|
|
9382
9513
|
{ id: "morpho.fetch-positions", protocolId: MORPHO_PROTOCOL_ID, chainCategory: "evm", description: "List Morpho vault and Blue positions for a user", commonParams: [], params: {} },
|
|
@@ -11244,7 +11375,7 @@ var PROTOCOL_SUPPORT_ADVISORS = {
|
|
|
11244
11375
|
}));
|
|
11245
11376
|
return {
|
|
11246
11377
|
tokens,
|
|
11247
|
-
notes: chainId === ROBINHOOD_CHAIN_ID ? 'Morpho vault assets on Robinhood Chain. Robinhood Earn USDG yield uses Steakhouse USDG (steakUSDG) \u2014 query "robinhood earn" or robinhoodEarn: true on deposit multisign; not Arcus collateral.' : isMorphoArcChainId(chainId) ? "Morpho vault and Blue market assets on Arc (USDC-native gas). Mainnet is 5042; testnet is 5042002. Midnight remains Ethereum/Base only." : chainId === 8453 ?
|
|
11378
|
+
notes: chainId === ROBINHOOD_CHAIN_ID ? 'Morpho vault assets on Robinhood Chain. Robinhood Earn USDG yield uses Steakhouse USDG (steakUSDG) \u2014 query "robinhood earn" or robinhoodEarn: true on deposit multisign; not Arcus collateral.' : isMorphoArcChainId(chainId) ? "Morpho vault and Blue market assets on Arc (USDC-native gas). Mainnet is 5042; testnet is 5042002. Midnight remains Ethereum/Base only." : chainId === 8453 ? "Morpho vault, Lend (Blue USDC supply / Midnight lend), Blue borrow, and Midnight borrow on Base. Coinbase B20 stocks (AAPLc, NVDAc, \u2026) are collateral for stock-backed USDC loans \u2014 activate defi:morpho:lend then ctm_morpho_fetch_stock_markets. Tickers OK." : "Morpho vault assets, Blue market loan/collateral tokens, and Midnight book loan/collateral tokens from api.morpho.org."
|
|
11248
11379
|
};
|
|
11249
11380
|
},
|
|
11250
11381
|
async isTokenSupported(chainId, address) {
|
|
@@ -11605,6 +11736,7 @@ exports.mcpAaveV4FetchMarketInputSchema = mcpAaveV4FetchMarketInputSchema;
|
|
|
11605
11736
|
exports.mcpAaveV4FetchMarketOutputSchema = mcpAaveV4FetchMarketOutputSchema;
|
|
11606
11737
|
exports.mcpAaveV4FetchMarketsInputSchema = mcpAaveV4FetchMarketsInputSchema;
|
|
11607
11738
|
exports.mcpAaveV4FetchMarketsOutputSchema = mcpAaveV4FetchMarketsOutputSchema;
|
|
11739
|
+
exports.mcpAaveV4MerklClaimInputSchema = mcpAaveV4MerklClaimInputSchema;
|
|
11608
11740
|
exports.mcpAaveV4RepayInputSchema = mcpAaveV4RepayInputSchema;
|
|
11609
11741
|
exports.mcpAaveV4WithdrawInputSchema = mcpAaveV4WithdrawInputSchema;
|
|
11610
11742
|
exports.mcpAerodromeBuildAddLiquidityMultisignInputSchema = mcpAerodromeBuildAddLiquidityMultisignInputSchema;
|
|
@@ -11790,6 +11922,7 @@ exports.mcpEulerV2FetchLendVaultsInputSchema = mcpEulerV2FetchLendVaultsInputSch
|
|
|
11790
11922
|
exports.mcpEulerV2FetchLendVaultsOutputSchema = mcpEulerV2FetchLendVaultsOutputSchema;
|
|
11791
11923
|
exports.mcpEulerV2IsolatedBorrowInputSchema = mcpEulerV2IsolatedBorrowInputSchema;
|
|
11792
11924
|
exports.mcpEulerV2IsolatedLendInputSchema = mcpEulerV2IsolatedLendInputSchema;
|
|
11925
|
+
exports.mcpEulerV2MerklClaimInputSchema = mcpEulerV2MerklClaimInputSchema;
|
|
11793
11926
|
exports.mcpEulerV2VaultWithdrawInputSchema = mcpEulerV2VaultWithdrawInputSchema;
|
|
11794
11927
|
exports.mcpGmxCancelInputSchema = mcpGmxCancelInputSchema;
|
|
11795
11928
|
exports.mcpGmxDecreaseInputSchema = mcpGmxDecreaseInputSchema;
|
|
@@ -11869,6 +12002,8 @@ exports.mcpMapleFetchMarketOutputSchema = mcpMapleFetchMarketOutputSchema;
|
|
|
11869
12002
|
exports.mcpMapleFetchMarketsInputSchema = mcpMapleFetchMarketsInputSchema;
|
|
11870
12003
|
exports.mcpMapleFetchMarketsOutputSchema = mcpMapleFetchMarketsOutputSchema;
|
|
11871
12004
|
exports.mcpMapleRequestRedeemInputSchema = mcpMapleRequestRedeemInputSchema;
|
|
12005
|
+
exports.mcpMerklRewardsFetchInputSchema = mcpMerklRewardsFetchInputSchema;
|
|
12006
|
+
exports.mcpMerklRewardsFetchOutputSchema = mcpMerklRewardsFetchOutputSchema;
|
|
11872
12007
|
exports.mcpMorphoBlueBorrowInputSchema = mcpMorphoBlueBorrowInputSchema;
|
|
11873
12008
|
exports.mcpMorphoBlueCollateralDepositInputSchema = mcpMorphoBlueCollateralDepositInputSchema;
|
|
11874
12009
|
exports.mcpMorphoBlueCollateralWithdrawInputSchema = mcpMorphoBlueCollateralWithdrawInputSchema;
|