@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.
@@ -8069,17 +8069,516 @@ declare const mcpMorphoBlueCollateralWithdrawInputSchema: z.ZodEffects<z.ZodObje
8069
8069
  }, {
8070
8070
  [x: string]: any;
8071
8071
  }>;
8072
- declare const mcpMorphoMerklClaimInputSchema: z.ZodEffects<z.ZodObject<{} & {
8073
- [x: string]: z.ZodTypeAny;
8072
+ declare const mcpMorphoMerklClaimInputSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
8073
+ keyGenId: z.ZodOptional<z.ZodString>;
8074
+ keyGen: z.ZodOptional<z.ZodObject<{
8075
+ pubkeyhex: z.ZodString;
8076
+ keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
8077
+ ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
8078
+ groupId: z.ZodOptional<z.ZodString>;
8079
+ GroupId: z.ZodOptional<z.ZodString>;
8080
+ }, "strip", z.ZodTypeAny, {
8081
+ pubkeyhex: string;
8082
+ keylist?: string[] | undefined;
8083
+ ClientKeys?: Record<string, string> | undefined;
8084
+ groupId?: string | undefined;
8085
+ GroupId?: string | undefined;
8086
+ }, {
8087
+ pubkeyhex: string;
8088
+ keylist?: string[] | undefined;
8089
+ ClientKeys?: Record<string, string> | undefined;
8090
+ groupId?: string | undefined;
8091
+ GroupId?: string | undefined;
8092
+ }>>;
8093
+ purposeText: z.ZodString;
8094
+ useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
8095
+ chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
8096
+ rpcUrl: z.ZodOptional<z.ZodString>;
8097
+ executorAddress: z.ZodOptional<z.ZodString>;
8098
+ chainDetail: z.ZodOptional<z.ZodObject<{
8099
+ legacy: z.ZodOptional<z.ZodBoolean>;
8100
+ gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8101
+ gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8102
+ gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8103
+ baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8104
+ priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8105
+ baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8106
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
8107
+ legacy: z.ZodOptional<z.ZodBoolean>;
8108
+ gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8109
+ gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8110
+ gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8111
+ baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8112
+ priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8113
+ baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8114
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
8115
+ legacy: z.ZodOptional<z.ZodBoolean>;
8116
+ gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8117
+ gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8118
+ gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8119
+ baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8120
+ priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8121
+ baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8122
+ }, z.ZodTypeAny, "passthrough">>>;
8123
+ customGasChainDetails: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
8124
+ expiryDate: z.ZodOptional<z.ZodNumber>;
8125
+ } & {
8126
+ claimData: z.ZodOptional<z.ZodString>;
8127
+ distributor: z.ZodOptional<z.ZodString>;
8128
+ valueWei: z.ZodOptional<z.ZodString>;
8129
+ }, "strip", z.ZodTypeAny, {
8130
+ purposeText: string;
8131
+ useCustomGas: boolean;
8132
+ chainId: number;
8133
+ keyGen?: {
8134
+ pubkeyhex: string;
8135
+ keylist?: string[] | undefined;
8136
+ ClientKeys?: Record<string, string> | undefined;
8137
+ groupId?: string | undefined;
8138
+ GroupId?: string | undefined;
8139
+ } | undefined;
8140
+ expiryDate?: number | undefined;
8141
+ rpcUrl?: string | undefined;
8142
+ executorAddress?: string | undefined;
8143
+ chainDetail?: z.objectOutputType<{
8144
+ legacy: z.ZodOptional<z.ZodBoolean>;
8145
+ gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8146
+ gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8147
+ gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8148
+ baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8149
+ priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8150
+ baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8151
+ }, z.ZodTypeAny, "passthrough"> | undefined;
8152
+ customGasChainDetails?: Record<string, unknown> | undefined;
8153
+ keyGenId?: string | undefined;
8154
+ valueWei?: string | undefined;
8155
+ distributor?: string | undefined;
8156
+ claimData?: string | undefined;
8157
+ }, {
8158
+ purposeText: string;
8159
+ keyGen?: {
8160
+ pubkeyhex: string;
8161
+ keylist?: string[] | undefined;
8162
+ ClientKeys?: Record<string, string> | undefined;
8163
+ groupId?: string | undefined;
8164
+ GroupId?: string | undefined;
8165
+ } | undefined;
8166
+ useCustomGas?: unknown;
8167
+ chainId?: unknown;
8168
+ expiryDate?: number | undefined;
8169
+ rpcUrl?: string | undefined;
8170
+ executorAddress?: string | undefined;
8171
+ chainDetail?: z.objectInputType<{
8172
+ legacy: z.ZodOptional<z.ZodBoolean>;
8173
+ gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8174
+ gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8175
+ gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8176
+ baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8177
+ priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8178
+ baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8179
+ }, z.ZodTypeAny, "passthrough"> | undefined;
8180
+ customGasChainDetails?: Record<string, unknown> | undefined;
8181
+ keyGenId?: string | undefined;
8182
+ valueWei?: string | undefined;
8183
+ distributor?: string | undefined;
8184
+ claimData?: string | undefined;
8185
+ }>, {
8186
+ purposeText: string;
8187
+ useCustomGas: boolean;
8188
+ chainId: number;
8189
+ keyGen?: {
8190
+ pubkeyhex: string;
8191
+ keylist?: string[] | undefined;
8192
+ ClientKeys?: Record<string, string> | undefined;
8193
+ groupId?: string | undefined;
8194
+ GroupId?: string | undefined;
8195
+ } | undefined;
8196
+ expiryDate?: number | undefined;
8197
+ rpcUrl?: string | undefined;
8198
+ executorAddress?: string | undefined;
8199
+ chainDetail?: z.objectOutputType<{
8200
+ legacy: z.ZodOptional<z.ZodBoolean>;
8201
+ gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8202
+ gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8203
+ gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8204
+ baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8205
+ priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8206
+ baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8207
+ }, z.ZodTypeAny, "passthrough"> | undefined;
8208
+ customGasChainDetails?: Record<string, unknown> | undefined;
8209
+ keyGenId?: string | undefined;
8210
+ valueWei?: string | undefined;
8211
+ distributor?: string | undefined;
8212
+ claimData?: string | undefined;
8213
+ }, unknown>, {
8214
+ purposeText: string;
8215
+ useCustomGas: boolean;
8216
+ chainId: number;
8217
+ keyGen?: {
8218
+ pubkeyhex: string;
8219
+ keylist?: string[] | undefined;
8220
+ ClientKeys?: Record<string, string> | undefined;
8221
+ groupId?: string | undefined;
8222
+ GroupId?: string | undefined;
8223
+ } | undefined;
8224
+ expiryDate?: number | undefined;
8225
+ rpcUrl?: string | undefined;
8226
+ executorAddress?: string | undefined;
8227
+ chainDetail?: z.objectOutputType<{
8228
+ legacy: z.ZodOptional<z.ZodBoolean>;
8229
+ gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8230
+ gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8231
+ gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8232
+ baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8233
+ priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8234
+ baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8235
+ }, z.ZodTypeAny, "passthrough"> | undefined;
8236
+ customGasChainDetails?: Record<string, unknown> | undefined;
8237
+ keyGenId?: string | undefined;
8238
+ valueWei?: string | undefined;
8239
+ distributor?: string | undefined;
8240
+ claimData?: string | undefined;
8241
+ }, unknown>;
8242
+ declare const mcpEulerV2MerklClaimInputSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
8243
+ keyGenId: z.ZodOptional<z.ZodString>;
8244
+ keyGen: z.ZodOptional<z.ZodObject<{
8245
+ pubkeyhex: z.ZodString;
8246
+ keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
8247
+ ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
8248
+ groupId: z.ZodOptional<z.ZodString>;
8249
+ GroupId: z.ZodOptional<z.ZodString>;
8250
+ }, "strip", z.ZodTypeAny, {
8251
+ pubkeyhex: string;
8252
+ keylist?: string[] | undefined;
8253
+ ClientKeys?: Record<string, string> | undefined;
8254
+ groupId?: string | undefined;
8255
+ GroupId?: string | undefined;
8256
+ }, {
8257
+ pubkeyhex: string;
8258
+ keylist?: string[] | undefined;
8259
+ ClientKeys?: Record<string, string> | undefined;
8260
+ groupId?: string | undefined;
8261
+ GroupId?: string | undefined;
8262
+ }>>;
8263
+ purposeText: z.ZodString;
8264
+ useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
8265
+ chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
8266
+ rpcUrl: z.ZodOptional<z.ZodString>;
8267
+ executorAddress: z.ZodOptional<z.ZodString>;
8268
+ chainDetail: z.ZodOptional<z.ZodObject<{
8269
+ legacy: z.ZodOptional<z.ZodBoolean>;
8270
+ gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8271
+ gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8272
+ gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8273
+ baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8274
+ priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8275
+ baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8276
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
8277
+ legacy: z.ZodOptional<z.ZodBoolean>;
8278
+ gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8279
+ gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8280
+ gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8281
+ baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8282
+ priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8283
+ baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8284
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
8285
+ legacy: z.ZodOptional<z.ZodBoolean>;
8286
+ gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8287
+ gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8288
+ gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8289
+ baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8290
+ priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8291
+ baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8292
+ }, z.ZodTypeAny, "passthrough">>>;
8293
+ customGasChainDetails: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
8294
+ expiryDate: z.ZodOptional<z.ZodNumber>;
8295
+ } & {
8296
+ claimData: z.ZodOptional<z.ZodString>;
8297
+ distributor: z.ZodOptional<z.ZodString>;
8298
+ valueWei: z.ZodOptional<z.ZodString>;
8299
+ }, "strip", z.ZodTypeAny, {
8300
+ purposeText: string;
8301
+ useCustomGas: boolean;
8302
+ chainId: number;
8303
+ keyGen?: {
8304
+ pubkeyhex: string;
8305
+ keylist?: string[] | undefined;
8306
+ ClientKeys?: Record<string, string> | undefined;
8307
+ groupId?: string | undefined;
8308
+ GroupId?: string | undefined;
8309
+ } | undefined;
8310
+ expiryDate?: number | undefined;
8311
+ rpcUrl?: string | undefined;
8312
+ executorAddress?: string | undefined;
8313
+ chainDetail?: z.objectOutputType<{
8314
+ legacy: z.ZodOptional<z.ZodBoolean>;
8315
+ gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8316
+ gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8317
+ gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8318
+ baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8319
+ priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8320
+ baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8321
+ }, z.ZodTypeAny, "passthrough"> | undefined;
8322
+ customGasChainDetails?: Record<string, unknown> | undefined;
8323
+ keyGenId?: string | undefined;
8324
+ valueWei?: string | undefined;
8325
+ distributor?: string | undefined;
8326
+ claimData?: string | undefined;
8327
+ }, {
8328
+ purposeText: string;
8329
+ keyGen?: {
8330
+ pubkeyhex: string;
8331
+ keylist?: string[] | undefined;
8332
+ ClientKeys?: Record<string, string> | undefined;
8333
+ groupId?: string | undefined;
8334
+ GroupId?: string | undefined;
8335
+ } | undefined;
8336
+ useCustomGas?: unknown;
8337
+ chainId?: unknown;
8338
+ expiryDate?: number | undefined;
8339
+ rpcUrl?: string | undefined;
8340
+ executorAddress?: string | undefined;
8341
+ chainDetail?: z.objectInputType<{
8342
+ legacy: z.ZodOptional<z.ZodBoolean>;
8343
+ gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8344
+ gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8345
+ gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8346
+ baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8347
+ priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8348
+ baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8349
+ }, z.ZodTypeAny, "passthrough"> | undefined;
8350
+ customGasChainDetails?: Record<string, unknown> | undefined;
8351
+ keyGenId?: string | undefined;
8352
+ valueWei?: string | undefined;
8353
+ distributor?: string | undefined;
8354
+ claimData?: string | undefined;
8355
+ }>, {
8356
+ purposeText: string;
8357
+ useCustomGas: boolean;
8358
+ chainId: number;
8359
+ keyGen?: {
8360
+ pubkeyhex: string;
8361
+ keylist?: string[] | undefined;
8362
+ ClientKeys?: Record<string, string> | undefined;
8363
+ groupId?: string | undefined;
8364
+ GroupId?: string | undefined;
8365
+ } | undefined;
8366
+ expiryDate?: number | undefined;
8367
+ rpcUrl?: string | undefined;
8368
+ executorAddress?: string | undefined;
8369
+ chainDetail?: z.objectOutputType<{
8370
+ legacy: z.ZodOptional<z.ZodBoolean>;
8371
+ gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8372
+ gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8373
+ gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8374
+ baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8375
+ priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8376
+ baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8377
+ }, z.ZodTypeAny, "passthrough"> | undefined;
8378
+ customGasChainDetails?: Record<string, unknown> | undefined;
8379
+ keyGenId?: string | undefined;
8380
+ valueWei?: string | undefined;
8381
+ distributor?: string | undefined;
8382
+ claimData?: string | undefined;
8383
+ }, unknown>, {
8384
+ purposeText: string;
8385
+ useCustomGas: boolean;
8386
+ chainId: number;
8387
+ keyGen?: {
8388
+ pubkeyhex: string;
8389
+ keylist?: string[] | undefined;
8390
+ ClientKeys?: Record<string, string> | undefined;
8391
+ groupId?: string | undefined;
8392
+ GroupId?: string | undefined;
8393
+ } | undefined;
8394
+ expiryDate?: number | undefined;
8395
+ rpcUrl?: string | undefined;
8396
+ executorAddress?: string | undefined;
8397
+ chainDetail?: z.objectOutputType<{
8398
+ legacy: z.ZodOptional<z.ZodBoolean>;
8399
+ gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8400
+ gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8401
+ gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8402
+ baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8403
+ priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8404
+ baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8405
+ }, z.ZodTypeAny, "passthrough"> | undefined;
8406
+ customGasChainDetails?: Record<string, unknown> | undefined;
8407
+ keyGenId?: string | undefined;
8408
+ valueWei?: string | undefined;
8409
+ distributor?: string | undefined;
8410
+ claimData?: string | undefined;
8411
+ }, unknown>;
8412
+ declare const mcpAaveV4MerklClaimInputSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
8413
+ keyGenId: z.ZodOptional<z.ZodString>;
8414
+ keyGen: z.ZodOptional<z.ZodObject<{
8415
+ pubkeyhex: z.ZodString;
8416
+ keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
8417
+ ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
8418
+ groupId: z.ZodOptional<z.ZodString>;
8419
+ GroupId: z.ZodOptional<z.ZodString>;
8420
+ }, "strip", z.ZodTypeAny, {
8421
+ pubkeyhex: string;
8422
+ keylist?: string[] | undefined;
8423
+ ClientKeys?: Record<string, string> | undefined;
8424
+ groupId?: string | undefined;
8425
+ GroupId?: string | undefined;
8426
+ }, {
8427
+ pubkeyhex: string;
8428
+ keylist?: string[] | undefined;
8429
+ ClientKeys?: Record<string, string> | undefined;
8430
+ groupId?: string | undefined;
8431
+ GroupId?: string | undefined;
8432
+ }>>;
8433
+ purposeText: z.ZodString;
8434
+ useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
8435
+ chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
8436
+ rpcUrl: z.ZodOptional<z.ZodString>;
8437
+ executorAddress: z.ZodOptional<z.ZodString>;
8438
+ chainDetail: z.ZodOptional<z.ZodObject<{
8439
+ legacy: z.ZodOptional<z.ZodBoolean>;
8440
+ gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8441
+ gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8442
+ gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8443
+ baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8444
+ priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8445
+ baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8446
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
8447
+ legacy: z.ZodOptional<z.ZodBoolean>;
8448
+ gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8449
+ gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8450
+ gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8451
+ baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8452
+ priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8453
+ baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8454
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
8455
+ legacy: z.ZodOptional<z.ZodBoolean>;
8456
+ gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8457
+ gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8458
+ gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8459
+ baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8460
+ priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8461
+ baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8462
+ }, z.ZodTypeAny, "passthrough">>>;
8463
+ customGasChainDetails: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
8464
+ expiryDate: z.ZodOptional<z.ZodNumber>;
8465
+ } & {
8466
+ claimData: z.ZodOptional<z.ZodString>;
8467
+ distributor: z.ZodOptional<z.ZodString>;
8468
+ valueWei: z.ZodOptional<z.ZodString>;
8074
8469
  }, "strip", z.ZodTypeAny, {
8075
- [x: string]: any;
8470
+ purposeText: string;
8471
+ useCustomGas: boolean;
8472
+ chainId: number;
8473
+ keyGen?: {
8474
+ pubkeyhex: string;
8475
+ keylist?: string[] | undefined;
8476
+ ClientKeys?: Record<string, string> | undefined;
8477
+ groupId?: string | undefined;
8478
+ GroupId?: string | undefined;
8479
+ } | undefined;
8480
+ expiryDate?: number | undefined;
8481
+ rpcUrl?: string | undefined;
8482
+ executorAddress?: string | undefined;
8483
+ chainDetail?: z.objectOutputType<{
8484
+ legacy: z.ZodOptional<z.ZodBoolean>;
8485
+ gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8486
+ gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8487
+ gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8488
+ baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8489
+ priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8490
+ baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8491
+ }, z.ZodTypeAny, "passthrough"> | undefined;
8492
+ customGasChainDetails?: Record<string, unknown> | undefined;
8493
+ keyGenId?: string | undefined;
8494
+ valueWei?: string | undefined;
8495
+ distributor?: string | undefined;
8496
+ claimData?: string | undefined;
8076
8497
  }, {
8077
- [x: string]: any;
8498
+ purposeText: string;
8499
+ keyGen?: {
8500
+ pubkeyhex: string;
8501
+ keylist?: string[] | undefined;
8502
+ ClientKeys?: Record<string, string> | undefined;
8503
+ groupId?: string | undefined;
8504
+ GroupId?: string | undefined;
8505
+ } | undefined;
8506
+ useCustomGas?: unknown;
8507
+ chainId?: unknown;
8508
+ expiryDate?: number | undefined;
8509
+ rpcUrl?: string | undefined;
8510
+ executorAddress?: string | undefined;
8511
+ chainDetail?: z.objectInputType<{
8512
+ legacy: z.ZodOptional<z.ZodBoolean>;
8513
+ gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8514
+ gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8515
+ gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8516
+ baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8517
+ priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8518
+ baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8519
+ }, z.ZodTypeAny, "passthrough"> | undefined;
8520
+ customGasChainDetails?: Record<string, unknown> | undefined;
8521
+ keyGenId?: string | undefined;
8522
+ valueWei?: string | undefined;
8523
+ distributor?: string | undefined;
8524
+ claimData?: string | undefined;
8078
8525
  }>, {
8079
- [x: string]: any;
8080
- }, {
8081
- [x: string]: any;
8082
- }>;
8526
+ purposeText: string;
8527
+ useCustomGas: boolean;
8528
+ chainId: number;
8529
+ keyGen?: {
8530
+ pubkeyhex: string;
8531
+ keylist?: string[] | undefined;
8532
+ ClientKeys?: Record<string, string> | undefined;
8533
+ groupId?: string | undefined;
8534
+ GroupId?: string | undefined;
8535
+ } | undefined;
8536
+ expiryDate?: number | undefined;
8537
+ rpcUrl?: string | undefined;
8538
+ executorAddress?: string | undefined;
8539
+ chainDetail?: z.objectOutputType<{
8540
+ legacy: z.ZodOptional<z.ZodBoolean>;
8541
+ gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8542
+ gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8543
+ gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8544
+ baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8545
+ priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8546
+ baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8547
+ }, z.ZodTypeAny, "passthrough"> | undefined;
8548
+ customGasChainDetails?: Record<string, unknown> | undefined;
8549
+ keyGenId?: string | undefined;
8550
+ valueWei?: string | undefined;
8551
+ distributor?: string | undefined;
8552
+ claimData?: string | undefined;
8553
+ }, unknown>, {
8554
+ purposeText: string;
8555
+ useCustomGas: boolean;
8556
+ chainId: number;
8557
+ keyGen?: {
8558
+ pubkeyhex: string;
8559
+ keylist?: string[] | undefined;
8560
+ ClientKeys?: Record<string, string> | undefined;
8561
+ groupId?: string | undefined;
8562
+ GroupId?: string | undefined;
8563
+ } | undefined;
8564
+ expiryDate?: number | undefined;
8565
+ rpcUrl?: string | undefined;
8566
+ executorAddress?: string | undefined;
8567
+ chainDetail?: z.objectOutputType<{
8568
+ legacy: z.ZodOptional<z.ZodBoolean>;
8569
+ gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8570
+ gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8571
+ gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8572
+ baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8573
+ priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8574
+ baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
8575
+ }, z.ZodTypeAny, "passthrough"> | undefined;
8576
+ customGasChainDetails?: Record<string, unknown> | undefined;
8577
+ keyGenId?: string | undefined;
8578
+ valueWei?: string | undefined;
8579
+ distributor?: string | undefined;
8580
+ claimData?: string | undefined;
8581
+ }, unknown>;
8083
8582
  declare const mcpMorphoMidnightLendInputSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
