@continuumdao/ctm-mpc-defi 0.2.3 → 0.2.5

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.
@@ -654,6 +654,943 @@ type McpUniswapV4QuoteOutput = z.infer<typeof mcpUniswapV4QuoteOutputSchema>;
654
654
  type McpUniswapV4CreateSwapInput = z.infer<typeof mcpUniswapV4CreateSwapInputSchema>;
655
655
  type McpUniswapV4CreateSwapOutput = z.infer<typeof mcpUniswapV4CreateSwapOutputSchema>;
656
656
  type McpUniswapV4BuildSwapMultisignInput = z.infer<typeof mcpUniswapV4BuildSwapMultisignInputSchema>;
657
+ /** MCP: POST /lp/create — poolPreset is resolved by the MCP adapter before validation. */
658
+ declare const mcpUniswapV4LpCreatePositionInputSchema: z.ZodObject<{
659
+ uniswapApiKey: z.ZodString;
660
+ walletAddress: z.ZodOptional<z.ZodString>;
661
+ chainId: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
662
+ slippageTolerance: z.ZodOptional<z.ZodNumber>;
663
+ simulateTransaction: z.ZodOptional<z.ZodBoolean>;
664
+ baseUrl: z.ZodOptional<z.ZodString>;
665
+ keyGen: z.ZodOptional<z.ZodString>;
666
+ managementNodeUrl: z.ZodOptional<z.ZodString>;
667
+ } & {
668
+ existingPool: z.ZodOptional<z.ZodObject<{
669
+ token0Address: z.ZodString;
670
+ token1Address: z.ZodString;
671
+ poolReference: z.ZodString;
672
+ }, "strip", z.ZodTypeAny, {
673
+ token0Address: string;
674
+ token1Address: string;
675
+ poolReference: string;
676
+ }, {
677
+ token0Address: string;
678
+ token1Address: string;
679
+ poolReference: string;
680
+ }>>;
681
+ newPool: z.ZodOptional<z.ZodObject<{
682
+ token0Address: z.ZodString;
683
+ token1Address: z.ZodString;
684
+ fee: z.ZodNumber;
685
+ tickSpacing: z.ZodNumber;
686
+ hooks: z.ZodOptional<z.ZodString>;
687
+ initialPrice: z.ZodString;
688
+ }, "strip", z.ZodTypeAny, {
689
+ fee: number;
690
+ tickSpacing: number;
691
+ token0Address: string;
692
+ token1Address: string;
693
+ initialPrice: string;
694
+ hooks?: string | undefined;
695
+ }, {
696
+ fee: number;
697
+ tickSpacing: number;
698
+ token0Address: string;
699
+ token1Address: string;
700
+ initialPrice: string;
701
+ hooks?: string | undefined;
702
+ }>>;
703
+ independentToken: z.ZodObject<{
704
+ tokenAddress: z.ZodString;
705
+ amount: z.ZodString;
706
+ }, "strip", z.ZodTypeAny, {
707
+ amount: string;
708
+ tokenAddress: string;
709
+ }, {
710
+ amount: string;
711
+ tokenAddress: string;
712
+ }>;
713
+ priceBounds: z.ZodOptional<z.ZodObject<{
714
+ minPrice: z.ZodString;
715
+ maxPrice: z.ZodString;
716
+ }, "strip", z.ZodTypeAny, {
717
+ minPrice: string;
718
+ maxPrice: string;
719
+ }, {
720
+ minPrice: string;
721
+ maxPrice: string;
722
+ }>>;
723
+ tickBounds: z.ZodOptional<z.ZodObject<{
724
+ tickLower: z.ZodNumber;
725
+ tickUpper: z.ZodNumber;
726
+ }, "strip", z.ZodTypeAny, {
727
+ tickLower: number;
728
+ tickUpper: number;
729
+ }, {
730
+ tickLower: number;
731
+ tickUpper: number;
732
+ }>>;
733
+ }, "strip", z.ZodTypeAny, {
734
+ chainId: string | number;
735
+ uniswapApiKey: string;
736
+ independentToken: {
737
+ amount: string;
738
+ tokenAddress: string;
739
+ };
740
+ keyGen?: string | undefined;
741
+ managementNodeUrl?: string | undefined;
742
+ baseUrl?: string | undefined;
743
+ slippageTolerance?: number | undefined;
744
+ existingPool?: {
745
+ token0Address: string;
746
+ token1Address: string;
747
+ poolReference: string;
748
+ } | undefined;
749
+ walletAddress?: string | undefined;
750
+ simulateTransaction?: boolean | undefined;
751
+ newPool?: {
752
+ fee: number;
753
+ tickSpacing: number;
754
+ token0Address: string;
755
+ token1Address: string;
756
+ initialPrice: string;
757
+ hooks?: string | undefined;
758
+ } | undefined;
759
+ priceBounds?: {
760
+ minPrice: string;
761
+ maxPrice: string;
762
+ } | undefined;
763
+ tickBounds?: {
764
+ tickLower: number;
765
+ tickUpper: number;
766
+ } | undefined;
767
+ }, {
768
+ chainId: string | number;
769
+ uniswapApiKey: string;
770
+ independentToken: {
771
+ amount: string;
772
+ tokenAddress: string;
773
+ };
774
+ keyGen?: string | undefined;
775
+ managementNodeUrl?: string | undefined;
776
+ baseUrl?: string | undefined;
777
+ slippageTolerance?: number | undefined;
778
+ existingPool?: {
779
+ token0Address: string;
780
+ token1Address: string;
781
+ poolReference: string;
782
+ } | undefined;
783
+ walletAddress?: string | undefined;
784
+ simulateTransaction?: boolean | undefined;
785
+ newPool?: {
786
+ fee: number;
787
+ tickSpacing: number;
788
+ token0Address: string;
789
+ token1Address: string;
790
+ initialPrice: string;
791
+ hooks?: string | undefined;
792
+ } | undefined;
793
+ priceBounds?: {
794
+ minPrice: string;
795
+ maxPrice: string;
796
+ } | undefined;
797
+ tickBounds?: {
798
+ tickLower: number;
799
+ tickUpper: number;
800
+ } | undefined;
801
+ }>;
802
+ /** MCP: list curated standard V4 LP pools (poolReference computed from pool key). */
803
+ declare const mcpUniswapV4LpListPoolsInputSchema: z.ZodObject<{
804
+ chainId: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
805
+ pair: z.ZodOptional<z.ZodString>;
806
+ }, "strip", z.ZodTypeAny, {
807
+ chainId: string | number;
808
+ pair?: string | undefined;
809
+ }, {
810
+ chainId: string | number;
811
+ pair?: string | undefined;
812
+ }>;
813
+ declare const mcpUniswapV4LpListPoolsOutputSchema: z.ZodObject<{
814
+ chainId: z.ZodNumber;
815
+ chainLabel: z.ZodString;
816
+ pools: z.ZodArray<z.ZodObject<{
817
+ presetId: z.ZodString;
818
+ pairSlug: z.ZodString;
819
+ pairLabel: z.ZodString;
820
+ fee: z.ZodNumber;
821
+ feeLabel: z.ZodString;
822
+ tickSpacing: z.ZodNumber;
823
+ token0Symbol: z.ZodString;
824
+ token1Symbol: z.ZodString;
825
+ token0Address: z.ZodString;
826
+ token1Address: z.ZodString;
827
+ poolReference: z.ZodString;
828
+ hooks: z.ZodString;
829
+ nativeWrapped: z.ZodOptional<z.ZodString>;
830
+ usesNativeEth: z.ZodBoolean;
831
+ }, "strip", z.ZodTypeAny, {
832
+ hooks: string;
833
+ fee: number;
834
+ tickSpacing: number;
835
+ token0Address: string;
836
+ token1Address: string;
837
+ poolReference: string;
838
+ presetId: string;
839
+ pairSlug: string;
840
+ pairLabel: string;
841
+ feeLabel: string;
842
+ token0Symbol: string;
843
+ token1Symbol: string;
844
+ usesNativeEth: boolean;
845
+ nativeWrapped?: string | undefined;
846
+ }, {
847
+ hooks: string;
848
+ fee: number;
849
+ tickSpacing: number;
850
+ token0Address: string;
851
+ token1Address: string;
852
+ poolReference: string;
853
+ presetId: string;
854
+ pairSlug: string;
855
+ pairLabel: string;
856
+ feeLabel: string;
857
+ token0Symbol: string;
858
+ token1Symbol: string;
859
+ usesNativeEth: boolean;
860
+ nativeWrapped?: string | undefined;
861
+ }>, "many">;
862
+ notes: z.ZodString;
863
+ }, "strip", z.ZodTypeAny, {
864
+ chainId: number;
865
+ chainLabel: string;
866
+ pools: {
867
+ hooks: string;
868
+ fee: number;
869
+ tickSpacing: number;
870
+ token0Address: string;
871
+ token1Address: string;
872
+ poolReference: string;
873
+ presetId: string;
874
+ pairSlug: string;
875
+ pairLabel: string;
876
+ feeLabel: string;
877
+ token0Symbol: string;
878
+ token1Symbol: string;
879
+ usesNativeEth: boolean;
880
+ nativeWrapped?: string | undefined;
881
+ }[];
882
+ notes: string;
883
+ }, {
884
+ chainId: number;
885
+ chainLabel: string;
886
+ pools: {
887
+ hooks: string;
888
+ fee: number;
889
+ tickSpacing: number;
890
+ token0Address: string;
891
+ token1Address: string;
892
+ poolReference: string;
893
+ presetId: string;
894
+ pairSlug: string;
895
+ pairLabel: string;
896
+ feeLabel: string;
897
+ token0Symbol: string;
898
+ token1Symbol: string;
899
+ usesNativeEth: boolean;
900
+ nativeWrapped?: string | undefined;
901
+ }[];
902
+ notes: string;
903
+ }>;
904
+ declare const mcpUniswapV4LpCreatePositionOutputSchema: z.ZodRecord<z.ZodString, z.ZodUnknown>;
905
+ /** MCP: POST /lp/increase */
906
+ declare const mcpUniswapV4LpIncreaseInputSchema: z.ZodObject<{
907
+ uniswapApiKey: z.ZodString;
908
+ walletAddress: z.ZodOptional<z.ZodString>;
909
+ chainId: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
910
+ slippageTolerance: z.ZodOptional<z.ZodNumber>;
911
+ simulateTransaction: z.ZodOptional<z.ZodBoolean>;
912
+ baseUrl: z.ZodOptional<z.ZodString>;
913
+ keyGen: z.ZodOptional<z.ZodString>;
914
+ managementNodeUrl: z.ZodOptional<z.ZodString>;
915
+ } & {
916
+ token0Address: z.ZodString;
917
+ token1Address: z.ZodString;
918
+ nftTokenId: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
919
+ independentToken: z.ZodObject<{
920
+ tokenAddress: z.ZodString;
921
+ amount: z.ZodString;
922
+ }, "strip", z.ZodTypeAny, {
923
+ amount: string;
924
+ tokenAddress: string;
925
+ }, {
926
+ amount: string;
927
+ tokenAddress: string;
928
+ }>;
929
+ }, "strip", z.ZodTypeAny, {
930
+ chainId: string | number;
931
+ uniswapApiKey: string;
932
+ independentToken: {
933
+ amount: string;
934
+ tokenAddress: string;
935
+ };
936
+ token0Address: string;
937
+ token1Address: string;
938
+ nftTokenId: string | number;
939
+ keyGen?: string | undefined;
940
+ managementNodeUrl?: string | undefined;
941
+ baseUrl?: string | undefined;
942
+ slippageTolerance?: number | undefined;
943
+ walletAddress?: string | undefined;
944
+ simulateTransaction?: boolean | undefined;
945
+ }, {
946
+ chainId: string | number;
947
+ uniswapApiKey: string;
948
+ independentToken: {
949
+ amount: string;
950
+ tokenAddress: string;
951
+ };
952
+ token0Address: string;
953
+ token1Address: string;
954
+ nftTokenId: string | number;
955
+ keyGen?: string | undefined;
956
+ managementNodeUrl?: string | undefined;
957
+ baseUrl?: string | undefined;
958
+ slippageTolerance?: number | undefined;
959
+ walletAddress?: string | undefined;
960
+ simulateTransaction?: boolean | undefined;
961
+ }>;
962
+ declare const mcpUniswapV4LpIncreaseOutputSchema: z.ZodRecord<z.ZodString, z.ZodUnknown>;
963
+ /** MCP: POST /lp/decrease */
964
+ declare const mcpUniswapV4LpDecreaseInputSchema: z.ZodObject<{
965
+ uniswapApiKey: z.ZodString;
966
+ walletAddress: z.ZodOptional<z.ZodString>;
967
+ chainId: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
968
+ slippageTolerance: z.ZodOptional<z.ZodNumber>;
969
+ simulateTransaction: z.ZodOptional<z.ZodBoolean>;
970
+ baseUrl: z.ZodOptional<z.ZodString>;
971
+ keyGen: z.ZodOptional<z.ZodString>;
972
+ managementNodeUrl: z.ZodOptional<z.ZodString>;
973
+ } & {
974
+ token0Address: z.ZodString;
975
+ token1Address: z.ZodString;
976
+ nftTokenId: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
977
+ liquidityPercentageToDecrease: z.ZodNumber;
978
+ }, "strip", z.ZodTypeAny, {
979
+ chainId: string | number;
980
+ uniswapApiKey: string;
981
+ token0Address: string;
982
+ token1Address: string;
983
+ nftTokenId: string | number;
984
+ liquidityPercentageToDecrease: number;
985
+ keyGen?: string | undefined;
986
+ managementNodeUrl?: string | undefined;
987
+ baseUrl?: string | undefined;
988
+ slippageTolerance?: number | undefined;
989
+ walletAddress?: string | undefined;
990
+ simulateTransaction?: boolean | undefined;
991
+ }, {
992
+ chainId: string | number;
993
+ uniswapApiKey: string;
994
+ token0Address: string;
995
+ token1Address: string;
996
+ nftTokenId: string | number;
997
+ liquidityPercentageToDecrease: number;
998
+ keyGen?: string | undefined;
999
+ managementNodeUrl?: string | undefined;
1000
+ baseUrl?: string | undefined;
1001
+ slippageTolerance?: number | undefined;
1002
+ walletAddress?: string | undefined;
1003
+ simulateTransaction?: boolean | undefined;
1004
+ }>;
1005
+ declare const mcpUniswapV4LpDecreaseOutputSchema: z.ZodRecord<z.ZodString, z.ZodUnknown>;
1006
+ /** MCP: POST /lp/claim */
1007
+ declare const mcpUniswapV4LpClaimInputSchema: z.ZodObject<{
1008
+ uniswapApiKey: z.ZodString;
1009
+ walletAddress: z.ZodOptional<z.ZodString>;
1010
+ chainId: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
1011
+ slippageTolerance: z.ZodOptional<z.ZodNumber>;
1012
+ simulateTransaction: z.ZodOptional<z.ZodBoolean>;
1013
+ baseUrl: z.ZodOptional<z.ZodString>;
1014
+ keyGen: z.ZodOptional<z.ZodString>;
1015
+ managementNodeUrl: z.ZodOptional<z.ZodString>;
1016
+ } & {
1017
+ tokenId: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
1018
+ }, "strip", z.ZodTypeAny, {
1019
+ chainId: string | number;
1020
+ uniswapApiKey: string;
1021
+ tokenId: string | number;
1022
+ keyGen?: string | undefined;
1023
+ managementNodeUrl?: string | undefined;
1024
+ baseUrl?: string | undefined;
1025
+ slippageTolerance?: number | undefined;
1026
+ walletAddress?: string | undefined;
1027
+ simulateTransaction?: boolean | undefined;
1028
+ }, {
1029
+ chainId: string | number;
1030
+ uniswapApiKey: string;
1031
+ tokenId: string | number;
1032
+ keyGen?: string | undefined;
1033
+ managementNodeUrl?: string | undefined;
1034
+ baseUrl?: string | undefined;
1035
+ slippageTolerance?: number | undefined;
1036
+ walletAddress?: string | undefined;
1037
+ simulateTransaction?: boolean | undefined;
1038
+ }>;
1039
+ declare const mcpUniswapV4LpClaimOutputSchema: z.ZodRecord<z.ZodString, z.ZodUnknown>;
1040
+ /** MCP: list position NFTs from node token registry (no RPC log scan). */
1041
+ declare const mcpUniswapV4LpListPositionsInputSchema: z.ZodObject<{
1042
+ chainId: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
1043
+ keyGenId: z.ZodOptional<z.ZodString>;
1044
+ walletAddress: z.ZodOptional<z.ZodString>;
1045
+ positionManagerAddress: z.ZodOptional<z.ZodString>;
1046
+ }, "strip", z.ZodTypeAny, {
1047
+ chainId: string | number;
1048
+ walletAddress?: string | undefined;
1049
+ keyGenId?: string | undefined;
1050
+ positionManagerAddress?: string | undefined;
1051
+ }, {
1052
+ chainId: string | number;
1053
+ walletAddress?: string | undefined;
1054
+ keyGenId?: string | undefined;
1055
+ positionManagerAddress?: string | undefined;
1056
+ }>;
1057
+ declare const mcpUniswapV4LpListPositionsOutputSchema: z.ZodObject<{
1058
+ source: z.ZodLiteral<"token_registry">;
1059
+ positions: z.ZodArray<z.ZodObject<{
1060
+ tokenId: z.ZodString;
1061
+ positionManager: z.ZodString;
1062
+ owner: z.ZodString;
1063
+ name: z.ZodOptional<z.ZodString>;
1064
+ symbol: z.ZodOptional<z.ZodString>;
1065
+ }, "strip", z.ZodTypeAny, {
1066
+ owner: string;
1067
+ tokenId: string;
1068
+ positionManager: string;
1069
+ symbol?: string | undefined;
1070
+ name?: string | undefined;
1071
+ }, {
1072
+ owner: string;
1073
+ tokenId: string;
1074
+ positionManager: string;
1075
+ symbol?: string | undefined;
1076
+ name?: string | undefined;
1077
+ }>, "many">;
1078
+ }, "strip", z.ZodTypeAny, {
1079
+ source: "token_registry";
1080
+ positions: {
1081
+ owner: string;
1082
+ tokenId: string;
1083
+ positionManager: string;
1084
+ symbol?: string | undefined;
1085
+ name?: string | undefined;
1086
+ }[];
1087
+ }, {
1088
+ source: "token_registry";
1089
+ positions: {
1090
+ owner: string;
1091
+ tokenId: string;
1092
+ positionManager: string;
1093
+ symbol?: string | undefined;
1094
+ name?: string | undefined;
1095
+ }[];
1096
+ }>;
1097
+ /** MCP: save a minted position NFT in the node token registry (management-signed). */
1098
+ declare const mcpUniswapV4RegisterPositionNftInputSchema: z.ZodObject<{
1099
+ chainId: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
1100
+ tokenId: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
1101
+ keyGenId: z.ZodOptional<z.ZodString>;
1102
+ positionManagerAddress: z.ZodOptional<z.ZodString>;
1103
+ name: z.ZodOptional<z.ZodString>;
1104
+ symbol: z.ZodOptional<z.ZodString>;
1105
+ tokenURI: z.ZodOptional<z.ZodString>;
1106
+ }, "strip", z.ZodTypeAny, {
1107
+ chainId: string | number;
1108
+ tokenId: string | number;
1109
+ symbol?: string | undefined;
1110
+ name?: string | undefined;
1111
+ keyGenId?: string | undefined;
1112
+ positionManagerAddress?: string | undefined;
1113
+ tokenURI?: string | undefined;
1114
+ }, {
1115
+ chainId: string | number;
1116
+ tokenId: string | number;
1117
+ symbol?: string | undefined;
1118
+ name?: string | undefined;
1119
+ keyGenId?: string | undefined;
1120
+ positionManagerAddress?: string | undefined;
1121
+ tokenURI?: string | undefined;
1122
+ }>;
1123
+ declare const mcpUniswapV4RegisterPositionNftOutputSchema: z.ZodObject<{
1124
+ message: z.ZodString;
1125
+ tokenId: z.ZodString;
1126
+ positionManager: z.ZodString;
1127
+ }, "strip", z.ZodTypeAny, {
1128
+ message: string;
1129
+ tokenId: string;
1130
+ positionManager: string;
1131
+ }, {
1132
+ message: string;
1133
+ tokenId: string;
1134
+ positionManager: string;
1135
+ }>;
1136
+ /** MCP: parse mint tx receipt and register position NFT (management-signed). */
1137
+ declare const mcpUniswapV4RegisterPositionFromMintTxInputSchema: z.ZodObject<{
1138
+ chainId: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
1139
+ txHash: z.ZodString;
1140
+ keyGenId: z.ZodOptional<z.ZodString>;
1141
+ walletAddress: z.ZodOptional<z.ZodString>;
1142
+ rpcUrl: z.ZodOptional<z.ZodString>;
1143
+ positionManagerAddress: z.ZodOptional<z.ZodString>;
1144
+ }, "strip", z.ZodTypeAny, {
1145
+ chainId: string | number;
1146
+ txHash: string;
1147
+ rpcUrl?: string | undefined;
1148
+ walletAddress?: string | undefined;
1149
+ keyGenId?: string | undefined;
1150
+ positionManagerAddress?: string | undefined;
1151
+ }, {
1152
+ chainId: string | number;
1153
+ txHash: string;
1154
+ rpcUrl?: string | undefined;
1155
+ walletAddress?: string | undefined;
1156
+ keyGenId?: string | undefined;
1157
+ positionManagerAddress?: string | undefined;
1158
+ }>;
1159
+ declare const mcpUniswapV4RegisterPositionFromMintTxOutputSchema: z.ZodObject<{
1160
+ message: z.ZodString;
1161
+ tokenId: z.ZodString;
1162
+ positionManager: z.ZodString;
1163
+ registered: z.ZodBoolean;
1164
+ }, "strip", z.ZodTypeAny, {
1165
+ message: string;
1166
+ tokenId: string;
1167
+ positionManager: string;
1168
+ registered: boolean;
1169
+ }, {
1170
+ message: string;
1171
+ tokenId: string;
1172
+ positionManager: string;
1173
+ registered: boolean;
1174
+ }>;
1175
+ declare const mcpUniswapV4BuildMintLiquidityMultisignInputSchema: z.ZodObject<{
1176
+ keyGen: z.ZodObject<{
1177
+ pubkeyhex: z.ZodString;
1178
+ keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1179
+ ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1180
+ }, "strip", z.ZodTypeAny, {
1181
+ pubkeyhex: string;
1182
+ keylist?: string[] | undefined;
1183
+ ClientKeys?: Record<string, string> | undefined;
1184
+ }, {
1185
+ pubkeyhex: string;
1186
+ keylist?: string[] | undefined;
1187
+ ClientKeys?: Record<string, string> | undefined;
1188
+ }>;
1189
+ purposeText: z.ZodString;
1190
+ useCustomGas: z.ZodBoolean;
1191
+ chainId: z.ZodNumber;
1192
+ rpcUrl: z.ZodString;
1193
+ executorAddress: z.ZodString;
1194
+ chainDetail: z.ZodObject<{
1195
+ legacy: z.ZodOptional<z.ZodBoolean>;
1196
+ gasLimit: z.ZodOptional<z.ZodNumber>;
1197
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
1198
+ gasPrice: z.ZodOptional<z.ZodNumber>;
1199
+ baseFee: z.ZodOptional<z.ZodNumber>;
1200
+ priorityFee: z.ZodOptional<z.ZodNumber>;
1201
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
1202
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
1203
+ legacy: z.ZodOptional<z.ZodBoolean>;
1204
+ gasLimit: z.ZodOptional<z.ZodNumber>;
1205
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
1206
+ gasPrice: z.ZodOptional<z.ZodNumber>;
1207
+ baseFee: z.ZodOptional<z.ZodNumber>;
1208
+ priorityFee: z.ZodOptional<z.ZodNumber>;
1209
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
1210
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
1211
+ legacy: z.ZodOptional<z.ZodBoolean>;
1212
+ gasLimit: z.ZodOptional<z.ZodNumber>;
1213
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
1214
+ gasPrice: z.ZodOptional<z.ZodNumber>;
1215
+ baseFee: z.ZodOptional<z.ZodNumber>;
1216
+ priorityFee: z.ZodOptional<z.ZodNumber>;
1217
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
1218
+ }, z.ZodTypeAny, "passthrough">>;
1219
+ customGasChainDetails: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1220
+ } & {
1221
+ lpResponse: z.ZodRecord<z.ZodString, z.ZodUnknown>;
1222
+ nativeWrapped: z.ZodOptional<z.ZodString>;
1223
+ poolReference: z.ZodOptional<z.ZodString>;
1224
+ }, "strip", z.ZodTypeAny, {
1225
+ keyGen: {
1226
+ pubkeyhex: string;
1227
+ keylist?: string[] | undefined;
1228
+ ClientKeys?: Record<string, string> | undefined;
1229
+ };
1230
+ purposeText: string;
1231
+ useCustomGas: boolean;
1232
+ chainId: number;
1233
+ rpcUrl: string;
1234
+ executorAddress: string;
1235
+ chainDetail: {
1236
+ legacy?: boolean | undefined;
1237
+ gasPrice?: number | undefined;
1238
+ gasLimit?: number | undefined;
1239
+ gasMultiplier?: number | undefined;
1240
+ baseFee?: number | undefined;
1241
+ priorityFee?: number | undefined;
1242
+ baseFeeMultiplier?: number | undefined;
1243
+ } & {
1244
+ [k: string]: unknown;
1245
+ };
1246
+ lpResponse: Record<string, unknown>;
1247
+ customGasChainDetails?: Record<string, unknown> | undefined;
1248
+ nativeWrapped?: string | undefined;
1249
+ poolReference?: string | undefined;
1250
+ }, {
1251
+ keyGen: {
1252
+ pubkeyhex: string;
1253
+ keylist?: string[] | undefined;
1254
+ ClientKeys?: Record<string, string> | undefined;
1255
+ };
1256
+ purposeText: string;
1257
+ useCustomGas: boolean;
1258
+ chainId: number;
1259
+ rpcUrl: string;
1260
+ executorAddress: string;
1261
+ chainDetail: {
1262
+ legacy?: boolean | undefined;
1263
+ gasPrice?: number | undefined;
1264
+ gasLimit?: number | undefined;
1265
+ gasMultiplier?: number | undefined;
1266
+ baseFee?: number | undefined;
1267
+ priorityFee?: number | undefined;
1268
+ baseFeeMultiplier?: number | undefined;
1269
+ } & {
1270
+ [k: string]: unknown;
1271
+ };
1272
+ lpResponse: Record<string, unknown>;
1273
+ customGasChainDetails?: Record<string, unknown> | undefined;
1274
+ nativeWrapped?: string | undefined;
1275
+ poolReference?: string | undefined;
1276
+ }>;
1277
+ declare const mcpUniswapV4BuildIncreaseLiquidityMultisignInputSchema: z.ZodObject<{
1278
+ keyGen: z.ZodObject<{
1279
+ pubkeyhex: z.ZodString;
1280
+ keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1281
+ ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1282
+ }, "strip", z.ZodTypeAny, {
1283
+ pubkeyhex: string;
1284
+ keylist?: string[] | undefined;
1285
+ ClientKeys?: Record<string, string> | undefined;
1286
+ }, {
1287
+ pubkeyhex: string;
1288
+ keylist?: string[] | undefined;
1289
+ ClientKeys?: Record<string, string> | undefined;
1290
+ }>;
1291
+ purposeText: z.ZodString;
1292
+ useCustomGas: z.ZodBoolean;
1293
+ chainId: z.ZodNumber;
1294
+ rpcUrl: z.ZodString;
1295
+ executorAddress: z.ZodString;
1296
+ chainDetail: z.ZodObject<{
1297
+ legacy: z.ZodOptional<z.ZodBoolean>;
1298
+ gasLimit: z.ZodOptional<z.ZodNumber>;
1299
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
1300
+ gasPrice: z.ZodOptional<z.ZodNumber>;
1301
+ baseFee: z.ZodOptional<z.ZodNumber>;
1302
+ priorityFee: z.ZodOptional<z.ZodNumber>;
1303
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
1304
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
1305
+ legacy: z.ZodOptional<z.ZodBoolean>;
1306
+ gasLimit: z.ZodOptional<z.ZodNumber>;
1307
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
1308
+ gasPrice: z.ZodOptional<z.ZodNumber>;
1309
+ baseFee: z.ZodOptional<z.ZodNumber>;
1310
+ priorityFee: z.ZodOptional<z.ZodNumber>;
1311
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
1312
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
1313
+ legacy: z.ZodOptional<z.ZodBoolean>;
1314
+ gasLimit: z.ZodOptional<z.ZodNumber>;
1315
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
1316
+ gasPrice: z.ZodOptional<z.ZodNumber>;
1317
+ baseFee: z.ZodOptional<z.ZodNumber>;
1318
+ priorityFee: z.ZodOptional<z.ZodNumber>;
1319
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
1320
+ }, z.ZodTypeAny, "passthrough">>;
1321
+ customGasChainDetails: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1322
+ } & {
1323
+ nftTokenId: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
1324
+ lpResponse: z.ZodRecord<z.ZodString, z.ZodUnknown>;
1325
+ nativeWrapped: z.ZodOptional<z.ZodString>;
1326
+ poolReference: z.ZodOptional<z.ZodString>;
1327
+ }, "strip", z.ZodTypeAny, {
1328
+ keyGen: {
1329
+ pubkeyhex: string;
1330
+ keylist?: string[] | undefined;
1331
+ ClientKeys?: Record<string, string> | undefined;
1332
+ };
1333
+ purposeText: string;
1334
+ useCustomGas: boolean;
1335
+ chainId: number;
1336
+ rpcUrl: string;
1337
+ executorAddress: string;
1338
+ chainDetail: {
1339
+ legacy?: boolean | undefined;
1340
+ gasPrice?: number | undefined;
1341
+ gasLimit?: number | undefined;
1342
+ gasMultiplier?: number | undefined;
1343
+ baseFee?: number | undefined;
1344
+ priorityFee?: number | undefined;
1345
+ baseFeeMultiplier?: number | undefined;
1346
+ } & {
1347
+ [k: string]: unknown;
1348
+ };
1349
+ nftTokenId: string | number;
1350
+ lpResponse: Record<string, unknown>;
1351
+ customGasChainDetails?: Record<string, unknown> | undefined;
1352
+ nativeWrapped?: string | undefined;
1353
+ poolReference?: string | undefined;
1354
+ }, {
1355
+ keyGen: {
1356
+ pubkeyhex: string;
1357
+ keylist?: string[] | undefined;
1358
+ ClientKeys?: Record<string, string> | undefined;
1359
+ };
1360
+ purposeText: string;
1361
+ useCustomGas: boolean;
1362
+ chainId: number;
1363
+ rpcUrl: string;
1364
+ executorAddress: string;
1365
+ chainDetail: {
1366
+ legacy?: boolean | undefined;
1367
+ gasPrice?: number | undefined;
1368
+ gasLimit?: number | undefined;
1369
+ gasMultiplier?: number | undefined;
1370
+ baseFee?: number | undefined;
1371
+ priorityFee?: number | undefined;
1372
+ baseFeeMultiplier?: number | undefined;
1373
+ } & {
1374
+ [k: string]: unknown;
1375
+ };
1376
+ nftTokenId: string | number;
1377
+ lpResponse: Record<string, unknown>;
1378
+ customGasChainDetails?: Record<string, unknown> | undefined;
1379
+ nativeWrapped?: string | undefined;
1380
+ poolReference?: string | undefined;
1381
+ }>;
1382
+ declare const mcpUniswapV4BuildDecreaseLiquidityMultisignInputSchema: z.ZodObject<{
1383
+ keyGen: z.ZodObject<{
1384
+ pubkeyhex: z.ZodString;
1385
+ keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1386
+ ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1387
+ }, "strip", z.ZodTypeAny, {
1388
+ pubkeyhex: string;
1389
+ keylist?: string[] | undefined;
1390
+ ClientKeys?: Record<string, string> | undefined;
1391
+ }, {
1392
+ pubkeyhex: string;
1393
+ keylist?: string[] | undefined;
1394
+ ClientKeys?: Record<string, string> | undefined;
1395
+ }>;
1396
+ purposeText: z.ZodString;
1397
+ useCustomGas: z.ZodBoolean;
1398
+ chainId: z.ZodNumber;
1399
+ rpcUrl: z.ZodString;
1400
+ executorAddress: z.ZodString;
1401
+ chainDetail: z.ZodObject<{
1402
+ legacy: z.ZodOptional<z.ZodBoolean>;
1403
+ gasLimit: z.ZodOptional<z.ZodNumber>;
1404
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
1405
+ gasPrice: z.ZodOptional<z.ZodNumber>;
1406
+ baseFee: z.ZodOptional<z.ZodNumber>;
1407
+ priorityFee: z.ZodOptional<z.ZodNumber>;
1408
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
1409
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
1410
+ legacy: z.ZodOptional<z.ZodBoolean>;
1411
+ gasLimit: z.ZodOptional<z.ZodNumber>;
1412
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
1413
+ gasPrice: z.ZodOptional<z.ZodNumber>;
1414
+ baseFee: z.ZodOptional<z.ZodNumber>;
1415
+ priorityFee: z.ZodOptional<z.ZodNumber>;
1416
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
1417
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
1418
+ legacy: z.ZodOptional<z.ZodBoolean>;
1419
+ gasLimit: z.ZodOptional<z.ZodNumber>;
1420
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
1421
+ gasPrice: z.ZodOptional<z.ZodNumber>;
1422
+ baseFee: z.ZodOptional<z.ZodNumber>;
1423
+ priorityFee: z.ZodOptional<z.ZodNumber>;
1424
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
1425
+ }, z.ZodTypeAny, "passthrough">>;
1426
+ customGasChainDetails: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1427
+ } & {
1428
+ nftTokenId: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
1429
+ lpResponse: z.ZodRecord<z.ZodString, z.ZodUnknown>;
1430
+ nativeWrapped: z.ZodOptional<z.ZodString>;
1431
+ poolReference: z.ZodOptional<z.ZodString>;
1432
+ }, "strip", z.ZodTypeAny, {
1433
+ keyGen: {
1434
+ pubkeyhex: string;
1435
+ keylist?: string[] | undefined;
1436
+ ClientKeys?: Record<string, string> | undefined;
1437
+ };
1438
+ purposeText: string;
1439
+ useCustomGas: boolean;
1440
+ chainId: number;
1441
+ rpcUrl: string;
1442
+ executorAddress: string;
1443
+ chainDetail: {
1444
+ legacy?: boolean | undefined;
1445
+ gasPrice?: number | undefined;
1446
+ gasLimit?: number | undefined;
1447
+ gasMultiplier?: number | undefined;
1448
+ baseFee?: number | undefined;
1449
+ priorityFee?: number | undefined;
1450
+ baseFeeMultiplier?: number | undefined;
1451
+ } & {
1452
+ [k: string]: unknown;
1453
+ };
1454
+ nftTokenId: string | number;
1455
+ lpResponse: Record<string, unknown>;
1456
+ customGasChainDetails?: Record<string, unknown> | undefined;
1457
+ nativeWrapped?: string | undefined;
1458
+ poolReference?: string | undefined;
1459
+ }, {
1460
+ keyGen: {
1461
+ pubkeyhex: string;
1462
+ keylist?: string[] | undefined;
1463
+ ClientKeys?: Record<string, string> | undefined;
1464
+ };
1465
+ purposeText: string;
1466
+ useCustomGas: boolean;
1467
+ chainId: number;
1468
+ rpcUrl: string;
1469
+ executorAddress: string;
1470
+ chainDetail: {
1471
+ legacy?: boolean | undefined;
1472
+ gasPrice?: number | undefined;
1473
+ gasLimit?: number | undefined;
1474
+ gasMultiplier?: number | undefined;
1475
+ baseFee?: number | undefined;
1476
+ priorityFee?: number | undefined;
1477
+ baseFeeMultiplier?: number | undefined;
1478
+ } & {
1479
+ [k: string]: unknown;
1480
+ };
1481
+ nftTokenId: string | number;
1482
+ lpResponse: Record<string, unknown>;
1483
+ customGasChainDetails?: Record<string, unknown> | undefined;
1484
+ nativeWrapped?: string | undefined;
1485
+ poolReference?: string | undefined;
1486
+ }>;
1487
+ declare const mcpUniswapV4BuildCollectFeesMultisignInputSchema: z.ZodObject<{
1488
+ keyGen: z.ZodObject<{
1489
+ pubkeyhex: z.ZodString;
1490
+ keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1491
+ ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1492
+ }, "strip", z.ZodTypeAny, {
1493
+ pubkeyhex: string;
1494
+ keylist?: string[] | undefined;
1495
+ ClientKeys?: Record<string, string> | undefined;
1496
+ }, {
1497
+ pubkeyhex: string;
1498
+ keylist?: string[] | undefined;
1499
+ ClientKeys?: Record<string, string> | undefined;
1500
+ }>;
1501
+ purposeText: z.ZodString;
1502
+ useCustomGas: z.ZodBoolean;
1503
+ chainId: z.ZodNumber;
1504
+ rpcUrl: z.ZodString;
1505
+ executorAddress: z.ZodString;
1506
+ chainDetail: z.ZodObject<{
1507
+ legacy: z.ZodOptional<z.ZodBoolean>;
1508
+ gasLimit: z.ZodOptional<z.ZodNumber>;
1509
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
1510
+ gasPrice: z.ZodOptional<z.ZodNumber>;
1511
+ baseFee: z.ZodOptional<z.ZodNumber>;
1512
+ priorityFee: z.ZodOptional<z.ZodNumber>;
1513
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
1514
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
1515
+ legacy: z.ZodOptional<z.ZodBoolean>;
1516
+ gasLimit: z.ZodOptional<z.ZodNumber>;
1517
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
1518
+ gasPrice: z.ZodOptional<z.ZodNumber>;
1519
+ baseFee: z.ZodOptional<z.ZodNumber>;
1520
+ priorityFee: z.ZodOptional<z.ZodNumber>;
1521
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
1522
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
1523
+ legacy: z.ZodOptional<z.ZodBoolean>;
1524
+ gasLimit: z.ZodOptional<z.ZodNumber>;
1525
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
1526
+ gasPrice: z.ZodOptional<z.ZodNumber>;
1527
+ baseFee: z.ZodOptional<z.ZodNumber>;
1528
+ priorityFee: z.ZodOptional<z.ZodNumber>;
1529
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
1530
+ }, z.ZodTypeAny, "passthrough">>;
1531
+ customGasChainDetails: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1532
+ } & {
1533
+ nftTokenId: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
1534
+ lpResponse: z.ZodRecord<z.ZodString, z.ZodUnknown>;
1535
+ nativeWrapped: z.ZodOptional<z.ZodString>;
1536
+ poolReference: z.ZodOptional<z.ZodString>;
1537
+ }, "strip", z.ZodTypeAny, {
1538
+ keyGen: {
1539
+ pubkeyhex: string;
1540
+ keylist?: string[] | undefined;
1541
+ ClientKeys?: Record<string, string> | undefined;
1542
+ };
1543
+ purposeText: string;
1544
+ useCustomGas: boolean;
1545
+ chainId: number;
1546
+ rpcUrl: string;
1547
+ executorAddress: string;
1548
+ chainDetail: {
1549
+ legacy?: boolean | undefined;
1550
+ gasPrice?: number | undefined;
1551
+ gasLimit?: number | undefined;
1552
+ gasMultiplier?: number | undefined;
1553
+ baseFee?: number | undefined;
1554
+ priorityFee?: number | undefined;
1555
+ baseFeeMultiplier?: number | undefined;
1556
+ } & {
1557
+ [k: string]: unknown;
1558
+ };
1559
+ nftTokenId: string | number;
1560
+ lpResponse: Record<string, unknown>;
1561
+ customGasChainDetails?: Record<string, unknown> | undefined;
1562
+ nativeWrapped?: string | undefined;
1563
+ poolReference?: string | undefined;
1564
+ }, {
1565
+ keyGen: {
1566
+ pubkeyhex: string;
1567
+ keylist?: string[] | undefined;
1568
+ ClientKeys?: Record<string, string> | undefined;
1569
+ };
1570
+ purposeText: string;
1571
+ useCustomGas: boolean;
1572
+ chainId: number;
1573
+ rpcUrl: string;
1574
+ executorAddress: string;
1575
+ chainDetail: {
1576
+ legacy?: boolean | undefined;
1577
+ gasPrice?: number | undefined;
1578
+ gasLimit?: number | undefined;
1579
+ gasMultiplier?: number | undefined;
1580
+ baseFee?: number | undefined;
1581
+ priorityFee?: number | undefined;
1582
+ baseFeeMultiplier?: number | undefined;
1583
+ } & {
1584
+ [k: string]: unknown;
1585
+ };
1586
+ nftTokenId: string | number;
1587
+ lpResponse: Record<string, unknown>;
1588
+ customGasChainDetails?: Record<string, unknown> | undefined;
1589
+ nativeWrapped?: string | undefined;
1590
+ poolReference?: string | undefined;
1591
+ }>;
1592
+ type McpUniswapV4LpCreatePositionInput = z.infer<typeof mcpUniswapV4LpCreatePositionInputSchema>;
1593
+ type McpUniswapV4BuildMintLiquidityMultisignInput = z.infer<typeof mcpUniswapV4BuildMintLiquidityMultisignInputSchema>;
657
1594
 
