@continuumdao/ctm-mpc-defi 0.2.42 → 0.2.43
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 +207 -26
- package/dist/agent/catalog.cjs.map +1 -1
- package/dist/agent/catalog.d.ts +914 -197
- package/dist/agent/catalog.js +202 -27
- package/dist/agent/catalog.js.map +1 -1
- package/dist/agent/skills/aerodrome/SKILL.md +1 -1
- package/dist/agent/skills/arcus/SKILL.md +1 -1
- package/dist/agent/skills/morpho/SKILL.md +32 -5
- package/dist/agent/skills/yield-compare/SKILL.md +6 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js.map +1 -1
- package/dist/protocols/evm/aerodrome/index.cjs +67 -48
- package/dist/protocols/evm/aerodrome/index.cjs.map +1 -1
- package/dist/protocols/evm/aerodrome/index.d.ts +8 -8
- package/dist/protocols/evm/aerodrome/index.js +82 -63
- package/dist/protocols/evm/aerodrome/index.js.map +1 -1
- package/dist/protocols/evm/morpho/index.cjs +441 -55
- package/dist/protocols/evm/morpho/index.cjs.map +1 -1
- package/dist/protocols/evm/morpho/index.d.ts +123 -2
- package/dist/protocols/evm/morpho/index.js +419 -57
- package/dist/protocols/evm/morpho/index.js.map +1 -1
- package/package.json +1 -1
package/dist/agent/catalog.d.ts
CHANGED
|
@@ -7368,7 +7368,7 @@ declare const mcpMorphoBlueCollateralDepositInputSchema: z.ZodEffects<z.ZodEffec
|
|
|
7368
7368
|
marketLabel?: string | undefined;
|
|
7369
7369
|
isNativeIn?: boolean | undefined;
|
|
7370
7370
|
}, unknown>;
|
|
7371
|
-
declare const
|
|
7371
|
+
declare const mcpMorphoBlueSupplyInputSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
7372
7372
|
keyGenId: z.ZodOptional<z.ZodString>;
|
|
7373
7373
|
keyGen: z.ZodOptional<z.ZodObject<{
|
|
7374
7374
|
pubkeyhex: z.ZodString;
|
|
@@ -7425,6 +7425,7 @@ declare const mcpMorphoBlueBorrowInputSchema: z.ZodEffects<z.ZodEffects<z.ZodObj
|
|
|
7425
7425
|
marketId: z.ZodString;
|
|
7426
7426
|
loanToken: z.ZodString;
|
|
7427
7427
|
amountHuman: z.ZodString;
|
|
7428
|
+
marketLabel: z.ZodOptional<z.ZodString>;
|
|
7428
7429
|
}, "strip", z.ZodTypeAny, {
|
|
7429
7430
|
purposeText: string;
|
|
7430
7431
|
useCustomGas: boolean;
|
|
@@ -7453,6 +7454,7 @@ declare const mcpMorphoBlueBorrowInputSchema: z.ZodEffects<z.ZodEffects<z.ZodObj
|
|
|
7453
7454
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
7454
7455
|
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
7455
7456
|
keyGenId?: string | undefined;
|
|
7457
|
+
marketLabel?: string | undefined;
|
|
7456
7458
|
}, {
|
|
7457
7459
|
purposeText: string;
|
|
7458
7460
|
amountHuman: string;
|
|
@@ -7481,6 +7483,7 @@ declare const mcpMorphoBlueBorrowInputSchema: z.ZodEffects<z.ZodEffects<z.ZodObj
|
|
|
7481
7483
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
7482
7484
|
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
7483
7485
|
keyGenId?: string | undefined;
|
|
7486
|
+
marketLabel?: string | undefined;
|
|
7484
7487
|
}>, {
|
|
7485
7488
|
purposeText: string;
|
|
7486
7489
|
useCustomGas: boolean;
|
|
@@ -7509,6 +7512,7 @@ declare const mcpMorphoBlueBorrowInputSchema: z.ZodEffects<z.ZodEffects<z.ZodObj
|
|
|
7509
7512
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
7510
7513
|
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
7511
7514
|
keyGenId?: string | undefined;
|
|
7515
|
+
marketLabel?: string | undefined;
|
|
7512
7516
|
}, unknown>, {
|
|
7513
7517
|
purposeText: string;
|
|
7514
7518
|
useCustomGas: boolean;
|
|
@@ -7537,8 +7541,9 @@ declare const mcpMorphoBlueBorrowInputSchema: z.ZodEffects<z.ZodEffects<z.ZodObj
|
|
|
7537
7541
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
7538
7542
|
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
7539
7543
|
keyGenId?: string | undefined;
|
|
7544
|
+
marketLabel?: string | undefined;
|
|
7540
7545
|
}, unknown>;
|
|
7541
|
-
declare const
|
|
7546
|
+
declare const mcpMorphoBlueWithdrawInputSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
7542
7547
|
keyGenId: z.ZodOptional<z.ZodString>;
|
|
7543
7548
|
keyGen: z.ZodOptional<z.ZodObject<{
|
|
7544
7549
|
pubkeyhex: z.ZodString;
|
|
@@ -7595,6 +7600,7 @@ declare const mcpMorphoBlueRepayInputSchema: z.ZodEffects<z.ZodEffects<z.ZodObje
|
|
|
7595
7600
|
marketId: z.ZodString;
|
|
7596
7601
|
loanToken: z.ZodString;
|
|
7597
7602
|
amountHuman: z.ZodString;
|
|
7603
|
+
marketLabel: z.ZodOptional<z.ZodString>;
|
|
7598
7604
|
}, "strip", z.ZodTypeAny, {
|
|
7599
7605
|
purposeText: string;
|
|
7600
7606
|
useCustomGas: boolean;
|
|
@@ -7623,6 +7629,7 @@ declare const mcpMorphoBlueRepayInputSchema: z.ZodEffects<z.ZodEffects<z.ZodObje
|
|
|
7623
7629
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
7624
7630
|
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
7625
7631
|
keyGenId?: string | undefined;
|
|
7632
|
+
marketLabel?: string | undefined;
|
|
7626
7633
|
}, {
|
|
7627
7634
|
purposeText: string;
|
|
7628
7635
|
amountHuman: string;
|
|
@@ -7651,6 +7658,7 @@ declare const mcpMorphoBlueRepayInputSchema: z.ZodEffects<z.ZodEffects<z.ZodObje
|
|
|
7651
7658
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
7652
7659
|
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
7653
7660
|
keyGenId?: string | undefined;
|
|
7661
|
+
marketLabel?: string | undefined;
|
|
7654
7662
|
}>, {
|
|
7655
7663
|
purposeText: string;
|
|
7656
7664
|
useCustomGas: boolean;
|
|
@@ -7679,6 +7687,7 @@ declare const mcpMorphoBlueRepayInputSchema: z.ZodEffects<z.ZodEffects<z.ZodObje
|
|
|
7679
7687
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
7680
7688
|
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
7681
7689
|
keyGenId?: string | undefined;
|
|
7690
|
+
marketLabel?: string | undefined;
|
|
7682
7691
|
}, unknown>, {
|
|
7683
7692
|
purposeText: string;
|
|
7684
7693
|
useCustomGas: boolean;
|
|
@@ -7707,30 +7716,9 @@ declare const mcpMorphoBlueRepayInputSchema: z.ZodEffects<z.ZodEffects<z.ZodObje
|
|
|
7707
7716
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
7708
7717
|
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
7709
7718
|
keyGenId?: string | undefined;
|
|
7719
|
+
marketLabel?: string | undefined;
|
|
7710
7720
|
}, unknown>;
|
|
7711
|
-
declare const
|
|
7712
|
-
[x: string]: z.ZodTypeAny;
|
|
7713
|
-
}, "strip", z.ZodTypeAny, {
|
|
7714
|
-
[x: string]: any;
|
|
7715
|
-
}, {
|
|
7716
|
-
[x: string]: any;
|
|
7717
|
-
}>, {
|
|
7718
|
-
[x: string]: any;
|
|
7719
|
-
}, {
|
|
7720
|
-
[x: string]: any;
|
|
7721
|
-
}>;
|
|
7722
|
-
declare const mcpMorphoMerklClaimInputSchema: z.ZodEffects<z.ZodObject<{} & {
|
|
7723
|
-
[x: string]: z.ZodTypeAny;
|
|
7724
|
-
}, "strip", z.ZodTypeAny, {
|
|
7725
|
-
[x: string]: any;
|
|
7726
|
-
}, {
|
|
7727
|
-
[x: string]: any;
|
|
7728
|
-
}>, {
|
|
7729
|
-
[x: string]: any;
|
|
7730
|
-
}, {
|
|
7731
|
-
[x: string]: any;
|
|
7732
|
-
}>;
|
|
7733
|
-
declare const mcpMorphoMidnightLendInputSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
7721
|
+
declare const mcpMorphoBlueBorrowInputSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
7734
7722
|
keyGenId: z.ZodOptional<z.ZodString>;
|
|
7735
7723
|
keyGen: z.ZodOptional<z.ZodObject<{
|
|
7736
7724
|
pubkeyhex: z.ZodString;
|
|
@@ -7785,17 +7773,15 @@ declare const mcpMorphoMidnightLendInputSchema: z.ZodEffects<z.ZodEffects<z.ZodO
|
|
|
7785
7773
|
expiryDate: z.ZodOptional<z.ZodNumber>;
|
|
7786
7774
|
} & {
|
|
7787
7775
|
marketId: z.ZodString;
|
|
7776
|
+
loanToken: z.ZodString;
|
|
7788
7777
|
amountHuman: z.ZodString;
|
|
7789
|
-
loanToken: z.ZodOptional<z.ZodString>;
|
|
7790
|
-
slippagePct: z.ZodOptional<z.ZodString>;
|
|
7791
|
-
marketLabel: z.ZodOptional<z.ZodString>;
|
|
7792
|
-
isNativeIn: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
7793
7778
|
}, "strip", z.ZodTypeAny, {
|
|
7794
7779
|
purposeText: string;
|
|
7795
7780
|
useCustomGas: boolean;
|
|
7796
7781
|
chainId: number;
|
|
7797
7782
|
amountHuman: string;
|
|
7798
7783
|
marketId: string;
|
|
7784
|
+
loanToken: string;
|
|
7799
7785
|
keyGen?: {
|
|
7800
7786
|
pubkeyhex: string;
|
|
7801
7787
|
keylist?: string[] | undefined;
|
|
@@ -7817,14 +7803,11 @@ declare const mcpMorphoMidnightLendInputSchema: z.ZodEffects<z.ZodEffects<z.ZodO
|
|
|
7817
7803
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
7818
7804
|
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
7819
7805
|
keyGenId?: string | undefined;
|
|
7820
|
-
marketLabel?: string | undefined;
|
|
7821
|
-
loanToken?: string | undefined;
|
|
7822
|
-
slippagePct?: string | undefined;
|
|
7823
|
-
isNativeIn?: boolean | undefined;
|
|
7824
7806
|
}, {
|
|
7825
7807
|
purposeText: string;
|
|
7826
7808
|
amountHuman: string;
|
|
7827
7809
|
marketId: string;
|
|
7810
|
+
loanToken: string;
|
|
7828
7811
|
keyGen?: {
|
|
7829
7812
|
pubkeyhex: string;
|
|
7830
7813
|
keylist?: string[] | undefined;
|
|
@@ -7848,16 +7831,13 @@ declare const mcpMorphoMidnightLendInputSchema: z.ZodEffects<z.ZodEffects<z.ZodO
|
|
|
7848
7831
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
7849
7832
|
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
7850
7833
|
keyGenId?: string | undefined;
|
|
7851
|
-
marketLabel?: string | undefined;
|
|
7852
|
-
loanToken?: string | undefined;
|
|
7853
|
-
slippagePct?: string | undefined;
|
|
7854
|
-
isNativeIn?: unknown;
|
|
7855
7834
|
}>, {
|
|
7856
7835
|
purposeText: string;
|
|
7857
7836
|
useCustomGas: boolean;
|
|
7858
7837
|
chainId: number;
|
|
7859
7838
|
amountHuman: string;
|
|
7860
7839
|
marketId: string;
|
|
7840
|
+
loanToken: string;
|
|
7861
7841
|
keyGen?: {
|
|
7862
7842
|
pubkeyhex: string;
|
|
7863
7843
|
keylist?: string[] | undefined;
|
|
@@ -7879,16 +7859,13 @@ declare const mcpMorphoMidnightLendInputSchema: z.ZodEffects<z.ZodEffects<z.ZodO
|
|
|
7879
7859
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
7880
7860
|
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
7881
7861
|
keyGenId?: string | undefined;
|
|
7882
|
-
marketLabel?: string | undefined;
|
|
7883
|
-
loanToken?: string | undefined;
|
|
7884
|
-
slippagePct?: string | undefined;
|
|
7885
|
-
isNativeIn?: boolean | undefined;
|
|
7886
7862
|
}, unknown>, {
|
|
7887
7863
|
purposeText: string;
|
|
7888
7864
|
useCustomGas: boolean;
|
|
7889
7865
|
chainId: number;
|
|
7890
7866
|
amountHuman: string;
|
|
7891
7867
|
marketId: string;
|
|
7868
|
+
loanToken: string;
|
|
7892
7869
|
keyGen?: {
|
|
7893
7870
|
pubkeyhex: string;
|
|
7894
7871
|
keylist?: string[] | undefined;
|
|
@@ -7910,12 +7887,8 @@ declare const mcpMorphoMidnightLendInputSchema: z.ZodEffects<z.ZodEffects<z.ZodO
|
|
|
7910
7887
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
7911
7888
|
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
7912
7889
|
keyGenId?: string | undefined;
|
|
7913
|
-
marketLabel?: string | undefined;
|
|
7914
|
-
loanToken?: string | undefined;
|
|
7915
|
-
slippagePct?: string | undefined;
|
|
7916
|
-
isNativeIn?: boolean | undefined;
|
|
7917
7890
|
}, unknown>;
|
|
7918
|
-
declare const
|
|
7891
|
+
declare const mcpMorphoBlueRepayInputSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
7919
7892
|
keyGenId: z.ZodOptional<z.ZodString>;
|
|
7920
7893
|
keyGen: z.ZodOptional<z.ZodObject<{
|
|
7921
7894
|
pubkeyhex: z.ZodString;
|
|
@@ -7970,22 +7943,15 @@ declare const mcpMorphoMidnightBorrowInputSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
7970
7943
|
expiryDate: z.ZodOptional<z.ZodNumber>;
|
|
7971
7944
|
} & {
|
|
7972
7945
|
marketId: z.ZodString;
|
|
7973
|
-
|
|
7974
|
-
|
|
7975
|
-
collateralToken: z.ZodString;
|
|
7976
|
-
loanToken: z.ZodOptional<z.ZodString>;
|
|
7977
|
-
collateralIndex: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7978
|
-
slippagePct: z.ZodOptional<z.ZodString>;
|
|
7979
|
-
marketLabel: z.ZodOptional<z.ZodString>;
|
|
7980
|
-
isNativeIn: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
7946
|
+
loanToken: z.ZodString;
|
|
7947
|
+
amountHuman: z.ZodString;
|
|
7981
7948
|
}, "strip", z.ZodTypeAny, {
|
|
7982
7949
|
purposeText: string;
|
|
7983
7950
|
useCustomGas: boolean;
|
|
7984
7951
|
chainId: number;
|
|
7985
|
-
|
|
7986
|
-
collateralToken: string;
|
|
7952
|
+
amountHuman: string;
|
|
7987
7953
|
marketId: string;
|
|
7988
|
-
|
|
7954
|
+
loanToken: string;
|
|
7989
7955
|
keyGen?: {
|
|
7990
7956
|
pubkeyhex: string;
|
|
7991
7957
|
keylist?: string[] | undefined;
|
|
@@ -8007,17 +7973,11 @@ declare const mcpMorphoMidnightBorrowInputSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
8007
7973
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
8008
7974
|
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
8009
7975
|
keyGenId?: string | undefined;
|
|
8010
|
-
marketLabel?: string | undefined;
|
|
8011
|
-
loanToken?: string | undefined;
|
|
8012
|
-
slippagePct?: string | undefined;
|
|
8013
|
-
isNativeIn?: boolean | undefined;
|
|
8014
|
-
collateralIndex?: number | undefined;
|
|
8015
7976
|
}, {
|
|
8016
7977
|
purposeText: string;
|
|
8017
|
-
|
|
8018
|
-
collateralToken: string;
|
|
7978
|
+
amountHuman: string;
|
|
8019
7979
|
marketId: string;
|
|
8020
|
-
|
|
7980
|
+
loanToken: string;
|
|
8021
7981
|
keyGen?: {
|
|
8022
7982
|
pubkeyhex: string;
|
|
8023
7983
|
keylist?: string[] | undefined;
|
|
@@ -8041,19 +8001,13 @@ declare const mcpMorphoMidnightBorrowInputSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
8041
8001
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
8042
8002
|
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
8043
8003
|
keyGenId?: string | undefined;
|
|
8044
|
-
marketLabel?: string | undefined;
|
|
8045
|
-
loanToken?: string | undefined;
|
|
8046
|
-
slippagePct?: string | undefined;
|
|
8047
|
-
isNativeIn?: unknown;
|
|
8048
|
-
collateralIndex?: unknown;
|
|
8049
8004
|
}>, {
|
|
8050
8005
|
purposeText: string;
|
|
8051
8006
|
useCustomGas: boolean;
|
|
8052
8007
|
chainId: number;
|
|
8053
|
-
|
|
8054
|
-
collateralToken: string;
|
|
8008
|
+
amountHuman: string;
|
|
8055
8009
|
marketId: string;
|
|
8056
|
-
|
|
8010
|
+
loanToken: string;
|
|
8057
8011
|
keyGen?: {
|
|
8058
8012
|
pubkeyhex: string;
|
|
8059
8013
|
keylist?: string[] | undefined;
|
|
@@ -8075,19 +8029,13 @@ declare const mcpMorphoMidnightBorrowInputSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
8075
8029
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
8076
8030
|
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
8077
8031
|
keyGenId?: string | undefined;
|
|
8078
|
-
marketLabel?: string | undefined;
|
|
8079
|
-
loanToken?: string | undefined;
|
|
8080
|
-
slippagePct?: string | undefined;
|
|
8081
|
-
isNativeIn?: boolean | undefined;
|
|
8082
|
-
collateralIndex?: number | undefined;
|
|
8083
8032
|
}, unknown>, {
|
|
8084
8033
|
purposeText: string;
|
|
8085
8034
|
useCustomGas: boolean;
|
|
8086
8035
|
chainId: number;
|
|
8087
|
-
|
|
8088
|
-
collateralToken: string;
|
|
8036
|
+
amountHuman: string;
|
|
8089
8037
|
marketId: string;
|
|
8090
|
-
|
|
8038
|
+
loanToken: string;
|
|
8091
8039
|
keyGen?: {
|
|
8092
8040
|
pubkeyhex: string;
|
|
8093
8041
|
keylist?: string[] | undefined;
|
|
@@ -8109,13 +8057,30 @@ declare const mcpMorphoMidnightBorrowInputSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
8109
8057
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
8110
8058
|
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
8111
8059
|
keyGenId?: string | undefined;
|
|
8112
|
-
marketLabel?: string | undefined;
|
|
8113
|
-
loanToken?: string | undefined;
|
|
8114
|
-
slippagePct?: string | undefined;
|
|
8115
|
-
isNativeIn?: boolean | undefined;
|
|
8116
|
-
collateralIndex?: number | undefined;
|
|
8117
8060
|
}, unknown>;
|
|
8118
|
-
declare const
|
|
8061
|
+
declare const mcpMorphoBlueCollateralWithdrawInputSchema: z.ZodEffects<z.ZodObject<{} & {
|
|
8062
|
+
[x: string]: z.ZodTypeAny;
|
|
8063
|
+
}, "strip", z.ZodTypeAny, {
|
|
8064
|
+
[x: string]: any;
|
|
8065
|
+
}, {
|
|
8066
|
+
[x: string]: any;
|
|
8067
|
+
}>, {
|
|
8068
|
+
[x: string]: any;
|
|
8069
|
+
}, {
|
|
8070
|
+
[x: string]: any;
|
|
8071
|
+
}>;
|
|
8072
|
+
declare const mcpMorphoMerklClaimInputSchema: z.ZodEffects<z.ZodObject<{} & {
|
|
8073
|
+
[x: string]: z.ZodTypeAny;
|
|
8074
|
+
}, "strip", z.ZodTypeAny, {
|
|
8075
|
+
[x: string]: any;
|
|
8076
|
+
}, {
|
|
8077
|
+
[x: string]: any;
|
|
8078
|
+
}>, {
|
|
8079
|
+
[x: string]: any;
|
|
8080
|
+
}, {
|
|
8081
|
+
[x: string]: any;
|
|
8082
|
+
}>;
|
|
8083
|
+
declare const mcpMorphoMidnightLendInputSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
8119
8084
|
keyGenId: z.ZodOptional<z.ZodString>;
|
|
8120
8085
|
keyGen: z.ZodOptional<z.ZodObject<{
|
|
8121
8086
|
pubkeyhex: z.ZodString;
|
|
@@ -8172,10 +8137,7 @@ declare const mcpMorphoMidnightLendOfferInputSchema: z.ZodEffects<z.ZodEffects<z
|
|
|
8172
8137
|
marketId: z.ZodString;
|
|
8173
8138
|
amountHuman: z.ZodString;
|
|
8174
8139
|
loanToken: z.ZodOptional<z.ZodString>;
|
|
8175
|
-
|
|
8176
|
-
tick: z.ZodOptional<z.ZodString>;
|
|
8177
|
-
blueMarketId: z.ZodOptional<z.ZodString>;
|
|
8178
|
-
expirySeconds: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8140
|
+
slippagePct: z.ZodOptional<z.ZodString>;
|
|
8179
8141
|
marketLabel: z.ZodOptional<z.ZodString>;
|
|
8180
8142
|
isNativeIn: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
8181
8143
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -8207,11 +8169,8 @@ declare const mcpMorphoMidnightLendOfferInputSchema: z.ZodEffects<z.ZodEffects<z
|
|
|
8207
8169
|
keyGenId?: string | undefined;
|
|
8208
8170
|
marketLabel?: string | undefined;
|
|
8209
8171
|
loanToken?: string | undefined;
|
|
8210
|
-
|
|
8172
|
+
slippagePct?: string | undefined;
|
|
8211
8173
|
isNativeIn?: boolean | undefined;
|
|
8212
|
-
lendAprPct?: string | undefined;
|
|
8213
|
-
blueMarketId?: string | undefined;
|
|
8214
|
-
expirySeconds?: number | undefined;
|
|
8215
8174
|
}, {
|
|
8216
8175
|
purposeText: string;
|
|
8217
8176
|
amountHuman: string;
|
|
@@ -8241,11 +8200,8 @@ declare const mcpMorphoMidnightLendOfferInputSchema: z.ZodEffects<z.ZodEffects<z
|
|
|
8241
8200
|
keyGenId?: string | undefined;
|
|
8242
8201
|
marketLabel?: string | undefined;
|
|
8243
8202
|
loanToken?: string | undefined;
|
|
8244
|
-
|
|
8203
|
+
slippagePct?: string | undefined;
|
|
8245
8204
|
isNativeIn?: unknown;
|
|
8246
|
-
lendAprPct?: string | undefined;
|
|
8247
|
-
blueMarketId?: string | undefined;
|
|
8248
|
-
expirySeconds?: unknown;
|
|
8249
8205
|
}>, {
|
|
8250
8206
|
purposeText: string;
|
|
8251
8207
|
useCustomGas: boolean;
|
|
@@ -8275,11 +8231,8 @@ declare const mcpMorphoMidnightLendOfferInputSchema: z.ZodEffects<z.ZodEffects<z
|
|
|
8275
8231
|
keyGenId?: string | undefined;
|
|
8276
8232
|
marketLabel?: string | undefined;
|
|
8277
8233
|
loanToken?: string | undefined;
|
|
8278
|
-
|
|
8234
|
+
slippagePct?: string | undefined;
|
|
8279
8235
|
isNativeIn?: boolean | undefined;
|
|
8280
|
-
lendAprPct?: string | undefined;
|
|
8281
|
-
blueMarketId?: string | undefined;
|
|
8282
|
-
expirySeconds?: number | undefined;
|
|
8283
8236
|
}, unknown>, {
|
|
8284
8237
|
purposeText: string;
|
|
8285
8238
|
useCustomGas: boolean;
|
|
@@ -8309,13 +8262,10 @@ declare const mcpMorphoMidnightLendOfferInputSchema: z.ZodEffects<z.ZodEffects<z
|
|
|
8309
8262
|
keyGenId?: string | undefined;
|
|
8310
8263
|
marketLabel?: string | undefined;
|
|
8311
8264
|
loanToken?: string | undefined;
|
|
8312
|
-
|
|
8265
|
+
slippagePct?: string | undefined;
|
|
8313
8266
|
isNativeIn?: boolean | undefined;
|
|
8314
|
-
lendAprPct?: string | undefined;
|
|
8315
|
-
blueMarketId?: string | undefined;
|
|
8316
|
-
expirySeconds?: number | undefined;
|
|
8317
8267
|
}, unknown>;
|
|
8318
|
-
declare const
|
|
8268
|
+
declare const mcpMorphoMidnightBorrowInputSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
8319
8269
|
keyGenId: z.ZodOptional<z.ZodString>;
|
|
8320
8270
|
keyGen: z.ZodOptional<z.ZodObject<{
|
|
8321
8271
|
pubkeyhex: z.ZodString;
|
|
@@ -8369,17 +8319,23 @@ declare const mcpMorphoMidnightCancelLendOfferInputSchema: z.ZodEffects<z.ZodEff
|
|
|
8369
8319
|
customGasChainDetails: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
8370
8320
|
expiryDate: z.ZodOptional<z.ZodNumber>;
|
|
8371
8321
|
} & {
|
|
8372
|
-
|
|
8373
|
-
|
|
8374
|
-
|
|
8375
|
-
|
|
8376
|
-
|
|
8322
|
+
marketId: z.ZodString;
|
|
8323
|
+
borrowAmountHuman: z.ZodString;
|
|
8324
|
+
collateralAmountHuman: z.ZodString;
|
|
8325
|
+
collateralToken: z.ZodString;
|
|
8326
|
+
loanToken: z.ZodOptional<z.ZodString>;
|
|
8327
|
+
collateralIndex: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8328
|
+
slippagePct: z.ZodOptional<z.ZodString>;
|
|
8377
8329
|
marketLabel: z.ZodOptional<z.ZodString>;
|
|
8330
|
+
isNativeIn: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
8378
8331
|
}, "strip", z.ZodTypeAny, {
|
|
8379
8332
|
purposeText: string;
|
|
8380
8333
|
useCustomGas: boolean;
|
|
8381
8334
|
chainId: number;
|
|
8382
|
-
|
|
8335
|
+
collateralAmountHuman: string;
|
|
8336
|
+
collateralToken: string;
|
|
8337
|
+
marketId: string;
|
|
8338
|
+
borrowAmountHuman: string;
|
|
8383
8339
|
keyGen?: {
|
|
8384
8340
|
pubkeyhex: string;
|
|
8385
8341
|
keylist?: string[] | undefined;
|
|
@@ -8402,13 +8358,16 @@ declare const mcpMorphoMidnightCancelLendOfferInputSchema: z.ZodEffects<z.ZodEff
|
|
|
8402
8358
|
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
8403
8359
|
keyGenId?: string | undefined;
|
|
8404
8360
|
marketLabel?: string | undefined;
|
|
8405
|
-
|
|
8406
|
-
|
|
8407
|
-
|
|
8408
|
-
|
|
8361
|
+
loanToken?: string | undefined;
|
|
8362
|
+
slippagePct?: string | undefined;
|
|
8363
|
+
isNativeIn?: boolean | undefined;
|
|
8364
|
+
collateralIndex?: number | undefined;
|
|
8409
8365
|
}, {
|
|
8410
8366
|
purposeText: string;
|
|
8411
|
-
|
|
8367
|
+
collateralAmountHuman: string;
|
|
8368
|
+
collateralToken: string;
|
|
8369
|
+
marketId: string;
|
|
8370
|
+
borrowAmountHuman: string;
|
|
8412
8371
|
keyGen?: {
|
|
8413
8372
|
pubkeyhex: string;
|
|
8414
8373
|
keylist?: string[] | undefined;
|
|
@@ -8433,15 +8392,18 @@ declare const mcpMorphoMidnightCancelLendOfferInputSchema: z.ZodEffects<z.ZodEff
|
|
|
8433
8392
|
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
8434
8393
|
keyGenId?: string | undefined;
|
|
8435
8394
|
marketLabel?: string | undefined;
|
|
8436
|
-
|
|
8437
|
-
|
|
8438
|
-
|
|
8439
|
-
|
|
8395
|
+
loanToken?: string | undefined;
|
|
8396
|
+
slippagePct?: string | undefined;
|
|
8397
|
+
isNativeIn?: unknown;
|
|
8398
|
+
collateralIndex?: unknown;
|
|
8440
8399
|
}>, {
|
|
8441
8400
|
purposeText: string;
|
|
8442
8401
|
useCustomGas: boolean;
|
|
8443
8402
|
chainId: number;
|
|
8444
|
-
|
|
8403
|
+
collateralAmountHuman: string;
|
|
8404
|
+
collateralToken: string;
|
|
8405
|
+
marketId: string;
|
|
8406
|
+
borrowAmountHuman: string;
|
|
8445
8407
|
keyGen?: {
|
|
8446
8408
|
pubkeyhex: string;
|
|
8447
8409
|
keylist?: string[] | undefined;
|
|
@@ -8464,15 +8426,18 @@ declare const mcpMorphoMidnightCancelLendOfferInputSchema: z.ZodEffects<z.ZodEff
|
|
|
8464
8426
|
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
8465
8427
|
keyGenId?: string | undefined;
|
|
8466
8428
|
marketLabel?: string | undefined;
|
|
8467
|
-
|
|
8468
|
-
|
|
8469
|
-
|
|
8470
|
-
|
|
8429
|
+
loanToken?: string | undefined;
|
|
8430
|
+
slippagePct?: string | undefined;
|
|
8431
|
+
isNativeIn?: boolean | undefined;
|
|
8432
|
+
collateralIndex?: number | undefined;
|
|
8471
8433
|
}, unknown>, {
|
|
8472
8434
|
purposeText: string;
|
|
8473
8435
|
useCustomGas: boolean;
|
|
8474
8436
|
chainId: number;
|
|
8475
|
-
|
|
8437
|
+
collateralAmountHuman: string;
|
|
8438
|
+
collateralToken: string;
|
|
8439
|
+
marketId: string;
|
|
8440
|
+
borrowAmountHuman: string;
|
|
8476
8441
|
keyGen?: {
|
|
8477
8442
|
pubkeyhex: string;
|
|
8478
8443
|
keylist?: string[] | undefined;
|
|
@@ -8495,12 +8460,12 @@ declare const mcpMorphoMidnightCancelLendOfferInputSchema: z.ZodEffects<z.ZodEff
|
|
|
8495
8460
|
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
8496
8461
|
keyGenId?: string | undefined;
|
|
8497
8462
|
marketLabel?: string | undefined;
|
|
8498
|
-
|
|
8499
|
-
|
|
8500
|
-
|
|
8501
|
-
|
|
8463
|
+
loanToken?: string | undefined;
|
|
8464
|
+
slippagePct?: string | undefined;
|
|
8465
|
+
isNativeIn?: boolean | undefined;
|
|
8466
|
+
collateralIndex?: number | undefined;
|
|
8502
8467
|
}, unknown>;
|
|
8503
|
-
declare const
|
|
8468
|
+
declare const mcpMorphoMidnightLendOfferInputSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
8504
8469
|
keyGenId: z.ZodOptional<z.ZodString>;
|
|
8505
8470
|
keyGen: z.ZodOptional<z.ZodObject<{
|
|
8506
8471
|
pubkeyhex: z.ZodString;
|
|
@@ -8555,14 +8520,19 @@ declare const mcpMorphoMidnightRepayInputSchema: z.ZodEffects<z.ZodEffects<z.Zod
|
|
|
8555
8520
|
expiryDate: z.ZodOptional<z.ZodNumber>;
|
|
8556
8521
|
} & {
|
|
8557
8522
|
marketId: z.ZodString;
|
|
8558
|
-
|
|
8523
|
+
amountHuman: z.ZodString;
|
|
8559
8524
|
loanToken: z.ZodOptional<z.ZodString>;
|
|
8560
|
-
|
|
8525
|
+
lendAprPct: z.ZodOptional<z.ZodString>;
|
|
8526
|
+
tick: z.ZodOptional<z.ZodString>;
|
|
8527
|
+
blueMarketId: z.ZodOptional<z.ZodString>;
|
|
8528
|
+
expirySeconds: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8561
8529
|
marketLabel: z.ZodOptional<z.ZodString>;
|
|
8530
|
+
isNativeIn: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
8562
8531
|
}, "strip", z.ZodTypeAny, {
|
|
8563
8532
|
purposeText: string;
|
|
8564
8533
|
useCustomGas: boolean;
|
|
8565
8534
|
chainId: number;
|
|
8535
|
+
amountHuman: string;
|
|
8566
8536
|
marketId: string;
|
|
8567
8537
|
keyGen?: {
|
|
8568
8538
|
pubkeyhex: string;
|
|
@@ -8587,10 +8557,14 @@ declare const mcpMorphoMidnightRepayInputSchema: z.ZodEffects<z.ZodEffects<z.Zod
|
|
|
8587
8557
|
keyGenId?: string | undefined;
|
|
8588
8558
|
marketLabel?: string | undefined;
|
|
8589
8559
|
loanToken?: string | undefined;
|
|
8590
|
-
|
|
8591
|
-
|
|
8560
|
+
tick?: string | undefined;
|
|
8561
|
+
isNativeIn?: boolean | undefined;
|
|
8562
|
+
lendAprPct?: string | undefined;
|
|
8563
|
+
blueMarketId?: string | undefined;
|
|
8564
|
+
expirySeconds?: number | undefined;
|
|
8592
8565
|
}, {
|
|
8593
8566
|
purposeText: string;
|
|
8567
|
+
amountHuman: string;
|
|
8594
8568
|
marketId: string;
|
|
8595
8569
|
keyGen?: {
|
|
8596
8570
|
pubkeyhex: string;
|
|
@@ -8617,8 +8591,384 @@ declare const mcpMorphoMidnightRepayInputSchema: z.ZodEffects<z.ZodEffects<z.Zod
|
|
|
8617
8591
|
keyGenId?: string | undefined;
|
|
8618
8592
|
marketLabel?: string | undefined;
|
|
8619
8593
|
loanToken?: string | undefined;
|
|
8620
|
-
|
|
8621
|
-
|
|
8594
|
+
tick?: string | undefined;
|
|
8595
|
+
isNativeIn?: unknown;
|
|
8596
|
+
lendAprPct?: string | undefined;
|
|
8597
|
+
blueMarketId?: string | undefined;
|
|
8598
|
+
expirySeconds?: unknown;
|
|
8599
|
+
}>, {
|
|
8600
|
+
purposeText: string;
|
|
8601
|
+
useCustomGas: boolean;
|
|
8602
|
+
chainId: number;
|
|
8603
|
+
amountHuman: string;
|
|
8604
|
+
marketId: string;
|
|
8605
|
+
keyGen?: {
|
|
8606
|
+
pubkeyhex: string;
|
|
8607
|
+
keylist?: string[] | undefined;
|
|
8608
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
8609
|
+
groupId?: string | undefined;
|
|
8610
|
+
GroupId?: string | undefined;
|
|
8611
|
+
} | undefined;
|
|
8612
|
+
expiryDate?: number | undefined;
|
|
8613
|
+
rpcUrl?: string | undefined;
|
|
8614
|
+
executorAddress?: string | undefined;
|
|
8615
|
+
chainDetail?: z.objectOutputType<{
|
|
8616
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
8617
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8618
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8619
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8620
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8621
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8622
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8623
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
8624
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
8625
|
+
keyGenId?: string | undefined;
|
|
8626
|
+
marketLabel?: string | undefined;
|
|
8627
|
+
loanToken?: string | undefined;
|
|
8628
|
+
tick?: string | undefined;
|
|
8629
|
+
isNativeIn?: boolean | undefined;
|
|
8630
|
+
lendAprPct?: string | undefined;
|
|
8631
|
+
blueMarketId?: string | undefined;
|
|
8632
|
+
expirySeconds?: number | undefined;
|
|
8633
|
+
}, unknown>, {
|
|
8634
|
+
purposeText: string;
|
|
8635
|
+
useCustomGas: boolean;
|
|
8636
|
+
chainId: number;
|
|
8637
|
+
amountHuman: string;
|
|
8638
|
+
marketId: string;
|
|
8639
|
+
keyGen?: {
|
|
8640
|
+
pubkeyhex: string;
|
|
8641
|
+
keylist?: string[] | undefined;
|
|
8642
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
8643
|
+
groupId?: string | undefined;
|
|
8644
|
+
GroupId?: string | undefined;
|
|
8645
|
+
} | undefined;
|
|
8646
|
+
expiryDate?: number | undefined;
|
|
8647
|
+
rpcUrl?: string | undefined;
|
|
8648
|
+
executorAddress?: string | undefined;
|
|
8649
|
+
chainDetail?: z.objectOutputType<{
|
|
8650
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
8651
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8652
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8653
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8654
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8655
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8656
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8657
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
8658
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
8659
|
+
keyGenId?: string | undefined;
|
|
8660
|
+
marketLabel?: string | undefined;
|
|
8661
|
+
loanToken?: string | undefined;
|
|
8662
|
+
tick?: string | undefined;
|
|
8663
|
+
isNativeIn?: boolean | undefined;
|
|
8664
|
+
lendAprPct?: string | undefined;
|
|
8665
|
+
blueMarketId?: string | undefined;
|
|
8666
|
+
expirySeconds?: number | undefined;
|
|
8667
|
+
}, unknown>;
|
|
8668
|
+
declare const mcpMorphoMidnightCancelLendOfferInputSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
8669
|
+
keyGenId: z.ZodOptional<z.ZodString>;
|
|
8670
|
+
keyGen: z.ZodOptional<z.ZodObject<{
|
|
8671
|
+
pubkeyhex: z.ZodString;
|
|
8672
|
+
keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
8673
|
+
ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
8674
|
+
groupId: z.ZodOptional<z.ZodString>;
|
|
8675
|
+
GroupId: z.ZodOptional<z.ZodString>;
|
|
8676
|
+
}, "strip", z.ZodTypeAny, {
|
|
8677
|
+
pubkeyhex: string;
|
|
8678
|
+
keylist?: string[] | undefined;
|
|
8679
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
8680
|
+
groupId?: string | undefined;
|
|
8681
|
+
GroupId?: string | undefined;
|
|
8682
|
+
}, {
|
|
8683
|
+
pubkeyhex: string;
|
|
8684
|
+
keylist?: string[] | undefined;
|
|
8685
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
8686
|
+
groupId?: string | undefined;
|
|
8687
|
+
GroupId?: string | undefined;
|
|
8688
|
+
}>>;
|
|
8689
|
+
purposeText: z.ZodString;
|
|
8690
|
+
useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
|
|
8691
|
+
chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
|
|
8692
|
+
rpcUrl: z.ZodOptional<z.ZodString>;
|
|
8693
|
+
executorAddress: z.ZodOptional<z.ZodString>;
|
|
8694
|
+
chainDetail: z.ZodOptional<z.ZodObject<{
|
|
8695
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
8696
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8697
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8698
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8699
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8700
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8701
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8702
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
8703
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
8704
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8705
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8706
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8707
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8708
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8709
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8710
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
8711
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
8712
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8713
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8714
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8715
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8716
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8717
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8718
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
8719
|
+
customGasChainDetails: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
8720
|
+
expiryDate: z.ZodOptional<z.ZodNumber>;
|
|
8721
|
+
} & {
|
|
8722
|
+
group: z.ZodString;
|
|
8723
|
+
callback: z.ZodOptional<z.ZodString>;
|
|
8724
|
+
callbackData: z.ZodOptional<z.ZodString>;
|
|
8725
|
+
midnight: z.ZodOptional<z.ZodString>;
|
|
8726
|
+
withdrawRemaining: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
8727
|
+
marketLabel: z.ZodOptional<z.ZodString>;
|
|
8728
|
+
}, "strip", z.ZodTypeAny, {
|
|
8729
|
+
purposeText: string;
|
|
8730
|
+
useCustomGas: boolean;
|
|
8731
|
+
chainId: number;
|
|
8732
|
+
group: string;
|
|
8733
|
+
keyGen?: {
|
|
8734
|
+
pubkeyhex: string;
|
|
8735
|
+
keylist?: string[] | undefined;
|
|
8736
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
8737
|
+
groupId?: string | undefined;
|
|
8738
|
+
GroupId?: string | undefined;
|
|
8739
|
+
} | undefined;
|
|
8740
|
+
expiryDate?: number | undefined;
|
|
8741
|
+
rpcUrl?: string | undefined;
|
|
8742
|
+
executorAddress?: string | undefined;
|
|
8743
|
+
chainDetail?: z.objectOutputType<{
|
|
8744
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
8745
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8746
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8747
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8748
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8749
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8750
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8751
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
8752
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
8753
|
+
keyGenId?: string | undefined;
|
|
8754
|
+
marketLabel?: string | undefined;
|
|
8755
|
+
callback?: string | undefined;
|
|
8756
|
+
callbackData?: string | undefined;
|
|
8757
|
+
midnight?: string | undefined;
|
|
8758
|
+
withdrawRemaining?: boolean | undefined;
|
|
8759
|
+
}, {
|
|
8760
|
+
purposeText: string;
|
|
8761
|
+
group: string;
|
|
8762
|
+
keyGen?: {
|
|
8763
|
+
pubkeyhex: string;
|
|
8764
|
+
keylist?: string[] | undefined;
|
|
8765
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
8766
|
+
groupId?: string | undefined;
|
|
8767
|
+
GroupId?: string | undefined;
|
|
8768
|
+
} | undefined;
|
|
8769
|
+
useCustomGas?: unknown;
|
|
8770
|
+
chainId?: unknown;
|
|
8771
|
+
expiryDate?: number | undefined;
|
|
8772
|
+
rpcUrl?: string | undefined;
|
|
8773
|
+
executorAddress?: string | undefined;
|
|
8774
|
+
chainDetail?: z.objectInputType<{
|
|
8775
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
8776
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8777
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8778
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8779
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8780
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8781
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8782
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
8783
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
8784
|
+
keyGenId?: string | undefined;
|
|
8785
|
+
marketLabel?: string | undefined;
|
|
8786
|
+
callback?: string | undefined;
|
|
8787
|
+
callbackData?: string | undefined;
|
|
8788
|
+
midnight?: string | undefined;
|
|
8789
|
+
withdrawRemaining?: unknown;
|
|
8790
|
+
}>, {
|
|
8791
|
+
purposeText: string;
|
|
8792
|
+
useCustomGas: boolean;
|
|
8793
|
+
chainId: number;
|
|
8794
|
+
group: string;
|
|
8795
|
+
keyGen?: {
|
|
8796
|
+
pubkeyhex: string;
|
|
8797
|
+
keylist?: string[] | undefined;
|
|
8798
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
8799
|
+
groupId?: string | undefined;
|
|
8800
|
+
GroupId?: string | undefined;
|
|
8801
|
+
} | undefined;
|
|
8802
|
+
expiryDate?: number | undefined;
|
|
8803
|
+
rpcUrl?: string | undefined;
|
|
8804
|
+
executorAddress?: string | undefined;
|
|
8805
|
+
chainDetail?: z.objectOutputType<{
|
|
8806
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
8807
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8808
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8809
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8810
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8811
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8812
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8813
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
8814
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
8815
|
+
keyGenId?: string | undefined;
|
|
8816
|
+
marketLabel?: string | undefined;
|
|
8817
|
+
callback?: string | undefined;
|
|
8818
|
+
callbackData?: string | undefined;
|
|
8819
|
+
midnight?: string | undefined;
|
|
8820
|
+
withdrawRemaining?: boolean | undefined;
|
|
8821
|
+
}, unknown>, {
|
|
8822
|
+
purposeText: string;
|
|
8823
|
+
useCustomGas: boolean;
|
|
8824
|
+
chainId: number;
|
|
8825
|
+
group: string;
|
|
8826
|
+
keyGen?: {
|
|
8827
|
+
pubkeyhex: string;
|
|
8828
|
+
keylist?: string[] | undefined;
|
|
8829
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
8830
|
+
groupId?: string | undefined;
|
|
8831
|
+
GroupId?: string | undefined;
|
|
8832
|
+
} | undefined;
|
|
8833
|
+
expiryDate?: number | undefined;
|
|
8834
|
+
rpcUrl?: string | undefined;
|
|
8835
|
+
executorAddress?: string | undefined;
|
|
8836
|
+
chainDetail?: z.objectOutputType<{
|
|
8837
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
8838
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8839
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8840
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8841
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8842
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8843
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8844
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
8845
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
8846
|
+
keyGenId?: string | undefined;
|
|
8847
|
+
marketLabel?: string | undefined;
|
|
8848
|
+
callback?: string | undefined;
|
|
8849
|
+
callbackData?: string | undefined;
|
|
8850
|
+
midnight?: string | undefined;
|
|
8851
|
+
withdrawRemaining?: boolean | undefined;
|
|
8852
|
+
}, unknown>;
|
|
8853
|
+
declare const mcpMorphoMidnightRepayInputSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
8854
|
+
keyGenId: z.ZodOptional<z.ZodString>;
|
|
8855
|
+
keyGen: z.ZodOptional<z.ZodObject<{
|
|
8856
|
+
pubkeyhex: z.ZodString;
|
|
8857
|
+
keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
8858
|
+
ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
8859
|
+
groupId: z.ZodOptional<z.ZodString>;
|
|
8860
|
+
GroupId: z.ZodOptional<z.ZodString>;
|
|
8861
|
+
}, "strip", z.ZodTypeAny, {
|
|
8862
|
+
pubkeyhex: string;
|
|
8863
|
+
keylist?: string[] | undefined;
|
|
8864
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
8865
|
+
groupId?: string | undefined;
|
|
8866
|
+
GroupId?: string | undefined;
|
|
8867
|
+
}, {
|
|
8868
|
+
pubkeyhex: string;
|
|
8869
|
+
keylist?: string[] | undefined;
|
|
8870
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
8871
|
+
groupId?: string | undefined;
|
|
8872
|
+
GroupId?: string | undefined;
|
|
8873
|
+
}>>;
|
|
8874
|
+
purposeText: z.ZodString;
|
|
8875
|
+
useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
|
|
8876
|
+
chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
|
|
8877
|
+
rpcUrl: z.ZodOptional<z.ZodString>;
|
|
8878
|
+
executorAddress: z.ZodOptional<z.ZodString>;
|
|
8879
|
+
chainDetail: z.ZodOptional<z.ZodObject<{
|
|
8880
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
8881
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8882
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8883
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8884
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8885
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8886
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8887
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
8888
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
8889
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8890
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8891
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8892
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8893
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8894
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8895
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
8896
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
8897
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8898
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8899
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8900
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8901
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8902
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8903
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
8904
|
+
customGasChainDetails: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
8905
|
+
expiryDate: z.ZodOptional<z.ZodNumber>;
|
|
8906
|
+
} & {
|
|
8907
|
+
marketId: z.ZodString;
|
|
8908
|
+
repayAmountHuman: z.ZodOptional<z.ZodString>;
|
|
8909
|
+
loanToken: z.ZodOptional<z.ZodString>;
|
|
8910
|
+
withdrawAllCollateral: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
8911
|
+
marketLabel: z.ZodOptional<z.ZodString>;
|
|
8912
|
+
}, "strip", z.ZodTypeAny, {
|
|
8913
|
+
purposeText: string;
|
|
8914
|
+
useCustomGas: boolean;
|
|
8915
|
+
chainId: number;
|
|
8916
|
+
marketId: string;
|
|
8917
|
+
keyGen?: {
|
|
8918
|
+
pubkeyhex: string;
|
|
8919
|
+
keylist?: string[] | undefined;
|
|
8920
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
8921
|
+
groupId?: string | undefined;
|
|
8922
|
+
GroupId?: string | undefined;
|
|
8923
|
+
} | undefined;
|
|
8924
|
+
expiryDate?: number | undefined;
|
|
8925
|
+
rpcUrl?: string | undefined;
|
|
8926
|
+
executorAddress?: string | undefined;
|
|
8927
|
+
chainDetail?: z.objectOutputType<{
|
|
8928
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
8929
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8930
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8931
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8932
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8933
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8934
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8935
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
8936
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
8937
|
+
keyGenId?: string | undefined;
|
|
8938
|
+
marketLabel?: string | undefined;
|
|
8939
|
+
loanToken?: string | undefined;
|
|
8940
|
+
repayAmountHuman?: string | undefined;
|
|
8941
|
+
withdrawAllCollateral?: boolean | undefined;
|
|
8942
|
+
}, {
|
|
8943
|
+
purposeText: string;
|
|
8944
|
+
marketId: string;
|
|
8945
|
+
keyGen?: {
|
|
8946
|
+
pubkeyhex: string;
|
|
8947
|
+
keylist?: string[] | undefined;
|
|
8948
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
8949
|
+
groupId?: string | undefined;
|
|
8950
|
+
GroupId?: string | undefined;
|
|
8951
|
+
} | undefined;
|
|
8952
|
+
useCustomGas?: unknown;
|
|
8953
|
+
chainId?: unknown;
|
|
8954
|
+
expiryDate?: number | undefined;
|
|
8955
|
+
rpcUrl?: string | undefined;
|
|
8956
|
+
executorAddress?: string | undefined;
|
|
8957
|
+
chainDetail?: z.objectInputType<{
|
|
8958
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
8959
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8960
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8961
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8962
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8963
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8964
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8965
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
8966
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
8967
|
+
keyGenId?: string | undefined;
|
|
8968
|
+
marketLabel?: string | undefined;
|
|
8969
|
+
loanToken?: string | undefined;
|
|
8970
|
+
repayAmountHuman?: string | undefined;
|
|
8971
|
+
withdrawAllCollateral?: unknown;
|
|
8622
8972
|
}>, {
|
|
8623
8973
|
purposeText: string;
|
|
8624
8974
|
useCustomGas: boolean;
|
|
@@ -10390,80 +10740,217 @@ declare const mcpMorphoFetchEarnVaultsOutputSchema: z.ZodObject<{
|
|
|
10390
10740
|
}[];
|
|
10391
10741
|
}>, "many">;
|
|
10392
10742
|
}, "strip", z.ZodTypeAny, {
|
|
10393
|
-
vaults: {
|
|
10394
|
-
apy: string;
|
|
10395
|
-
vaultName: string;
|
|
10396
|
-
underlyingAddress: string;
|
|
10397
|
-
vaultAddress: string;
|
|
10398
|
-
vaultSymbol: string;
|
|
10399
|
-
underlyingSymbol: string;
|
|
10400
|
-
netApy: string;
|
|
10401
|
-
netApy7d: string;
|
|
10402
|
-
netApy30d: string;
|
|
10403
|
-
netApy90d: string;
|
|
10404
|
-
performanceFee: string;
|
|
10405
|
-
managementFee: string | null;
|
|
10406
|
-
totalDepositsUsd: string;
|
|
10407
|
-
liquidityUsd: string;
|
|
10408
|
-
exposure: {
|
|
10409
|
-
label: string;
|
|
10410
|
-
allocatedUsdLabel: string;
|
|
10411
|
-
allocationPercentLabel: string;
|
|
10412
|
-
}[];
|
|
10743
|
+
vaults: {
|
|
10744
|
+
apy: string;
|
|
10745
|
+
vaultName: string;
|
|
10746
|
+
underlyingAddress: string;
|
|
10747
|
+
vaultAddress: string;
|
|
10748
|
+
vaultSymbol: string;
|
|
10749
|
+
underlyingSymbol: string;
|
|
10750
|
+
netApy: string;
|
|
10751
|
+
netApy7d: string;
|
|
10752
|
+
netApy30d: string;
|
|
10753
|
+
netApy90d: string;
|
|
10754
|
+
performanceFee: string;
|
|
10755
|
+
managementFee: string | null;
|
|
10756
|
+
totalDepositsUsd: string;
|
|
10757
|
+
liquidityUsd: string;
|
|
10758
|
+
exposure: {
|
|
10759
|
+
label: string;
|
|
10760
|
+
allocatedUsdLabel: string;
|
|
10761
|
+
allocationPercentLabel: string;
|
|
10762
|
+
}[];
|
|
10763
|
+
rewards: {
|
|
10764
|
+
symbol: string;
|
|
10765
|
+
supplyAprLabel: string;
|
|
10766
|
+
}[];
|
|
10767
|
+
}[];
|
|
10768
|
+
}, {
|
|
10769
|
+
vaults: {
|
|
10770
|
+
apy: string;
|
|
10771
|
+
vaultName: string;
|
|
10772
|
+
underlyingAddress: string;
|
|
10773
|
+
vaultAddress: string;
|
|
10774
|
+
vaultSymbol: string;
|
|
10775
|
+
underlyingSymbol: string;
|
|
10776
|
+
netApy: string;
|
|
10777
|
+
netApy7d: string;
|
|
10778
|
+
netApy30d: string;
|
|
10779
|
+
netApy90d: string;
|
|
10780
|
+
performanceFee: string;
|
|
10781
|
+
managementFee: string | null;
|
|
10782
|
+
totalDepositsUsd: string;
|
|
10783
|
+
liquidityUsd: string;
|
|
10784
|
+
exposure: {
|
|
10785
|
+
label: string;
|
|
10786
|
+
allocatedUsdLabel: string;
|
|
10787
|
+
allocationPercentLabel: string;
|
|
10788
|
+
}[];
|
|
10789
|
+
rewards: {
|
|
10790
|
+
symbol: string;
|
|
10791
|
+
supplyAprLabel: string;
|
|
10792
|
+
}[];
|
|
10793
|
+
}[];
|
|
10794
|
+
}>;
|
|
10795
|
+
type McpMorphoFetchEarnVaultsInput = z.infer<typeof mcpMorphoFetchEarnVaultsInputSchema>;
|
|
10796
|
+
type McpMorphoFetchEarnVaultsOutput = z.infer<typeof mcpMorphoFetchEarnVaultsOutputSchema>;
|
|
10797
|
+
declare const mcpMorphoFetchBlueMarketsInputSchema: z.ZodObject<{
|
|
10798
|
+
chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
|
|
10799
|
+
collateral: z.ZodOptional<z.ZodString>;
|
|
10800
|
+
loan: z.ZodOptional<z.ZodString>;
|
|
10801
|
+
query: z.ZodOptional<z.ZodString>;
|
|
10802
|
+
limit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
10803
|
+
}, "strip", z.ZodTypeAny, {
|
|
10804
|
+
chainId: number;
|
|
10805
|
+
limit?: number | undefined;
|
|
10806
|
+
query?: string | undefined;
|
|
10807
|
+
collateral?: string | undefined;
|
|
10808
|
+
loan?: string | undefined;
|
|
10809
|
+
}, {
|
|
10810
|
+
chainId?: unknown;
|
|
10811
|
+
limit?: unknown;
|
|
10812
|
+
query?: string | undefined;
|
|
10813
|
+
collateral?: string | undefined;
|
|
10814
|
+
loan?: string | undefined;
|
|
10815
|
+
}>;
|
|
10816
|
+
declare const mcpMorphoFetchBlueMarketsOutputSchema: z.ZodObject<{
|
|
10817
|
+
markets: z.ZodArray<z.ZodObject<{
|
|
10818
|
+
marketId: z.ZodString;
|
|
10819
|
+
marketLabel: z.ZodString;
|
|
10820
|
+
morphoBlueAddress: z.ZodString;
|
|
10821
|
+
collateralTokenAddress: z.ZodString;
|
|
10822
|
+
collateralTokenSymbol: z.ZodString;
|
|
10823
|
+
collateralTokenDecimals: z.ZodNumber;
|
|
10824
|
+
loanTokenAddress: z.ZodString;
|
|
10825
|
+
loanTokenSymbol: z.ZodString;
|
|
10826
|
+
loanTokenDecimals: z.ZodNumber;
|
|
10827
|
+
borrowApyLabel: z.ZodString;
|
|
10828
|
+
supplyApyLabel: z.ZodString;
|
|
10829
|
+
netSupplyApyLabel: z.ZodString;
|
|
10830
|
+
lltvLabel: z.ZodString;
|
|
10831
|
+
borrowAssetsUsdLabel: z.ZodString;
|
|
10832
|
+
supplyAssetsUsdLabel: z.ZodString;
|
|
10833
|
+
utilizationLabel: z.ZodString;
|
|
10834
|
+
rewards: z.ZodArray<z.ZodObject<{
|
|
10835
|
+
symbol: z.ZodString;
|
|
10836
|
+
supplyAprLabel: z.ZodString;
|
|
10837
|
+
}, "strip", z.ZodTypeAny, {
|
|
10838
|
+
symbol: string;
|
|
10839
|
+
supplyAprLabel: string;
|
|
10840
|
+
}, {
|
|
10841
|
+
symbol: string;
|
|
10842
|
+
supplyAprLabel: string;
|
|
10843
|
+
}>, "many">;
|
|
10844
|
+
}, "strip", z.ZodTypeAny, {
|
|
10845
|
+
collateralTokenAddress: string;
|
|
10846
|
+
marketId: string;
|
|
10847
|
+
marketLabel: string;
|
|
10848
|
+
loanTokenAddress: string;
|
|
10849
|
+
rewards: {
|
|
10850
|
+
symbol: string;
|
|
10851
|
+
supplyAprLabel: string;
|
|
10852
|
+
}[];
|
|
10853
|
+
morphoBlueAddress: string;
|
|
10854
|
+
collateralTokenSymbol: string;
|
|
10855
|
+
collateralTokenDecimals: number;
|
|
10856
|
+
loanTokenSymbol: string;
|
|
10857
|
+
loanTokenDecimals: number;
|
|
10858
|
+
borrowApyLabel: string;
|
|
10859
|
+
supplyApyLabel: string;
|
|
10860
|
+
netSupplyApyLabel: string;
|
|
10861
|
+
lltvLabel: string;
|
|
10862
|
+
borrowAssetsUsdLabel: string;
|
|
10863
|
+
supplyAssetsUsdLabel: string;
|
|
10864
|
+
utilizationLabel: string;
|
|
10865
|
+
}, {
|
|
10866
|
+
collateralTokenAddress: string;
|
|
10867
|
+
marketId: string;
|
|
10868
|
+
marketLabel: string;
|
|
10869
|
+
loanTokenAddress: string;
|
|
10870
|
+
rewards: {
|
|
10871
|
+
symbol: string;
|
|
10872
|
+
supplyAprLabel: string;
|
|
10873
|
+
}[];
|
|
10874
|
+
morphoBlueAddress: string;
|
|
10875
|
+
collateralTokenSymbol: string;
|
|
10876
|
+
collateralTokenDecimals: number;
|
|
10877
|
+
loanTokenSymbol: string;
|
|
10878
|
+
loanTokenDecimals: number;
|
|
10879
|
+
borrowApyLabel: string;
|
|
10880
|
+
supplyApyLabel: string;
|
|
10881
|
+
netSupplyApyLabel: string;
|
|
10882
|
+
lltvLabel: string;
|
|
10883
|
+
borrowAssetsUsdLabel: string;
|
|
10884
|
+
supplyAssetsUsdLabel: string;
|
|
10885
|
+
utilizationLabel: string;
|
|
10886
|
+
}>, "many">;
|
|
10887
|
+
}, "strip", z.ZodTypeAny, {
|
|
10888
|
+
markets: {
|
|
10889
|
+
collateralTokenAddress: string;
|
|
10890
|
+
marketId: string;
|
|
10891
|
+
marketLabel: string;
|
|
10892
|
+
loanTokenAddress: string;
|
|
10413
10893
|
rewards: {
|
|
10414
10894
|
symbol: string;
|
|
10415
10895
|
supplyAprLabel: string;
|
|
10416
10896
|
}[];
|
|
10897
|
+
morphoBlueAddress: string;
|
|
10898
|
+
collateralTokenSymbol: string;
|
|
10899
|
+
collateralTokenDecimals: number;
|
|
10900
|
+
loanTokenSymbol: string;
|
|
10901
|
+
loanTokenDecimals: number;
|
|
10902
|
+
borrowApyLabel: string;
|
|
10903
|
+
supplyApyLabel: string;
|
|
10904
|
+
netSupplyApyLabel: string;
|
|
10905
|
+
lltvLabel: string;
|
|
10906
|
+
borrowAssetsUsdLabel: string;
|
|
10907
|
+
supplyAssetsUsdLabel: string;
|
|
10908
|
+
utilizationLabel: string;
|
|
10417
10909
|
}[];
|
|
10418
10910
|
}, {
|
|
10419
|
-
|
|
10420
|
-
|
|
10421
|
-
|
|
10422
|
-
|
|
10423
|
-
|
|
10424
|
-
vaultSymbol: string;
|
|
10425
|
-
underlyingSymbol: string;
|
|
10426
|
-
netApy: string;
|
|
10427
|
-
netApy7d: string;
|
|
10428
|
-
netApy30d: string;
|
|
10429
|
-
netApy90d: string;
|
|
10430
|
-
performanceFee: string;
|
|
10431
|
-
managementFee: string | null;
|
|
10432
|
-
totalDepositsUsd: string;
|
|
10433
|
-
liquidityUsd: string;
|
|
10434
|
-
exposure: {
|
|
10435
|
-
label: string;
|
|
10436
|
-
allocatedUsdLabel: string;
|
|
10437
|
-
allocationPercentLabel: string;
|
|
10438
|
-
}[];
|
|
10911
|
+
markets: {
|
|
10912
|
+
collateralTokenAddress: string;
|
|
10913
|
+
marketId: string;
|
|
10914
|
+
marketLabel: string;
|
|
10915
|
+
loanTokenAddress: string;
|
|
10439
10916
|
rewards: {
|
|
10440
10917
|
symbol: string;
|
|
10441
10918
|
supplyAprLabel: string;
|
|
10442
10919
|
}[];
|
|
10920
|
+
morphoBlueAddress: string;
|
|
10921
|
+
collateralTokenSymbol: string;
|
|
10922
|
+
collateralTokenDecimals: number;
|
|
10923
|
+
loanTokenSymbol: string;
|
|
10924
|
+
loanTokenDecimals: number;
|
|
10925
|
+
borrowApyLabel: string;
|
|
10926
|
+
supplyApyLabel: string;
|
|
10927
|
+
netSupplyApyLabel: string;
|
|
10928
|
+
lltvLabel: string;
|
|
10929
|
+
borrowAssetsUsdLabel: string;
|
|
10930
|
+
supplyAssetsUsdLabel: string;
|
|
10931
|
+
utilizationLabel: string;
|
|
10443
10932
|
}[];
|
|
10444
10933
|
}>;
|
|
10445
|
-
type
|
|
10446
|
-
type
|
|
10447
|
-
declare const
|
|
10448
|
-
chainId: z.ZodEffects<z.ZodNumber, number, unknown
|
|
10934
|
+
type McpMorphoFetchBlueMarketsInput = z.infer<typeof mcpMorphoFetchBlueMarketsInputSchema>;
|
|
10935
|
+
type McpMorphoFetchBlueMarketsOutput = z.infer<typeof mcpMorphoFetchBlueMarketsOutputSchema>;
|
|
10936
|
+
declare const mcpMorphoFetchStockMarketsInputSchema: z.ZodObject<{
|
|
10937
|
+
chainId: z.ZodOptional<z.ZodEffects<z.ZodNumber, number, unknown>>;
|
|
10449
10938
|
collateral: z.ZodOptional<z.ZodString>;
|
|
10450
|
-
|
|
10451
|
-
query: z.ZodOptional<z.ZodString>;
|
|
10939
|
+
rate: z.ZodOptional<z.ZodEnum<["variable", "fixed", "both"]>>;
|
|
10452
10940
|
limit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
10453
10941
|
}, "strip", z.ZodTypeAny, {
|
|
10454
|
-
chainId
|
|
10942
|
+
chainId?: number | undefined;
|
|
10455
10943
|
limit?: number | undefined;
|
|
10456
|
-
query?: string | undefined;
|
|
10457
10944
|
collateral?: string | undefined;
|
|
10458
|
-
|
|
10945
|
+
rate?: "fixed" | "variable" | "both" | undefined;
|
|
10459
10946
|
}, {
|
|
10460
10947
|
chainId?: unknown;
|
|
10461
10948
|
limit?: unknown;
|
|
10462
|
-
query?: string | undefined;
|
|
10463
10949
|
collateral?: string | undefined;
|
|
10464
|
-
|
|
10950
|
+
rate?: "fixed" | "variable" | "both" | undefined;
|
|
10465
10951
|
}>;
|
|
10466
|
-
declare const
|
|
10952
|
+
declare const mcpMorphoFetchStockMarketsOutputSchema: z.ZodObject<{
|
|
10953
|
+
chainId: z.ZodNumber;
|
|
10467
10954
|
markets: z.ZodArray<z.ZodObject<{
|
|
10468
10955
|
marketId: z.ZodString;
|
|
10469
10956
|
marketLabel: z.ZodString;
|
|
@@ -10477,6 +10964,10 @@ declare const mcpMorphoFetchBlueMarketsOutputSchema: z.ZodObject<{
|
|
|
10477
10964
|
borrowApyLabel: z.ZodString;
|
|
10478
10965
|
supplyApyLabel: z.ZodString;
|
|
10479
10966
|
netSupplyApyLabel: z.ZodString;
|
|
10967
|
+
lltvLabel: z.ZodString;
|
|
10968
|
+
borrowAssetsUsdLabel: z.ZodString;
|
|
10969
|
+
supplyAssetsUsdLabel: z.ZodString;
|
|
10970
|
+
utilizationLabel: z.ZodString;
|
|
10480
10971
|
rewards: z.ZodArray<z.ZodObject<{
|
|
10481
10972
|
symbol: z.ZodString;
|
|
10482
10973
|
supplyAprLabel: z.ZodString;
|
|
@@ -10504,6 +10995,10 @@ declare const mcpMorphoFetchBlueMarketsOutputSchema: z.ZodObject<{
|
|
|
10504
10995
|
borrowApyLabel: string;
|
|
10505
10996
|
supplyApyLabel: string;
|
|
10506
10997
|
netSupplyApyLabel: string;
|
|
10998
|
+
lltvLabel: string;
|
|
10999
|
+
borrowAssetsUsdLabel: string;
|
|
11000
|
+
supplyAssetsUsdLabel: string;
|
|
11001
|
+
utilizationLabel: string;
|
|
10507
11002
|
}, {
|
|
10508
11003
|
collateralTokenAddress: string;
|
|
10509
11004
|
marketId: string;
|
|
@@ -10521,8 +11016,73 @@ declare const mcpMorphoFetchBlueMarketsOutputSchema: z.ZodObject<{
|
|
|
10521
11016
|
borrowApyLabel: string;
|
|
10522
11017
|
supplyApyLabel: string;
|
|
10523
11018
|
netSupplyApyLabel: string;
|
|
11019
|
+
lltvLabel: string;
|
|
11020
|
+
borrowAssetsUsdLabel: string;
|
|
11021
|
+
supplyAssetsUsdLabel: string;
|
|
11022
|
+
utilizationLabel: string;
|
|
11023
|
+
}>, "many">;
|
|
11024
|
+
books: z.ZodArray<z.ZodObject<{
|
|
11025
|
+
marketId: z.ZodString;
|
|
11026
|
+
chainId: z.ZodNumber;
|
|
11027
|
+
midnightAddress: z.ZodString;
|
|
11028
|
+
loanTokenAddress: z.ZodString;
|
|
11029
|
+
maturity: z.ZodNumber;
|
|
11030
|
+
maturityIso: z.ZodString;
|
|
11031
|
+
collateralTokenAddresses: z.ZodArray<z.ZodString, "many">;
|
|
11032
|
+
primaryCollateralTokenAddress: z.ZodNullable<z.ZodString>;
|
|
11033
|
+
primaryCollateralLltv: z.ZodNullable<z.ZodString>;
|
|
11034
|
+
bestAskPriceWad: z.ZodNullable<z.ZodString>;
|
|
11035
|
+
bestBidPriceWad: z.ZodNullable<z.ZodString>;
|
|
11036
|
+
bestAskAssets: z.ZodNullable<z.ZodString>;
|
|
11037
|
+
bestBidAssets: z.ZodNullable<z.ZodString>;
|
|
11038
|
+
lendApr: z.ZodString;
|
|
11039
|
+
borrowApr: z.ZodString;
|
|
11040
|
+
lendAprNumeric: z.ZodNullable<z.ZodNumber>;
|
|
11041
|
+
borrowAprNumeric: z.ZodNullable<z.ZodNumber>;
|
|
11042
|
+
marketLabel: z.ZodString;
|
|
11043
|
+
}, "strip", z.ZodTypeAny, {
|
|
11044
|
+
chainId: number;
|
|
11045
|
+
marketId: string;
|
|
11046
|
+
marketLabel: string;
|
|
11047
|
+
loanTokenAddress: string;
|
|
11048
|
+
midnightAddress: string;
|
|
11049
|
+
maturity: number;
|
|
11050
|
+
maturityIso: string;
|
|
11051
|
+
collateralTokenAddresses: string[];
|
|
11052
|
+
primaryCollateralTokenAddress: string | null;
|
|
11053
|
+
primaryCollateralLltv: string | null;
|
|
11054
|
+
bestAskPriceWad: string | null;
|
|
11055
|
+
bestBidPriceWad: string | null;
|
|
11056
|
+
bestAskAssets: string | null;
|
|
11057
|
+
bestBidAssets: string | null;
|
|
11058
|
+
lendApr: string;
|
|
11059
|
+
borrowApr: string;
|
|
11060
|
+
lendAprNumeric: number | null;
|
|
11061
|
+
borrowAprNumeric: number | null;
|
|
11062
|
+
}, {
|
|
11063
|
+
chainId: number;
|
|
11064
|
+
marketId: string;
|
|
11065
|
+
marketLabel: string;
|
|
11066
|
+
loanTokenAddress: string;
|
|
11067
|
+
midnightAddress: string;
|
|
11068
|
+
maturity: number;
|
|
11069
|
+
maturityIso: string;
|
|
11070
|
+
collateralTokenAddresses: string[];
|
|
11071
|
+
primaryCollateralTokenAddress: string | null;
|
|
11072
|
+
primaryCollateralLltv: string | null;
|
|
11073
|
+
bestAskPriceWad: string | null;
|
|
11074
|
+
bestBidPriceWad: string | null;
|
|
11075
|
+
bestAskAssets: string | null;
|
|
11076
|
+
bestBidAssets: string | null;
|
|
11077
|
+
lendApr: string;
|
|
11078
|
+
borrowApr: string;
|
|
11079
|
+
lendAprNumeric: number | null;
|
|
11080
|
+
borrowAprNumeric: number | null;
|
|
10524
11081
|
}>, "many">;
|
|
11082
|
+
notes: z.ZodString;
|
|
10525
11083
|
}, "strip", z.ZodTypeAny, {
|
|
11084
|
+
chainId: number;
|
|
11085
|
+
notes: string;
|
|
10526
11086
|
markets: {
|
|
10527
11087
|
collateralTokenAddress: string;
|
|
10528
11088
|
marketId: string;
|
|
@@ -10540,8 +11100,34 @@ declare const mcpMorphoFetchBlueMarketsOutputSchema: z.ZodObject<{
|
|
|
10540
11100
|
borrowApyLabel: string;
|
|
10541
11101
|
supplyApyLabel: string;
|
|
10542
11102
|
netSupplyApyLabel: string;
|
|
11103
|
+
lltvLabel: string;
|
|
11104
|
+
borrowAssetsUsdLabel: string;
|
|
11105
|
+
supplyAssetsUsdLabel: string;
|
|
11106
|
+
utilizationLabel: string;
|
|
11107
|
+
}[];
|
|
11108
|
+
books: {
|
|
11109
|
+
chainId: number;
|
|
11110
|
+
marketId: string;
|
|
11111
|
+
marketLabel: string;
|
|
11112
|
+
loanTokenAddress: string;
|
|
11113
|
+
midnightAddress: string;
|
|
11114
|
+
maturity: number;
|
|
11115
|
+
maturityIso: string;
|
|
11116
|
+
collateralTokenAddresses: string[];
|
|
11117
|
+
primaryCollateralTokenAddress: string | null;
|
|
11118
|
+
primaryCollateralLltv: string | null;
|
|
11119
|
+
bestAskPriceWad: string | null;
|
|
11120
|
+
bestBidPriceWad: string | null;
|
|
11121
|
+
bestAskAssets: string | null;
|
|
11122
|
+
bestBidAssets: string | null;
|
|
11123
|
+
lendApr: string;
|
|
11124
|
+
borrowApr: string;
|
|
11125
|
+
lendAprNumeric: number | null;
|
|
11126
|
+
borrowAprNumeric: number | null;
|
|
10543
11127
|
}[];
|
|
10544
11128
|
}, {
|
|
11129
|
+
chainId: number;
|
|
11130
|
+
notes: string;
|
|
10545
11131
|
markets: {
|
|
10546
11132
|
collateralTokenAddress: string;
|
|
10547
11133
|
marketId: string;
|
|
@@ -10559,10 +11145,141 @@ declare const mcpMorphoFetchBlueMarketsOutputSchema: z.ZodObject<{
|
|
|
10559
11145
|
borrowApyLabel: string;
|
|
10560
11146
|
supplyApyLabel: string;
|
|
10561
11147
|
netSupplyApyLabel: string;
|
|
11148
|
+
lltvLabel: string;
|
|
11149
|
+
borrowAssetsUsdLabel: string;
|
|
11150
|
+
supplyAssetsUsdLabel: string;
|
|
11151
|
+
utilizationLabel: string;
|
|
11152
|
+
}[];
|
|
11153
|
+
books: {
|
|
11154
|
+
chainId: number;
|
|
11155
|
+
marketId: string;
|
|
11156
|
+
marketLabel: string;
|
|
11157
|
+
loanTokenAddress: string;
|
|
11158
|
+
midnightAddress: string;
|
|
11159
|
+
maturity: number;
|
|
11160
|
+
maturityIso: string;
|
|
11161
|
+
collateralTokenAddresses: string[];
|
|
11162
|
+
primaryCollateralTokenAddress: string | null;
|
|
11163
|
+
primaryCollateralLltv: string | null;
|
|
11164
|
+
bestAskPriceWad: string | null;
|
|
11165
|
+
bestBidPriceWad: string | null;
|
|
11166
|
+
bestAskAssets: string | null;
|
|
11167
|
+
bestBidAssets: string | null;
|
|
11168
|
+
lendApr: string;
|
|
11169
|
+
borrowApr: string;
|
|
11170
|
+
lendAprNumeric: number | null;
|
|
11171
|
+
borrowAprNumeric: number | null;
|
|
10562
11172
|
}[];
|
|
10563
11173
|
}>;
|
|
10564
|
-
type
|
|
10565
|
-
type
|
|
11174
|
+
type McpMorphoFetchStockMarketsInput = z.infer<typeof mcpMorphoFetchStockMarketsInputSchema>;
|
|
11175
|
+
type McpMorphoFetchStockMarketsOutput = z.infer<typeof mcpMorphoFetchStockMarketsOutputSchema>;
|
|
11176
|
+
declare const mcpMorphoFetchPositionsInputSchema: z.ZodObject<{
|
|
11177
|
+
user: z.ZodString;
|
|
11178
|
+
chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
|
|
11179
|
+
}, "strip", z.ZodTypeAny, {
|
|
11180
|
+
chainId: number;
|
|
11181
|
+
user: string;
|
|
11182
|
+
}, {
|
|
11183
|
+
user: string;
|
|
11184
|
+
chainId?: unknown;
|
|
11185
|
+
}>;
|
|
11186
|
+
declare const mcpMorphoFetchPositionsOutputSchema: z.ZodObject<{
|
|
11187
|
+
vaults: z.ZodArray<z.ZodObject<{
|
|
11188
|
+
vaultAddress: z.ZodString;
|
|
11189
|
+
vaultSymbol: z.ZodString;
|
|
11190
|
+
underlyingSymbol: z.ZodString;
|
|
11191
|
+
assetsHuman: z.ZodString;
|
|
11192
|
+
assetsUsdLabel: z.ZodString;
|
|
11193
|
+
shares: z.ZodString;
|
|
11194
|
+
}, "strip", z.ZodTypeAny, {
|
|
11195
|
+
vaultAddress: string;
|
|
11196
|
+
vaultSymbol: string;
|
|
11197
|
+
underlyingSymbol: string;
|
|
11198
|
+
assetsHuman: string;
|
|
11199
|
+
assetsUsdLabel: string;
|
|
11200
|
+
shares: string;
|
|
11201
|
+
}, {
|
|
11202
|
+
vaultAddress: string;
|
|
11203
|
+
vaultSymbol: string;
|
|
11204
|
+
underlyingSymbol: string;
|
|
11205
|
+
assetsHuman: string;
|
|
11206
|
+
assetsUsdLabel: string;
|
|
11207
|
+
shares: string;
|
|
11208
|
+
}>, "many">;
|
|
11209
|
+
blue: z.ZodArray<z.ZodObject<{
|
|
11210
|
+
marketId: z.ZodString;
|
|
11211
|
+
marketLabel: z.ZodString;
|
|
11212
|
+
loanAssetSymbol: z.ZodString;
|
|
11213
|
+
collateralAssetSymbol: z.ZodString;
|
|
11214
|
+
collateralHuman: z.ZodString;
|
|
11215
|
+
borrowHuman: z.ZodString;
|
|
11216
|
+
supplyHuman: z.ZodString;
|
|
11217
|
+
supplyUsdLabel: z.ZodString;
|
|
11218
|
+
healthFactorLabel: z.ZodString;
|
|
11219
|
+
}, "strip", z.ZodTypeAny, {
|
|
11220
|
+
marketId: string;
|
|
11221
|
+
marketLabel: string;
|
|
11222
|
+
loanAssetSymbol: string;
|
|
11223
|
+
collateralAssetSymbol: string;
|
|
11224
|
+
collateralHuman: string;
|
|
11225
|
+
borrowHuman: string;
|
|
11226
|
+
supplyHuman: string;
|
|
11227
|
+
supplyUsdLabel: string;
|
|
11228
|
+
healthFactorLabel: string;
|
|
11229
|
+
}, {
|
|
11230
|
+
marketId: string;
|
|
11231
|
+
marketLabel: string;
|
|
11232
|
+
loanAssetSymbol: string;
|
|
11233
|
+
collateralAssetSymbol: string;
|
|
11234
|
+
collateralHuman: string;
|
|
11235
|
+
borrowHuman: string;
|
|
11236
|
+
supplyHuman: string;
|
|
11237
|
+
supplyUsdLabel: string;
|
|
11238
|
+
healthFactorLabel: string;
|
|
11239
|
+
}>, "many">;
|
|
11240
|
+
}, "strip", z.ZodTypeAny, {
|
|
11241
|
+
vaults: {
|
|
11242
|
+
vaultAddress: string;
|
|
11243
|
+
vaultSymbol: string;
|
|
11244
|
+
underlyingSymbol: string;
|
|
11245
|
+
assetsHuman: string;
|
|
11246
|
+
assetsUsdLabel: string;
|
|
11247
|
+
shares: string;
|
|
11248
|
+
}[];
|
|
11249
|
+
blue: {
|
|
11250
|
+
marketId: string;
|
|
11251
|
+
marketLabel: string;
|
|
11252
|
+
loanAssetSymbol: string;
|
|
11253
|
+
collateralAssetSymbol: string;
|
|
11254
|
+
collateralHuman: string;
|
|
11255
|
+
borrowHuman: string;
|
|
11256
|
+
supplyHuman: string;
|
|
11257
|
+
supplyUsdLabel: string;
|
|
11258
|
+
healthFactorLabel: string;
|
|
11259
|
+
}[];
|
|
11260
|
+
}, {
|
|
11261
|
+
vaults: {
|
|
11262
|
+
vaultAddress: string;
|
|
11263
|
+
vaultSymbol: string;
|
|
11264
|
+
underlyingSymbol: string;
|
|
11265
|
+
assetsHuman: string;
|
|
11266
|
+
assetsUsdLabel: string;
|
|
11267
|
+
shares: string;
|
|
11268
|
+
}[];
|
|
11269
|
+
blue: {
|
|
11270
|
+
marketId: string;
|
|
11271
|
+
marketLabel: string;
|
|
11272
|
+
loanAssetSymbol: string;
|
|
11273
|
+
collateralAssetSymbol: string;
|
|
11274
|
+
collateralHuman: string;
|
|
11275
|
+
borrowHuman: string;
|
|
11276
|
+
supplyHuman: string;
|
|
11277
|
+
supplyUsdLabel: string;
|
|
11278
|
+
healthFactorLabel: string;
|
|
11279
|
+
}[];
|
|
11280
|
+
}>;
|
|
11281
|
+
type McpMorphoFetchPositionsInput = z.infer<typeof mcpMorphoFetchPositionsInputSchema>;
|
|
11282
|
+
type McpMorphoFetchPositionsOutput = z.infer<typeof mcpMorphoFetchPositionsOutputSchema>;
|
|
10566
11283
|
declare const mcpMorphoFetchMidnightBooksInputSchema: z.ZodObject<{
|
|
10567
11284
|
chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
|
|
10568
11285
|
loan: z.ZodOptional<z.ZodString>;
|
|
@@ -10718,8 +11435,8 @@ declare const mcpMorphoFetchMidnightQuoteOutputSchema: z.ZodObject<{
|
|
|
10718
11435
|
takeableOfferCount: z.ZodNumber;
|
|
10719
11436
|
}, "strip", z.ZodTypeAny, {
|
|
10720
11437
|
marketId: string;
|
|
10721
|
-
side: "bids" | "asks";
|
|
10722
11438
|
maturity: number | null;
|
|
11439
|
+
side: "bids" | "asks";
|
|
10723
11440
|
averageBestPriceWad: string;
|
|
10724
11441
|
averageWorstPriceWad: string;
|
|
10725
11442
|
availableAssets: string;
|
|
@@ -10729,8 +11446,8 @@ declare const mcpMorphoFetchMidnightQuoteOutputSchema: z.ZodObject<{
|
|
|
10729
11446
|
takeableOfferCount: number;
|
|
10730
11447
|
}, {
|
|
10731
11448
|
marketId: string;
|
|
10732
|
-
side: "bids" | "asks";
|
|
10733
11449
|
maturity: number | null;
|
|
11450
|
+
side: "bids" | "asks";
|
|
10734
11451
|
averageBestPriceWad: string;
|
|
10735
11452
|
averageWorstPriceWad: string;
|
|
10736
11453
|
availableAssets: string;
|
|
@@ -18026,4 +18743,4 @@ declare function getAgentCatalog(): {
|
|
|
18026
18743
|
};
|
|
18027
18744
|
};
|
|
18028
18745
|
|
|
18029
|
-
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 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, mcpMorphoFetchBlueMarketsInputSchema, mcpMorphoFetchBlueMarketsOutputSchema, mcpMorphoFetchEarnVaultsInputSchema, mcpMorphoFetchEarnVaultsOutputSchema, mcpMorphoFetchMidnightBooksInputSchema, mcpMorphoFetchMidnightBooksOutputSchema, mcpMorphoFetchMidnightOffersInputSchema, mcpMorphoFetchMidnightOffersOutputSchema, mcpMorphoFetchMidnightPositionsInputSchema, mcpMorphoFetchMidnightPositionsOutputSchema, mcpMorphoFetchMidnightQuoteInputSchema, mcpMorphoFetchMidnightQuoteOutputSchema, 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 };
|
|
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 };
|