8084
8583
  keyGenId: z.ZodOptional<z.ZodString>;
8085
8584
  keyGen: z.ZodOptional<z.ZodObject<{
@@ -12097,6 +12596,96 @@ type McpAaveV4FetchMarketsOutput = z.infer<typeof mcpAaveV4FetchMarketsOutputSch
12097
12596
  type McpAaveV4FetchMarketInput = z.infer<typeof mcpAaveV4FetchMarketInputSchema>;
12098
12597
  type McpAaveV4FetchMarketOutput = z.infer<typeof mcpAaveV4FetchMarketOutputSchema>;
12099
12598
 
12599
+ declare const mcpMerklRewardsFetchInputSchema: z.ZodEffects<z.ZodObject<{
12600
+ chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
12601
+ user: z.ZodOptional<z.ZodString>;
12602
+ keyGenId: z.ZodOptional<z.ZodString>;
12603
+ }, "strip", z.ZodTypeAny, {
12604
+ chainId: number;
12605
+ keyGenId?: string | undefined;
12606
+ user?: string | undefined;
12607
+ }, {
12608
+ chainId?: unknown;
12609
+ keyGenId?: string | undefined;
12610
+ user?: string | undefined;
12611
+ }>, {
12612
+ chainId: number;
12613
+ keyGenId?: string | undefined;
12614
+ user?: string | undefined;
12615
+ }, {
12616
+ chainId?: unknown;
12617
+ keyGenId?: string | undefined;
12618
+ user?: string | undefined;
12619
+ }>;
12620
+ declare const mcpMerklRewardsFetchOutputSchema: z.ZodObject<{
12621
+ chainId: z.ZodNumber;
12622
+ user: z.ZodString;
12623
+ distributor: z.ZodString;
12624
+ claimable: z.ZodArray<z.ZodObject<{
12625
+ symbol: z.ZodString;
12626
+ token: z.ZodString;
12627
+ amountHuman: z.ZodString;
12628
+ amountWei: z.ZodString;
12629
+ decimals: z.ZodNumber;
12630
+ root: z.ZodString;
12631
+ }, "strip", z.ZodTypeAny, {
12632
+ symbol: string;
12633
+ token: string;
12634
+ decimals: number;
12635
+ amountHuman: string;
12636
+ root: string;
12637
+ amountWei: string;
12638
+ }, {
12639
+ symbol: string;
12640
+ token: string;
12641
+ decimals: number;
12642
+ amountHuman: string;
12643
+ root: string;
12644
+ amountWei: string;
12645
+ }>, "many">;
12646
+ claimableCount: z.ZodNumber;
12647
+ firstRootClaimableCount: z.ZodNumber;
12648
+ additionalRoots: z.ZodNumber;
12649
+ skippedReulCount: z.ZodNumber;
12650
+ notes: z.ZodString;
12651
+ }, "strip", z.ZodTypeAny, {
12652
+ chainId: number;
12653
+ notes: string;
12654
+ user: string;
12655
+ distributor: string;
12656
+ claimable: {
12657
+ symbol: string;
12658
+ token: string;
12659
+ decimals: number;
12660
+ amountHuman: string;
12661
+ root: string;
12662
+ amountWei: string;
12663
+ }[];
12664
+ claimableCount: number;
12665
+ firstRootClaimableCount: number;
12666
+ additionalRoots: number;
12667
+ skippedReulCount: number;
12668
+ }, {
12669
+ chainId: number;
12670
+ notes: string;
12671
+ user: string;
12672
+ distributor: string;
12673
+ claimable: {
12674
+ symbol: string;
12675
+ token: string;
12676
+ decimals: number;
12677
+ amountHuman: string;
12678
+ root: string;
12679
+ amountWei: string;
12680
+ }[];
12681
+ claimableCount: number;
12682
+ firstRootClaimableCount: number;
12683
+ additionalRoots: number;
12684
+ skippedReulCount: number;
12685
+ }>;
12686
+ type McpMerklRewardsFetchInput = z.infer<typeof mcpMerklRewardsFetchInputSchema>;
12687
+ type McpMerklRewardsFetchOutput = z.infer<typeof mcpMerklRewardsFetchOutputSchema>;
12688
+
12100
12689
  declare const mcpEulerV2FetchLendVaultsInputSchema: z.ZodObject<{
12101
12690
  chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
12102
12691
  underlyingAddress: z.ZodString;
@@ -18743,4 +19332,4 @@ declare function getAgentCatalog(): {
18743
19332
  };
18744
19333
  };
18745
19334
 
18746
- export { type ChainDetailMcpInput, EVM_COMMON_PARAM_DOCS, type EvmMultisignCommonInput, type KeyGenMcpInput, MANAGEMENT_SIG_DOC, MCP_NON_SUBMIT_TOOL_NAMES, MCP_TOOL_DEFINITIONS, MCP_TOOL_INPUT_SCHEMAS, MCP_TOOL_OUTPUT_SCHEMAS, MULTISIGN_OUTPUT_DOC, MULTISIGN_SUBMIT_OUTPUT_DOC, type McpAaveV4DepositInput, type McpAaveV4FetchMarketInput, type McpAaveV4FetchMarketOutput, type McpAaveV4FetchMarketsInput, type McpAaveV4FetchMarketsOutput, type McpCurveDaoBuildSwapMultisignInput, type McpCurveDaoQuoteInput, type McpCurveDaoQuoteOutput, type McpEthenaFetchSusdeApyInput, type McpEthenaFetchSusdeApyOutput, type McpEthenaStakeInput, type McpEulerV2FetchEarnVaultsInput, type McpEulerV2FetchEarnVaultsOutput, type McpEulerV2FetchLendVaultsInput, type McpEulerV2FetchLendVaultsOutput, type McpEulerV2IsolatedLendInput, type McpJsonSchema, type McpLidoFetchStethAprInput, type McpLidoFetchStethAprOutput, type McpLidoSubmitInput, type McpMapleDepositInput, type McpMapleFetchMarketInput, type McpMapleFetchMarketOutput, type McpMapleFetchMarketsInput, type McpMapleFetchMarketsOutput, type McpMorphoFetchBlueMarketsInput, type McpMorphoFetchBlueMarketsOutput, type McpMorphoFetchEarnVaultsInput, type McpMorphoFetchEarnVaultsOutput, type McpMorphoFetchMidnightBooksInput, type McpMorphoFetchMidnightBooksOutput, type McpMorphoFetchMidnightOffersInput, type McpMorphoFetchMidnightOffersOutput, type McpMorphoFetchMidnightPositionsInput, type McpMorphoFetchMidnightPositionsOutput, type McpMorphoFetchMidnightQuoteInput, type McpMorphoFetchMidnightQuoteOutput, type McpMorphoFetchPositionsInput, type McpMorphoFetchPositionsOutput, type McpMorphoFetchStockMarketsInput, type McpMorphoFetchStockMarketsOutput, type McpMorphoVaultDepositInput, type McpSchemaProperty, type McpSkyFetchSusdsRateInput, type McpSkyFetchSusdsRateOutput, type McpSkyLockstakeStakeInput, type McpToolDefinition, type McpToolHandler, type McpToolInputMap, type McpToolName, type McpToolOutputMap, type McpUniswapV4BuildAllowlistFinalizeMultisignInput, type McpUniswapV4BuildMintLiquidityMultisignInput, type McpUniswapV4BuildSwapMultisignInput, type McpUniswapV4CheckPermissionsInput, type McpUniswapV4CreateSwapInput, type McpUniswapV4CreateSwapOutput, type McpUniswapV4FetchOhlcvInput, type McpUniswapV4FetchOhlcvOutput, type McpUniswapV4KycApplyLinkInput, type McpUniswapV4LpCreatePositionInput, type McpUniswapV4QuoteInput, type McpUniswapV4QuoteOutput, type MultisignOutput, PROTOCOL_SUPPORT_ADVISORS, type ProtocolSupportAdvisor, type SupportedTokenRow, type TokenFilterKind, chainDetailSchema, evmAddressSchema, evmMultisignCommonInputSchema, getAgentCatalog, getAgentCatalogForMcp, getMcpToolByName, getMcpToolDefinitions, getMcpToolInputSchema, getMcpToolOutputSchema, getProtocolDiscoverySummary, getProtocolSkill, getProtocolSupportAdvisor, getToolsForProtocol, jsonObjectSchema, keyGenSchema, listProtocolSupportAdvisorIds, listProtocolsWithSkills, mcpAaveV4BorrowInputSchema, mcpAaveV4DepositInputSchema, mcpAaveV4FetchMarketInputSchema, mcpAaveV4FetchMarketOutputSchema, mcpAaveV4FetchMarketsInputSchema, mcpAaveV4FetchMarketsOutputSchema, mcpAaveV4RepayInputSchema, mcpAaveV4WithdrawInputSchema, mcpAerodromeBuildAddLiquidityMultisignInputSchema, mcpAerodromeBuildClBurnMultisignInputSchema, mcpAerodromeBuildClCollectFeesMultisignInputSchema, mcpAerodromeBuildClDecreaseMultisignInputSchema, mcpAerodromeBuildClIncreaseMultisignInputSchema, mcpAerodromeBuildClMintMultisignInputSchema, mcpAerodromeBuildClaimEmissionsMultisignInputSchema, mcpAerodromeBuildClaimFeesMultisignInputSchema, mcpAerodromeBuildGaugeStakeMultisignInputSchema, mcpAerodromeBuildGaugeUnstakeMultisignInputSchema, mcpAerodromeBuildRemoveLiquidityMultisignInputSchema, mcpAerodromeBuildSwapMultisignInputSchema, mcpAerodromeDiscoverPoolsInputSchema, mcpAerodromeDiscoverPoolsOutputSchema, mcpAerodromeFetchLpYieldsInputSchema, mcpAerodromeFetchLpYieldsOutputSchema, mcpAerodromeFetchPoolsInputSchema, mcpAerodromeFetchPoolsOutputSchema, mcpAerodromeFetchPositionsInputSchema, mcpAerodromeFetchPositionsOutputSchema, mcpAerodromeFetchStockLpYieldsInputSchema, mcpAerodromeFetchStockLpYieldsOutputSchema, mcpAerodromeQuoteAddLiquidityInputSchema, mcpAerodromeQuoteAddLiquidityOutputSchema, mcpAerodromeQuoteClDepositInputSchema, mcpAerodromeQuoteClDepositOutputSchema, mcpAerodromeQuoteInputSchema, mcpAerodromeQuoteOutputSchema, mcpArcusBuildCancelOrderMultisignInputSchema, mcpArcusBuildCloseMultisignInputSchema, mcpArcusBuildCreateApiKeyMultisignInputSchema, mcpArcusBuildDepositMultisignInputSchema, mcpArcusBuildPlaceOrderMultisignInputSchema, mcpArcusBuildSetLeverageMultisignInputSchema, mcpArcusBuildWithdrawMultisignInputSchema, mcpArcusFetchAccountInputSchema, mcpArcusFetchAccountOutputSchema, mcpArcusFetchMarketSnapshotInputSchema, mcpArcusFetchMarketSnapshotOutputSchema, mcpArcusFetchMarketsInputSchema, mcpArcusFetchMarketsOutputSchema, mcpArcusFetchOhlcvInputSchema, mcpArcusFetchOhlcvOutputSchema, mcpArcusFetchOpenContextInputSchema, mcpArcusFetchOpenContextOutputSchema, mcpArcusFetchOpenOrdersInputSchema, mcpArcusFetchOpenOrdersOutputSchema, mcpArcusFetchPositionsInputSchema, mcpArcusFetchPositionsOutputSchema, mcpArcusSearchMarketsInputSchema, mcpArcusSearchMarketsOutputSchema, mcpArcusSpotBuildRfqMultisignInputSchema, mcpArcusSpotFetchBalancesInputSchema, mcpArcusSpotFetchBalancesOutputSchema, mcpArcusSpotFetchMarketsInputSchema, mcpArcusSpotFetchMarketsOutputSchema, mcpArcusSpotFetchOhlcvInputSchema, mcpArcusSpotFetchOhlcvOutputSchema, mcpCompoundV3BulkerInputSchema, mcpCompoundV3ClaimRewardsInputSchema, mcpCompoundV3FetchAccountInputSchema, mcpCompoundV3FetchAccountOutputSchema, mcpCompoundV3FetchMarketInputSchema, mcpCompoundV3FetchMarketOutputSchema, mcpCompoundV3FetchMarketsInputSchema, mcpCompoundV3FetchMarketsOutputSchema, mcpCompoundV3RepayInputSchema, mcpCompoundV3SupplyInputSchema, mcpCompoundV3WithdrawInputSchema, mcpContinuumDaoAttachInputSchema, mcpContinuumDaoCastVoteBravoInputSchema, mcpContinuumDaoCastVoteDeltaInputSchema, mcpContinuumDaoCreateLockInputSchema, mcpContinuumDaoDelegateInputSchema, mcpContinuumDaoExplainProposalInputSchema, mcpContinuumDaoExplainProposalOutputSchema, mcpContinuumDaoFetchDelegatesInputSchema, mcpContinuumDaoFetchDelegatesOutputSchema, mcpContinuumDaoFetchLiveProposalsInputSchema, mcpContinuumDaoFetchLiveProposalsOutputSchema, mcpContinuumDaoFetchProposalInputSchema, mcpContinuumDaoFetchProposalOutputSchema, mcpContinuumDaoFetchProposalStateInputSchema, mcpContinuumDaoFetchProposalStateOutputSchema, mcpContinuumDaoFetchProposalsInputSchema, mcpContinuumDaoFetchProposalsOutputSchema, mcpContinuumDaoFetchVotingPowerInputSchema, mcpContinuumDaoFetchVotingPowerOutputSchema, mcpContinuumDaoForumCreateIdeaInputSchema, mcpContinuumDaoForumCreateIdeaOutputSchema, mcpContinuumDaoForumCreateTopicInputSchema, mcpContinuumDaoForumCreateTopicOutputSchema, mcpContinuumDaoForumDeleteInputSchema, mcpContinuumDaoForumDeleteOutputSchema, mcpContinuumDaoForumFetchPostInputSchema, mcpContinuumDaoForumFetchPostOutputSchema, mcpContinuumDaoForumFetchThreadInputSchema, mcpContinuumDaoForumFetchThreadOutputSchema, mcpContinuumDaoForumMarkReadInputSchema, mcpContinuumDaoForumMarkReadOutputSchema, mcpContinuumDaoForumMarkUnreadInputSchema, mcpContinuumDaoForumMarkUnreadOutputSchema, mcpContinuumDaoForumMeInputSchema, mcpContinuumDaoForumMeOutputSchema, mcpContinuumDaoForumReactInputSchema, mcpContinuumDaoForumReactOutputSchema, mcpContinuumDaoForumRecentInputSchema, mcpContinuumDaoForumRecentOutputSchema, mcpContinuumDaoForumReplyCountInputSchema, mcpContinuumDaoForumReplyCountOutputSchema, mcpContinuumDaoForumReplyInputSchema, mcpContinuumDaoForumReplyOutputSchema, mcpContinuumDaoForumResolveInputSchema, mcpContinuumDaoForumResolveOutputSchema, mcpContinuumDaoForumSearchInputSchema, mcpContinuumDaoForumSearchOutputSchema, mcpContinuumDaoForumSectionsInputSchema, mcpContinuumDaoForumSectionsOutputSchema, mcpContinuumDaoForumSignInEligibleInputSchema, mcpContinuumDaoForumSignInEligibleOutputSchema, mcpContinuumDaoForumSignInInputSchema, mcpContinuumDaoForumSignOutInputSchema, mcpContinuumDaoForumSignOutOutputSchema, mcpContinuumDaoForumUnreadInputSchema, mcpContinuumDaoForumUnreadOutputSchema, mcpContinuumDaoForumUserPostIdsInputSchema, mcpContinuumDaoForumUserPostIdsOutputSchema, mcpContinuumDaoIncreaseAmountInputSchema, mcpContinuumDaoIncreaseUnlockTimeInputSchema, mcpContinuumDaoMergeInputSchema, mcpContinuumDaoMpaFlagInputSchema, mcpContinuumDaoMpaFlagOutputSchema, mcpContinuumDaoMpaListingInputSchema, mcpContinuumDaoMpaListingOutputSchema, mcpContinuumDaoMpaMailboxListInputSchema, mcpContinuumDaoMpaMailboxListOutputSchema, mcpContinuumDaoMpaMailboxOpenInputSchema, mcpContinuumDaoMpaMailboxOpenOutputSchema, mcpContinuumDaoMpaMailboxSendInputSchema, mcpContinuumDaoMpaMailboxSendOutputSchema, mcpContinuumDaoMpaRetractInputSchema, mcpContinuumDaoMpaRetractOutputSchema, mcpContinuumDaoProposalIdInputSchema, mcpContinuumDaoProposeBravoInputSchema, mcpContinuumDaoProposeDeltaInputSchema, mcpContinuumDaoRegisterProposalInputSchema, mcpContinuumDaoRegisterProposalOutputSchema, mcpContinuumDaoRequestDetachInputSchema, mcpContinuumDaoSplitInputSchema, mcpContinuumDaoTechnocoreBindInputSchema, mcpContinuumDaoTechnocoreBindOutputSchema, mcpContinuumDaoTokenIdInputSchema, mcpContinuumDaoTransferInputSchema, mcpContinuumDaoUndelegateInputSchema, mcpCurveDaoBuildAddLiquidityMultisignInputSchema, mcpCurveDaoBuildGaugeDepositMultisignInputSchema, mcpCurveDaoBuildRemoveLiquidityMultisignInputSchema, mcpCurveDaoBuildSwapMultisignInputSchema, mcpCurveDaoFetchImportantPoolsInputSchema, mcpCurveDaoFetchImportantPoolsOutputSchema, mcpCurveDaoFetchLpYieldsInputSchema, mcpCurveDaoFetchLpYieldsOutputSchema, mcpCurveDaoQuoteAddLiquidityInputSchema, mcpCurveDaoQuoteAddLiquidityOutputSchema, mcpCurveDaoQuoteInputSchema, mcpCurveDaoQuoteOutputSchema, mcpCurveDaoQuoteRemoveLiquidityInputSchema, mcpCurveDaoQuoteRemoveLiquidityOutputSchema, mcpEthenaClaimInputSchema, mcpEthenaCooldownInputSchema, mcpEthenaFetchSusdeApyInputSchema, mcpEthenaFetchSusdeApyOutputSchema, mcpEthenaRedeemInputSchema, mcpEthenaStakeInputSchema, mcpEulerV2BorrowRepayInputSchema, mcpEulerV2CollateralDepositInputSchema, mcpEulerV2CollateralWithdrawInputSchema, mcpEulerV2FetchEarnVaultsInputSchema, mcpEulerV2FetchEarnVaultsOutputSchema, mcpEulerV2FetchLendVaultsInputSchema, mcpEulerV2FetchLendVaultsOutputSchema, mcpEulerV2IsolatedBorrowInputSchema, mcpEulerV2IsolatedLendInputSchema, mcpEulerV2VaultWithdrawInputSchema, mcpGmxCancelInputSchema, mcpGmxDecreaseInputSchema, mcpGmxFetchGmApyInputSchema, mcpGmxFetchGmApyOutputSchema, mcpGmxFetchGmMarketsInputSchema, mcpGmxFetchGmMarketsOutputSchema, mcpGmxFetchMarketPricesInputSchema, mcpGmxFetchMarketPricesOutputSchema, mcpGmxFetchMarketsInputSchema, mcpGmxFetchMarketsOutputSchema, mcpGmxFetchOhlcvInputSchema, mcpGmxFetchOhlcvOutputSchema, mcpGmxFetchOrdersInputSchema, mcpGmxFetchOrdersOutputSchema, mcpGmxFetchPositionsInputSchema, mcpGmxFetchPositionsOutputSchema, mcpGmxFetchStakingPowerInputSchema, mcpGmxFetchStakingPowerOutputSchema, mcpGmxGmDepositInputSchema, mcpGmxGmWithdrawInputSchema, mcpGmxIncreaseInputSchema, mcpServerSubmitOutputSchema as mcpGmxMultisignOutputSchema, mcpGmxStakeGmxInputSchema, mcpGmxUnstakeGmxInputSchema, mcpHyperliquidBridgeDepositInputSchema, mcpHyperliquidBridgeWithdrawInputSchema, mcpHyperliquidCancelInputSchema, mcpHyperliquidCloseInputSchema, mcpHyperliquidDelegateInputSchema, mcpHyperliquidFetchDelegationsInputSchema, mcpHyperliquidFetchDelegationsOutputSchema, mcpHyperliquidFetchMarketSnapshotInputSchema, mcpHyperliquidFetchMarketSnapshotOutputSchema, mcpHyperliquidFetchMarketsInputSchema, mcpHyperliquidFetchMarketsOutputSchema, mcpHyperliquidFetchOhlcvInputSchema, mcpHyperliquidFetchOhlcvOutputSchema, mcpHyperliquidFetchOpenContextInputSchema, mcpHyperliquidFetchOpenContextOutputSchema, mcpHyperliquidFetchOpenOrdersInputSchema, mcpHyperliquidFetchOpenOrdersOutputSchema, mcpHyperliquidFetchPositionsInputSchema, mcpHyperliquidFetchPositionsOutputSchema, mcpHyperliquidFetchStakingSummaryInputSchema, mcpHyperliquidFetchStakingSummaryOutputSchema, mcpHyperliquidFetchStockMarketsInputSchema, mcpHyperliquidFetchStockMarketsOutputSchema, mcpHyperliquidFetchUsdClassBalancesInputSchema, mcpHyperliquidFetchUsdClassBalancesOutputSchema, mcpHyperliquidFetchUserVaultEquitiesInputSchema, mcpHyperliquidFetchUserVaultEquitiesOutputSchema, mcpHyperliquidFetchVaultApysInputSchema, mcpHyperliquidFetchVaultApysOutputSchema, mcpHyperliquidFetchVaultsInputSchema, mcpHyperliquidFetchVaultsOutputSchema, mcpHyperliquidLimitOrderInputSchema, mcpHyperliquidSearchMarketsInputSchema, mcpHyperliquidSearchMarketsOutputSchema, mcpHyperliquidStakeInputSchema, mcpHyperliquidUndelegateInputSchema, mcpHyperliquidUnstakeInputSchema, mcpHyperliquidUpdateLeverageInputSchema, mcpHyperliquidUsdTransferInputSchema, mcpHyperliquidVaultDepositInputSchema, mcpHyperliquidVaultWithdrawInputSchema, mcpLidoClaimWithdrawalInputSchema, mcpLidoFetchStethAprInputSchema, mcpLidoFetchStethAprOutputSchema, mcpLidoRequestWithdrawalsInputSchema, mcpLidoSubmitInputSchema, mcpLidoUnwrapWstEthInputSchema, mcpLidoWrapStEthInputSchema, mcpMapleDepositInputSchema, mcpMapleFetchMarketInputSchema, mcpMapleFetchMarketOutputSchema, mcpMapleFetchMarketsInputSchema, mcpMapleFetchMarketsOutputSchema, mcpMapleRequestRedeemInputSchema, mcpMorphoBlueBorrowInputSchema, mcpMorphoBlueCollateralDepositInputSchema, mcpMorphoBlueCollateralWithdrawInputSchema, mcpMorphoBlueRepayInputSchema, mcpMorphoBlueSupplyInputSchema, mcpMorphoBlueWithdrawInputSchema, mcpMorphoFetchBlueMarketsInputSchema, mcpMorphoFetchBlueMarketsOutputSchema, mcpMorphoFetchEarnVaultsInputSchema, mcpMorphoFetchEarnVaultsOutputSchema, mcpMorphoFetchMidnightBooksInputSchema, mcpMorphoFetchMidnightBooksOutputSchema, mcpMorphoFetchMidnightOffersInputSchema, mcpMorphoFetchMidnightOffersOutputSchema, mcpMorphoFetchMidnightPositionsInputSchema, mcpMorphoFetchMidnightPositionsOutputSchema, mcpMorphoFetchMidnightQuoteInputSchema, mcpMorphoFetchMidnightQuoteOutputSchema, mcpMorphoFetchPositionsInputSchema, mcpMorphoFetchPositionsOutputSchema, mcpMorphoFetchStockMarketsInputSchema, mcpMorphoFetchStockMarketsOutputSchema, mcpMorphoMerklClaimInputSchema, mcpMorphoMidnightBorrowInputSchema, mcpMorphoMidnightCancelLendOfferInputSchema, mcpMorphoMidnightLendInputSchema, mcpMorphoMidnightLendOfferInputSchema, mcpMorphoMidnightRepayInputSchema, mcpMorphoVaultDepositInputSchema, mcpMorphoVaultWithdrawInputSchema, mcpMultisignInput, multisignOutputSchema as mcpMultisignOutputSchema, mcpServerSubmitOutputSchema as mcpMultisignSubmitOutputSchema, mcpPendleBuildAddLiquidityMultisignInputSchema, mcpPendleBuildMintPyMultisignInputSchema, mcpPendleBuildMintSyMultisignInputSchema, mcpPendleBuildRedeemPyMultisignInputSchema, mcpPendleBuildRedeemRewardsMultisignInputSchema, mcpPendleBuildRedeemSyMultisignInputSchema, mcpPendleBuildRemoveLiquidityMultisignInputSchema, mcpPendleBuildSwapMultisignInputSchema, mcpPendleFetchMarketsInputSchema, mcpPendleFetchMarketsOutputSchema, mcpPendleFetchMerkleRewardsInputSchema, mcpPendleFetchMerkleRewardsOutputSchema, mcpPendleFetchPositionsInputSchema, mcpPendleFetchPositionsOutputSchema, mcpPendleFetchPricesInputSchema, mcpPendleFetchPricesOutputSchema, mcpPendleQuoteAddLiquidityInputSchema, mcpPendleQuoteMintPyInputSchema, mcpPendleQuoteMintSyInputSchema, mcpPendleQuoteOutputSchema, mcpPendleQuoteRedeemPyInputSchema, mcpPendleQuoteRedeemSyInputSchema, mcpPendleQuoteRemoveLiquidityInputSchema, mcpPendleQuoteSwapInputSchema, mcpPendleSearchAssetsInputSchema, mcpPendleSearchAssetsOutputSchema, mcpServerCommonInputSchema, mcpServerMultisignInput, mcpServerSubmitOutputSchema, mcpSkyFetchSusdsRateInputSchema, mcpSkyFetchSusdsRateOutputSchema, mcpSkyLockstakeCloseInputSchema, mcpSkyLockstakeDrawInputSchema, mcpSkyLockstakeGetRewardInputSchema, mcpSkyLockstakeStakeInputSchema, mcpSkyLockstakeWipeInputSchema, mcpSkySusdsDepositInputSchema, mcpSkySusdsRedeemInputSchema, mcpUniswapV4BuildAllowlistFinalizeMultisignInputSchema, mcpUniswapV4BuildCollectFeesMultisignInputSchema, mcpUniswapV4BuildDecreaseLiquidityMultisignInputSchema, mcpUniswapV4BuildIncreaseLiquidityMultisignInputSchema, mcpUniswapV4BuildLimitOrderMultisignInputSchema, mcpUniswapV4BuildMintLiquidityMultisignInputSchema, mcpUniswapV4BuildSwapMultisignInputSchema, mcpUniswapV4CheckPermissionsInputSchema, mcpUniswapV4CheckPermissionsOutputSchema, mcpUniswapV4CreateSwapInputSchema, mcpUniswapV4CreateSwapOutputSchema, mcpUniswapV4FetchLimitOrdersInputSchema, mcpUniswapV4FetchLimitOrdersOutputSchema, mcpUniswapV4FetchOhlcvInputSchema, mcpUniswapV4FetchOhlcvOutputSchema, mcpUniswapV4KycApplyLinkInputSchema, mcpUniswapV4KycApplyLinkOutputSchema, mcpUniswapV4LimitOrderQuoteInputSchema, mcpUniswapV4LimitOrderQuoteOutputSchema, mcpUniswapV4LpClaimInputSchema, mcpUniswapV4LpClaimOutputSchema, mcpUniswapV4LpCreatePositionInputSchema, mcpUniswapV4LpCreatePositionOutputSchema, mcpUniswapV4LpDecreaseInputSchema, mcpUniswapV4LpDecreaseOutputSchema, mcpUniswapV4LpIncreaseInputSchema, mcpUniswapV4LpIncreaseOutputSchema, mcpUniswapV4LpListPoolsInputSchema, mcpUniswapV4LpListPoolsOutputSchema, mcpUniswapV4LpListPositionsInputSchema, mcpUniswapV4LpListPositionsOutputSchema, mcpUniswapV4QuoteInputSchema, mcpUniswapV4QuoteOutputSchema, mcpUniswapV4RegisterPositionFromMintTxInputSchema, mcpUniswapV4RegisterPositionFromMintTxOutputSchema, mcpUniswapV4RegisterPositionNftInputSchema, mcpUniswapV4RegisterPositionNftOutputSchema, mcpVeniceBurnDiemInputSchema, mcpVeniceCompleteUnstakeDiemInputSchema, mcpVeniceCompleteUnstakeSvvvInputSchema, mcpVeniceInitiateUnstakeDiemInputSchema, mcpVeniceInitiateUnstakeSvvvInputSchema, mcpVeniceListModelsInputSchema, mcpVeniceListModelsOutputSchema, mcpVeniceMintDiemInputSchema, mcpVeniceReadMintDiemPreviewInputSchema, mcpVeniceReadMintDiemPreviewOutputSchema, mcpVeniceReadStakingStateInputSchema, mcpVeniceReadStakingStateOutputSchema, mcpVeniceStakeDiemInputSchema, mcpVeniceStakeVvvInputSchema, multisignOutputSchema, parseAgentBoolean, parseAgentEvmChainId, parseMcpToolInput, parseMcpToolOutput, parseMultisignBuilderOutput, uniswapQuoteTradeTypeSchema, zodSchemaToMcpJsonSchema };
19335
+ export { type ChainDetailMcpInput, EVM_COMMON_PARAM_DOCS, type EvmMultisignCommonInput, type KeyGenMcpInput, MANAGEMENT_SIG_DOC, MCP_NON_SUBMIT_TOOL_NAMES, MCP_TOOL_DEFINITIONS, MCP_TOOL_INPUT_SCHEMAS, MCP_TOOL_OUTPUT_SCHEMAS, MULTISIGN_OUTPUT_DOC, MULTISIGN_SUBMIT_OUTPUT_DOC, type McpAaveV4DepositInput, type McpAaveV4FetchMarketInput, type McpAaveV4FetchMarketOutput, type McpAaveV4FetchMarketsInput, type McpAaveV4FetchMarketsOutput, type McpCurveDaoBuildSwapMultisignInput, type McpCurveDaoQuoteInput, type McpCurveDaoQuoteOutput, type McpEthenaFetchSusdeApyInput, type McpEthenaFetchSusdeApyOutput, type McpEthenaStakeInput, type McpEulerV2FetchEarnVaultsInput, type McpEulerV2FetchEarnVaultsOutput, type McpEulerV2FetchLendVaultsInput, type McpEulerV2FetchLendVaultsOutput, type McpEulerV2IsolatedLendInput, type McpJsonSchema, type McpLidoFetchStethAprInput, type McpLidoFetchStethAprOutput, type McpLidoSubmitInput, type McpMapleDepositInput, type McpMapleFetchMarketInput, type McpMapleFetchMarketOutput, type McpMapleFetchMarketsInput, type McpMapleFetchMarketsOutput, type McpMerklRewardsFetchInput, type McpMerklRewardsFetchOutput, type McpMorphoFetchBlueMarketsInput, type McpMorphoFetchBlueMarketsOutput, type McpMorphoFetchEarnVaultsInput, type McpMorphoFetchEarnVaultsOutput, type McpMorphoFetchMidnightBooksInput, type McpMorphoFetchMidnightBooksOutput, type McpMorphoFetchMidnightOffersInput, type McpMorphoFetchMidnightOffersOutput, type McpMorphoFetchMidnightPositionsInput, type McpMorphoFetchMidnightPositionsOutput, type McpMorphoFetchMidnightQuoteInput, type McpMorphoFetchMidnightQuoteOutput, type McpMorphoFetchPositionsInput, type McpMorphoFetchPositionsOutput, type McpMorphoFetchStockMarketsInput, type McpMorphoFetchStockMarketsOutput, type McpMorphoVaultDepositInput, type McpSchemaProperty, type McpSkyFetchSusdsRateInput, type McpSkyFetchSusdsRateOutput, type McpSkyLockstakeStakeInput, type McpToolDefinition, type McpToolHandler, type McpToolInputMap, type McpToolName, type McpToolOutputMap, type McpUniswapV4BuildAllowlistFinalizeMultisignInput, type McpUniswapV4BuildMintLiquidityMultisignInput, type McpUniswapV4BuildSwapMultisignInput, type McpUniswapV4CheckPermissionsInput, type McpUniswapV4CreateSwapInput, type McpUniswapV4CreateSwapOutput, type McpUniswapV4FetchOhlcvInput, type McpUniswapV4FetchOhlcvOutput, type McpUniswapV4KycApplyLinkInput, type McpUniswapV4LpCreatePositionInput, type McpUniswapV4QuoteInput, type McpUniswapV4QuoteOutput, type MultisignOutput, PROTOCOL_SUPPORT_ADVISORS, type ProtocolSupportAdvisor, type SupportedTokenRow, type TokenFilterKind, chainDetailSchema, evmAddressSchema, evmMultisignCommonInputSchema, getAgentCatalog, getAgentCatalogForMcp, getMcpToolByName, getMcpToolDefinitions, getMcpToolInputSchema, getMcpToolOutputSchema, getProtocolDiscoverySummary, getProtocolSkill, getProtocolSupportAdvisor, getToolsForProtocol, jsonObjectSchema, keyGenSchema, listProtocolSupportAdvisorIds, listProtocolsWithSkills, mcpAaveV4BorrowInputSchema, mcpAaveV4DepositInputSchema, mcpAaveV4FetchMarketInputSchema, mcpAaveV4FetchMarketOutputSchema, mcpAaveV4FetchMarketsInputSchema, mcpAaveV4FetchMarketsOutputSchema, mcpAaveV4MerklClaimInputSchema, mcpAaveV4RepayInputSchema, mcpAaveV4WithdrawInputSchema, mcpAerodromeBuildAddLiquidityMultisignInputSchema, mcpAerodromeBuildClBurnMultisignInputSchema, mcpAerodromeBuildClCollectFeesMultisignInputSchema, mcpAerodromeBuildClDecreaseMultisignInputSchema, mcpAerodromeBuildClIncreaseMultisignInputSchema, mcpAerodromeBuildClMintMultisignInputSchema, mcpAerodromeBuildClaimEmissionsMultisignInputSchema, mcpAerodromeBuildClaimFeesMultisignInputSchema, mcpAerodromeBuildGaugeStakeMultisignInputSchema, mcpAerodromeBuildGaugeUnstakeMultisignInputSchema, mcpAerodromeBuildRemoveLiquidityMultisignInputSchema, mcpAerodromeBuildSwapMultisignInputSchema, mcpAerodromeDiscoverPoolsInputSchema, mcpAerodromeDiscoverPoolsOutputSchema, mcpAerodromeFetchLpYieldsInputSchema, mcpAerodromeFetchLpYieldsOutputSchema, mcpAerodromeFetchPoolsInputSchema, mcpAerodromeFetchPoolsOutputSchema, mcpAerodromeFetchPositionsInputSchema, mcpAerodromeFetchPositionsOutputSchema, mcpAerodromeFetchStockLpYieldsInputSchema, mcpAerodromeFetchStockLpYieldsOutputSchema, mcpAerodromeQuoteAddLiquidityInputSchema, mcpAerodromeQuoteAddLiquidityOutputSchema, mcpAerodromeQuoteClDepositInputSchema, mcpAerodromeQuoteClDepositOutputSchema, mcpAerodromeQuoteInputSchema, mcpAerodromeQuoteOutputSchema, mcpArcusBuildCancelOrderMultisignInputSchema, mcpArcusBuildCloseMultisignInputSchema, mcpArcusBuildCreateApiKeyMultisignInputSchema, mcpArcusBuildDepositMultisignInputSchema, mcpArcusBuildPlaceOrderMultisignInputSchema, mcpArcusBuildSetLeverageMultisignInputSchema, mcpArcusBuildWithdrawMultisignInputSchema, mcpArcusFetchAccountInputSchema, mcpArcusFetchAccountOutputSchema, mcpArcusFetchMarketSnapshotInputSchema, mcpArcusFetchMarketSnapshotOutputSchema, mcpArcusFetchMarketsInputSchema, mcpArcusFetchMarketsOutputSchema, mcpArcusFetchOhlcvInputSchema, mcpArcusFetchOhlcvOutputSchema, mcpArcusFetchOpenContextInputSchema, mcpArcusFetchOpenContextOutputSchema, mcpArcusFetchOpenOrdersInputSchema, mcpArcusFetchOpenOrdersOutputSchema, mcpArcusFetchPositionsInputSchema, mcpArcusFetchPositionsOutputSchema, mcpArcusSearchMarketsInputSchema, mcpArcusSearchMarketsOutputSchema, mcpArcusSpotBuildRfqMultisignInputSchema, mcpArcusSpotFetchBalancesInputSchema, mcpArcusSpotFetchBalancesOutputSchema, mcpArcusSpotFetchMarketsInputSchema, mcpArcusSpotFetchMarketsOutputSchema, mcpArcusSpotFetchOhlcvInputSchema, mcpArcusSpotFetchOhlcvOutputSchema, mcpCompoundV3BulkerInputSchema, mcpCompoundV3ClaimRewardsInputSchema, mcpCompoundV3FetchAccountInputSchema, mcpCompoundV3FetchAccountOutputSchema, mcpCompoundV3FetchMarketInputSchema, mcpCompoundV3FetchMarketOutputSchema, mcpCompoundV3FetchMarketsInputSchema, mcpCompoundV3FetchMarketsOutputSchema, mcpCompoundV3RepayInputSchema, mcpCompoundV3SupplyInputSchema, mcpCompoundV3WithdrawInputSchema, mcpContinuumDaoAttachInputSchema, mcpContinuumDaoCastVoteBravoInputSchema, mcpContinuumDaoCastVoteDeltaInputSchema, mcpContinuumDaoCreateLockInputSchema, mcpContinuumDaoDelegateInputSchema, mcpContinuumDaoExplainProposalInputSchema, mcpContinuumDaoExplainProposalOutputSchema, mcpContinuumDaoFetchDelegatesInputSchema, mcpContinuumDaoFetchDelegatesOutputSchema, mcpContinuumDaoFetchLiveProposalsInputSchema, mcpContinuumDaoFetchLiveProposalsOutputSchema, mcpContinuumDaoFetchProposalInputSchema, mcpContinuumDaoFetchProposalOutputSchema, mcpContinuumDaoFetchProposalStateInputSchema, mcpContinuumDaoFetchProposalStateOutputSchema, mcpContinuumDaoFetchProposalsInputSchema, mcpContinuumDaoFetchProposalsOutputSchema, mcpContinuumDaoFetchVotingPowerInputSchema, mcpContinuumDaoFetchVotingPowerOutputSchema, mcpContinuumDaoForumCreateIdeaInputSchema, mcpContinuumDaoForumCreateIdeaOutputSchema, mcpContinuumDaoForumCreateTopicInputSchema, mcpContinuumDaoForumCreateTopicOutputSchema, mcpContinuumDaoForumDeleteInputSchema, mcpContinuumDaoForumDeleteOutputSchema, mcpContinuumDaoForumFetchPostInputSchema, mcpContinuumDaoForumFetchPostOutputSchema, mcpContinuumDaoForumFetchThreadInputSchema, mcpContinuumDaoForumFetchThreadOutputSchema, mcpContinuumDaoForumMarkReadInputSchema, mcpContinuumDaoForumMarkReadOutputSchema, mcpContinuumDaoForumMarkUnreadInputSchema, mcpContinuumDaoForumMarkUnreadOutputSchema, mcpContinuumDaoForumMeInputSchema, mcpContinuumDaoForumMeOutputSchema, mcpContinuumDaoForumReactInputSchema, mcpContinuumDaoForumReactOutputSchema, mcpContinuumDaoForumRecentInputSchema, mcpContinuumDaoForumRecentOutputSchema, mcpContinuumDaoForumReplyCountInputSchema, mcpContinuumDaoForumReplyCountOutputSchema, mcpContinuumDaoForumReplyInputSchema, mcpContinuumDaoForumReplyOutputSchema, mcpContinuumDaoForumResolveInputSchema, mcpContinuumDaoForumResolveOutputSchema, mcpContinuumDaoForumSearchInputSchema, mcpContinuumDaoForumSearchOutputSchema, mcpContinuumDaoForumSectionsInputSchema, mcpContinuumDaoForumSectionsOutputSchema, mcpContinuumDaoForumSignInEligibleInputSchema, mcpContinuumDaoForumSignInEligibleOutputSchema, mcpContinuumDaoForumSignInInputSchema, mcpContinuumDaoForumSignOutInputSchema, mcpContinuumDaoForumSignOutOutputSchema, mcpContinuumDaoForumUnreadInputSchema, mcpContinuumDaoForumUnreadOutputSchema, mcpContinuumDaoForumUserPostIdsInputSchema, mcpContinuumDaoForumUserPostIdsOutputSchema, mcpContinuumDaoIncreaseAmountInputSchema, mcpContinuumDaoIncreaseUnlockTimeInputSchema, mcpContinuumDaoMergeInputSchema, mcpContinuumDaoMpaFlagInputSchema, mcpContinuumDaoMpaFlagOutputSchema, mcpContinuumDaoMpaListingInputSchema, mcpContinuumDaoMpaListingOutputSchema, mcpContinuumDaoMpaMailboxListInputSchema, mcpContinuumDaoMpaMailboxListOutputSchema, mcpContinuumDaoMpaMailboxOpenInputSchema, mcpContinuumDaoMpaMailboxOpenOutputSchema, mcpContinuumDaoMpaMailboxSendInputSchema, mcpContinuumDaoMpaMailboxSendOutputSchema, mcpContinuumDaoMpaRetractInputSchema, mcpContinuumDaoMpaRetractOutputSchema, mcpContinuumDaoProposalIdInputSchema, mcpContinuumDaoProposeBravoInputSchema, mcpContinuumDaoProposeDeltaInputSchema, mcpContinuumDaoRegisterProposalInputSchema, mcpContinuumDaoRegisterProposalOutputSchema, mcpContinuumDaoRequestDetachInputSchema, mcpContinuumDaoSplitInputSchema, mcpContinuumDaoTechnocoreBindInputSchema, mcpContinuumDaoTechnocoreBindOutputSchema, mcpContinuumDaoTokenIdInputSchema, mcpContinuumDaoTransferInputSchema, mcpContinuumDaoUndelegateInputSchema, mcpCurveDaoBuildAddLiquidityMultisignInputSchema, mcpCurveDaoBuildGaugeDepositMultisignInputSchema, mcpCurveDaoBuildRemoveLiquidityMultisignInputSchema, mcpCurveDaoBuildSwapMultisignInputSchema, mcpCurveDaoFetchImportantPoolsInputSchema, mcpCurveDaoFetchImportantPoolsOutputSchema, mcpCurveDaoFetchLpYieldsInputSchema, mcpCurveDaoFetchLpYieldsOutputSchema, mcpCurveDaoQuoteAddLiquidityInputSchema, mcpCurveDaoQuoteAddLiquidityOutputSchema, mcpCurveDaoQuoteInputSchema, mcpCurveDaoQuoteOutputSchema, mcpCurveDaoQuoteRemoveLiquidityInputSchema, mcpCurveDaoQuoteRemoveLiquidityOutputSchema, mcpEthenaClaimInputSchema, mcpEthenaCooldownInputSchema, mcpEthenaFetchSusdeApyInputSchema, mcpEthenaFetchSusdeApyOutputSchema, mcpEthenaRedeemInputSchema, mcpEthenaStakeInputSchema, mcpEulerV2BorrowRepayInputSchema, mcpEulerV2CollateralDepositInputSchema, mcpEulerV2CollateralWithdrawInputSchema, mcpEulerV2FetchEarnVaultsInputSchema, mcpEulerV2FetchEarnVaultsOutputSchema, mcpEulerV2FetchLendVaultsInputSchema, mcpEulerV2FetchLendVaultsOutputSchema, mcpEulerV2IsolatedBorrowInputSchema, mcpEulerV2IsolatedLendInputSchema, mcpEulerV2MerklClaimInputSchema, mcpEulerV2VaultWithdrawInputSchema, mcpGmxCancelInputSchema, mcpGmxDecreaseInputSchema, mcpGmxFetchGmApyInputSchema, mcpGmxFetchGmApyOutputSchema, mcpGmxFetchGmMarketsInputSchema, mcpGmxFetchGmMarketsOutputSchema, mcpGmxFetchMarketPricesInputSchema, mcpGmxFetchMarketPricesOutputSchema, mcpGmxFetchMarketsInputSchema, mcpGmxFetchMarketsOutputSchema, mcpGmxFetchOhlcvInputSchema, mcpGmxFetchOhlcvOutputSchema, mcpGmxFetchOrdersInputSchema, mcpGmxFetchOrdersOutputSchema, mcpGmxFetchPositionsInputSchema, mcpGmxFetchPositionsOutputSchema, mcpGmxFetchStakingPowerInputSchema, mcpGmxFetchStakingPowerOutputSchema, mcpGmxGmDepositInputSchema, mcpGmxGmWithdrawInputSchema, mcpGmxIncreaseInputSchema, mcpServerSubmitOutputSchema as mcpGmxMultisignOutputSchema, mcpGmxStakeGmxInputSchema, mcpGmxUnstakeGmxInputSchema, mcpHyperliquidBridgeDepositInputSchema, mcpHyperliquidBridgeWithdrawInputSchema, mcpHyperliquidCancelInputSchema, mcpHyperliquidCloseInputSchema, mcpHyperliquidDelegateInputSchema, mcpHyperliquidFetchDelegationsInputSchema, mcpHyperliquidFetchDelegationsOutputSchema, mcpHyperliquidFetchMarketSnapshotInputSchema, mcpHyperliquidFetchMarketSnapshotOutputSchema, mcpHyperliquidFetchMarketsInputSchema, mcpHyperliquidFetchMarketsOutputSchema, mcpHyperliquidFetchOhlcvInputSchema, mcpHyperliquidFetchOhlcvOutputSchema, mcpHyperliquidFetchOpenContextInputSchema, mcpHyperliquidFetchOpenContextOutputSchema, mcpHyperliquidFetchOpenOrdersInputSchema, mcpHyperliquidFetchOpenOrdersOutputSchema, mcpHyperliquidFetchPositionsInputSchema, mcpHyperliquidFetchPositionsOutputSchema, mcpHyperliquidFetchStakingSummaryInputSchema, mcpHyperliquidFetchStakingSummaryOutputSchema, mcpHyperliquidFetchStockMarketsInputSchema, mcpHyperliquidFetchStockMarketsOutputSchema, mcpHyperliquidFetchUsdClassBalancesInputSchema, mcpHyperliquidFetchUsdClassBalancesOutputSchema, mcpHyperliquidFetchUserVaultEquitiesInputSchema, mcpHyperliquidFetchUserVaultEquitiesOutputSchema, mcpHyperliquidFetchVaultApysInputSchema, mcpHyperliquidFetchVaultApysOutputSchema, mcpHyperliquidFetchVaultsInputSchema, mcpHyperliquidFetchVaultsOutputSchema, mcpHyperliquidLimitOrderInputSchema, mcpHyperliquidSearchMarketsInputSchema, mcpHyperliquidSearchMarketsOutputSchema, mcpHyperliquidStakeInputSchema, mcpHyperliquidUndelegateInputSchema, mcpHyperliquidUnstakeInputSchema, mcpHyperliquidUpdateLeverageInputSchema, mcpHyperliquidUsdTransferInputSchema, mcpHyperliquidVaultDepositInputSchema, mcpHyperliquidVaultWithdrawInputSchema, mcpLidoClaimWithdrawalInputSchema, mcpLidoFetchStethAprInputSchema, mcpLidoFetchStethAprOutputSchema, mcpLidoRequestWithdrawalsInputSchema, mcpLidoSubmitInputSchema, mcpLidoUnwrapWstEthInputSchema, mcpLidoWrapStEthInputSchema, mcpMapleDepositInputSchema, mcpMapleFetchMarketInputSchema, mcpMapleFetchMarketOutputSchema, mcpMapleFetchMarketsInputSchema, mcpMapleFetchMarketsOutputSchema, mcpMapleRequestRedeemInputSchema, mcpMerklRewardsFetchInputSchema, mcpMerklRewardsFetchOutputSchema, mcpMorphoBlueBorrowInputSchema, mcpMorphoBlueCollateralDepositInputSchema, mcpMorphoBlueCollateralWithdrawInputSchema, mcpMorphoBlueRepayInputSchema, mcpMorphoBlueSupplyInputSchema, mcpMorphoBlueWithdrawInputSchema, mcpMorphoFetchBlueMarketsInputSchema, mcpMorphoFetchBlueMarketsOutputSchema, mcpMorphoFetchEarnVaultsInputSchema, mcpMorphoFetchEarnVaultsOutputSchema, mcpMorphoFetchMidnightBooksInputSchema, mcpMorphoFetchMidnightBooksOutputSchema, mcpMorphoFetchMidnightOffersInputSchema, mcpMorphoFetchMidnightOffersOutputSchema, mcpMorphoFetchMidnightPositionsInputSchema, mcpMorphoFetchMidnightPositionsOutputSchema, mcpMorphoFetchMidnightQuoteInputSchema, mcpMorphoFetchMidnightQuoteOutputSchema, mcpMorphoFetchPositionsInputSchema, mcpMorphoFetchPositionsOutputSchema, mcpMorphoFetchStockMarketsInputSchema, mcpMorphoFetchStockMarketsOutputSchema, mcpMorphoMerklClaimInputSchema, mcpMorphoMidnightBorrowInputSchema, mcpMorphoMidnightCancelLendOfferInputSchema, mcpMorphoMidnightLendInputSchema, mcpMorphoMidnightLendOfferInputSchema, mcpMorphoMidnightRepayInputSchema, mcpMorphoVaultDepositInputSchema, mcpMorphoVaultWithdrawInputSchema, mcpMultisignInput, multisignOutputSchema as mcpMultisignOutputSchema, mcpServerSubmitOutputSchema as mcpMultisignSubmitOutputSchema, mcpPendleBuildAddLiquidityMultisignInputSchema, mcpPendleBuildMintPyMultisignInputSchema, mcpPendleBuildMintSyMultisignInputSchema, mcpPendleBuildRedeemPyMultisignInputSchema, mcpPendleBuildRedeemRewardsMultisignInputSchema, mcpPendleBuildRedeemSyMultisignInputSchema, mcpPendleBuildRemoveLiquidityMultisignInputSchema, mcpPendleBuildSwapMultisignInputSchema, mcpPendleFetchMarketsInputSchema, mcpPendleFetchMarketsOutputSchema, mcpPendleFetchMerkleRewardsInputSchema, mcpPendleFetchMerkleRewardsOutputSchema, mcpPendleFetchPositionsInputSchema, mcpPendleFetchPositionsOutputSchema, mcpPendleFetchPricesInputSchema, mcpPendleFetchPricesOutputSchema, mcpPendleQuoteAddLiquidityInputSchema, mcpPendleQuoteMintPyInputSchema, mcpPendleQuoteMintSyInputSchema, mcpPendleQuoteOutputSchema, mcpPendleQuoteRedeemPyInputSchema, mcpPendleQuoteRedeemSyInputSchema, mcpPendleQuoteRemoveLiquidityInputSchema, mcpPendleQuoteSwapInputSchema, mcpPendleSearchAssetsInputSchema, mcpPendleSearchAssetsOutputSchema, mcpServerCommonInputSchema, mcpServerMultisignInput, mcpServerSubmitOutputSchema, mcpSkyFetchSusdsRateInputSchema, mcpSkyFetchSusdsRateOutputSchema, mcpSkyLockstakeCloseInputSchema, mcpSkyLockstakeDrawInputSchema, mcpSkyLockstakeGetRewardInputSchema, mcpSkyLockstakeStakeInputSchema, mcpSkyLockstakeWipeInputSchema, mcpSkySusdsDepositInputSchema, mcpSkySusdsRedeemInputSchema, mcpUniswapV4BuildAllowlistFinalizeMultisignInputSchema, mcpUniswapV4BuildCollectFeesMultisignInputSchema, mcpUniswapV4BuildDecreaseLiquidityMultisignInputSchema, mcpUniswapV4BuildIncreaseLiquidityMultisignInputSchema, mcpUniswapV4BuildLimitOrderMultisignInputSchema, mcpUniswapV4BuildMintLiquidityMultisignInputSchema, mcpUniswapV4BuildSwapMultisignInputSchema, mcpUniswapV4CheckPermissionsInputSchema, mcpUniswapV4CheckPermissionsOutputSchema, mcpUniswapV4CreateSwapInputSchema, mcpUniswapV4CreateSwapOutputSchema, mcpUniswapV4FetchLimitOrdersInputSchema, mcpUniswapV4FetchLimitOrdersOutputSchema, mcpUniswapV4FetchOhlcvInputSchema, mcpUniswapV4FetchOhlcvOutputSchema, mcpUniswapV4KycApplyLinkInputSchema, mcpUniswapV4KycApplyLinkOutputSchema, mcpUniswapV4LimitOrderQuoteInputSchema, mcpUniswapV4LimitOrderQuoteOutputSchema, mcpUniswapV4LpClaimInputSchema, mcpUniswapV4LpClaimOutputSchema, mcpUniswapV4LpCreatePositionInputSchema, mcpUniswapV4LpCreatePositionOutputSchema, mcpUniswapV4LpDecreaseInputSchema, mcpUniswapV4LpDecreaseOutputSchema, mcpUniswapV4LpIncreaseInputSchema, mcpUniswapV4LpIncreaseOutputSchema, mcpUniswapV4LpListPoolsInputSchema, mcpUniswapV4LpListPoolsOutputSchema, mcpUniswapV4LpListPositionsInputSchema, mcpUniswapV4LpListPositionsOutputSchema, mcpUniswapV4QuoteInputSchema, mcpUniswapV4QuoteOutputSchema, mcpUniswapV4RegisterPositionFromMintTxInputSchema, mcpUniswapV4RegisterPositionFromMintTxOutputSchema, mcpUniswapV4RegisterPositionNftInputSchema, mcpUniswapV4RegisterPositionNftOutputSchema, mcpVeniceBurnDiemInputSchema, mcpVeniceCompleteUnstakeDiemInputSchema, mcpVeniceCompleteUnstakeSvvvInputSchema, mcpVeniceInitiateUnstakeDiemInputSchema, mcpVeniceInitiateUnstakeSvvvInputSchema, mcpVeniceListModelsInputSchema, mcpVeniceListModelsOutputSchema, mcpVeniceMintDiemInputSchema, mcpVeniceReadMintDiemPreviewInputSchema, mcpVeniceReadMintDiemPreviewOutputSchema, mcpVeniceReadStakingStateInputSchema, mcpVeniceReadStakingStateOutputSchema, mcpVeniceStakeDiemInputSchema, mcpVeniceStakeVvvInputSchema, multisignOutputSchema, parseAgentBoolean, parseAgentEvmChainId, parseMcpToolInput, parseMcpToolOutput, parseMultisignBuilderOutput, uniswapQuoteTradeTypeSchema, zodSchemaToMcpJsonSchema };