@continuumdao/ctm-mpc-defi 0.2.42 → 0.2.44
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/agent/catalog.cjs +352 -36
- package/dist/agent/catalog.cjs.map +1 -1
- package/dist/agent/catalog.d.ts +1542 -236
- package/dist/agent/catalog.js +343 -37
- package/dist/agent/catalog.js.map +1 -1
- package/dist/agent/skills/aave-v4/SKILL.md +9 -1
- package/dist/agent/skills/aerodrome/SKILL.md +1 -1
- package/dist/agent/skills/arcus/SKILL.md +1 -1
- package/dist/agent/skills/euler-v2/SKILL.md +9 -0
- package/dist/agent/skills/morpho/SKILL.md +39 -6
- 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/merklDistributor-CdqtZC9N.d.ts +65 -0
- package/dist/multisign-Dr0j9fHm.d.ts +489 -0
- package/dist/protocols/evm/aave-v4/index.cjs +207 -2
- package/dist/protocols/evm/aave-v4/index.cjs.map +1 -1
- package/dist/protocols/evm/aave-v4/index.d.ts +12 -467
- package/dist/protocols/evm/aave-v4/index.js +192 -3
- package/dist/protocols/evm/aave-v4/index.js.map +1 -1
- package/dist/protocols/evm/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/euler-v2/index.cjs +209 -1
- package/dist/protocols/evm/euler-v2/index.cjs.map +1 -1
- package/dist/protocols/evm/euler-v2/index.d.ts +9 -1
- package/dist/protocols/evm/euler-v2/index.js +208 -2
- package/dist/protocols/evm/euler-v2/index.js.map +1 -1
- package/dist/protocols/evm/morpho/index.cjs +610 -56
- package/dist/protocols/evm/morpho/index.cjs.map +1 -1
- package/dist/protocols/evm/morpho/index.d.ts +131 -2
- package/dist/protocols/evm/morpho/index.js +573 -58
- 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,19 @@ 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.ZodEffects<z.ZodObject<{
|
|
8119
8073
|
keyGenId: z.ZodOptional<z.ZodString>;
|
|
8120
8074
|
keyGen: z.ZodOptional<z.ZodObject<{
|
|
8121
8075
|
pubkeyhex: z.ZodString;
|
|
@@ -8169,21 +8123,13 @@ declare const mcpMorphoMidnightLendOfferInputSchema: z.ZodEffects<z.ZodEffects<z
|
|
|
8169
8123
|
customGasChainDetails: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
8170
8124
|
expiryDate: z.ZodOptional<z.ZodNumber>;
|
|
8171
8125
|
} & {
|
|
8172
|
-
|
|
8173
|
-
|
|
8174
|
-
|
|
8175
|
-
lendAprPct: z.ZodOptional<z.ZodString>;
|
|
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>;
|
|
8179
|
-
marketLabel: z.ZodOptional<z.ZodString>;
|
|
8180
|
-
isNativeIn: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
8126
|
+
claimData: z.ZodOptional<z.ZodString>;
|
|
8127
|
+
distributor: z.ZodOptional<z.ZodString>;
|
|
8128
|
+
valueWei: z.ZodOptional<z.ZodString>;
|
|
8181
8129
|
}, "strip", z.ZodTypeAny, {
|
|
8182
8130
|
purposeText: string;
|
|
8183
8131
|
useCustomGas: boolean;
|
|
8184
8132
|
chainId: number;
|
|
8185
|
-
amountHuman: string;
|
|
8186
|
-
marketId: string;
|
|
8187
8133
|
keyGen?: {
|
|
8188
8134
|
pubkeyhex: string;
|
|
8189
8135
|
keylist?: string[] | undefined;
|
|
@@ -8205,17 +8151,11 @@ declare const mcpMorphoMidnightLendOfferInputSchema: z.ZodEffects<z.ZodEffects<z
|
|
|
8205
8151
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
8206
8152
|
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
8207
8153
|
keyGenId?: string | undefined;
|
|
8208
|
-
|
|
8209
|
-
|
|
8210
|
-
|
|
8211
|
-
isNativeIn?: boolean | undefined;
|
|
8212
|
-
lendAprPct?: string | undefined;
|
|
8213
|
-
blueMarketId?: string | undefined;
|
|
8214
|
-
expirySeconds?: number | undefined;
|
|
8154
|
+
valueWei?: string | undefined;
|
|
8155
|
+
distributor?: string | undefined;
|
|
8156
|
+
claimData?: string | undefined;
|
|
8215
8157
|
}, {
|
|
8216
8158
|
purposeText: string;
|
|
8217
|
-
amountHuman: string;
|
|
8218
|
-
marketId: string;
|
|
8219
8159
|
keyGen?: {
|
|
8220
8160
|
pubkeyhex: string;
|
|
8221
8161
|
keylist?: string[] | undefined;
|
|
@@ -8239,19 +8179,13 @@ declare const mcpMorphoMidnightLendOfferInputSchema: z.ZodEffects<z.ZodEffects<z
|
|
|
8239
8179
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
8240
8180
|
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
8241
8181
|
keyGenId?: string | undefined;
|
|
8242
|
-
|
|
8243
|
-
|
|
8244
|
-
|
|
8245
|
-
isNativeIn?: unknown;
|
|
8246
|
-
lendAprPct?: string | undefined;
|
|
8247
|
-
blueMarketId?: string | undefined;
|
|
8248
|
-
expirySeconds?: unknown;
|
|
8182
|
+
valueWei?: string | undefined;
|
|
8183
|
+
distributor?: string | undefined;
|
|
8184
|
+
claimData?: string | undefined;
|
|
8249
8185
|
}>, {
|
|
8250
8186
|
purposeText: string;
|
|
8251
8187
|
useCustomGas: boolean;
|
|
8252
8188
|
chainId: number;
|
|
8253
|
-
amountHuman: string;
|
|
8254
|
-
marketId: string;
|
|
8255
8189
|
keyGen?: {
|
|
8256
8190
|
pubkeyhex: string;
|
|
8257
8191
|
keylist?: string[] | undefined;
|
|
@@ -8273,19 +8207,13 @@ declare const mcpMorphoMidnightLendOfferInputSchema: z.ZodEffects<z.ZodEffects<z
|
|
|
8273
8207
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
8274
8208
|
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
8275
8209
|
keyGenId?: string | undefined;
|
|
8276
|
-
|
|
8277
|
-
|
|
8278
|
-
|
|
8279
|
-
isNativeIn?: boolean | undefined;
|
|
8280
|
-
lendAprPct?: string | undefined;
|
|
8281
|
-
blueMarketId?: string | undefined;
|
|
8282
|
-
expirySeconds?: number | undefined;
|
|
8210
|
+
valueWei?: string | undefined;
|
|
8211
|
+
distributor?: string | undefined;
|
|
8212
|
+
claimData?: string | undefined;
|
|
8283
8213
|
}, unknown>, {
|
|
8284
8214
|
purposeText: string;
|
|
8285
8215
|
useCustomGas: boolean;
|
|
8286
8216
|
chainId: number;
|
|
8287
|
-
amountHuman: string;
|
|
8288
|
-
marketId: string;
|
|
8289
8217
|
keyGen?: {
|
|
8290
8218
|
pubkeyhex: string;
|
|
8291
8219
|
keylist?: string[] | undefined;
|
|
@@ -8307,15 +8235,11 @@ declare const mcpMorphoMidnightLendOfferInputSchema: z.ZodEffects<z.ZodEffects<z
|
|
|
8307
8235
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
8308
8236
|
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
8309
8237
|
keyGenId?: string | undefined;
|
|
8310
|
-
|
|
8311
|
-
|
|
8312
|
-
|
|
8313
|
-
isNativeIn?: boolean | undefined;
|
|
8314
|
-
lendAprPct?: string | undefined;
|
|
8315
|
-
blueMarketId?: string | undefined;
|
|
8316
|
-
expirySeconds?: number | undefined;
|
|
8238
|
+
valueWei?: string | undefined;
|
|
8239
|
+
distributor?: string | undefined;
|
|
8240
|
+
claimData?: string | undefined;
|
|
8317
8241
|
}, unknown>;
|
|
8318
|
-
declare const
|
|
8242
|
+
declare const mcpEulerV2MerklClaimInputSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
8319
8243
|
keyGenId: z.ZodOptional<z.ZodString>;
|
|
8320
8244
|
keyGen: z.ZodOptional<z.ZodObject<{
|
|
8321
8245
|
pubkeyhex: z.ZodString;
|
|
@@ -8369,17 +8293,13 @@ declare const mcpMorphoMidnightCancelLendOfferInputSchema: z.ZodEffects<z.ZodEff
|
|
|
8369
8293
|
customGasChainDetails: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
8370
8294
|
expiryDate: z.ZodOptional<z.ZodNumber>;
|
|
8371
8295
|
} & {
|
|
8372
|
-
|
|
8373
|
-
|
|
8374
|
-
|
|
8375
|
-
midnight: z.ZodOptional<z.ZodString>;
|
|
8376
|
-
withdrawRemaining: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
8377
|
-
marketLabel: z.ZodOptional<z.ZodString>;
|
|
8296
|
+
claimData: z.ZodOptional<z.ZodString>;
|
|
8297
|
+
distributor: z.ZodOptional<z.ZodString>;
|
|
8298
|
+
valueWei: z.ZodOptional<z.ZodString>;
|
|
8378
8299
|
}, "strip", z.ZodTypeAny, {
|
|
8379
8300
|
purposeText: string;
|
|
8380
8301
|
useCustomGas: boolean;
|
|
8381
8302
|
chainId: number;
|
|
8382
|
-
group: string;
|
|
8383
8303
|
keyGen?: {
|
|
8384
8304
|
pubkeyhex: string;
|
|
8385
8305
|
keylist?: string[] | undefined;
|
|
@@ -8401,14 +8321,11 @@ declare const mcpMorphoMidnightCancelLendOfferInputSchema: z.ZodEffects<z.ZodEff
|
|
|
8401
8321
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
8402
8322
|
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
8403
8323
|
keyGenId?: string | undefined;
|
|
8404
|
-
|
|
8405
|
-
|
|
8406
|
-
|
|
8407
|
-
midnight?: string | undefined;
|
|
8408
|
-
withdrawRemaining?: boolean | undefined;
|
|
8324
|
+
valueWei?: string | undefined;
|
|
8325
|
+
distributor?: string | undefined;
|
|
8326
|
+
claimData?: string | undefined;
|
|
8409
8327
|
}, {
|
|
8410
8328
|
purposeText: string;
|
|
8411
|
-
group: string;
|
|
8412
8329
|
keyGen?: {
|
|
8413
8330
|
pubkeyhex: string;
|
|
8414
8331
|
keylist?: string[] | undefined;
|
|
@@ -8432,16 +8349,13 @@ declare const mcpMorphoMidnightCancelLendOfferInputSchema: z.ZodEffects<z.ZodEff
|
|
|
8432
8349
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
8433
8350
|
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
8434
8351
|
keyGenId?: string | undefined;
|
|
8435
|
-
|
|
8436
|
-
|
|
8437
|
-
|
|
8438
|
-
midnight?: string | undefined;
|
|
8439
|
-
withdrawRemaining?: unknown;
|
|
8352
|
+
valueWei?: string | undefined;
|
|
8353
|
+
distributor?: string | undefined;
|
|
8354
|
+
claimData?: string | undefined;
|
|
8440
8355
|
}>, {
|
|
8441
8356
|
purposeText: string;
|
|
8442
8357
|
useCustomGas: boolean;
|
|
8443
8358
|
chainId: number;
|
|
8444
|
-
group: string;
|
|
8445
8359
|
keyGen?: {
|
|
8446
8360
|
pubkeyhex: string;
|
|
8447
8361
|
keylist?: string[] | undefined;
|
|
@@ -8463,16 +8377,13 @@ declare const mcpMorphoMidnightCancelLendOfferInputSchema: z.ZodEffects<z.ZodEff
|
|
|
8463
8377
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
8464
8378
|
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
8465
8379
|
keyGenId?: string | undefined;
|
|
8466
|
-
|
|
8467
|
-
|
|
8468
|
-
|
|
8469
|
-
midnight?: string | undefined;
|
|
8470
|
-
withdrawRemaining?: boolean | undefined;
|
|
8380
|
+
valueWei?: string | undefined;
|
|
8381
|
+
distributor?: string | undefined;
|
|
8382
|
+
claimData?: string | undefined;
|
|
8471
8383
|
}, unknown>, {
|
|
8472
8384
|
purposeText: string;
|
|
8473
8385
|
useCustomGas: boolean;
|
|
8474
8386
|
chainId: number;
|
|
8475
|
-
group: string;
|
|
8476
8387
|
keyGen?: {
|
|
8477
8388
|
pubkeyhex: string;
|
|
8478
8389
|
keylist?: string[] | undefined;
|
|
@@ -8494,13 +8405,11 @@ declare const mcpMorphoMidnightCancelLendOfferInputSchema: z.ZodEffects<z.ZodEff
|
|
|
8494
8405
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
8495
8406
|
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
8496
8407
|
keyGenId?: string | undefined;
|
|
8497
|
-
|
|
8498
|
-
|
|
8499
|
-
|
|
8500
|
-
midnight?: string | undefined;
|
|
8501
|
-
withdrawRemaining?: boolean | undefined;
|
|
8408
|
+
valueWei?: string | undefined;
|
|
8409
|
+
distributor?: string | undefined;
|
|
8410
|
+
claimData?: string | undefined;
|
|
8502
8411
|
}, unknown>;
|
|
8503
|
-
declare const
|
|
8412
|
+
declare const mcpAaveV4MerklClaimInputSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
8504
8413
|
keyGenId: z.ZodOptional<z.ZodString>;
|
|
8505
8414
|
keyGen: z.ZodOptional<z.ZodObject<{
|
|
8506
8415
|
pubkeyhex: z.ZodString;
|
|
@@ -8554,16 +8463,13 @@ declare const mcpMorphoMidnightRepayInputSchema: z.ZodEffects<z.ZodEffects<z.Zod
|
|
|
8554
8463
|
customGasChainDetails: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
8555
8464
|
expiryDate: z.ZodOptional<z.ZodNumber>;
|
|
8556
8465
|
} & {
|
|
8557
|
-
|
|
8558
|
-
|
|
8559
|
-
|
|
8560
|
-
withdrawAllCollateral: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
8561
|
-
marketLabel: z.ZodOptional<z.ZodString>;
|
|
8466
|
+
claimData: z.ZodOptional<z.ZodString>;
|
|
8467
|
+
distributor: z.ZodOptional<z.ZodString>;
|
|
8468
|
+
valueWei: z.ZodOptional<z.ZodString>;
|
|
8562
8469
|
}, "strip", z.ZodTypeAny, {
|
|
8563
8470
|
purposeText: string;
|
|
8564
8471
|
useCustomGas: boolean;
|
|
8565
8472
|
chainId: number;
|
|
8566
|
-
marketId: string;
|
|
8567
8473
|
keyGen?: {
|
|
8568
8474
|
pubkeyhex: string;
|
|
8569
8475
|
keylist?: string[] | undefined;
|
|
@@ -8585,13 +8491,11 @@ declare const mcpMorphoMidnightRepayInputSchema: z.ZodEffects<z.ZodEffects<z.Zod
|
|
|
8585
8491
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
8586
8492
|
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
8587
8493
|
keyGenId?: string | undefined;
|
|
8588
|
-
|
|
8589
|
-
|
|
8590
|
-
|
|
8591
|
-
withdrawAllCollateral?: boolean | undefined;
|
|
8494
|
+
valueWei?: string | undefined;
|
|
8495
|
+
distributor?: string | undefined;
|
|
8496
|
+
claimData?: string | undefined;
|
|
8592
8497
|
}, {
|
|
8593
8498
|
purposeText: string;
|
|
8594
|
-
marketId: string;
|
|
8595
8499
|
keyGen?: {
|
|
8596
8500
|
pubkeyhex: string;
|
|
8597
8501
|
keylist?: string[] | undefined;
|
|
@@ -8615,15 +8519,13 @@ declare const mcpMorphoMidnightRepayInputSchema: z.ZodEffects<z.ZodEffects<z.Zod
|
|
|
8615
8519
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
8616
8520
|
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
8617
8521
|
keyGenId?: string | undefined;
|
|
8618
|
-
|
|
8619
|
-
|
|
8620
|
-
|
|
8621
|
-
withdrawAllCollateral?: unknown;
|
|
8522
|
+
valueWei?: string | undefined;
|
|
8523
|
+
distributor?: string | undefined;
|
|
8524
|
+
claimData?: string | undefined;
|
|
8622
8525
|
}>, {
|
|
8623
8526
|
purposeText: string;
|
|
8624
8527
|
useCustomGas: boolean;
|
|
8625
8528
|
chainId: number;
|
|
8626
|
-
marketId: string;
|
|
8627
8529
|
keyGen?: {
|
|
8628
8530
|
pubkeyhex: string;
|
|
8629
8531
|
keylist?: string[] | undefined;
|
|
@@ -8645,15 +8547,13 @@ declare const mcpMorphoMidnightRepayInputSchema: z.ZodEffects<z.ZodEffects<z.Zod
|
|
|
8645
8547
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
8646
8548
|
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
8647
8549
|
keyGenId?: string | undefined;
|
|
8648
|
-
|
|
8649
|
-
|
|
8650
|
-
|
|
8651
|
-
withdrawAllCollateral?: boolean | undefined;
|
|
8550
|
+
valueWei?: string | undefined;
|
|
8551
|
+
distributor?: string | undefined;
|
|
8552
|
+
claimData?: string | undefined;
|
|
8652
8553
|
}, unknown>, {
|
|
8653
8554
|
purposeText: string;
|
|
8654
8555
|
useCustomGas: boolean;
|
|
8655
8556
|
chainId: number;
|
|
8656
|
-
marketId: string;
|
|
8657
8557
|
keyGen?: {
|
|
8658
8558
|
pubkeyhex: string;
|
|
8659
8559
|
keylist?: string[] | undefined;
|
|
@@ -8675,41 +8575,990 @@ declare const mcpMorphoMidnightRepayInputSchema: z.ZodEffects<z.ZodEffects<z.Zod
|
|
|
8675
8575
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
8676
8576
|
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
8677
8577
|
keyGenId?: string | undefined;
|
|
8678
|
-
|
|
8679
|
-
|
|
8680
|
-
|
|
8681
|
-
withdrawAllCollateral?: boolean | undefined;
|
|
8578
|
+
valueWei?: string | undefined;
|
|
8579
|
+
distributor?: string | undefined;
|
|
8580
|
+
claimData?: string | undefined;
|
|
8682
8581
|
}, unknown>;
|
|
8683
|
-
|
|
8684
|
-
|
|
8685
|
-
|
|
8686
|
-
|
|
8687
|
-
|
|
8688
|
-
|
|
8689
|
-
|
|
8690
|
-
|
|
8691
|
-
|
|
8692
|
-
|
|
8693
|
-
|
|
8694
|
-
|
|
8695
|
-
|
|
8696
|
-
|
|
8697
|
-
},
|
|
8698
|
-
|
|
8699
|
-
|
|
8700
|
-
|
|
8701
|
-
|
|
8702
|
-
|
|
8703
|
-
}
|
|
8704
|
-
|
|
8705
|
-
|
|
8706
|
-
|
|
8707
|
-
|
|
8708
|
-
|
|
8709
|
-
|
|
8710
|
-
|
|
8711
|
-
|
|
8712
|
-
|
|
8582
|
+
declare const mcpMorphoMidnightLendInputSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
8583
|
+
keyGenId: z.ZodOptional<z.ZodString>;
|
|
8584
|
+
keyGen: z.ZodOptional<z.ZodObject<{
|
|
8585
|
+
pubkeyhex: z.ZodString;
|
|
8586
|
+
keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
8587
|
+
ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
8588
|
+
groupId: z.ZodOptional<z.ZodString>;
|
|
8589
|
+
GroupId: z.ZodOptional<z.ZodString>;
|
|
8590
|
+
}, "strip", z.ZodTypeAny, {
|
|
8591
|
+
pubkeyhex: string;
|
|
8592
|
+
keylist?: string[] | undefined;
|
|
8593
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
8594
|
+
groupId?: string | undefined;
|
|
8595
|
+
GroupId?: string | undefined;
|
|
8596
|
+
}, {
|
|
8597
|
+
pubkeyhex: string;
|
|
8598
|
+
keylist?: string[] | undefined;
|
|
8599
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
8600
|
+
groupId?: string | undefined;
|
|
8601
|
+
GroupId?: string | undefined;
|
|
8602
|
+
}>>;
|
|
8603
|
+
purposeText: z.ZodString;
|
|
8604
|
+
useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
|
|
8605
|
+
chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
|
|
8606
|
+
rpcUrl: z.ZodOptional<z.ZodString>;
|
|
8607
|
+
executorAddress: z.ZodOptional<z.ZodString>;
|
|
8608
|
+
chainDetail: z.ZodOptional<z.ZodObject<{
|
|
8609
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
8610
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8611
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8612
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8613
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8614
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8615
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8616
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
8617
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
8618
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8619
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8620
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8621
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8622
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8623
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8624
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
8625
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
8626
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8627
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8628
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8629
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8630
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8631
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8632
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
8633
|
+
customGasChainDetails: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
8634
|
+
expiryDate: z.ZodOptional<z.ZodNumber>;
|
|
8635
|
+
} & {
|
|
8636
|
+
marketId: z.ZodString;
|
|
8637
|
+
amountHuman: z.ZodString;
|
|
8638
|
+
loanToken: z.ZodOptional<z.ZodString>;
|
|
8639
|
+
slippagePct: z.ZodOptional<z.ZodString>;
|
|
8640
|
+
marketLabel: z.ZodOptional<z.ZodString>;
|
|
8641
|
+
isNativeIn: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
8642
|
+
}, "strip", z.ZodTypeAny, {
|
|
8643
|
+
purposeText: string;
|
|
8644
|
+
useCustomGas: boolean;
|
|
8645
|
+
chainId: number;
|
|
8646
|
+
amountHuman: string;
|
|
8647
|
+
marketId: string;
|
|
8648
|
+
keyGen?: {
|
|
8649
|
+
pubkeyhex: string;
|
|
8650
|
+
keylist?: string[] | undefined;
|
|
8651
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
8652
|
+
groupId?: string | undefined;
|
|
8653
|
+
GroupId?: string | undefined;
|
|
8654
|
+
} | undefined;
|
|
8655
|
+
expiryDate?: number | undefined;
|
|
8656
|
+
rpcUrl?: string | undefined;
|
|
8657
|
+
executorAddress?: string | undefined;
|
|
8658
|
+
chainDetail?: z.objectOutputType<{
|
|
8659
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
8660
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8661
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8662
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8663
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8664
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8665
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8666
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
8667
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
8668
|
+
keyGenId?: string | undefined;
|
|
8669
|
+
marketLabel?: string | undefined;
|
|
8670
|
+
loanToken?: string | undefined;
|
|
8671
|
+
slippagePct?: string | undefined;
|
|
8672
|
+
isNativeIn?: boolean | undefined;
|
|
8673
|
+
}, {
|
|
8674
|
+
purposeText: string;
|
|
8675
|
+
amountHuman: string;
|
|
8676
|
+
marketId: string;
|
|
8677
|
+
keyGen?: {
|
|
8678
|
+
pubkeyhex: string;
|
|
8679
|
+
keylist?: string[] | undefined;
|
|
8680
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
8681
|
+
groupId?: string | undefined;
|
|
8682
|
+
GroupId?: string | undefined;
|
|
8683
|
+
} | undefined;
|
|
8684
|
+
useCustomGas?: unknown;
|
|
8685
|
+
chainId?: unknown;
|
|
8686
|
+
expiryDate?: number | undefined;
|
|
8687
|
+
rpcUrl?: string | undefined;
|
|
8688
|
+
executorAddress?: string | undefined;
|
|
8689
|
+
chainDetail?: z.objectInputType<{
|
|
8690
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
8691
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8692
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8693
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8694
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8695
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8696
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8697
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
8698
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
8699
|
+
keyGenId?: string | undefined;
|
|
8700
|
+
marketLabel?: string | undefined;
|
|
8701
|
+
loanToken?: string | undefined;
|
|
8702
|
+
slippagePct?: string | undefined;
|
|
8703
|
+
isNativeIn?: unknown;
|
|
8704
|
+
}>, {
|
|
8705
|
+
purposeText: string;
|
|
8706
|
+
useCustomGas: boolean;
|
|
8707
|
+
chainId: number;
|
|
8708
|
+
amountHuman: string;
|
|
8709
|
+
marketId: string;
|
|
8710
|
+
keyGen?: {
|
|
8711
|
+
pubkeyhex: string;
|
|
8712
|
+
keylist?: string[] | undefined;
|
|
8713
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
8714
|
+
groupId?: string | undefined;
|
|
8715
|
+
GroupId?: string | undefined;
|
|
8716
|
+
} | undefined;
|
|
8717
|
+
expiryDate?: number | undefined;
|
|
8718
|
+
rpcUrl?: string | undefined;
|
|
8719
|
+
executorAddress?: string | undefined;
|
|
8720
|
+
chainDetail?: z.objectOutputType<{
|
|
8721
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
8722
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8723
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8724
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8725
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8726
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8727
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8728
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
8729
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
8730
|
+
keyGenId?: string | undefined;
|
|
8731
|
+
marketLabel?: string | undefined;
|
|
8732
|
+
loanToken?: string | undefined;
|
|
8733
|
+
slippagePct?: string | undefined;
|
|
8734
|
+
isNativeIn?: boolean | undefined;
|
|
8735
|
+
}, unknown>, {
|
|
8736
|
+
purposeText: string;
|
|
8737
|
+
useCustomGas: boolean;
|
|
8738
|
+
chainId: number;
|
|
8739
|
+
amountHuman: string;
|
|
8740
|
+
marketId: string;
|
|
8741
|
+
keyGen?: {
|
|
8742
|
+
pubkeyhex: string;
|
|
8743
|
+
keylist?: string[] | undefined;
|
|
8744
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
8745
|
+
groupId?: string | undefined;
|
|
8746
|
+
GroupId?: string | undefined;
|
|
8747
|
+
} | undefined;
|
|
8748
|
+
expiryDate?: number | undefined;
|
|
8749
|
+
rpcUrl?: string | undefined;
|
|
8750
|
+
executorAddress?: string | undefined;
|
|
8751
|
+
chainDetail?: z.objectOutputType<{
|
|
8752
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
8753
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8754
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8755
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8756
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8757
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8758
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8759
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
8760
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
8761
|
+
keyGenId?: string | undefined;
|
|
8762
|
+
marketLabel?: string | undefined;
|
|
8763
|
+
loanToken?: string | undefined;
|
|
8764
|
+
slippagePct?: string | undefined;
|
|
8765
|
+
isNativeIn?: boolean | undefined;
|
|
8766
|
+
}, unknown>;
|
|
8767
|
+
declare const mcpMorphoMidnightBorrowInputSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
8768
|
+
keyGenId: z.ZodOptional<z.ZodString>;
|
|
8769
|
+
keyGen: z.ZodOptional<z.ZodObject<{
|
|
8770
|
+
pubkeyhex: z.ZodString;
|
|
8771
|
+
keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
8772
|
+
ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
8773
|
+
groupId: z.ZodOptional<z.ZodString>;
|
|
8774
|
+
GroupId: z.ZodOptional<z.ZodString>;
|
|
8775
|
+
}, "strip", z.ZodTypeAny, {
|
|
8776
|
+
pubkeyhex: string;
|
|
8777
|
+
keylist?: string[] | undefined;
|
|
8778
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
8779
|
+
groupId?: string | undefined;
|
|
8780
|
+
GroupId?: string | undefined;
|
|
8781
|
+
}, {
|
|
8782
|
+
pubkeyhex: string;
|
|
8783
|
+
keylist?: string[] | undefined;
|
|
8784
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
8785
|
+
groupId?: string | undefined;
|
|
8786
|
+
GroupId?: string | undefined;
|
|
8787
|
+
}>>;
|
|
8788
|
+
purposeText: z.ZodString;
|
|
8789
|
+
useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
|
|
8790
|
+
chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
|
|
8791
|
+
rpcUrl: z.ZodOptional<z.ZodString>;
|
|
8792
|
+
executorAddress: z.ZodOptional<z.ZodString>;
|
|
8793
|
+
chainDetail: z.ZodOptional<z.ZodObject<{
|
|
8794
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
8795
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8796
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8797
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8798
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8799
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8800
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8801
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
8802
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
8803
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8804
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8805
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8806
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8807
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8808
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8809
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
8810
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
8811
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8812
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8813
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8814
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8815
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8816
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8817
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
8818
|
+
customGasChainDetails: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
8819
|
+
expiryDate: z.ZodOptional<z.ZodNumber>;
|
|
8820
|
+
} & {
|
|
8821
|
+
marketId: z.ZodString;
|
|
8822
|
+
borrowAmountHuman: z.ZodString;
|
|
8823
|
+
collateralAmountHuman: z.ZodString;
|
|
8824
|
+
collateralToken: z.ZodString;
|
|
8825
|
+
loanToken: z.ZodOptional<z.ZodString>;
|
|
8826
|
+
collateralIndex: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8827
|
+
slippagePct: z.ZodOptional<z.ZodString>;
|
|
8828
|
+
marketLabel: z.ZodOptional<z.ZodString>;
|
|
8829
|
+
isNativeIn: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
8830
|
+
}, "strip", z.ZodTypeAny, {
|
|
8831
|
+
purposeText: string;
|
|
8832
|
+
useCustomGas: boolean;
|
|
8833
|
+
chainId: number;
|
|
8834
|
+
collateralAmountHuman: string;
|
|
8835
|
+
collateralToken: string;
|
|
8836
|
+
marketId: string;
|
|
8837
|
+
borrowAmountHuman: string;
|
|
8838
|
+
keyGen?: {
|
|
8839
|
+
pubkeyhex: string;
|
|
8840
|
+
keylist?: string[] | undefined;
|
|
8841
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
8842
|
+
groupId?: string | undefined;
|
|
8843
|
+
GroupId?: string | undefined;
|
|
8844
|
+
} | undefined;
|
|
8845
|
+
expiryDate?: number | undefined;
|
|
8846
|
+
rpcUrl?: string | undefined;
|
|
8847
|
+
executorAddress?: string | undefined;
|
|
8848
|
+
chainDetail?: z.objectOutputType<{
|
|
8849
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
8850
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8851
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8852
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8853
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8854
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8855
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8856
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
8857
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
8858
|
+
keyGenId?: string | undefined;
|
|
8859
|
+
marketLabel?: string | undefined;
|
|
8860
|
+
loanToken?: string | undefined;
|
|
8861
|
+
slippagePct?: string | undefined;
|
|
8862
|
+
isNativeIn?: boolean | undefined;
|
|
8863
|
+
collateralIndex?: number | undefined;
|
|
8864
|
+
}, {
|
|
8865
|
+
purposeText: string;
|
|
8866
|
+
collateralAmountHuman: string;
|
|
8867
|
+
collateralToken: string;
|
|
8868
|
+
marketId: string;
|
|
8869
|
+
borrowAmountHuman: string;
|
|
8870
|
+
keyGen?: {
|
|
8871
|
+
pubkeyhex: string;
|
|
8872
|
+
keylist?: string[] | undefined;
|
|
8873
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
8874
|
+
groupId?: string | undefined;
|
|
8875
|
+
GroupId?: string | undefined;
|
|
8876
|
+
} | undefined;
|
|
8877
|
+
useCustomGas?: unknown;
|
|
8878
|
+
chainId?: unknown;
|
|
8879
|
+
expiryDate?: number | undefined;
|
|
8880
|
+
rpcUrl?: string | undefined;
|
|
8881
|
+
executorAddress?: string | undefined;
|
|
8882
|
+
chainDetail?: z.objectInputType<{
|
|
8883
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
8884
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8885
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8886
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8887
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8888
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8889
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8890
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
8891
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
8892
|
+
keyGenId?: string | undefined;
|
|
8893
|
+
marketLabel?: string | undefined;
|
|
8894
|
+
loanToken?: string | undefined;
|
|
8895
|
+
slippagePct?: string | undefined;
|
|
8896
|
+
isNativeIn?: unknown;
|
|
8897
|
+
collateralIndex?: unknown;
|
|
8898
|
+
}>, {
|
|
8899
|
+
purposeText: string;
|
|
8900
|
+
useCustomGas: boolean;
|
|
8901
|
+
chainId: number;
|
|
8902
|
+
collateralAmountHuman: string;
|
|
8903
|
+
collateralToken: string;
|
|
8904
|
+
marketId: string;
|
|
8905
|
+
borrowAmountHuman: string;
|
|
8906
|
+
keyGen?: {
|
|
8907
|
+
pubkeyhex: string;
|
|
8908
|
+
keylist?: string[] | undefined;
|
|
8909
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
8910
|
+
groupId?: string | undefined;
|
|
8911
|
+
GroupId?: string | undefined;
|
|
8912
|
+
} | undefined;
|
|
8913
|
+
expiryDate?: number | undefined;
|
|
8914
|
+
rpcUrl?: string | undefined;
|
|
8915
|
+
executorAddress?: string | undefined;
|
|
8916
|
+
chainDetail?: z.objectOutputType<{
|
|
8917
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
8918
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8919
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8920
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8921
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8922
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8923
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8924
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
8925
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
8926
|
+
keyGenId?: string | undefined;
|
|
8927
|
+
marketLabel?: string | undefined;
|
|
8928
|
+
loanToken?: string | undefined;
|
|
8929
|
+
slippagePct?: string | undefined;
|
|
8930
|
+
isNativeIn?: boolean | undefined;
|
|
8931
|
+
collateralIndex?: number | undefined;
|
|
8932
|
+
}, unknown>, {
|
|
8933
|
+
purposeText: string;
|
|
8934
|
+
useCustomGas: boolean;
|
|
8935
|
+
chainId: number;
|
|
8936
|
+
collateralAmountHuman: string;
|
|
8937
|
+
collateralToken: string;
|
|
8938
|
+
marketId: string;
|
|
8939
|
+
borrowAmountHuman: string;
|
|
8940
|
+
keyGen?: {
|
|
8941
|
+
pubkeyhex: string;
|
|
8942
|
+
keylist?: string[] | undefined;
|
|
8943
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
8944
|
+
groupId?: string | undefined;
|
|
8945
|
+
GroupId?: string | undefined;
|
|
8946
|
+
} | undefined;
|
|
8947
|
+
expiryDate?: number | undefined;
|
|
8948
|
+
rpcUrl?: string | undefined;
|
|
8949
|
+
executorAddress?: string | undefined;
|
|
8950
|
+
chainDetail?: z.objectOutputType<{
|
|
8951
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
8952
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8953
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8954
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8955
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8956
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8957
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8958
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
8959
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
8960
|
+
keyGenId?: string | undefined;
|
|
8961
|
+
marketLabel?: string | undefined;
|
|
8962
|
+
loanToken?: string | undefined;
|
|
8963
|
+
slippagePct?: string | undefined;
|
|
8964
|
+
isNativeIn?: boolean | undefined;
|
|
8965
|
+
collateralIndex?: number | undefined;
|
|
8966
|
+
}, unknown>;
|
|
8967
|
+
declare const mcpMorphoMidnightLendOfferInputSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
8968
|
+
keyGenId: z.ZodOptional<z.ZodString>;
|
|
8969
|
+
keyGen: z.ZodOptional<z.ZodObject<{
|
|
8970
|
+
pubkeyhex: z.ZodString;
|
|
8971
|
+
keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
8972
|
+
ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
8973
|
+
groupId: z.ZodOptional<z.ZodString>;
|
|
8974
|
+
GroupId: z.ZodOptional<z.ZodString>;
|
|
8975
|
+
}, "strip", z.ZodTypeAny, {
|
|
8976
|
+
pubkeyhex: string;
|
|
8977
|
+
keylist?: string[] | undefined;
|
|
8978
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
8979
|
+
groupId?: string | undefined;
|
|
8980
|
+
GroupId?: string | undefined;
|
|
8981
|
+
}, {
|
|
8982
|
+
pubkeyhex: string;
|
|
8983
|
+
keylist?: string[] | undefined;
|
|
8984
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
8985
|
+
groupId?: string | undefined;
|
|
8986
|
+
GroupId?: string | undefined;
|
|
8987
|
+
}>>;
|
|
8988
|
+
purposeText: z.ZodString;
|
|
8989
|
+
useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
|
|
8990
|
+
chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
|
|
8991
|
+
rpcUrl: z.ZodOptional<z.ZodString>;
|
|
8992
|
+
executorAddress: z.ZodOptional<z.ZodString>;
|
|
8993
|
+
chainDetail: z.ZodOptional<z.ZodObject<{
|
|
8994
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
8995
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8996
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8997
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8998
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8999
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9000
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9001
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
9002
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
9003
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9004
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9005
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9006
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9007
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9008
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9009
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
9010
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
9011
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9012
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9013
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9014
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9015
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9016
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9017
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
9018
|
+
customGasChainDetails: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
9019
|
+
expiryDate: z.ZodOptional<z.ZodNumber>;
|
|
9020
|
+
} & {
|
|
9021
|
+
marketId: z.ZodString;
|
|
9022
|
+
amountHuman: z.ZodString;
|
|
9023
|
+
loanToken: z.ZodOptional<z.ZodString>;
|
|
9024
|
+
lendAprPct: z.ZodOptional<z.ZodString>;
|
|
9025
|
+
tick: z.ZodOptional<z.ZodString>;
|
|
9026
|
+
blueMarketId: z.ZodOptional<z.ZodString>;
|
|
9027
|
+
expirySeconds: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9028
|
+
marketLabel: z.ZodOptional<z.ZodString>;
|
|
9029
|
+
isNativeIn: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
9030
|
+
}, "strip", z.ZodTypeAny, {
|
|
9031
|
+
purposeText: string;
|
|
9032
|
+
useCustomGas: boolean;
|
|
9033
|
+
chainId: number;
|
|
9034
|
+
amountHuman: string;
|
|
9035
|
+
marketId: string;
|
|
9036
|
+
keyGen?: {
|
|
9037
|
+
pubkeyhex: string;
|
|
9038
|
+
keylist?: string[] | undefined;
|
|
9039
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
9040
|
+
groupId?: string | undefined;
|
|
9041
|
+
GroupId?: string | undefined;
|
|
9042
|
+
} | undefined;
|
|
9043
|
+
expiryDate?: number | undefined;
|
|
9044
|
+
rpcUrl?: string | undefined;
|
|
9045
|
+
executorAddress?: string | undefined;
|
|
9046
|
+
chainDetail?: z.objectOutputType<{
|
|
9047
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
9048
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9049
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9050
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9051
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9052
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9053
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9054
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
9055
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
9056
|
+
keyGenId?: string | undefined;
|
|
9057
|
+
marketLabel?: string | undefined;
|
|
9058
|
+
loanToken?: string | undefined;
|
|
9059
|
+
tick?: string | undefined;
|
|
9060
|
+
isNativeIn?: boolean | undefined;
|
|
9061
|
+
lendAprPct?: string | undefined;
|
|
9062
|
+
blueMarketId?: string | undefined;
|
|
9063
|
+
expirySeconds?: number | undefined;
|
|
9064
|
+
}, {
|
|
9065
|
+
purposeText: string;
|
|
9066
|
+
amountHuman: string;
|
|
9067
|
+
marketId: string;
|
|
9068
|
+
keyGen?: {
|
|
9069
|
+
pubkeyhex: string;
|
|
9070
|
+
keylist?: string[] | undefined;
|
|
9071
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
9072
|
+
groupId?: string | undefined;
|
|
9073
|
+
GroupId?: string | undefined;
|
|
9074
|
+
} | undefined;
|
|
9075
|
+
useCustomGas?: unknown;
|
|
9076
|
+
chainId?: unknown;
|
|
9077
|
+
expiryDate?: number | undefined;
|
|
9078
|
+
rpcUrl?: string | undefined;
|
|
9079
|
+
executorAddress?: string | undefined;
|
|
9080
|
+
chainDetail?: z.objectInputType<{
|
|
9081
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
9082
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9083
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9084
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9085
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9086
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9087
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9088
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
9089
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
9090
|
+
keyGenId?: string | undefined;
|
|
9091
|
+
marketLabel?: string | undefined;
|
|
9092
|
+
loanToken?: string | undefined;
|
|
9093
|
+
tick?: string | undefined;
|
|
9094
|
+
isNativeIn?: unknown;
|
|
9095
|
+
lendAprPct?: string | undefined;
|
|
9096
|
+
blueMarketId?: string | undefined;
|
|
9097
|
+
expirySeconds?: unknown;
|
|
9098
|
+
}>, {
|
|
9099
|
+
purposeText: string;
|
|
9100
|
+
useCustomGas: boolean;
|
|
9101
|
+
chainId: number;
|
|
9102
|
+
amountHuman: string;
|
|
9103
|
+
marketId: string;
|
|
9104
|
+
keyGen?: {
|
|
9105
|
+
pubkeyhex: string;
|
|
9106
|
+
keylist?: string[] | undefined;
|
|
9107
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
9108
|
+
groupId?: string | undefined;
|
|
9109
|
+
GroupId?: string | undefined;
|
|
9110
|
+
} | undefined;
|
|
9111
|
+
expiryDate?: number | undefined;
|
|
9112
|
+
rpcUrl?: string | undefined;
|
|
9113
|
+
executorAddress?: string | undefined;
|
|
9114
|
+
chainDetail?: z.objectOutputType<{
|
|
9115
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
9116
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9117
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9118
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9119
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9120
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9121
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9122
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
9123
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
9124
|
+
keyGenId?: string | undefined;
|
|
9125
|
+
marketLabel?: string | undefined;
|
|
9126
|
+
loanToken?: string | undefined;
|
|
9127
|
+
tick?: string | undefined;
|
|
9128
|
+
isNativeIn?: boolean | undefined;
|
|
9129
|
+
lendAprPct?: string | undefined;
|
|
9130
|
+
blueMarketId?: string | undefined;
|
|
9131
|
+
expirySeconds?: number | undefined;
|
|
9132
|
+
}, unknown>, {
|
|
9133
|
+
purposeText: string;
|
|
9134
|
+
useCustomGas: boolean;
|
|
9135
|
+
chainId: number;
|
|
9136
|
+
amountHuman: string;
|
|
9137
|
+
marketId: string;
|
|
9138
|
+
keyGen?: {
|
|
9139
|
+
pubkeyhex: string;
|
|
9140
|
+
keylist?: string[] | undefined;
|
|
9141
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
9142
|
+
groupId?: string | undefined;
|
|
9143
|
+
GroupId?: string | undefined;
|
|
9144
|
+
} | undefined;
|
|
9145
|
+
expiryDate?: number | undefined;
|
|
9146
|
+
rpcUrl?: string | undefined;
|
|
9147
|
+
executorAddress?: string | undefined;
|
|
9148
|
+
chainDetail?: z.objectOutputType<{
|
|
9149
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
9150
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9151
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9152
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9153
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9154
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9155
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9156
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
9157
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
9158
|
+
keyGenId?: string | undefined;
|
|
9159
|
+
marketLabel?: string | undefined;
|
|
9160
|
+
loanToken?: string | undefined;
|
|
9161
|
+
tick?: string | undefined;
|
|
9162
|
+
isNativeIn?: boolean | undefined;
|
|
9163
|
+
lendAprPct?: string | undefined;
|
|
9164
|
+
blueMarketId?: string | undefined;
|
|
9165
|
+
expirySeconds?: number | undefined;
|
|
9166
|
+
}, unknown>;
|
|
9167
|
+
declare const mcpMorphoMidnightCancelLendOfferInputSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
9168
|
+
keyGenId: z.ZodOptional<z.ZodString>;
|
|
9169
|
+
keyGen: z.ZodOptional<z.ZodObject<{
|
|
9170
|
+
pubkeyhex: z.ZodString;
|
|
9171
|
+
keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
9172
|
+
ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
9173
|
+
groupId: z.ZodOptional<z.ZodString>;
|
|
9174
|
+
GroupId: z.ZodOptional<z.ZodString>;
|
|
9175
|
+
}, "strip", z.ZodTypeAny, {
|
|
9176
|
+
pubkeyhex: string;
|
|
9177
|
+
keylist?: string[] | undefined;
|
|
9178
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
9179
|
+
groupId?: string | undefined;
|
|
9180
|
+
GroupId?: string | undefined;
|
|
9181
|
+
}, {
|
|
9182
|
+
pubkeyhex: string;
|
|
9183
|
+
keylist?: string[] | undefined;
|
|
9184
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
9185
|
+
groupId?: string | undefined;
|
|
9186
|
+
GroupId?: string | undefined;
|
|
9187
|
+
}>>;
|
|
9188
|
+
purposeText: z.ZodString;
|
|
9189
|
+
useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
|
|
9190
|
+
chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
|
|
9191
|
+
rpcUrl: z.ZodOptional<z.ZodString>;
|
|
9192
|
+
executorAddress: z.ZodOptional<z.ZodString>;
|
|
9193
|
+
chainDetail: z.ZodOptional<z.ZodObject<{
|
|
9194
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
9195
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9196
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9197
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9198
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9199
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9200
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9201
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
9202
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
9203
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9204
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9205
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9206
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9207
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9208
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9209
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
9210
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
9211
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9212
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9213
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9214
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9215
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9216
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9217
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
9218
|
+
customGasChainDetails: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
9219
|
+
expiryDate: z.ZodOptional<z.ZodNumber>;
|
|
9220
|
+
} & {
|
|
9221
|
+
group: z.ZodString;
|
|
9222
|
+
callback: z.ZodOptional<z.ZodString>;
|
|
9223
|
+
callbackData: z.ZodOptional<z.ZodString>;
|
|
9224
|
+
midnight: z.ZodOptional<z.ZodString>;
|
|
9225
|
+
withdrawRemaining: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
9226
|
+
marketLabel: z.ZodOptional<z.ZodString>;
|
|
9227
|
+
}, "strip", z.ZodTypeAny, {
|
|
9228
|
+
purposeText: string;
|
|
9229
|
+
useCustomGas: boolean;
|
|
9230
|
+
chainId: number;
|
|
9231
|
+
group: string;
|
|
9232
|
+
keyGen?: {
|
|
9233
|
+
pubkeyhex: string;
|
|
9234
|
+
keylist?: string[] | undefined;
|
|
9235
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
9236
|
+
groupId?: string | undefined;
|
|
9237
|
+
GroupId?: string | undefined;
|
|
9238
|
+
} | undefined;
|
|
9239
|
+
expiryDate?: number | undefined;
|
|
9240
|
+
rpcUrl?: string | undefined;
|
|
9241
|
+
executorAddress?: string | undefined;
|
|
9242
|
+
chainDetail?: z.objectOutputType<{
|
|
9243
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
9244
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9245
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9246
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9247
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9248
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9249
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9250
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
9251
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
9252
|
+
keyGenId?: string | undefined;
|
|
9253
|
+
marketLabel?: string | undefined;
|
|
9254
|
+
callback?: string | undefined;
|
|
9255
|
+
callbackData?: string | undefined;
|
|
9256
|
+
midnight?: string | undefined;
|
|
9257
|
+
withdrawRemaining?: boolean | undefined;
|
|
9258
|
+
}, {
|
|
9259
|
+
purposeText: string;
|
|
9260
|
+
group: string;
|
|
9261
|
+
keyGen?: {
|
|
9262
|
+
pubkeyhex: string;
|
|
9263
|
+
keylist?: string[] | undefined;
|
|
9264
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
9265
|
+
groupId?: string | undefined;
|
|
9266
|
+
GroupId?: string | undefined;
|
|
9267
|
+
} | undefined;
|
|
9268
|
+
useCustomGas?: unknown;
|
|
9269
|
+
chainId?: unknown;
|
|
9270
|
+
expiryDate?: number | undefined;
|
|
9271
|
+
rpcUrl?: string | undefined;
|
|
9272
|
+
executorAddress?: string | undefined;
|
|
9273
|
+
chainDetail?: z.objectInputType<{
|
|
9274
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
9275
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9276
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9277
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9278
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9279
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9280
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9281
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
9282
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
9283
|
+
keyGenId?: string | undefined;
|
|
9284
|
+
marketLabel?: string | undefined;
|
|
9285
|
+
callback?: string | undefined;
|
|
9286
|
+
callbackData?: string | undefined;
|
|
9287
|
+
midnight?: string | undefined;
|
|
9288
|
+
withdrawRemaining?: unknown;
|
|
9289
|
+
}>, {
|
|
9290
|
+
purposeText: string;
|
|
9291
|
+
useCustomGas: boolean;
|
|
9292
|
+
chainId: number;
|
|
9293
|
+
group: string;
|
|
9294
|
+
keyGen?: {
|
|
9295
|
+
pubkeyhex: string;
|
|
9296
|
+
keylist?: string[] | undefined;
|
|
9297
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
9298
|
+
groupId?: string | undefined;
|
|
9299
|
+
GroupId?: string | undefined;
|
|
9300
|
+
} | undefined;
|
|
9301
|
+
expiryDate?: number | undefined;
|
|
9302
|
+
rpcUrl?: string | undefined;
|
|
9303
|
+
executorAddress?: string | undefined;
|
|
9304
|
+
chainDetail?: z.objectOutputType<{
|
|
9305
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
9306
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9307
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9308
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9309
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9310
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9311
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9312
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
9313
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
9314
|
+
keyGenId?: string | undefined;
|
|
9315
|
+
marketLabel?: string | undefined;
|
|
9316
|
+
callback?: string | undefined;
|
|
9317
|
+
callbackData?: string | undefined;
|
|
9318
|
+
midnight?: string | undefined;
|
|
9319
|
+
withdrawRemaining?: boolean | undefined;
|
|
9320
|
+
}, unknown>, {
|
|
9321
|
+
purposeText: string;
|
|
9322
|
+
useCustomGas: boolean;
|
|
9323
|
+
chainId: number;
|
|
9324
|
+
group: string;
|
|
9325
|
+
keyGen?: {
|
|
9326
|
+
pubkeyhex: string;
|
|
9327
|
+
keylist?: string[] | undefined;
|
|
9328
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
9329
|
+
groupId?: string | undefined;
|
|
9330
|
+
GroupId?: string | undefined;
|
|
9331
|
+
} | undefined;
|
|
9332
|
+
expiryDate?: number | undefined;
|
|
9333
|
+
rpcUrl?: string | undefined;
|
|
9334
|
+
executorAddress?: string | undefined;
|
|
9335
|
+
chainDetail?: z.objectOutputType<{
|
|
9336
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
9337
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9338
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9339
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9340
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9341
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9342
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9343
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
9344
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
9345
|
+
keyGenId?: string | undefined;
|
|
9346
|
+
marketLabel?: string | undefined;
|
|
9347
|
+
callback?: string | undefined;
|
|
9348
|
+
callbackData?: string | undefined;
|
|
9349
|
+
midnight?: string | undefined;
|
|
9350
|
+
withdrawRemaining?: boolean | undefined;
|
|
9351
|
+
}, unknown>;
|
|
9352
|
+
declare const mcpMorphoMidnightRepayInputSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
9353
|
+
keyGenId: z.ZodOptional<z.ZodString>;
|
|
9354
|
+
keyGen: z.ZodOptional<z.ZodObject<{
|
|
9355
|
+
pubkeyhex: z.ZodString;
|
|
9356
|
+
keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
9357
|
+
ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
9358
|
+
groupId: z.ZodOptional<z.ZodString>;
|
|
9359
|
+
GroupId: z.ZodOptional<z.ZodString>;
|
|
9360
|
+
}, "strip", z.ZodTypeAny, {
|
|
9361
|
+
pubkeyhex: string;
|
|
9362
|
+
keylist?: string[] | undefined;
|
|
9363
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
9364
|
+
groupId?: string | undefined;
|
|
9365
|
+
GroupId?: string | undefined;
|
|
9366
|
+
}, {
|
|
9367
|
+
pubkeyhex: string;
|
|
9368
|
+
keylist?: string[] | undefined;
|
|
9369
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
9370
|
+
groupId?: string | undefined;
|
|
9371
|
+
GroupId?: string | undefined;
|
|
9372
|
+
}>>;
|
|
9373
|
+
purposeText: z.ZodString;
|
|
9374
|
+
useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
|
|
9375
|
+
chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
|
|
9376
|
+
rpcUrl: z.ZodOptional<z.ZodString>;
|
|
9377
|
+
executorAddress: z.ZodOptional<z.ZodString>;
|
|
9378
|
+
chainDetail: z.ZodOptional<z.ZodObject<{
|
|
9379
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
9380
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9381
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9382
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9383
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9384
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9385
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9386
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
9387
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
9388
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9389
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9390
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9391
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9392
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9393
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9394
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
9395
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
9396
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9397
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9398
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9399
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9400
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9401
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9402
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
9403
|
+
customGasChainDetails: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
9404
|
+
expiryDate: z.ZodOptional<z.ZodNumber>;
|
|
9405
|
+
} & {
|
|
9406
|
+
marketId: z.ZodString;
|
|
9407
|
+
repayAmountHuman: z.ZodOptional<z.ZodString>;
|
|
9408
|
+
loanToken: z.ZodOptional<z.ZodString>;
|
|
9409
|
+
withdrawAllCollateral: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
9410
|
+
marketLabel: z.ZodOptional<z.ZodString>;
|
|
9411
|
+
}, "strip", z.ZodTypeAny, {
|
|
9412
|
+
purposeText: string;
|
|
9413
|
+
useCustomGas: boolean;
|
|
9414
|
+
chainId: number;
|
|
9415
|
+
marketId: string;
|
|
9416
|
+
keyGen?: {
|
|
9417
|
+
pubkeyhex: string;
|
|
9418
|
+
keylist?: string[] | undefined;
|
|
9419
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
9420
|
+
groupId?: string | undefined;
|
|
9421
|
+
GroupId?: string | undefined;
|
|
9422
|
+
} | undefined;
|
|
9423
|
+
expiryDate?: number | undefined;
|
|
9424
|
+
rpcUrl?: string | undefined;
|
|
9425
|
+
executorAddress?: string | undefined;
|
|
9426
|
+
chainDetail?: z.objectOutputType<{
|
|
9427
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
9428
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9429
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9430
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9431
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9432
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9433
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9434
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
9435
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
9436
|
+
keyGenId?: string | undefined;
|
|
9437
|
+
marketLabel?: string | undefined;
|
|
9438
|
+
loanToken?: string | undefined;
|
|
9439
|
+
repayAmountHuman?: string | undefined;
|
|
9440
|
+
withdrawAllCollateral?: boolean | undefined;
|
|
9441
|
+
}, {
|
|
9442
|
+
purposeText: string;
|
|
9443
|
+
marketId: string;
|
|
9444
|
+
keyGen?: {
|
|
9445
|
+
pubkeyhex: string;
|
|
9446
|
+
keylist?: string[] | undefined;
|
|
9447
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
9448
|
+
groupId?: string | undefined;
|
|
9449
|
+
GroupId?: string | undefined;
|
|
9450
|
+
} | undefined;
|
|
9451
|
+
useCustomGas?: unknown;
|
|
9452
|
+
chainId?: unknown;
|
|
9453
|
+
expiryDate?: number | undefined;
|
|
9454
|
+
rpcUrl?: string | undefined;
|
|
9455
|
+
executorAddress?: string | undefined;
|
|
9456
|
+
chainDetail?: z.objectInputType<{
|
|
9457
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
9458
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9459
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9460
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9461
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9462
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9463
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9464
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
9465
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
9466
|
+
keyGenId?: string | undefined;
|
|
9467
|
+
marketLabel?: string | undefined;
|
|
9468
|
+
loanToken?: string | undefined;
|
|
9469
|
+
repayAmountHuman?: string | undefined;
|
|
9470
|
+
withdrawAllCollateral?: unknown;
|
|
9471
|
+
}>, {
|
|
9472
|
+
purposeText: string;
|
|
9473
|
+
useCustomGas: boolean;
|
|
9474
|
+
chainId: number;
|
|
9475
|
+
marketId: string;
|
|
9476
|
+
keyGen?: {
|
|
9477
|
+
pubkeyhex: string;
|
|
9478
|
+
keylist?: string[] | undefined;
|
|
9479
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
9480
|
+
groupId?: string | undefined;
|
|
9481
|
+
GroupId?: string | undefined;
|
|
9482
|
+
} | undefined;
|
|
9483
|
+
expiryDate?: number | undefined;
|
|
9484
|
+
rpcUrl?: string | undefined;
|
|
9485
|
+
executorAddress?: string | undefined;
|
|
9486
|
+
chainDetail?: z.objectOutputType<{
|
|
9487
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
9488
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9489
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9490
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9491
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9492
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9493
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9494
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
9495
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
9496
|
+
keyGenId?: string | undefined;
|
|
9497
|
+
marketLabel?: string | undefined;
|
|
9498
|
+
loanToken?: string | undefined;
|
|
9499
|
+
repayAmountHuman?: string | undefined;
|
|
9500
|
+
withdrawAllCollateral?: boolean | undefined;
|
|
9501
|
+
}, unknown>, {
|
|
9502
|
+
purposeText: string;
|
|
9503
|
+
useCustomGas: boolean;
|
|
9504
|
+
chainId: number;
|
|
9505
|
+
marketId: string;
|
|
9506
|
+
keyGen?: {
|
|
9507
|
+
pubkeyhex: string;
|
|
9508
|
+
keylist?: string[] | undefined;
|
|
9509
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
9510
|
+
groupId?: string | undefined;
|
|
9511
|
+
GroupId?: string | undefined;
|
|
9512
|
+
} | undefined;
|
|
9513
|
+
expiryDate?: number | undefined;
|
|
9514
|
+
rpcUrl?: string | undefined;
|
|
9515
|
+
executorAddress?: string | undefined;
|
|
9516
|
+
chainDetail?: z.objectOutputType<{
|
|
9517
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
9518
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9519
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9520
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9521
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9522
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9523
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
9524
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
9525
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
9526
|
+
keyGenId?: string | undefined;
|
|
9527
|
+
marketLabel?: string | undefined;
|
|
9528
|
+
loanToken?: string | undefined;
|
|
9529
|
+
repayAmountHuman?: string | undefined;
|
|
9530
|
+
withdrawAllCollateral?: boolean | undefined;
|
|
9531
|
+
}, unknown>;
|
|
9532
|
+
type McpMorphoVaultDepositInput = z.infer<typeof mcpMorphoVaultDepositInputSchema>;
|
|
9533
|
+
declare const mcpContinuumDaoCreateLockInputSchema: z.ZodEffects<z.ZodObject<{} & {
|
|
9534
|
+
[x: string]: z.ZodTypeAny;
|
|
9535
|
+
}, "strip", z.ZodTypeAny, {
|
|
9536
|
+
[x: string]: any;
|
|
9537
|
+
}, {
|
|
9538
|
+
[x: string]: any;
|
|
9539
|
+
}>, {
|
|
9540
|
+
[x: string]: any;
|
|
9541
|
+
}, {
|
|
9542
|
+
[x: string]: any;
|
|
9543
|
+
}>;
|
|
9544
|
+
declare const mcpContinuumDaoIncreaseAmountInputSchema: z.ZodEffects<z.ZodObject<{} & {
|
|
9545
|
+
[x: string]: z.ZodTypeAny;
|
|
9546
|
+
}, "strip", z.ZodTypeAny, {
|
|
9547
|
+
[x: string]: any;
|
|
9548
|
+
}, {
|
|
9549
|
+
[x: string]: any;
|
|
9550
|
+
}>, {
|
|
9551
|
+
[x: string]: any;
|
|
9552
|
+
}, {
|
|
9553
|
+
[x: string]: any;
|
|
9554
|
+
}>;
|
|
9555
|
+
declare const mcpContinuumDaoIncreaseUnlockTimeInputSchema: z.ZodEffects<z.ZodObject<{} & {
|
|
9556
|
+
[x: string]: z.ZodTypeAny;
|
|
9557
|
+
}, "strip", z.ZodTypeAny, {
|
|
9558
|
+
[x: string]: any;
|
|
9559
|
+
}, {
|
|
9560
|
+
[x: string]: any;
|
|
9561
|
+
}>, {
|
|
8713
9562
|
[x: string]: any;
|
|
8714
9563
|
}, {
|
|
8715
9564
|
[x: string]: any;
|
|
@@ -10442,28 +11291,165 @@ declare const mcpMorphoFetchEarnVaultsOutputSchema: z.ZodObject<{
|
|
|
10442
11291
|
}[];
|
|
10443
11292
|
}[];
|
|
10444
11293
|
}>;
|
|
10445
|
-
type McpMorphoFetchEarnVaultsInput = z.infer<typeof mcpMorphoFetchEarnVaultsInputSchema>;
|
|
10446
|
-
type McpMorphoFetchEarnVaultsOutput = z.infer<typeof mcpMorphoFetchEarnVaultsOutputSchema>;
|
|
10447
|
-
declare const mcpMorphoFetchBlueMarketsInputSchema: z.ZodObject<{
|
|
10448
|
-
chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
|
|
11294
|
+
type McpMorphoFetchEarnVaultsInput = z.infer<typeof mcpMorphoFetchEarnVaultsInputSchema>;
|
|
11295
|
+
type McpMorphoFetchEarnVaultsOutput = z.infer<typeof mcpMorphoFetchEarnVaultsOutputSchema>;
|
|
11296
|
+
declare const mcpMorphoFetchBlueMarketsInputSchema: z.ZodObject<{
|
|
11297
|
+
chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
|
|
11298
|
+
collateral: z.ZodOptional<z.ZodString>;
|
|
11299
|
+
loan: z.ZodOptional<z.ZodString>;
|
|
11300
|
+
query: z.ZodOptional<z.ZodString>;
|
|
11301
|
+
limit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
11302
|
+
}, "strip", z.ZodTypeAny, {
|
|
11303
|
+
chainId: number;
|
|
11304
|
+
limit?: number | undefined;
|
|
11305
|
+
query?: string | undefined;
|
|
11306
|
+
collateral?: string | undefined;
|
|
11307
|
+
loan?: string | undefined;
|
|
11308
|
+
}, {
|
|
11309
|
+
chainId?: unknown;
|
|
11310
|
+
limit?: unknown;
|
|
11311
|
+
query?: string | undefined;
|
|
11312
|
+
collateral?: string | undefined;
|
|
11313
|
+
loan?: string | undefined;
|
|
11314
|
+
}>;
|
|
11315
|
+
declare const mcpMorphoFetchBlueMarketsOutputSchema: z.ZodObject<{
|
|
11316
|
+
markets: z.ZodArray<z.ZodObject<{
|
|
11317
|
+
marketId: z.ZodString;
|
|
11318
|
+
marketLabel: z.ZodString;
|
|
11319
|
+
morphoBlueAddress: z.ZodString;
|
|
11320
|
+
collateralTokenAddress: z.ZodString;
|
|
11321
|
+
collateralTokenSymbol: z.ZodString;
|
|
11322
|
+
collateralTokenDecimals: z.ZodNumber;
|
|
11323
|
+
loanTokenAddress: z.ZodString;
|
|
11324
|
+
loanTokenSymbol: z.ZodString;
|
|
11325
|
+
loanTokenDecimals: z.ZodNumber;
|
|
11326
|
+
borrowApyLabel: z.ZodString;
|
|
11327
|
+
supplyApyLabel: z.ZodString;
|
|
11328
|
+
netSupplyApyLabel: z.ZodString;
|
|
11329
|
+
lltvLabel: z.ZodString;
|
|
11330
|
+
borrowAssetsUsdLabel: z.ZodString;
|
|
11331
|
+
supplyAssetsUsdLabel: z.ZodString;
|
|
11332
|
+
utilizationLabel: z.ZodString;
|
|
11333
|
+
rewards: z.ZodArray<z.ZodObject<{
|
|
11334
|
+
symbol: z.ZodString;
|
|
11335
|
+
supplyAprLabel: z.ZodString;
|
|
11336
|
+
}, "strip", z.ZodTypeAny, {
|
|
11337
|
+
symbol: string;
|
|
11338
|
+
supplyAprLabel: string;
|
|
11339
|
+
}, {
|
|
11340
|
+
symbol: string;
|
|
11341
|
+
supplyAprLabel: string;
|
|
11342
|
+
}>, "many">;
|
|
11343
|
+
}, "strip", z.ZodTypeAny, {
|
|
11344
|
+
collateralTokenAddress: string;
|
|
11345
|
+
marketId: string;
|
|
11346
|
+
marketLabel: string;
|
|
11347
|
+
loanTokenAddress: string;
|
|
11348
|
+
rewards: {
|
|
11349
|
+
symbol: string;
|
|
11350
|
+
supplyAprLabel: string;
|
|
11351
|
+
}[];
|
|
11352
|
+
morphoBlueAddress: string;
|
|
11353
|
+
collateralTokenSymbol: string;
|
|
11354
|
+
collateralTokenDecimals: number;
|
|
11355
|
+
loanTokenSymbol: string;
|
|
11356
|
+
loanTokenDecimals: number;
|
|
11357
|
+
borrowApyLabel: string;
|
|
11358
|
+
supplyApyLabel: string;
|
|
11359
|
+
netSupplyApyLabel: string;
|
|
11360
|
+
lltvLabel: string;
|
|
11361
|
+
borrowAssetsUsdLabel: string;
|
|
11362
|
+
supplyAssetsUsdLabel: string;
|
|
11363
|
+
utilizationLabel: string;
|
|
11364
|
+
}, {
|
|
11365
|
+
collateralTokenAddress: string;
|
|
11366
|
+
marketId: string;
|
|
11367
|
+
marketLabel: string;
|
|
11368
|
+
loanTokenAddress: string;
|
|
11369
|
+
rewards: {
|
|
11370
|
+
symbol: string;
|
|
11371
|
+
supplyAprLabel: string;
|
|
11372
|
+
}[];
|
|
11373
|
+
morphoBlueAddress: string;
|
|
11374
|
+
collateralTokenSymbol: string;
|
|
11375
|
+
collateralTokenDecimals: number;
|
|
11376
|
+
loanTokenSymbol: string;
|
|
11377
|
+
loanTokenDecimals: number;
|
|
11378
|
+
borrowApyLabel: string;
|
|
11379
|
+
supplyApyLabel: string;
|
|
11380
|
+
netSupplyApyLabel: string;
|
|
11381
|
+
lltvLabel: string;
|
|
11382
|
+
borrowAssetsUsdLabel: string;
|
|
11383
|
+
supplyAssetsUsdLabel: string;
|
|
11384
|
+
utilizationLabel: string;
|
|
11385
|
+
}>, "many">;
|
|
11386
|
+
}, "strip", z.ZodTypeAny, {
|
|
11387
|
+
markets: {
|
|
11388
|
+
collateralTokenAddress: string;
|
|
11389
|
+
marketId: string;
|
|
11390
|
+
marketLabel: string;
|
|
11391
|
+
loanTokenAddress: string;
|
|
11392
|
+
rewards: {
|
|
11393
|
+
symbol: string;
|
|
11394
|
+
supplyAprLabel: string;
|
|
11395
|
+
}[];
|
|
11396
|
+
morphoBlueAddress: string;
|
|
11397
|
+
collateralTokenSymbol: string;
|
|
11398
|
+
collateralTokenDecimals: number;
|
|
11399
|
+
loanTokenSymbol: string;
|
|
11400
|
+
loanTokenDecimals: number;
|
|
11401
|
+
borrowApyLabel: string;
|
|
11402
|
+
supplyApyLabel: string;
|
|
11403
|
+
netSupplyApyLabel: string;
|
|
11404
|
+
lltvLabel: string;
|
|
11405
|
+
borrowAssetsUsdLabel: string;
|
|
11406
|
+
supplyAssetsUsdLabel: string;
|
|
11407
|
+
utilizationLabel: string;
|
|
11408
|
+
}[];
|
|
11409
|
+
}, {
|
|
11410
|
+
markets: {
|
|
11411
|
+
collateralTokenAddress: string;
|
|
11412
|
+
marketId: string;
|
|
11413
|
+
marketLabel: string;
|
|
11414
|
+
loanTokenAddress: string;
|
|
11415
|
+
rewards: {
|
|
11416
|
+
symbol: string;
|
|
11417
|
+
supplyAprLabel: string;
|
|
11418
|
+
}[];
|
|
11419
|
+
morphoBlueAddress: string;
|
|
11420
|
+
collateralTokenSymbol: string;
|
|
11421
|
+
collateralTokenDecimals: number;
|
|
11422
|
+
loanTokenSymbol: string;
|
|
11423
|
+
loanTokenDecimals: number;
|
|
11424
|
+
borrowApyLabel: string;
|
|
11425
|
+
supplyApyLabel: string;
|
|
11426
|
+
netSupplyApyLabel: string;
|
|
11427
|
+
lltvLabel: string;
|
|
11428
|
+
borrowAssetsUsdLabel: string;
|
|
11429
|
+
supplyAssetsUsdLabel: string;
|
|
11430
|
+
utilizationLabel: string;
|
|
11431
|
+
}[];
|
|
11432
|
+
}>;
|
|
11433
|
+
type McpMorphoFetchBlueMarketsInput = z.infer<typeof mcpMorphoFetchBlueMarketsInputSchema>;
|
|
11434
|
+
type McpMorphoFetchBlueMarketsOutput = z.infer<typeof mcpMorphoFetchBlueMarketsOutputSchema>;
|
|
11435
|
+
declare const mcpMorphoFetchStockMarketsInputSchema: z.ZodObject<{
|
|
11436
|
+
chainId: z.ZodOptional<z.ZodEffects<z.ZodNumber, number, unknown>>;
|
|
10449
11437
|
collateral: z.ZodOptional<z.ZodString>;
|
|
10450
|
-
|
|
10451
|
-
query: z.ZodOptional<z.ZodString>;
|
|
11438
|
+
rate: z.ZodOptional<z.ZodEnum<["variable", "fixed", "both"]>>;
|
|
10452
11439
|
limit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
10453
11440
|
}, "strip", z.ZodTypeAny, {
|
|
10454
|
-
chainId
|
|
11441
|
+
chainId?: number | undefined;
|
|
10455
11442
|
limit?: number | undefined;
|
|
10456
|
-
query?: string | undefined;
|
|
10457
11443
|
collateral?: string | undefined;
|
|
10458
|
-
|
|
11444
|
+
rate?: "fixed" | "variable" | "both" | undefined;
|
|
10459
11445
|
}, {
|
|
10460
11446
|
chainId?: unknown;
|
|
10461
11447
|
limit?: unknown;
|
|
10462
|
-
query?: string | undefined;
|
|
10463
11448
|
collateral?: string | undefined;
|
|
10464
|
-
|
|
11449
|
+
rate?: "fixed" | "variable" | "both" | undefined;
|
|
10465
11450
|
}>;
|
|
10466
|
-
declare const
|
|
11451
|
+
declare const mcpMorphoFetchStockMarketsOutputSchema: z.ZodObject<{
|
|
11452
|
+
chainId: z.ZodNumber;
|
|
10467
11453
|
markets: z.ZodArray<z.ZodObject<{
|
|
10468
11454
|
marketId: z.ZodString;
|
|
10469
11455
|
marketLabel: z.ZodString;
|
|
@@ -10477,6 +11463,10 @@ declare const mcpMorphoFetchBlueMarketsOutputSchema: z.ZodObject<{
|
|
|
10477
11463
|
borrowApyLabel: z.ZodString;
|
|
10478
11464
|
supplyApyLabel: z.ZodString;
|
|
10479
11465
|
netSupplyApyLabel: z.ZodString;
|
|
11466
|
+
lltvLabel: z.ZodString;
|
|
11467
|
+
borrowAssetsUsdLabel: z.ZodString;
|
|
11468
|
+
supplyAssetsUsdLabel: z.ZodString;
|
|
11469
|
+
utilizationLabel: z.ZodString;
|
|
10480
11470
|
rewards: z.ZodArray<z.ZodObject<{
|
|
10481
11471
|
symbol: z.ZodString;
|
|
10482
11472
|
supplyAprLabel: z.ZodString;
|
|
@@ -10504,6 +11494,10 @@ declare const mcpMorphoFetchBlueMarketsOutputSchema: z.ZodObject<{
|
|
|
10504
11494
|
borrowApyLabel: string;
|
|
10505
11495
|
supplyApyLabel: string;
|
|
10506
11496
|
netSupplyApyLabel: string;
|
|
11497
|
+
lltvLabel: string;
|
|
11498
|
+
borrowAssetsUsdLabel: string;
|
|
11499
|
+
supplyAssetsUsdLabel: string;
|
|
11500
|
+
utilizationLabel: string;
|
|
10507
11501
|
}, {
|
|
10508
11502
|
collateralTokenAddress: string;
|
|
10509
11503
|
marketId: string;
|
|
@@ -10521,8 +11515,73 @@ declare const mcpMorphoFetchBlueMarketsOutputSchema: z.ZodObject<{
|
|
|
10521
11515
|
borrowApyLabel: string;
|
|
10522
11516
|
supplyApyLabel: string;
|
|
10523
11517
|
netSupplyApyLabel: string;
|
|
11518
|
+
lltvLabel: string;
|
|
11519
|
+
borrowAssetsUsdLabel: string;
|
|
11520
|
+
supplyAssetsUsdLabel: string;
|
|
11521
|
+
utilizationLabel: string;
|
|
11522
|
+
}>, "many">;
|
|
11523
|
+
books: z.ZodArray<z.ZodObject<{
|
|
11524
|
+
marketId: z.ZodString;
|
|
11525
|
+
chainId: z.ZodNumber;
|
|
11526
|
+
midnightAddress: z.ZodString;
|
|
11527
|
+
loanTokenAddress: z.ZodString;
|
|
11528
|
+
maturity: z.ZodNumber;
|
|
11529
|
+
maturityIso: z.ZodString;
|
|
11530
|
+
collateralTokenAddresses: z.ZodArray<z.ZodString, "many">;
|
|
11531
|
+
primaryCollateralTokenAddress: z.ZodNullable<z.ZodString>;
|
|
11532
|
+
primaryCollateralLltv: z.ZodNullable<z.ZodString>;
|
|
11533
|
+
bestAskPriceWad: z.ZodNullable<z.ZodString>;
|
|
11534
|
+
bestBidPriceWad: z.ZodNullable<z.ZodString>;
|
|
11535
|
+
bestAskAssets: z.ZodNullable<z.ZodString>;
|
|
11536
|
+
bestBidAssets: z.ZodNullable<z.ZodString>;
|
|
11537
|
+
lendApr: z.ZodString;
|
|
11538
|
+
borrowApr: z.ZodString;
|
|
11539
|
+
lendAprNumeric: z.ZodNullable<z.ZodNumber>;
|
|
11540
|
+
borrowAprNumeric: z.ZodNullable<z.ZodNumber>;
|
|
11541
|
+
marketLabel: z.ZodString;
|
|
11542
|
+
}, "strip", z.ZodTypeAny, {
|
|
11543
|
+
chainId: number;
|
|
11544
|
+
marketId: string;
|
|
11545
|
+
marketLabel: string;
|
|
11546
|
+
loanTokenAddress: string;
|
|
11547
|
+
midnightAddress: string;
|
|
11548
|
+
maturity: number;
|
|
11549
|
+
maturityIso: string;
|
|
11550
|
+
collateralTokenAddresses: string[];
|
|
11551
|
+
primaryCollateralTokenAddress: string | null;
|
|
11552
|
+
primaryCollateralLltv: string | null;
|
|
11553
|
+
bestAskPriceWad: string | null;
|
|
11554
|
+
bestBidPriceWad: string | null;
|
|
11555
|
+
bestAskAssets: string | null;
|
|
11556
|
+
bestBidAssets: string | null;
|
|
11557
|
+
lendApr: string;
|
|
11558
|
+
borrowApr: string;
|
|
11559
|
+
lendAprNumeric: number | null;
|
|
11560
|
+
borrowAprNumeric: number | null;
|
|
11561
|
+
}, {
|
|
11562
|
+
chainId: number;
|
|
11563
|
+
marketId: string;
|
|
11564
|
+
marketLabel: string;
|
|
11565
|
+
loanTokenAddress: string;
|
|
11566
|
+
midnightAddress: string;
|
|
11567
|
+
maturity: number;
|
|
11568
|
+
maturityIso: string;
|
|
11569
|
+
collateralTokenAddresses: string[];
|
|
11570
|
+
primaryCollateralTokenAddress: string | null;
|
|
11571
|
+
primaryCollateralLltv: string | null;
|
|
11572
|
+
bestAskPriceWad: string | null;
|
|
11573
|
+
bestBidPriceWad: string | null;
|
|
11574
|
+
bestAskAssets: string | null;
|
|
11575
|
+
bestBidAssets: string | null;
|
|
11576
|
+
lendApr: string;
|
|
11577
|
+
borrowApr: string;
|
|
11578
|
+
lendAprNumeric: number | null;
|
|
11579
|
+
borrowAprNumeric: number | null;
|
|
10524
11580
|
}>, "many">;
|
|
11581
|
+
notes: z.ZodString;
|
|
10525
11582
|
}, "strip", z.ZodTypeAny, {
|
|
11583
|
+
chainId: number;
|
|
11584
|
+
notes: string;
|
|
10526
11585
|
markets: {
|
|
10527
11586
|
collateralTokenAddress: string;
|
|
10528
11587
|
marketId: string;
|
|
@@ -10540,8 +11599,34 @@ declare const mcpMorphoFetchBlueMarketsOutputSchema: z.ZodObject<{
|
|
|
10540
11599
|
borrowApyLabel: string;
|
|
10541
11600
|
supplyApyLabel: string;
|
|
10542
11601
|
netSupplyApyLabel: string;
|
|
11602
|
+
lltvLabel: string;
|
|
11603
|
+
borrowAssetsUsdLabel: string;
|
|
11604
|
+
supplyAssetsUsdLabel: string;
|
|
11605
|
+
utilizationLabel: string;
|
|
11606
|
+
}[];
|
|
11607
|
+
books: {
|
|
11608
|
+
chainId: number;
|
|
11609
|
+
marketId: string;
|
|
11610
|
+
marketLabel: string;
|
|
11611
|
+
loanTokenAddress: string;
|
|
11612
|
+
midnightAddress: string;
|
|
11613
|
+
maturity: number;
|
|
11614
|
+
maturityIso: string;
|
|
11615
|
+
collateralTokenAddresses: string[];
|
|
11616
|
+
primaryCollateralTokenAddress: string | null;
|
|
11617
|
+
primaryCollateralLltv: string | null;
|
|
11618
|
+
bestAskPriceWad: string | null;
|
|
11619
|
+
bestBidPriceWad: string | null;
|
|
11620
|
+
bestAskAssets: string | null;
|
|
11621
|
+
bestBidAssets: string | null;
|
|
11622
|
+
lendApr: string;
|
|
11623
|
+
borrowApr: string;
|
|
11624
|
+
lendAprNumeric: number | null;
|
|
11625
|
+
borrowAprNumeric: number | null;
|
|
10543
11626
|
}[];
|
|
10544
11627
|
}, {
|
|
11628
|
+
chainId: number;
|
|
11629
|
+
notes: string;
|
|
10545
11630
|
markets: {
|
|
10546
11631
|
collateralTokenAddress: string;
|
|
10547
11632
|
marketId: string;
|
|
@@ -10559,10 +11644,141 @@ declare const mcpMorphoFetchBlueMarketsOutputSchema: z.ZodObject<{
|
|
|
10559
11644
|
borrowApyLabel: string;
|
|
10560
11645
|
supplyApyLabel: string;
|
|
10561
11646
|
netSupplyApyLabel: string;
|
|
11647
|
+
lltvLabel: string;
|
|
11648
|
+
borrowAssetsUsdLabel: string;
|
|
11649
|
+
supplyAssetsUsdLabel: string;
|
|
11650
|
+
utilizationLabel: string;
|
|
11651
|
+
}[];
|
|
11652
|
+
books: {
|
|
11653
|
+
chainId: number;
|
|
11654
|
+
marketId: string;
|
|
11655
|
+
marketLabel: string;
|
|
11656
|
+
loanTokenAddress: string;
|
|
11657
|
+
midnightAddress: string;
|
|
11658
|
+
maturity: number;
|
|
11659
|
+
maturityIso: string;
|
|
11660
|
+
collateralTokenAddresses: string[];
|
|
11661
|
+
primaryCollateralTokenAddress: string | null;
|
|
11662
|
+
primaryCollateralLltv: string | null;
|
|
11663
|
+
bestAskPriceWad: string | null;
|
|
11664
|
+
bestBidPriceWad: string | null;
|
|
11665
|
+
bestAskAssets: string | null;
|
|
11666
|
+
bestBidAssets: string | null;
|
|
11667
|
+
lendApr: string;
|
|
11668
|
+
borrowApr: string;
|
|
11669
|
+
lendAprNumeric: number | null;
|
|
11670
|
+
borrowAprNumeric: number | null;
|
|
10562
11671
|
}[];
|
|
10563
11672
|
}>;
|
|
10564
|
-
type
|
|
10565
|
-
type
|
|
11673
|
+
type McpMorphoFetchStockMarketsInput = z.infer<typeof mcpMorphoFetchStockMarketsInputSchema>;
|
|
11674
|
+
type McpMorphoFetchStockMarketsOutput = z.infer<typeof mcpMorphoFetchStockMarketsOutputSchema>;
|
|
11675
|
+
declare const mcpMorphoFetchPositionsInputSchema: z.ZodObject<{
|
|
11676
|
+
user: z.ZodString;
|
|
11677
|
+
chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
|
|
11678
|
+
}, "strip", z.ZodTypeAny, {
|
|
11679
|
+
chainId: number;
|
|
11680
|
+
user: string;
|
|
11681
|
+
}, {
|
|
11682
|
+
user: string;
|
|
11683
|
+
chainId?: unknown;
|
|
11684
|
+
}>;
|
|
11685
|
+
declare const mcpMorphoFetchPositionsOutputSchema: z.ZodObject<{
|
|
11686
|
+
vaults: z.ZodArray<z.ZodObject<{
|
|
11687
|
+
vaultAddress: z.ZodString;
|
|
11688
|
+
vaultSymbol: z.ZodString;
|
|
11689
|
+
underlyingSymbol: z.ZodString;
|
|
11690
|
+
assetsHuman: z.ZodString;
|
|
11691
|
+
assetsUsdLabel: z.ZodString;
|
|
11692
|
+
shares: z.ZodString;
|
|
11693
|
+
}, "strip", z.ZodTypeAny, {
|
|
11694
|
+
vaultAddress: string;
|
|
11695
|
+
vaultSymbol: string;
|
|
11696
|
+
underlyingSymbol: string;
|
|
11697
|
+
assetsHuman: string;
|
|
11698
|
+
assetsUsdLabel: string;
|
|
11699
|
+
shares: string;
|
|
11700
|
+
}, {
|
|
11701
|
+
vaultAddress: string;
|
|
11702
|
+
vaultSymbol: string;
|
|
11703
|
+
underlyingSymbol: string;
|
|
11704
|
+
assetsHuman: string;
|
|
11705
|
+
assetsUsdLabel: string;
|
|
11706
|
+
shares: string;
|
|
11707
|
+
}>, "many">;
|
|
11708
|
+
blue: z.ZodArray<z.ZodObject<{
|
|
11709
|
+
marketId: z.ZodString;
|
|
11710
|
+
marketLabel: z.ZodString;
|
|
11711
|
+
loanAssetSymbol: z.ZodString;
|
|
11712
|
+
collateralAssetSymbol: z.ZodString;
|
|
11713
|
+
collateralHuman: z.ZodString;
|
|
11714
|
+
borrowHuman: z.ZodString;
|
|
11715
|
+
supplyHuman: z.ZodString;
|
|
11716
|
+
supplyUsdLabel: z.ZodString;
|
|
11717
|
+
healthFactorLabel: z.ZodString;
|
|
11718
|
+
}, "strip", z.ZodTypeAny, {
|
|
11719
|
+
marketId: string;
|
|
11720
|
+
marketLabel: string;
|
|
11721
|
+
loanAssetSymbol: string;
|
|
11722
|
+
collateralAssetSymbol: string;
|
|
11723
|
+
collateralHuman: string;
|
|
11724
|
+
borrowHuman: string;
|
|
11725
|
+
supplyHuman: string;
|
|
11726
|
+
supplyUsdLabel: string;
|
|
11727
|
+
healthFactorLabel: string;
|
|
11728
|
+
}, {
|
|
11729
|
+
marketId: string;
|
|
11730
|
+
marketLabel: string;
|
|
11731
|
+
loanAssetSymbol: string;
|
|
11732
|
+
collateralAssetSymbol: string;
|
|
11733
|
+
collateralHuman: string;
|
|
11734
|
+
borrowHuman: string;
|
|
11735
|
+
supplyHuman: string;
|
|
11736
|
+
supplyUsdLabel: string;
|
|
11737
|
+
healthFactorLabel: string;
|
|
11738
|
+
}>, "many">;
|
|
11739
|
+
}, "strip", z.ZodTypeAny, {
|
|
11740
|
+
vaults: {
|
|
11741
|
+
vaultAddress: string;
|
|
11742
|
+
vaultSymbol: string;
|
|
11743
|
+
underlyingSymbol: string;
|
|
11744
|
+
assetsHuman: string;
|
|
11745
|
+
assetsUsdLabel: string;
|
|
11746
|
+
shares: string;
|
|
11747
|
+
}[];
|
|
11748
|
+
blue: {
|
|
11749
|
+
marketId: string;
|
|
11750
|
+
marketLabel: string;
|
|
11751
|
+
loanAssetSymbol: string;
|
|
11752
|
+
collateralAssetSymbol: string;
|
|
11753
|
+
collateralHuman: string;
|
|
11754
|
+
borrowHuman: string;
|
|
11755
|
+
supplyHuman: string;
|
|
11756
|
+
supplyUsdLabel: string;
|
|
11757
|
+
healthFactorLabel: string;
|
|
11758
|
+
}[];
|
|
11759
|
+
}, {
|
|
11760
|
+
vaults: {
|
|
11761
|
+
vaultAddress: string;
|
|
11762
|
+
vaultSymbol: string;
|
|
11763
|
+
underlyingSymbol: string;
|
|
11764
|
+
assetsHuman: string;
|
|
11765
|
+
assetsUsdLabel: string;
|
|
11766
|
+
shares: string;
|
|
11767
|
+
}[];
|
|
11768
|
+
blue: {
|
|
11769
|
+
marketId: string;
|
|
11770
|
+
marketLabel: string;
|
|
11771
|
+
loanAssetSymbol: string;
|
|
11772
|
+
collateralAssetSymbol: string;
|
|
11773
|
+
collateralHuman: string;
|
|
11774
|
+
borrowHuman: string;
|
|
11775
|
+
supplyHuman: string;
|
|
11776
|
+
supplyUsdLabel: string;
|
|
11777
|
+
healthFactorLabel: string;
|
|
11778
|
+
}[];
|
|
11779
|
+
}>;
|
|
11780
|
+
type McpMorphoFetchPositionsInput = z.infer<typeof mcpMorphoFetchPositionsInputSchema>;
|
|
11781
|
+
type McpMorphoFetchPositionsOutput = z.infer<typeof mcpMorphoFetchPositionsOutputSchema>;
|
|
10566
11782
|
declare const mcpMorphoFetchMidnightBooksInputSchema: z.ZodObject<{
|
|
10567
11783
|
chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
|
|
10568
11784
|
loan: z.ZodOptional<z.ZodString>;
|
|
@@ -10718,8 +11934,8 @@ declare const mcpMorphoFetchMidnightQuoteOutputSchema: z.ZodObject<{
|
|
|
10718
11934
|
takeableOfferCount: z.ZodNumber;
|
|
10719
11935
|
}, "strip", z.ZodTypeAny, {
|
|
10720
11936
|
marketId: string;
|
|
10721
|
-
side: "bids" | "asks";
|
|
10722
11937
|
maturity: number | null;
|
|
11938
|
+
side: "bids" | "asks";
|
|
10723
11939
|
averageBestPriceWad: string;
|
|
10724
11940
|
averageWorstPriceWad: string;
|
|
10725
11941
|
availableAssets: string;
|
|
@@ -10729,8 +11945,8 @@ declare const mcpMorphoFetchMidnightQuoteOutputSchema: z.ZodObject<{
|
|
|
10729
11945
|
takeableOfferCount: number;
|
|
10730
11946
|
}, {
|
|
10731
11947
|
marketId: string;
|
|
10732
|
-
side: "bids" | "asks";
|
|
10733
11948
|
maturity: number | null;
|
|
11949
|
+
side: "bids" | "asks";
|
|
10734
11950
|
averageBestPriceWad: string;
|
|
10735
11951
|
averageWorstPriceWad: string;
|
|
10736
11952
|
availableAssets: string;
|
|
@@ -11380,6 +12596,96 @@ type McpAaveV4FetchMarketsOutput = z.infer<typeof mcpAaveV4FetchMarketsOutputSch
|
|
|
11380
12596
|
type McpAaveV4FetchMarketInput = z.infer<typeof mcpAaveV4FetchMarketInputSchema>;
|
|
11381
12597
|
type McpAaveV4FetchMarketOutput = z.infer<typeof mcpAaveV4FetchMarketOutputSchema>;
|
|
11382
12598
|
|
|
12599
|
+
declare const mcpMerklRewardsFetchInputSchema: z.ZodEffects<z.ZodObject<{
|
|
12600
|
+
chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
|
|
12601
|
+
user: z.ZodOptional<z.ZodString>;
|
|
12602
|
+
keyGenId: z.ZodOptional<z.ZodString>;
|
|
12603
|
+
}, "strip", z.ZodTypeAny, {
|
|
12604
|
+
chainId: number;
|
|
12605
|
+
keyGenId?: string | undefined;
|
|
12606
|
+
user?: string | undefined;
|
|
12607
|
+
}, {
|
|
12608
|
+
chainId?: unknown;
|
|
12609
|
+
keyGenId?: string | undefined;
|
|
12610
|
+
user?: string | undefined;
|
|
12611
|
+
}>, {
|
|
12612
|
+
chainId: number;
|
|
12613
|
+
keyGenId?: string | undefined;
|
|
12614
|
+
user?: string | undefined;
|
|
12615
|
+
}, {
|
|
12616
|
+
chainId?: unknown;
|
|
12617
|
+
keyGenId?: string | undefined;
|
|
12618
|
+
user?: string | undefined;
|
|
12619
|
+
}>;
|
|
12620
|
+
declare const mcpMerklRewardsFetchOutputSchema: z.ZodObject<{
|
|
12621
|
+
chainId: z.ZodNumber;
|
|
12622
|
+
user: z.ZodString;
|
|
12623
|
+
distributor: z.ZodString;
|
|
12624
|
+
claimable: z.ZodArray<z.ZodObject<{
|
|
12625
|
+
symbol: z.ZodString;
|
|
12626
|
+
token: z.ZodString;
|
|
12627
|
+
amountHuman: z.ZodString;
|
|
12628
|
+
amountWei: z.ZodString;
|
|
12629
|
+
decimals: z.ZodNumber;
|
|
12630
|
+
root: z.ZodString;
|
|
12631
|
+
}, "strip", z.ZodTypeAny, {
|
|
12632
|
+
symbol: string;
|
|
12633
|
+
token: string;
|
|
12634
|
+
decimals: number;
|
|
12635
|
+
amountHuman: string;
|
|
12636
|
+
root: string;
|
|
12637
|
+
amountWei: string;
|
|
12638
|
+
}, {
|
|
12639
|
+
symbol: string;
|
|
12640
|
+
token: string;
|
|
12641
|
+
decimals: number;
|
|
12642
|
+
amountHuman: string;
|
|
12643
|
+
root: string;
|
|
12644
|
+
amountWei: string;
|
|
12645
|
+
}>, "many">;
|
|
12646
|
+
claimableCount: z.ZodNumber;
|
|
12647
|
+
firstRootClaimableCount: z.ZodNumber;
|
|
12648
|
+
additionalRoots: z.ZodNumber;
|
|
12649
|
+
skippedReulCount: z.ZodNumber;
|
|
12650
|
+
notes: z.ZodString;
|
|
12651
|
+
}, "strip", z.ZodTypeAny, {
|
|
12652
|
+
chainId: number;
|
|
12653
|
+
notes: string;
|
|
12654
|
+
user: string;
|
|
12655
|
+
distributor: string;
|
|
12656
|
+
claimable: {
|
|
12657
|
+
symbol: string;
|
|
12658
|
+
token: string;
|
|
12659
|
+
decimals: number;
|
|
12660
|
+
amountHuman: string;
|
|
12661
|
+
root: string;
|
|
12662
|
+
amountWei: string;
|
|
12663
|
+
}[];
|
|
12664
|
+
claimableCount: number;
|
|
12665
|
+
firstRootClaimableCount: number;
|
|
12666
|
+
additionalRoots: number;
|
|
12667
|
+
skippedReulCount: number;
|
|
12668
|
+
}, {
|
|
12669
|
+
chainId: number;
|
|
12670
|
+
notes: string;
|
|
12671
|
+
user: string;
|
|
12672
|
+
distributor: string;
|
|
12673
|
+
claimable: {
|
|
12674
|
+
symbol: string;
|
|
12675
|
+
token: string;
|
|
12676
|
+
decimals: number;
|
|
12677
|
+
amountHuman: string;
|
|
12678
|
+
root: string;
|
|
12679
|
+
amountWei: string;
|
|
12680
|
+
}[];
|
|
12681
|
+
claimableCount: number;
|
|
12682
|
+
firstRootClaimableCount: number;
|
|
12683
|
+
additionalRoots: number;
|
|
12684
|
+
skippedReulCount: number;
|
|
12685
|
+
}>;
|
|
12686
|
+
type McpMerklRewardsFetchInput = z.infer<typeof mcpMerklRewardsFetchInputSchema>;
|
|
12687
|
+
type McpMerklRewardsFetchOutput = z.infer<typeof mcpMerklRewardsFetchOutputSchema>;
|
|
12688
|
+
|
|
11383
12689
|
declare const mcpEulerV2FetchLendVaultsInputSchema: z.ZodObject<{
|
|
11384
12690
|
chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
|
|
11385
12691
|
underlyingAddress: z.ZodString;
|
|
@@ -18026,4 +19332,4 @@ declare function getAgentCatalog(): {
|
|
|
18026
19332
|
};
|
|
18027
19333
|
};
|
|
18028
19334
|
|
|
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 };
|
|
19335
|
+
export { type ChainDetailMcpInput, EVM_COMMON_PARAM_DOCS, type EvmMultisignCommonInput, type KeyGenMcpInput, MANAGEMENT_SIG_DOC, MCP_NON_SUBMIT_TOOL_NAMES, MCP_TOOL_DEFINITIONS, MCP_TOOL_INPUT_SCHEMAS, MCP_TOOL_OUTPUT_SCHEMAS, MULTISIGN_OUTPUT_DOC, MULTISIGN_SUBMIT_OUTPUT_DOC, type McpAaveV4DepositInput, type McpAaveV4FetchMarketInput, type McpAaveV4FetchMarketOutput, type McpAaveV4FetchMarketsInput, type McpAaveV4FetchMarketsOutput, type McpCurveDaoBuildSwapMultisignInput, type McpCurveDaoQuoteInput, type McpCurveDaoQuoteOutput, type McpEthenaFetchSusdeApyInput, type McpEthenaFetchSusdeApyOutput, type McpEthenaStakeInput, type McpEulerV2FetchEarnVaultsInput, type McpEulerV2FetchEarnVaultsOutput, type McpEulerV2FetchLendVaultsInput, type McpEulerV2FetchLendVaultsOutput, type McpEulerV2IsolatedLendInput, type McpJsonSchema, type McpLidoFetchStethAprInput, type McpLidoFetchStethAprOutput, type McpLidoSubmitInput, type McpMapleDepositInput, type McpMapleFetchMarketInput, type McpMapleFetchMarketOutput, type McpMapleFetchMarketsInput, type McpMapleFetchMarketsOutput, type McpMerklRewardsFetchInput, type McpMerklRewardsFetchOutput, type McpMorphoFetchBlueMarketsInput, type McpMorphoFetchBlueMarketsOutput, type McpMorphoFetchEarnVaultsInput, type McpMorphoFetchEarnVaultsOutput, type McpMorphoFetchMidnightBooksInput, type McpMorphoFetchMidnightBooksOutput, type McpMorphoFetchMidnightOffersInput, type McpMorphoFetchMidnightOffersOutput, type McpMorphoFetchMidnightPositionsInput, type McpMorphoFetchMidnightPositionsOutput, type McpMorphoFetchMidnightQuoteInput, type McpMorphoFetchMidnightQuoteOutput, type McpMorphoFetchPositionsInput, type McpMorphoFetchPositionsOutput, type McpMorphoFetchStockMarketsInput, type McpMorphoFetchStockMarketsOutput, type McpMorphoVaultDepositInput, type McpSchemaProperty, type McpSkyFetchSusdsRateInput, type McpSkyFetchSusdsRateOutput, type McpSkyLockstakeStakeInput, type McpToolDefinition, type McpToolHandler, type McpToolInputMap, type McpToolName, type McpToolOutputMap, type McpUniswapV4BuildAllowlistFinalizeMultisignInput, type McpUniswapV4BuildMintLiquidityMultisignInput, type McpUniswapV4BuildSwapMultisignInput, type McpUniswapV4CheckPermissionsInput, type McpUniswapV4CreateSwapInput, type McpUniswapV4CreateSwapOutput, type McpUniswapV4FetchOhlcvInput, type McpUniswapV4FetchOhlcvOutput, type McpUniswapV4KycApplyLinkInput, type McpUniswapV4LpCreatePositionInput, type McpUniswapV4QuoteInput, type McpUniswapV4QuoteOutput, type MultisignOutput, PROTOCOL_SUPPORT_ADVISORS, type ProtocolSupportAdvisor, type SupportedTokenRow, type TokenFilterKind, chainDetailSchema, evmAddressSchema, evmMultisignCommonInputSchema, getAgentCatalog, getAgentCatalogForMcp, getMcpToolByName, getMcpToolDefinitions, getMcpToolInputSchema, getMcpToolOutputSchema, getProtocolDiscoverySummary, getProtocolSkill, getProtocolSupportAdvisor, getToolsForProtocol, jsonObjectSchema, keyGenSchema, listProtocolSupportAdvisorIds, listProtocolsWithSkills, mcpAaveV4BorrowInputSchema, mcpAaveV4DepositInputSchema, mcpAaveV4FetchMarketInputSchema, mcpAaveV4FetchMarketOutputSchema, mcpAaveV4FetchMarketsInputSchema, mcpAaveV4FetchMarketsOutputSchema, mcpAaveV4MerklClaimInputSchema, mcpAaveV4RepayInputSchema, mcpAaveV4WithdrawInputSchema, mcpAerodromeBuildAddLiquidityMultisignInputSchema, mcpAerodromeBuildClBurnMultisignInputSchema, mcpAerodromeBuildClCollectFeesMultisignInputSchema, mcpAerodromeBuildClDecreaseMultisignInputSchema, mcpAerodromeBuildClIncreaseMultisignInputSchema, mcpAerodromeBuildClMintMultisignInputSchema, mcpAerodromeBuildClaimEmissionsMultisignInputSchema, mcpAerodromeBuildClaimFeesMultisignInputSchema, mcpAerodromeBuildGaugeStakeMultisignInputSchema, mcpAerodromeBuildGaugeUnstakeMultisignInputSchema, mcpAerodromeBuildRemoveLiquidityMultisignInputSchema, mcpAerodromeBuildSwapMultisignInputSchema, mcpAerodromeDiscoverPoolsInputSchema, mcpAerodromeDiscoverPoolsOutputSchema, mcpAerodromeFetchLpYieldsInputSchema, mcpAerodromeFetchLpYieldsOutputSchema, mcpAerodromeFetchPoolsInputSchema, mcpAerodromeFetchPoolsOutputSchema, mcpAerodromeFetchPositionsInputSchema, mcpAerodromeFetchPositionsOutputSchema, mcpAerodromeFetchStockLpYieldsInputSchema, mcpAerodromeFetchStockLpYieldsOutputSchema, mcpAerodromeQuoteAddLiquidityInputSchema, mcpAerodromeQuoteAddLiquidityOutputSchema, mcpAerodromeQuoteClDepositInputSchema, mcpAerodromeQuoteClDepositOutputSchema, mcpAerodromeQuoteInputSchema, mcpAerodromeQuoteOutputSchema, mcpArcusBuildCancelOrderMultisignInputSchema, mcpArcusBuildCloseMultisignInputSchema, mcpArcusBuildCreateApiKeyMultisignInputSchema, mcpArcusBuildDepositMultisignInputSchema, mcpArcusBuildPlaceOrderMultisignInputSchema, mcpArcusBuildSetLeverageMultisignInputSchema, mcpArcusBuildWithdrawMultisignInputSchema, mcpArcusFetchAccountInputSchema, mcpArcusFetchAccountOutputSchema, mcpArcusFetchMarketSnapshotInputSchema, mcpArcusFetchMarketSnapshotOutputSchema, mcpArcusFetchMarketsInputSchema, mcpArcusFetchMarketsOutputSchema, mcpArcusFetchOhlcvInputSchema, mcpArcusFetchOhlcvOutputSchema, mcpArcusFetchOpenContextInputSchema, mcpArcusFetchOpenContextOutputSchema, mcpArcusFetchOpenOrdersInputSchema, mcpArcusFetchOpenOrdersOutputSchema, mcpArcusFetchPositionsInputSchema, mcpArcusFetchPositionsOutputSchema, mcpArcusSearchMarketsInputSchema, mcpArcusSearchMarketsOutputSchema, mcpArcusSpotBuildRfqMultisignInputSchema, mcpArcusSpotFetchBalancesInputSchema, mcpArcusSpotFetchBalancesOutputSchema, mcpArcusSpotFetchMarketsInputSchema, mcpArcusSpotFetchMarketsOutputSchema, mcpArcusSpotFetchOhlcvInputSchema, mcpArcusSpotFetchOhlcvOutputSchema, mcpCompoundV3BulkerInputSchema, mcpCompoundV3ClaimRewardsInputSchema, mcpCompoundV3FetchAccountInputSchema, mcpCompoundV3FetchAccountOutputSchema, mcpCompoundV3FetchMarketInputSchema, mcpCompoundV3FetchMarketOutputSchema, mcpCompoundV3FetchMarketsInputSchema, mcpCompoundV3FetchMarketsOutputSchema, mcpCompoundV3RepayInputSchema, mcpCompoundV3SupplyInputSchema, mcpCompoundV3WithdrawInputSchema, mcpContinuumDaoAttachInputSchema, mcpContinuumDaoCastVoteBravoInputSchema, mcpContinuumDaoCastVoteDeltaInputSchema, mcpContinuumDaoCreateLockInputSchema, mcpContinuumDaoDelegateInputSchema, mcpContinuumDaoExplainProposalInputSchema, mcpContinuumDaoExplainProposalOutputSchema, mcpContinuumDaoFetchDelegatesInputSchema, mcpContinuumDaoFetchDelegatesOutputSchema, mcpContinuumDaoFetchLiveProposalsInputSchema, mcpContinuumDaoFetchLiveProposalsOutputSchema, mcpContinuumDaoFetchProposalInputSchema, mcpContinuumDaoFetchProposalOutputSchema, mcpContinuumDaoFetchProposalStateInputSchema, mcpContinuumDaoFetchProposalStateOutputSchema, mcpContinuumDaoFetchProposalsInputSchema, mcpContinuumDaoFetchProposalsOutputSchema, mcpContinuumDaoFetchVotingPowerInputSchema, mcpContinuumDaoFetchVotingPowerOutputSchema, mcpContinuumDaoForumCreateIdeaInputSchema, mcpContinuumDaoForumCreateIdeaOutputSchema, mcpContinuumDaoForumCreateTopicInputSchema, mcpContinuumDaoForumCreateTopicOutputSchema, mcpContinuumDaoForumDeleteInputSchema, mcpContinuumDaoForumDeleteOutputSchema, mcpContinuumDaoForumFetchPostInputSchema, mcpContinuumDaoForumFetchPostOutputSchema, mcpContinuumDaoForumFetchThreadInputSchema, mcpContinuumDaoForumFetchThreadOutputSchema, mcpContinuumDaoForumMarkReadInputSchema, mcpContinuumDaoForumMarkReadOutputSchema, mcpContinuumDaoForumMarkUnreadInputSchema, mcpContinuumDaoForumMarkUnreadOutputSchema, mcpContinuumDaoForumMeInputSchema, mcpContinuumDaoForumMeOutputSchema, mcpContinuumDaoForumReactInputSchema, mcpContinuumDaoForumReactOutputSchema, mcpContinuumDaoForumRecentInputSchema, mcpContinuumDaoForumRecentOutputSchema, mcpContinuumDaoForumReplyCountInputSchema, mcpContinuumDaoForumReplyCountOutputSchema, mcpContinuumDaoForumReplyInputSchema, mcpContinuumDaoForumReplyOutputSchema, mcpContinuumDaoForumResolveInputSchema, mcpContinuumDaoForumResolveOutputSchema, mcpContinuumDaoForumSearchInputSchema, mcpContinuumDaoForumSearchOutputSchema, mcpContinuumDaoForumSectionsInputSchema, mcpContinuumDaoForumSectionsOutputSchema, mcpContinuumDaoForumSignInEligibleInputSchema, mcpContinuumDaoForumSignInEligibleOutputSchema, mcpContinuumDaoForumSignInInputSchema, mcpContinuumDaoForumSignOutInputSchema, mcpContinuumDaoForumSignOutOutputSchema, mcpContinuumDaoForumUnreadInputSchema, mcpContinuumDaoForumUnreadOutputSchema, mcpContinuumDaoForumUserPostIdsInputSchema, mcpContinuumDaoForumUserPostIdsOutputSchema, mcpContinuumDaoIncreaseAmountInputSchema, mcpContinuumDaoIncreaseUnlockTimeInputSchema, mcpContinuumDaoMergeInputSchema, mcpContinuumDaoMpaFlagInputSchema, mcpContinuumDaoMpaFlagOutputSchema, mcpContinuumDaoMpaListingInputSchema, mcpContinuumDaoMpaListingOutputSchema, mcpContinuumDaoMpaMailboxListInputSchema, mcpContinuumDaoMpaMailboxListOutputSchema, mcpContinuumDaoMpaMailboxOpenInputSchema, mcpContinuumDaoMpaMailboxOpenOutputSchema, mcpContinuumDaoMpaMailboxSendInputSchema, mcpContinuumDaoMpaMailboxSendOutputSchema, mcpContinuumDaoMpaRetractInputSchema, mcpContinuumDaoMpaRetractOutputSchema, mcpContinuumDaoProposalIdInputSchema, mcpContinuumDaoProposeBravoInputSchema, mcpContinuumDaoProposeDeltaInputSchema, mcpContinuumDaoRegisterProposalInputSchema, mcpContinuumDaoRegisterProposalOutputSchema, mcpContinuumDaoRequestDetachInputSchema, mcpContinuumDaoSplitInputSchema, mcpContinuumDaoTechnocoreBindInputSchema, mcpContinuumDaoTechnocoreBindOutputSchema, mcpContinuumDaoTokenIdInputSchema, mcpContinuumDaoTransferInputSchema, mcpContinuumDaoUndelegateInputSchema, mcpCurveDaoBuildAddLiquidityMultisignInputSchema, mcpCurveDaoBuildGaugeDepositMultisignInputSchema, mcpCurveDaoBuildRemoveLiquidityMultisignInputSchema, mcpCurveDaoBuildSwapMultisignInputSchema, mcpCurveDaoFetchImportantPoolsInputSchema, mcpCurveDaoFetchImportantPoolsOutputSchema, mcpCurveDaoFetchLpYieldsInputSchema, mcpCurveDaoFetchLpYieldsOutputSchema, mcpCurveDaoQuoteAddLiquidityInputSchema, mcpCurveDaoQuoteAddLiquidityOutputSchema, mcpCurveDaoQuoteInputSchema, mcpCurveDaoQuoteOutputSchema, mcpCurveDaoQuoteRemoveLiquidityInputSchema, mcpCurveDaoQuoteRemoveLiquidityOutputSchema, mcpEthenaClaimInputSchema, mcpEthenaCooldownInputSchema, mcpEthenaFetchSusdeApyInputSchema, mcpEthenaFetchSusdeApyOutputSchema, mcpEthenaRedeemInputSchema, mcpEthenaStakeInputSchema, mcpEulerV2BorrowRepayInputSchema, mcpEulerV2CollateralDepositInputSchema, mcpEulerV2CollateralWithdrawInputSchema, mcpEulerV2FetchEarnVaultsInputSchema, mcpEulerV2FetchEarnVaultsOutputSchema, mcpEulerV2FetchLendVaultsInputSchema, mcpEulerV2FetchLendVaultsOutputSchema, mcpEulerV2IsolatedBorrowInputSchema, mcpEulerV2IsolatedLendInputSchema, mcpEulerV2MerklClaimInputSchema, mcpEulerV2VaultWithdrawInputSchema, mcpGmxCancelInputSchema, mcpGmxDecreaseInputSchema, mcpGmxFetchGmApyInputSchema, mcpGmxFetchGmApyOutputSchema, mcpGmxFetchGmMarketsInputSchema, mcpGmxFetchGmMarketsOutputSchema, mcpGmxFetchMarketPricesInputSchema, mcpGmxFetchMarketPricesOutputSchema, mcpGmxFetchMarketsInputSchema, mcpGmxFetchMarketsOutputSchema, mcpGmxFetchOhlcvInputSchema, mcpGmxFetchOhlcvOutputSchema, mcpGmxFetchOrdersInputSchema, mcpGmxFetchOrdersOutputSchema, mcpGmxFetchPositionsInputSchema, mcpGmxFetchPositionsOutputSchema, mcpGmxFetchStakingPowerInputSchema, mcpGmxFetchStakingPowerOutputSchema, mcpGmxGmDepositInputSchema, mcpGmxGmWithdrawInputSchema, mcpGmxIncreaseInputSchema, mcpServerSubmitOutputSchema as mcpGmxMultisignOutputSchema, mcpGmxStakeGmxInputSchema, mcpGmxUnstakeGmxInputSchema, mcpHyperliquidBridgeDepositInputSchema, mcpHyperliquidBridgeWithdrawInputSchema, mcpHyperliquidCancelInputSchema, mcpHyperliquidCloseInputSchema, mcpHyperliquidDelegateInputSchema, mcpHyperliquidFetchDelegationsInputSchema, mcpHyperliquidFetchDelegationsOutputSchema, mcpHyperliquidFetchMarketSnapshotInputSchema, mcpHyperliquidFetchMarketSnapshotOutputSchema, mcpHyperliquidFetchMarketsInputSchema, mcpHyperliquidFetchMarketsOutputSchema, mcpHyperliquidFetchOhlcvInputSchema, mcpHyperliquidFetchOhlcvOutputSchema, mcpHyperliquidFetchOpenContextInputSchema, mcpHyperliquidFetchOpenContextOutputSchema, mcpHyperliquidFetchOpenOrdersInputSchema, mcpHyperliquidFetchOpenOrdersOutputSchema, mcpHyperliquidFetchPositionsInputSchema, mcpHyperliquidFetchPositionsOutputSchema, mcpHyperliquidFetchStakingSummaryInputSchema, mcpHyperliquidFetchStakingSummaryOutputSchema, mcpHyperliquidFetchStockMarketsInputSchema, mcpHyperliquidFetchStockMarketsOutputSchema, mcpHyperliquidFetchUsdClassBalancesInputSchema, mcpHyperliquidFetchUsdClassBalancesOutputSchema, mcpHyperliquidFetchUserVaultEquitiesInputSchema, mcpHyperliquidFetchUserVaultEquitiesOutputSchema, mcpHyperliquidFetchVaultApysInputSchema, mcpHyperliquidFetchVaultApysOutputSchema, mcpHyperliquidFetchVaultsInputSchema, mcpHyperliquidFetchVaultsOutputSchema, mcpHyperliquidLimitOrderInputSchema, mcpHyperliquidSearchMarketsInputSchema, mcpHyperliquidSearchMarketsOutputSchema, mcpHyperliquidStakeInputSchema, mcpHyperliquidUndelegateInputSchema, mcpHyperliquidUnstakeInputSchema, mcpHyperliquidUpdateLeverageInputSchema, mcpHyperliquidUsdTransferInputSchema, mcpHyperliquidVaultDepositInputSchema, mcpHyperliquidVaultWithdrawInputSchema, mcpLidoClaimWithdrawalInputSchema, mcpLidoFetchStethAprInputSchema, mcpLidoFetchStethAprOutputSchema, mcpLidoRequestWithdrawalsInputSchema, mcpLidoSubmitInputSchema, mcpLidoUnwrapWstEthInputSchema, mcpLidoWrapStEthInputSchema, mcpMapleDepositInputSchema, mcpMapleFetchMarketInputSchema, mcpMapleFetchMarketOutputSchema, mcpMapleFetchMarketsInputSchema, mcpMapleFetchMarketsOutputSchema, mcpMapleRequestRedeemInputSchema, mcpMerklRewardsFetchInputSchema, mcpMerklRewardsFetchOutputSchema, mcpMorphoBlueBorrowInputSchema, mcpMorphoBlueCollateralDepositInputSchema, mcpMorphoBlueCollateralWithdrawInputSchema, mcpMorphoBlueRepayInputSchema, mcpMorphoBlueSupplyInputSchema, mcpMorphoBlueWithdrawInputSchema, mcpMorphoFetchBlueMarketsInputSchema, mcpMorphoFetchBlueMarketsOutputSchema, mcpMorphoFetchEarnVaultsInputSchema, mcpMorphoFetchEarnVaultsOutputSchema, mcpMorphoFetchMidnightBooksInputSchema, mcpMorphoFetchMidnightBooksOutputSchema, mcpMorphoFetchMidnightOffersInputSchema, mcpMorphoFetchMidnightOffersOutputSchema, mcpMorphoFetchMidnightPositionsInputSchema, mcpMorphoFetchMidnightPositionsOutputSchema, mcpMorphoFetchMidnightQuoteInputSchema, mcpMorphoFetchMidnightQuoteOutputSchema, mcpMorphoFetchPositionsInputSchema, mcpMorphoFetchPositionsOutputSchema, mcpMorphoFetchStockMarketsInputSchema, mcpMorphoFetchStockMarketsOutputSchema, mcpMorphoMerklClaimInputSchema, mcpMorphoMidnightBorrowInputSchema, mcpMorphoMidnightCancelLendOfferInputSchema, mcpMorphoMidnightLendInputSchema, mcpMorphoMidnightLendOfferInputSchema, mcpMorphoMidnightRepayInputSchema, mcpMorphoVaultDepositInputSchema, mcpMorphoVaultWithdrawInputSchema, mcpMultisignInput, multisignOutputSchema as mcpMultisignOutputSchema, mcpServerSubmitOutputSchema as mcpMultisignSubmitOutputSchema, mcpPendleBuildAddLiquidityMultisignInputSchema, mcpPendleBuildMintPyMultisignInputSchema, mcpPendleBuildMintSyMultisignInputSchema, mcpPendleBuildRedeemPyMultisignInputSchema, mcpPendleBuildRedeemRewardsMultisignInputSchema, mcpPendleBuildRedeemSyMultisignInputSchema, mcpPendleBuildRemoveLiquidityMultisignInputSchema, mcpPendleBuildSwapMultisignInputSchema, mcpPendleFetchMarketsInputSchema, mcpPendleFetchMarketsOutputSchema, mcpPendleFetchMerkleRewardsInputSchema, mcpPendleFetchMerkleRewardsOutputSchema, mcpPendleFetchPositionsInputSchema, mcpPendleFetchPositionsOutputSchema, mcpPendleFetchPricesInputSchema, mcpPendleFetchPricesOutputSchema, mcpPendleQuoteAddLiquidityInputSchema, mcpPendleQuoteMintPyInputSchema, mcpPendleQuoteMintSyInputSchema, mcpPendleQuoteOutputSchema, mcpPendleQuoteRedeemPyInputSchema, mcpPendleQuoteRedeemSyInputSchema, mcpPendleQuoteRemoveLiquidityInputSchema, mcpPendleQuoteSwapInputSchema, mcpPendleSearchAssetsInputSchema, mcpPendleSearchAssetsOutputSchema, mcpServerCommonInputSchema, mcpServerMultisignInput, mcpServerSubmitOutputSchema, mcpSkyFetchSusdsRateInputSchema, mcpSkyFetchSusdsRateOutputSchema, mcpSkyLockstakeCloseInputSchema, mcpSkyLockstakeDrawInputSchema, mcpSkyLockstakeGetRewardInputSchema, mcpSkyLockstakeStakeInputSchema, mcpSkyLockstakeWipeInputSchema, mcpSkySusdsDepositInputSchema, mcpSkySusdsRedeemInputSchema, mcpUniswapV4BuildAllowlistFinalizeMultisignInputSchema, mcpUniswapV4BuildCollectFeesMultisignInputSchema, mcpUniswapV4BuildDecreaseLiquidityMultisignInputSchema, mcpUniswapV4BuildIncreaseLiquidityMultisignInputSchema, mcpUniswapV4BuildLimitOrderMultisignInputSchema, mcpUniswapV4BuildMintLiquidityMultisignInputSchema, mcpUniswapV4BuildSwapMultisignInputSchema, mcpUniswapV4CheckPermissionsInputSchema, mcpUniswapV4CheckPermissionsOutputSchema, mcpUniswapV4CreateSwapInputSchema, mcpUniswapV4CreateSwapOutputSchema, mcpUniswapV4FetchLimitOrdersInputSchema, mcpUniswapV4FetchLimitOrdersOutputSchema, mcpUniswapV4FetchOhlcvInputSchema, mcpUniswapV4FetchOhlcvOutputSchema, mcpUniswapV4KycApplyLinkInputSchema, mcpUniswapV4KycApplyLinkOutputSchema, mcpUniswapV4LimitOrderQuoteInputSchema, mcpUniswapV4LimitOrderQuoteOutputSchema, mcpUniswapV4LpClaimInputSchema, mcpUniswapV4LpClaimOutputSchema, mcpUniswapV4LpCreatePositionInputSchema, mcpUniswapV4LpCreatePositionOutputSchema, mcpUniswapV4LpDecreaseInputSchema, mcpUniswapV4LpDecreaseOutputSchema, mcpUniswapV4LpIncreaseInputSchema, mcpUniswapV4LpIncreaseOutputSchema, mcpUniswapV4LpListPoolsInputSchema, mcpUniswapV4LpListPoolsOutputSchema, mcpUniswapV4LpListPositionsInputSchema, mcpUniswapV4LpListPositionsOutputSchema, mcpUniswapV4QuoteInputSchema, mcpUniswapV4QuoteOutputSchema, mcpUniswapV4RegisterPositionFromMintTxInputSchema, mcpUniswapV4RegisterPositionFromMintTxOutputSchema, mcpUniswapV4RegisterPositionNftInputSchema, mcpUniswapV4RegisterPositionNftOutputSchema, mcpVeniceBurnDiemInputSchema, mcpVeniceCompleteUnstakeDiemInputSchema, mcpVeniceCompleteUnstakeSvvvInputSchema, mcpVeniceInitiateUnstakeDiemInputSchema, mcpVeniceInitiateUnstakeSvvvInputSchema, mcpVeniceListModelsInputSchema, mcpVeniceListModelsOutputSchema, mcpVeniceMintDiemInputSchema, mcpVeniceReadMintDiemPreviewInputSchema, mcpVeniceReadMintDiemPreviewOutputSchema, mcpVeniceReadStakingStateInputSchema, mcpVeniceReadStakingStateOutputSchema, mcpVeniceStakeDiemInputSchema, mcpVeniceStakeVvvInputSchema, multisignOutputSchema, parseAgentBoolean, parseAgentEvmChainId, parseMcpToolInput, parseMcpToolOutput, parseMultisignBuilderOutput, uniswapQuoteTradeTypeSchema, zodSchemaToMcpJsonSchema };
|