658
1595
  /** Input for MCP tool `ctm_curve_dao_quote` → handler `curveDaoQuote`. */
659
1596
  declare const mcpCurveDaoQuoteInputSchema: z.ZodObject<{
@@ -1082,4 +2019,4 @@ declare function getAgentCatalog(): {
1082
2019
  };
1083
2020
  };
1084
2021
 
1085
- 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, type McpAaveV4DepositInput, type McpCurveDaoBuildSwapMultisignInput, type McpCurveDaoQuoteInput, type McpCurveDaoQuoteOutput, type McpEthenaStakeInput, type McpEulerV2IsolatedLendInput, type McpJsonSchema, type McpLidoSubmitInput, type McpMapleDepositInput, type McpSchemaProperty, type McpSkyLockstakeStakeInput, type McpToolDefinition, type McpToolHandler, type McpToolInputMap, type McpToolName, type McpToolOutputMap, type McpUniswapV4BuildSwapMultisignInput, type McpUniswapV4CreateSwapInput, type McpUniswapV4CreateSwapOutput, 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, mcpAaveV4RepayInputSchema, mcpAaveV4WithdrawInputSchema, mcpCurveDaoBuildSwapMultisignInputSchema, mcpCurveDaoQuoteInputSchema, mcpCurveDaoQuoteOutputSchema, mcpEthenaClaimInputSchema, mcpEthenaCooldownInputSchema, mcpEthenaRedeemInputSchema, mcpEthenaStakeInputSchema, mcpEulerV2BorrowRepayInputSchema, mcpEulerV2CollateralDepositInputSchema, mcpEulerV2CollateralWithdrawInputSchema, mcpEulerV2IsolatedBorrowInputSchema, mcpEulerV2IsolatedLendInputSchema, mcpEulerV2VaultWithdrawInputSchema, mcpLidoClaimWithdrawalInputSchema, mcpLidoRequestWithdrawalsInputSchema, mcpLidoSubmitInputSchema, mcpLidoUnwrapWstEthInputSchema, mcpLidoWrapStEthInputSchema, mcpMapleDepositInputSchema, mcpMapleRequestRedeemInputSchema, mcpMultisignInput, multisignOutputSchema as mcpMultisignOutputSchema, mcpServerCommonInputSchema, mcpServerMultisignInput, mcpServerSubmitOutputSchema, mcpSkyLockstakeCloseInputSchema, mcpSkyLockstakeDrawInputSchema, mcpSkyLockstakeGetRewardInputSchema, mcpSkyLockstakeStakeInputSchema, mcpSkyLockstakeWipeInputSchema, mcpSkySusdsDepositInputSchema, mcpSkySusdsRedeemInputSchema, mcpUniswapV4BuildSwapMultisignInputSchema, mcpUniswapV4CreateSwapInputSchema, mcpUniswapV4CreateSwapOutputSchema, mcpUniswapV4QuoteInputSchema, mcpUniswapV4QuoteOutputSchema, multisignOutputSchema, parseMcpToolInput, parseMcpToolOutput, uniswapQuoteTradeTypeSchema, zodSchemaToMcpJsonSchema };
2022
+ 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, type McpAaveV4DepositInput, type McpCurveDaoBuildSwapMultisignInput, type McpCurveDaoQuoteInput, type McpCurveDaoQuoteOutput, type McpEthenaStakeInput, type McpEulerV2IsolatedLendInput, type McpJsonSchema, type McpLidoSubmitInput, type McpMapleDepositInput, type McpSchemaProperty, type McpSkyLockstakeStakeInput, type McpToolDefinition, type McpToolHandler, type McpToolInputMap, type McpToolName, type McpToolOutputMap, type McpUniswapV4BuildMintLiquidityMultisignInput, type McpUniswapV4BuildSwapMultisignInput, type McpUniswapV4CreateSwapInput, type McpUniswapV4CreateSwapOutput, 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, mcpAaveV4RepayInputSchema, mcpAaveV4WithdrawInputSchema, mcpCurveDaoBuildSwapMultisignInputSchema, mcpCurveDaoQuoteInputSchema, mcpCurveDaoQuoteOutputSchema, mcpEthenaClaimInputSchema, mcpEthenaCooldownInputSchema, mcpEthenaRedeemInputSchema, mcpEthenaStakeInputSchema, mcpEulerV2BorrowRepayInputSchema, mcpEulerV2CollateralDepositInputSchema, mcpEulerV2CollateralWithdrawInputSchema, mcpEulerV2IsolatedBorrowInputSchema, mcpEulerV2IsolatedLendInputSchema, mcpEulerV2VaultWithdrawInputSchema, mcpLidoClaimWithdrawalInputSchema, mcpLidoRequestWithdrawalsInputSchema, mcpLidoSubmitInputSchema, mcpLidoUnwrapWstEthInputSchema, mcpLidoWrapStEthInputSchema, mcpMapleDepositInputSchema, mcpMapleRequestRedeemInputSchema, mcpMultisignInput, multisignOutputSchema as mcpMultisignOutputSchema, mcpServerCommonInputSchema, mcpServerMultisignInput, mcpServerSubmitOutputSchema, mcpSkyLockstakeCloseInputSchema, mcpSkyLockstakeDrawInputSchema, mcpSkyLockstakeGetRewardInputSchema, mcpSkyLockstakeStakeInputSchema, mcpSkyLockstakeWipeInputSchema, mcpSkySusdsDepositInputSchema, mcpSkySusdsRedeemInputSchema, mcpUniswapV4BuildCollectFeesMultisignInputSchema, mcpUniswapV4BuildDecreaseLiquidityMultisignInputSchema, mcpUniswapV4BuildIncreaseLiquidityMultisignInputSchema, mcpUniswapV4BuildMintLiquidityMultisignInputSchema, mcpUniswapV4BuildSwapMultisignInputSchema, mcpUniswapV4CreateSwapInputSchema, mcpUniswapV4CreateSwapOutputSchema, mcpUniswapV4LpClaimInputSchema, mcpUniswapV4LpClaimOutputSchema, mcpUniswapV4LpCreatePositionInputSchema, mcpUniswapV4LpCreatePositionOutputSchema, mcpUniswapV4LpDecreaseInputSchema, mcpUniswapV4LpDecreaseOutputSchema, mcpUniswapV4LpIncreaseInputSchema, mcpUniswapV4LpIncreaseOutputSchema, mcpUniswapV4LpListPoolsInputSchema, mcpUniswapV4LpListPoolsOutputSchema, mcpUniswapV4LpListPositionsInputSchema, mcpUniswapV4LpListPositionsOutputSchema, mcpUniswapV4QuoteInputSchema, mcpUniswapV4QuoteOutputSchema, mcpUniswapV4RegisterPositionFromMintTxInputSchema, mcpUniswapV4RegisterPositionFromMintTxOutputSchema, mcpUniswapV4RegisterPositionNftInputSchema, mcpUniswapV4RegisterPositionNftOutputSchema, multisignOutputSchema, parseMcpToolInput, parseMcpToolOutput, uniswapQuoteTradeTypeSchema, zodSchemaToMcpJsonSchema };