@continuumdao/ctm-mpc-defi 0.2.22 → 0.2.24
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 +142 -13
- package/dist/agent/catalog.cjs.map +1 -1
- package/dist/agent/catalog.d.ts +282 -43
- package/dist/agent/catalog.js +138 -14
- package/dist/agent/catalog.js.map +1 -1
- package/dist/agent/skills/gmx/SKILL.md +30 -0
- package/dist/agent/skills/hyperliquid/SKILL.md +32 -0
- package/dist/agent/skills/uniswap-v4/SKILL.md +26 -1
- package/dist/core/index.d.ts +4 -36
- package/dist/eip712Multisign-xhXpUYp3.d.ts +36 -0
- package/dist/index.cjs +344 -12
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +344 -12
- package/dist/index.js.map +1 -1
- package/dist/protocols/evm/gmx/index.cjs +39 -0
- package/dist/protocols/evm/gmx/index.cjs.map +1 -1
- package/dist/protocols/evm/gmx/index.d.ts +21 -1
- package/dist/protocols/evm/gmx/index.js +38 -1
- package/dist/protocols/evm/gmx/index.js.map +1 -1
- package/dist/protocols/evm/hyperliquid/index.cjs +478 -208
- package/dist/protocols/evm/hyperliquid/index.cjs.map +1 -1
- package/dist/protocols/evm/hyperliquid/index.d.ts +166 -51
- package/dist/protocols/evm/hyperliquid/index.js +467 -210
- package/dist/protocols/evm/hyperliquid/index.js.map +1 -1
- package/dist/protocols/evm/permit2/index.cjs.map +1 -1
- package/dist/protocols/evm/permit2/index.js.map +1 -1
- package/dist/protocols/evm/uniswap-v4/index.cjs +734 -15
- package/dist/protocols/evm/uniswap-v4/index.cjs.map +1 -1
- package/dist/protocols/evm/uniswap-v4/index.d.ts +189 -17
- package/dist/protocols/evm/uniswap-v4/index.js +698 -16
- package/dist/protocols/evm/uniswap-v4/index.js.map +1 -1
- package/package.json +1 -1
package/dist/agent/catalog.d.ts
CHANGED
|
@@ -776,6 +776,238 @@ type McpUniswapV4QuoteOutput = z.infer<typeof mcpUniswapV4QuoteOutputSchema>;
|
|
|
776
776
|
type McpUniswapV4CreateSwapInput = z.infer<typeof mcpUniswapV4CreateSwapInputSchema>;
|
|
777
777
|
type McpUniswapV4CreateSwapOutput = z.infer<typeof mcpUniswapV4CreateSwapOutputSchema>;
|
|
778
778
|
type McpUniswapV4BuildSwapMultisignInput = z.infer<typeof mcpUniswapV4BuildSwapMultisignInputSchema>;
|
|
779
|
+
/** Input for MCP tool `ctm_uniswap_v4_limit_order_quote` → handler `uniswapLimitOrderQuote`. Mainnet (1) only. */
|
|
780
|
+
declare const mcpUniswapV4LimitOrderQuoteInputSchema: z.ZodObject<{
|
|
781
|
+
type: z.ZodEnum<["EXACT_INPUT", "EXACT_OUTPUT"]>;
|
|
782
|
+
amount: z.ZodString;
|
|
783
|
+
limitPrice: z.ZodString;
|
|
784
|
+
tokenIn: z.ZodString;
|
|
785
|
+
tokenOut: z.ZodString;
|
|
786
|
+
chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
|
|
787
|
+
orderDeadline: z.ZodPipeline<z.ZodNumber, z.ZodNumber>;
|
|
788
|
+
uniswapApiKey: z.ZodString;
|
|
789
|
+
swapper: z.ZodOptional<z.ZodString>;
|
|
790
|
+
keyGen: z.ZodOptional<z.ZodString>;
|
|
791
|
+
managementNodeUrl: z.ZodOptional<z.ZodString>;
|
|
792
|
+
tokenInChainId: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
793
|
+
tokenOutChainId: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
794
|
+
baseUrl: z.ZodOptional<z.ZodString>;
|
|
795
|
+
}, "strip", z.ZodTypeAny, {
|
|
796
|
+
chainId: number;
|
|
797
|
+
amount: string;
|
|
798
|
+
tokenIn: string;
|
|
799
|
+
tokenOut: string;
|
|
800
|
+
uniswapApiKey: string;
|
|
801
|
+
type: "EXACT_INPUT" | "EXACT_OUTPUT";
|
|
802
|
+
limitPrice: string;
|
|
803
|
+
orderDeadline: number;
|
|
804
|
+
keyGen?: string | undefined;
|
|
805
|
+
tokenInChainId?: string | number | undefined;
|
|
806
|
+
tokenOutChainId?: string | number | undefined;
|
|
807
|
+
swapper?: string | undefined;
|
|
808
|
+
managementNodeUrl?: string | undefined;
|
|
809
|
+
baseUrl?: string | undefined;
|
|
810
|
+
}, {
|
|
811
|
+
amount: string;
|
|
812
|
+
tokenIn: string;
|
|
813
|
+
tokenOut: string;
|
|
814
|
+
uniswapApiKey: string;
|
|
815
|
+
type: "EXACT_INPUT" | "EXACT_OUTPUT";
|
|
816
|
+
limitPrice: string;
|
|
817
|
+
orderDeadline: number;
|
|
818
|
+
keyGen?: string | undefined;
|
|
819
|
+
chainId?: unknown;
|
|
820
|
+
tokenInChainId?: string | number | undefined;
|
|
821
|
+
tokenOutChainId?: string | number | undefined;
|
|
822
|
+
swapper?: string | undefined;
|
|
823
|
+
managementNodeUrl?: string | undefined;
|
|
824
|
+
baseUrl?: string | undefined;
|
|
825
|
+
}>;
|
|
826
|
+
declare const mcpUniswapV4LimitOrderQuoteOutputSchema: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
827
|
+
/** Input for MCP tool `ctm_uniswap_v4_build_limit_order_multisign`. */
|
|
828
|
+
declare const mcpUniswapV4BuildLimitOrderMultisignInputSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
829
|
+
keyGenId: z.ZodOptional<z.ZodString>;
|
|
830
|
+
keyGen: z.ZodOptional<z.ZodObject<{
|
|
831
|
+
pubkeyhex: z.ZodString;
|
|
832
|
+
keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
833
|
+
ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
834
|
+
}, "strip", z.ZodTypeAny, {
|
|
835
|
+
pubkeyhex: string;
|
|
836
|
+
keylist?: string[] | undefined;
|
|
837
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
838
|
+
}, {
|
|
839
|
+
pubkeyhex: string;
|
|
840
|
+
keylist?: string[] | undefined;
|
|
841
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
842
|
+
}>>;
|
|
843
|
+
purposeText: z.ZodString;
|
|
844
|
+
useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
|
|
845
|
+
chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
|
|
846
|
+
rpcUrl: z.ZodOptional<z.ZodString>;
|
|
847
|
+
executorAddress: z.ZodOptional<z.ZodString>;
|
|
848
|
+
chainDetail: z.ZodOptional<z.ZodObject<{
|
|
849
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
850
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
851
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
852
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
853
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
854
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
855
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
856
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
857
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
858
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
859
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
860
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
861
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
862
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
863
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
864
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
865
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
866
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
867
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
868
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
869
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
870
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
871
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
872
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
873
|
+
customGasChainDetails: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
874
|
+
expiryDate: z.ZodOptional<z.ZodNumber>;
|
|
875
|
+
} & {
|
|
876
|
+
fullLimitQuote: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
877
|
+
uniswapApiKey: z.ZodString;
|
|
878
|
+
tradeApiBaseUrl: z.ZodOptional<z.ZodString>;
|
|
879
|
+
}, "strip", z.ZodTypeAny, {
|
|
880
|
+
purposeText: string;
|
|
881
|
+
useCustomGas: boolean;
|
|
882
|
+
chainId: number;
|
|
883
|
+
uniswapApiKey: string;
|
|
884
|
+
fullLimitQuote: Record<string, unknown>;
|
|
885
|
+
keyGen?: {
|
|
886
|
+
pubkeyhex: string;
|
|
887
|
+
keylist?: string[] | undefined;
|
|
888
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
889
|
+
} | undefined;
|
|
890
|
+
expiryDate?: number | undefined;
|
|
891
|
+
rpcUrl?: string | undefined;
|
|
892
|
+
executorAddress?: string | undefined;
|
|
893
|
+
chainDetail?: z.objectOutputType<{
|
|
894
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
895
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
896
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
897
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
898
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
899
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
900
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
901
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
902
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
903
|
+
tradeApiBaseUrl?: string | undefined;
|
|
904
|
+
keyGenId?: string | undefined;
|
|
905
|
+
}, {
|
|
906
|
+
purposeText: string;
|
|
907
|
+
uniswapApiKey: string;
|
|
908
|
+
fullLimitQuote: Record<string, unknown>;
|
|
909
|
+
keyGen?: {
|
|
910
|
+
pubkeyhex: string;
|
|
911
|
+
keylist?: string[] | undefined;
|
|
912
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
913
|
+
} | undefined;
|
|
914
|
+
useCustomGas?: unknown;
|
|
915
|
+
chainId?: unknown;
|
|
916
|
+
expiryDate?: number | undefined;
|
|
917
|
+
rpcUrl?: string | undefined;
|
|
918
|
+
executorAddress?: string | undefined;
|
|
919
|
+
chainDetail?: z.objectInputType<{
|
|
920
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
921
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
922
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
923
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
924
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
925
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
926
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
927
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
928
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
929
|
+
tradeApiBaseUrl?: string | undefined;
|
|
930
|
+
keyGenId?: string | undefined;
|
|
931
|
+
}>, {
|
|
932
|
+
purposeText: string;
|
|
933
|
+
useCustomGas: boolean;
|
|
934
|
+
chainId: number;
|
|
935
|
+
uniswapApiKey: string;
|
|
936
|
+
fullLimitQuote: Record<string, unknown>;
|
|
937
|
+
keyGen?: {
|
|
938
|
+
pubkeyhex: string;
|
|
939
|
+
keylist?: string[] | undefined;
|
|
940
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
941
|
+
} | undefined;
|
|
942
|
+
expiryDate?: number | undefined;
|
|
943
|
+
rpcUrl?: string | undefined;
|
|
944
|
+
executorAddress?: string | undefined;
|
|
945
|
+
chainDetail?: z.objectOutputType<{
|
|
946
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
947
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
948
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
949
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
950
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
951
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
952
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
953
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
954
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
955
|
+
tradeApiBaseUrl?: string | undefined;
|
|
956
|
+
keyGenId?: string | undefined;
|
|
957
|
+
}, unknown>, {
|
|
958
|
+
purposeText: string;
|
|
959
|
+
useCustomGas: boolean;
|
|
960
|
+
chainId: number;
|
|
961
|
+
uniswapApiKey: string;
|
|
962
|
+
fullLimitQuote: Record<string, unknown>;
|
|
963
|
+
keyGen?: {
|
|
964
|
+
pubkeyhex: string;
|
|
965
|
+
keylist?: string[] | undefined;
|
|
966
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
967
|
+
} | undefined;
|
|
968
|
+
expiryDate?: number | undefined;
|
|
969
|
+
rpcUrl?: string | undefined;
|
|
970
|
+
executorAddress?: string | undefined;
|
|
971
|
+
chainDetail?: z.objectOutputType<{
|
|
972
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
973
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
974
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
975
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
976
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
977
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
978
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
979
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
980
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
981
|
+
tradeApiBaseUrl?: string | undefined;
|
|
982
|
+
keyGenId?: string | undefined;
|
|
983
|
+
}, unknown>;
|
|
984
|
+
/** Input for MCP tool `ctm_uniswap_v4_fetch_limit_orders`. */
|
|
985
|
+
declare const mcpUniswapV4FetchLimitOrdersInputSchema: z.ZodObject<{
|
|
986
|
+
chainId: z.ZodOptional<z.ZodEffects<z.ZodNumber, number, unknown>>;
|
|
987
|
+
swapper: z.ZodOptional<z.ZodString>;
|
|
988
|
+
keyGen: z.ZodOptional<z.ZodString>;
|
|
989
|
+
managementNodeUrl: z.ZodOptional<z.ZodString>;
|
|
990
|
+
uniswapApiKey: z.ZodOptional<z.ZodString>;
|
|
991
|
+
limit: z.ZodOptional<z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>>;
|
|
992
|
+
baseUrl: z.ZodOptional<z.ZodString>;
|
|
993
|
+
}, "strip", z.ZodTypeAny, {
|
|
994
|
+
keyGen?: string | undefined;
|
|
995
|
+
chainId?: number | undefined;
|
|
996
|
+
uniswapApiKey?: string | undefined;
|
|
997
|
+
swapper?: string | undefined;
|
|
998
|
+
managementNodeUrl?: string | undefined;
|
|
999
|
+
baseUrl?: string | undefined;
|
|
1000
|
+
limit?: number | undefined;
|
|
1001
|
+
}, {
|
|
1002
|
+
keyGen?: string | undefined;
|
|
1003
|
+
chainId?: unknown;
|
|
1004
|
+
uniswapApiKey?: string | undefined;
|
|
1005
|
+
swapper?: string | undefined;
|
|
1006
|
+
managementNodeUrl?: string | undefined;
|
|
1007
|
+
baseUrl?: string | undefined;
|
|
1008
|
+
limit?: unknown;
|
|
1009
|
+
}>;
|
|
1010
|
+
declare const mcpUniswapV4FetchLimitOrdersOutputSchema: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
779
1011
|
/** MCP: POST /lp/create — presetId from list_lp_pools aliases to poolPreset. */
|
|
780
1012
|
declare const mcpUniswapV4LpCreatePositionInputSchema: z.ZodEffects<z.ZodObject<{
|
|
781
1013
|
uniswapApiKey: z.ZodString;
|
|
@@ -2012,7 +2244,8 @@ declare const mcpUniswapV4BuildCollectFeesMultisignInputSchema: z.ZodEffects<z.Z
|
|
|
2012
2244
|
}, unknown>;
|
|
2013
2245
|
type McpUniswapV4LpCreatePositionInput = z.infer<typeof mcpUniswapV4LpCreatePositionInputSchema>;
|
|
2014
2246
|
type McpUniswapV4BuildMintLiquidityMultisignInput = z.infer<typeof mcpUniswapV4BuildMintLiquidityMultisignInputSchema>;
|
|
2015
|
-
/** MCP: pool OHLCV from Uniswap V4 subgraph (1h/1d + aggregated multiples) or swap bucketing (sub-hour).
|
|
2247
|
+
/** MCP: pool OHLCV from Uniswap V4 subgraph (1h/1d + aggregated multiples) or swap bucketing (sub-hour).
|
|
2248
|
+
* Robinhood Chain (4663) uses Bitquery Uniswap v4 / Stock Token OHLCV (BITQUERY_API_KEY). */
|
|
2016
2249
|
declare const mcpUniswapV4FetchOhlcvInputSchema: z.ZodObject<{
|
|
2017
2250
|
chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
|
|
2018
2251
|
interval: z.ZodOptional<z.ZodEnum<["1m", "5m", "15m", "30m", "1h", "2h", "4h", "6h", "8h", "12h", "1d", "2d", "3d", "1w", "1M"]>>;
|
|
@@ -2040,6 +2273,8 @@ declare const mcpUniswapV4FetchOhlcvInputSchema: z.ZodObject<{
|
|
|
2040
2273
|
tickSpacing?: unknown;
|
|
2041
2274
|
poolReference?: string | undefined;
|
|
2042
2275
|
}>>;
|
|
2276
|
+
currencyAddress: z.ZodOptional<z.ZodString>;
|
|
2277
|
+
currencySymbol: z.ZodOptional<z.ZodString>;
|
|
2043
2278
|
quoteToken: z.ZodOptional<z.ZodEnum<["token0", "token1"]>>;
|
|
2044
2279
|
lookbackDays: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
2045
2280
|
lookbackHours: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
@@ -2060,6 +2295,8 @@ declare const mcpUniswapV4FetchOhlcvInputSchema: z.ZodObject<{
|
|
|
2060
2295
|
endTimeMs?: number | undefined;
|
|
2061
2296
|
interval?: "1m" | "5m" | "15m" | "30m" | "1h" | "2h" | "4h" | "6h" | "8h" | "12h" | "1d" | "2d" | "3d" | "1w" | "1M" | undefined;
|
|
2062
2297
|
poolPreset?: string | undefined;
|
|
2298
|
+
currencyAddress?: string | undefined;
|
|
2299
|
+
currencySymbol?: string | undefined;
|
|
2063
2300
|
quoteToken?: "token0" | "token1" | undefined;
|
|
2064
2301
|
lookbackDays?: number | undefined;
|
|
2065
2302
|
lookbackHours?: number | undefined;
|
|
@@ -2078,6 +2315,8 @@ declare const mcpUniswapV4FetchOhlcvInputSchema: z.ZodObject<{
|
|
|
2078
2315
|
endTimeMs?: unknown;
|
|
2079
2316
|
interval?: "1m" | "5m" | "15m" | "30m" | "1h" | "2h" | "4h" | "6h" | "8h" | "12h" | "1d" | "2d" | "3d" | "1w" | "1M" | undefined;
|
|
2080
2317
|
poolPreset?: string | undefined;
|
|
2318
|
+
currencyAddress?: string | undefined;
|
|
2319
|
+
currencySymbol?: string | undefined;
|
|
2081
2320
|
quoteToken?: "token0" | "token1" | undefined;
|
|
2082
2321
|
lookbackDays?: unknown;
|
|
2083
2322
|
lookbackHours?: unknown;
|
|
@@ -2087,7 +2326,7 @@ declare const mcpUniswapV4FetchOhlcvOutputSchema: z.ZodObject<{
|
|
|
2087
2326
|
timeframe: z.ZodEnum<["1m", "5m", "15m", "30m", "1h", "2h", "4h", "6h", "8h", "12h", "1d", "2d", "3d", "1w", "1M"]>;
|
|
2088
2327
|
chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
|
|
2089
2328
|
poolReference: z.ZodString;
|
|
2090
|
-
dataSource: z.ZodEnum<["subgraph_native", "subgraph_aggregate", "swaps"]>;
|
|
2329
|
+
dataSource: z.ZodEnum<["subgraph_native", "subgraph_aggregate", "swaps", "bitquery"]>;
|
|
2091
2330
|
baseSubgraphEntity: z.ZodOptional<z.ZodEnum<["hourly", "daily"]>>;
|
|
2092
2331
|
priceQuote: z.ZodEnum<["token0PerToken1", "token1PerToken0"]>;
|
|
2093
2332
|
startTimeMs: z.ZodOptional<z.ZodNumber>;
|
|
@@ -2103,15 +2342,15 @@ declare const mcpUniswapV4FetchOhlcvOutputSchema: z.ZodObject<{
|
|
|
2103
2342
|
}, "strip", z.ZodTypeAny, {
|
|
2104
2343
|
high: string;
|
|
2105
2344
|
low: string;
|
|
2106
|
-
timestampMs: number;
|
|
2107
2345
|
open: string;
|
|
2346
|
+
timestampMs: number;
|
|
2108
2347
|
close: string;
|
|
2109
2348
|
volume?: string | undefined;
|
|
2110
2349
|
}, {
|
|
2111
2350
|
high: string;
|
|
2112
2351
|
low: string;
|
|
2113
|
-
timestampMs: number;
|
|
2114
2352
|
open: string;
|
|
2353
|
+
timestampMs: number;
|
|
2115
2354
|
close: string;
|
|
2116
2355
|
volume?: string | undefined;
|
|
2117
2356
|
}>, "many">;
|
|
@@ -2124,15 +2363,15 @@ declare const mcpUniswapV4FetchOhlcvOutputSchema: z.ZodObject<{
|
|
|
2124
2363
|
candles: {
|
|
2125
2364
|
high: string;
|
|
2126
2365
|
low: string;
|
|
2127
|
-
timestampMs: number;
|
|
2128
2366
|
open: string;
|
|
2367
|
+
timestampMs: number;
|
|
2129
2368
|
close: string;
|
|
2130
2369
|
volume?: string | undefined;
|
|
2131
2370
|
}[];
|
|
2132
|
-
dataSource: "subgraph_native" | "subgraph_aggregate" | "swaps";
|
|
2133
2371
|
timeframe: "1m" | "5m" | "15m" | "30m" | "1h" | "2h" | "4h" | "6h" | "8h" | "12h" | "1d" | "2d" | "3d" | "1w" | "1M";
|
|
2134
|
-
|
|
2372
|
+
dataSource: "bitquery" | "subgraph_native" | "subgraph_aggregate" | "swaps";
|
|
2135
2373
|
priceQuote: "token0PerToken1" | "token1PerToken0";
|
|
2374
|
+
candleCount: number;
|
|
2136
2375
|
fetchedAtMs: number;
|
|
2137
2376
|
warnings?: string[] | undefined;
|
|
2138
2377
|
startTimeMs?: number | undefined;
|
|
@@ -2144,15 +2383,15 @@ declare const mcpUniswapV4FetchOhlcvOutputSchema: z.ZodObject<{
|
|
|
2144
2383
|
candles: {
|
|
2145
2384
|
high: string;
|
|
2146
2385
|
low: string;
|
|
2147
|
-
timestampMs: number;
|
|
2148
2386
|
open: string;
|
|
2387
|
+
timestampMs: number;
|
|
2149
2388
|
close: string;
|
|
2150
2389
|
volume?: string | undefined;
|
|
2151
2390
|
}[];
|
|
2152
|
-
dataSource: "subgraph_native" | "subgraph_aggregate" | "swaps";
|
|
2153
2391
|
timeframe: "1m" | "5m" | "15m" | "30m" | "1h" | "2h" | "4h" | "6h" | "8h" | "12h" | "1d" | "2d" | "3d" | "1w" | "1M";
|
|
2154
|
-
|
|
2392
|
+
dataSource: "bitquery" | "subgraph_native" | "subgraph_aggregate" | "swaps";
|
|
2155
2393
|
priceQuote: "token0PerToken1" | "token1PerToken0";
|
|
2394
|
+
candleCount: number;
|
|
2156
2395
|
fetchedAtMs: number;
|
|
2157
2396
|
chainId?: unknown;
|
|
2158
2397
|
warnings?: string[] | undefined;
|
|
@@ -3681,14 +3920,14 @@ declare const mcpMorphoFetchEarnVaultsInputSchema: z.ZodObject<{
|
|
|
3681
3920
|
limit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3682
3921
|
}, "strip", z.ZodTypeAny, {
|
|
3683
3922
|
chainId: number;
|
|
3923
|
+
limit?: number | undefined;
|
|
3684
3924
|
underlying?: string | undefined;
|
|
3685
3925
|
query?: string | undefined;
|
|
3686
|
-
limit?: number | undefined;
|
|
3687
3926
|
}, {
|
|
3688
3927
|
chainId?: unknown;
|
|
3928
|
+
limit?: unknown;
|
|
3689
3929
|
underlying?: string | undefined;
|
|
3690
3930
|
query?: string | undefined;
|
|
3691
|
-
limit?: unknown;
|
|
3692
3931
|
}>;
|
|
3693
3932
|
declare const mcpMorphoFetchEarnVaultsOutputSchema: z.ZodObject<{
|
|
3694
3933
|
vaults: z.ZodArray<z.ZodObject<{
|
|
@@ -3815,14 +4054,14 @@ declare const mcpMorphoFetchBlueMarketsInputSchema: z.ZodObject<{
|
|
|
3815
4054
|
limit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3816
4055
|
}, "strip", z.ZodTypeAny, {
|
|
3817
4056
|
chainId: number;
|
|
3818
|
-
query?: string | undefined;
|
|
3819
4057
|
limit?: number | undefined;
|
|
4058
|
+
query?: string | undefined;
|
|
3820
4059
|
collateral?: string | undefined;
|
|
3821
4060
|
loan?: string | undefined;
|
|
3822
4061
|
}, {
|
|
3823
4062
|
chainId?: unknown;
|
|
3824
|
-
query?: string | undefined;
|
|
3825
4063
|
limit?: unknown;
|
|
4064
|
+
query?: string | undefined;
|
|
3826
4065
|
collateral?: string | undefined;
|
|
3827
4066
|
loan?: string | undefined;
|
|
3828
4067
|
}>;
|
|
@@ -4461,15 +4700,15 @@ declare const mcpGmxFetchOhlcvOutputSchema: z.ZodObject<{
|
|
|
4461
4700
|
}, "strip", z.ZodTypeAny, {
|
|
4462
4701
|
high: string;
|
|
4463
4702
|
low: string;
|
|
4464
|
-
timestampMs: number;
|
|
4465
4703
|
open: string;
|
|
4704
|
+
timestampMs: number;
|
|
4466
4705
|
close: string;
|
|
4467
4706
|
timeLabel: string;
|
|
4468
4707
|
}, {
|
|
4469
4708
|
high: string;
|
|
4470
4709
|
low: string;
|
|
4471
|
-
timestampMs: number;
|
|
4472
4710
|
open: string;
|
|
4711
|
+
timestampMs: number;
|
|
4473
4712
|
close: string;
|
|
4474
4713
|
timeLabel: string;
|
|
4475
4714
|
}>, "many">;
|
|
@@ -4479,8 +4718,8 @@ declare const mcpGmxFetchOhlcvOutputSchema: z.ZodObject<{
|
|
|
4479
4718
|
candles: {
|
|
4480
4719
|
high: string;
|
|
4481
4720
|
low: string;
|
|
4482
|
-
timestampMs: number;
|
|
4483
4721
|
open: string;
|
|
4722
|
+
timestampMs: number;
|
|
4484
4723
|
close: string;
|
|
4485
4724
|
timeLabel: string;
|
|
4486
4725
|
}[];
|
|
@@ -4493,8 +4732,8 @@ declare const mcpGmxFetchOhlcvOutputSchema: z.ZodObject<{
|
|
|
4493
4732
|
candles: {
|
|
4494
4733
|
high: string;
|
|
4495
4734
|
low: string;
|
|
4496
|
-
timestampMs: number;
|
|
4497
4735
|
open: string;
|
|
4736
|
+
timestampMs: number;
|
|
4498
4737
|
close: string;
|
|
4499
4738
|
timeLabel: string;
|
|
4500
4739
|
}[];
|
|
@@ -4973,16 +5212,16 @@ declare const mcpHyperliquidFetchMarketSnapshotOutputSchema: z.ZodObject<{
|
|
|
4973
5212
|
}, "strip", z.ZodTypeAny, {
|
|
4974
5213
|
high: string;
|
|
4975
5214
|
low: string;
|
|
5215
|
+
open: string;
|
|
4976
5216
|
volume: string;
|
|
4977
5217
|
timestampMs: number;
|
|
4978
|
-
open: string;
|
|
4979
5218
|
close: string;
|
|
4980
5219
|
}, {
|
|
4981
5220
|
high: string;
|
|
4982
5221
|
low: string;
|
|
5222
|
+
open: string;
|
|
4983
5223
|
volume: string;
|
|
4984
5224
|
timestampMs: number;
|
|
4985
|
-
open: string;
|
|
4986
5225
|
close: string;
|
|
4987
5226
|
}>>;
|
|
4988
5227
|
candles: z.ZodArray<z.ZodObject<{
|
|
@@ -4995,16 +5234,16 @@ declare const mcpHyperliquidFetchMarketSnapshotOutputSchema: z.ZodObject<{
|
|
|
4995
5234
|
}, "strip", z.ZodTypeAny, {
|
|
4996
5235
|
high: string;
|
|
4997
5236
|
low: string;
|
|
5237
|
+
open: string;
|
|
4998
5238
|
volume: string;
|
|
4999
5239
|
timestampMs: number;
|
|
5000
|
-
open: string;
|
|
5001
5240
|
close: string;
|
|
5002
5241
|
}, {
|
|
5003
5242
|
high: string;
|
|
5004
5243
|
low: string;
|
|
5244
|
+
open: string;
|
|
5005
5245
|
volume: string;
|
|
5006
5246
|
timestampMs: number;
|
|
5007
|
-
open: string;
|
|
5008
5247
|
close: string;
|
|
5009
5248
|
}>, "many">;
|
|
5010
5249
|
candleCount: z.ZodNumber;
|
|
@@ -5012,9 +5251,9 @@ declare const mcpHyperliquidFetchMarketSnapshotOutputSchema: z.ZodObject<{
|
|
|
5012
5251
|
candles: {
|
|
5013
5252
|
high: string;
|
|
5014
5253
|
low: string;
|
|
5254
|
+
open: string;
|
|
5015
5255
|
volume: string;
|
|
5016
5256
|
timestampMs: number;
|
|
5017
|
-
open: string;
|
|
5018
5257
|
close: string;
|
|
5019
5258
|
}[];
|
|
5020
5259
|
interval: "1m" | "5m" | "15m" | "30m" | "1h" | "2h" | "4h" | "8h" | "12h" | "1d" | "3d" | "1w" | "1M" | "3m";
|
|
@@ -5034,18 +5273,18 @@ declare const mcpHyperliquidFetchMarketSnapshotOutputSchema: z.ZodObject<{
|
|
|
5034
5273
|
latestCandle: {
|
|
5035
5274
|
high: string;
|
|
5036
5275
|
low: string;
|
|
5276
|
+
open: string;
|
|
5037
5277
|
volume: string;
|
|
5038
5278
|
timestampMs: number;
|
|
5039
|
-
open: string;
|
|
5040
5279
|
close: string;
|
|
5041
5280
|
} | null;
|
|
5042
5281
|
}, {
|
|
5043
5282
|
candles: {
|
|
5044
5283
|
high: string;
|
|
5045
5284
|
low: string;
|
|
5285
|
+
open: string;
|
|
5046
5286
|
volume: string;
|
|
5047
5287
|
timestampMs: number;
|
|
5048
|
-
open: string;
|
|
5049
5288
|
close: string;
|
|
5050
5289
|
}[];
|
|
5051
5290
|
interval: "1m" | "5m" | "15m" | "30m" | "1h" | "2h" | "4h" | "8h" | "12h" | "1d" | "3d" | "1w" | "1M" | "3m";
|
|
@@ -5065,9 +5304,9 @@ declare const mcpHyperliquidFetchMarketSnapshotOutputSchema: z.ZodObject<{
|
|
|
5065
5304
|
latestCandle: {
|
|
5066
5305
|
high: string;
|
|
5067
5306
|
low: string;
|
|
5307
|
+
open: string;
|
|
5068
5308
|
volume: string;
|
|
5069
5309
|
timestampMs: number;
|
|
5070
|
-
open: string;
|
|
5071
5310
|
close: string;
|
|
5072
5311
|
} | null;
|
|
5073
5312
|
}>;
|
|
@@ -5080,9 +5319,9 @@ declare const mcpHyperliquidFetchMarketSnapshotOutputSchema: z.ZodObject<{
|
|
|
5080
5319
|
candles: {
|
|
5081
5320
|
high: string;
|
|
5082
5321
|
low: string;
|
|
5322
|
+
open: string;
|
|
5083
5323
|
volume: string;
|
|
5084
5324
|
timestampMs: number;
|
|
5085
|
-
open: string;
|
|
5086
5325
|
close: string;
|
|
5087
5326
|
}[];
|
|
5088
5327
|
interval: "1m" | "5m" | "15m" | "30m" | "1h" | "2h" | "4h" | "8h" | "12h" | "1d" | "3d" | "1w" | "1M" | "3m";
|
|
@@ -5102,9 +5341,9 @@ declare const mcpHyperliquidFetchMarketSnapshotOutputSchema: z.ZodObject<{
|
|
|
5102
5341
|
latestCandle: {
|
|
5103
5342
|
high: string;
|
|
5104
5343
|
low: string;
|
|
5344
|
+
open: string;
|
|
5105
5345
|
volume: string;
|
|
5106
5346
|
timestampMs: number;
|
|
5107
|
-
open: string;
|
|
5108
5347
|
close: string;
|
|
5109
5348
|
} | null;
|
|
5110
5349
|
};
|
|
@@ -5115,9 +5354,9 @@ declare const mcpHyperliquidFetchMarketSnapshotOutputSchema: z.ZodObject<{
|
|
|
5115
5354
|
candles: {
|
|
5116
5355
|
high: string;
|
|
5117
5356
|
low: string;
|
|
5357
|
+
open: string;
|
|
5118
5358
|
volume: string;
|
|
5119
5359
|
timestampMs: number;
|
|
5120
|
-
open: string;
|
|
5121
5360
|
close: string;
|
|
5122
5361
|
}[];
|
|
5123
5362
|
interval: "1m" | "5m" | "15m" | "30m" | "1h" | "2h" | "4h" | "8h" | "12h" | "1d" | "3d" | "1w" | "1M" | "3m";
|
|
@@ -5137,9 +5376,9 @@ declare const mcpHyperliquidFetchMarketSnapshotOutputSchema: z.ZodObject<{
|
|
|
5137
5376
|
latestCandle: {
|
|
5138
5377
|
high: string;
|
|
5139
5378
|
low: string;
|
|
5379
|
+
open: string;
|
|
5140
5380
|
volume: string;
|
|
5141
5381
|
timestampMs: number;
|
|
5142
|
-
open: string;
|
|
5143
5382
|
close: string;
|
|
5144
5383
|
} | null;
|
|
5145
5384
|
};
|
|
@@ -5192,16 +5431,16 @@ declare const mcpHyperliquidFetchOhlcvOutputSchema: z.ZodObject<{
|
|
|
5192
5431
|
}, "strip", z.ZodTypeAny, {
|
|
5193
5432
|
high: string;
|
|
5194
5433
|
low: string;
|
|
5434
|
+
open: string;
|
|
5195
5435
|
volume: string;
|
|
5196
5436
|
timestampMs: number;
|
|
5197
|
-
open: string;
|
|
5198
5437
|
close: string;
|
|
5199
5438
|
}, {
|
|
5200
5439
|
high: string;
|
|
5201
5440
|
low: string;
|
|
5441
|
+
open: string;
|
|
5202
5442
|
volume: string;
|
|
5203
5443
|
timestampMs: number;
|
|
5204
|
-
open: string;
|
|
5205
5444
|
close: string;
|
|
5206
5445
|
}>>;
|
|
5207
5446
|
candles: z.ZodArray<z.ZodObject<{
|
|
@@ -5214,16 +5453,16 @@ declare const mcpHyperliquidFetchOhlcvOutputSchema: z.ZodObject<{
|
|
|
5214
5453
|
}, "strip", z.ZodTypeAny, {
|
|
5215
5454
|
high: string;
|
|
5216
5455
|
low: string;
|
|
5456
|
+
open: string;
|
|
5217
5457
|
volume: string;
|
|
5218
5458
|
timestampMs: number;
|
|
5219
|
-
open: string;
|
|
5220
5459
|
close: string;
|
|
5221
5460
|
}, {
|
|
5222
5461
|
high: string;
|
|
5223
5462
|
low: string;
|
|
5463
|
+
open: string;
|
|
5224
5464
|
volume: string;
|
|
5225
5465
|
timestampMs: number;
|
|
5226
|
-
open: string;
|
|
5227
5466
|
close: string;
|
|
5228
5467
|
}>, "many">;
|
|
5229
5468
|
fetchedAtMs: z.ZodNumber;
|
|
@@ -5231,9 +5470,9 @@ declare const mcpHyperliquidFetchOhlcvOutputSchema: z.ZodObject<{
|
|
|
5231
5470
|
candles: {
|
|
5232
5471
|
high: string;
|
|
5233
5472
|
low: string;
|
|
5473
|
+
open: string;
|
|
5234
5474
|
volume: string;
|
|
5235
5475
|
timestampMs: number;
|
|
5236
|
-
open: string;
|
|
5237
5476
|
close: string;
|
|
5238
5477
|
}[];
|
|
5239
5478
|
startTimeMs: number;
|
|
@@ -5246,9 +5485,9 @@ declare const mcpHyperliquidFetchOhlcvOutputSchema: z.ZodObject<{
|
|
|
5246
5485
|
latestCandle: {
|
|
5247
5486
|
high: string;
|
|
5248
5487
|
low: string;
|
|
5488
|
+
open: string;
|
|
5249
5489
|
volume: string;
|
|
5250
5490
|
timestampMs: number;
|
|
5251
|
-
open: string;
|
|
5252
5491
|
close: string;
|
|
5253
5492
|
} | null;
|
|
5254
5493
|
expectedBars: number;
|
|
@@ -5256,9 +5495,9 @@ declare const mcpHyperliquidFetchOhlcvOutputSchema: z.ZodObject<{
|
|
|
5256
5495
|
candles: {
|
|
5257
5496
|
high: string;
|
|
5258
5497
|
low: string;
|
|
5498
|
+
open: string;
|
|
5259
5499
|
volume: string;
|
|
5260
5500
|
timestampMs: number;
|
|
5261
|
-
open: string;
|
|
5262
5501
|
close: string;
|
|
5263
5502
|
}[];
|
|
5264
5503
|
startTimeMs: number;
|
|
@@ -5271,9 +5510,9 @@ declare const mcpHyperliquidFetchOhlcvOutputSchema: z.ZodObject<{
|
|
|
5271
5510
|
latestCandle: {
|
|
5272
5511
|
high: string;
|
|
5273
5512
|
low: string;
|
|
5513
|
+
open: string;
|
|
5274
5514
|
volume: string;
|
|
5275
5515
|
timestampMs: number;
|
|
5276
|
-
open: string;
|
|
5277
5516
|
close: string;
|
|
5278
5517
|
} | null;
|
|
5279
5518
|
expectedBars: number;
|
|
@@ -5287,9 +5526,9 @@ declare const mcpHyperliquidFetchOhlcvOutputSchema: z.ZodObject<{
|
|
|
5287
5526
|
candles: {
|
|
5288
5527
|
high: string;
|
|
5289
5528
|
low: string;
|
|
5529
|
+
open: string;
|
|
5290
5530
|
volume: string;
|
|
5291
5531
|
timestampMs: number;
|
|
5292
|
-
open: string;
|
|
5293
5532
|
close: string;
|
|
5294
5533
|
}[];
|
|
5295
5534
|
startTimeMs: number;
|
|
@@ -5302,9 +5541,9 @@ declare const mcpHyperliquidFetchOhlcvOutputSchema: z.ZodObject<{
|
|
|
5302
5541
|
latestCandle: {
|
|
5303
5542
|
high: string;
|
|
5304
5543
|
low: string;
|
|
5544
|
+
open: string;
|
|
5305
5545
|
volume: string;
|
|
5306
5546
|
timestampMs: number;
|
|
5307
|
-
open: string;
|
|
5308
5547
|
close: string;
|
|
5309
5548
|
} | null;
|
|
5310
5549
|
expectedBars: number;
|
|
@@ -5316,9 +5555,9 @@ declare const mcpHyperliquidFetchOhlcvOutputSchema: z.ZodObject<{
|
|
|
5316
5555
|
candles: {
|
|
5317
5556
|
high: string;
|
|
5318
5557
|
low: string;
|
|
5558
|
+
open: string;
|
|
5319
5559
|
volume: string;
|
|
5320
5560
|
timestampMs: number;
|
|
5321
|
-
open: string;
|
|
5322
5561
|
close: string;
|
|
5323
5562
|
}[];
|
|
5324
5563
|
startTimeMs: number;
|
|
@@ -5331,9 +5570,9 @@ declare const mcpHyperliquidFetchOhlcvOutputSchema: z.ZodObject<{
|
|
|
5331
5570
|
latestCandle: {
|
|
5332
5571
|
high: string;
|
|
5333
5572
|
low: string;
|
|
5573
|
+
open: string;
|
|
5334
5574
|
volume: string;
|
|
5335
5575
|
timestampMs: number;
|
|
5336
|
-
open: string;
|
|
5337
5576
|
close: string;
|
|
5338
5577
|
} | null;
|
|
5339
5578
|
expectedBars: number;
|
|
@@ -5847,4 +6086,4 @@ declare function getAgentCatalog(): {
|
|
|
5847
6086
|
};
|
|
5848
6087
|
};
|
|
5849
6088
|
|
|
5850
|
-
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 McpCurveDaoBuildSwapMultisignInput, type McpCurveDaoQuoteInput, type McpCurveDaoQuoteOutput, type McpEthenaStakeInput, type McpEulerV2FetchLendVaultsInput, type McpEulerV2FetchLendVaultsOutput, type McpEulerV2IsolatedLendInput, type McpJsonSchema, type McpLidoSubmitInput, type McpMapleDepositInput, type McpMorphoFetchBlueMarketsInput, type McpMorphoFetchBlueMarketsOutput, type McpMorphoFetchEarnVaultsInput, type McpMorphoFetchEarnVaultsOutput, type McpMorphoVaultDepositInput, type McpSchemaProperty, type McpSkyLockstakeStakeInput, type McpToolDefinition, type McpToolHandler, type McpToolInputMap, type McpToolName, type McpToolOutputMap, type McpUniswapV4BuildMintLiquidityMultisignInput, type McpUniswapV4BuildSwapMultisignInput, type McpUniswapV4CreateSwapInput, type McpUniswapV4CreateSwapOutput, type McpUniswapV4FetchOhlcvInput, type McpUniswapV4FetchOhlcvOutput, 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, 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, mcpHyperliquidFetchUsdClassBalancesInputSchema, mcpHyperliquidFetchUsdClassBalancesOutputSchema, mcpHyperliquidFetchUserVaultEquitiesInputSchema, mcpHyperliquidFetchUserVaultEquitiesOutputSchema, mcpHyperliquidFetchVaultsInputSchema, mcpHyperliquidFetchVaultsOutputSchema, mcpHyperliquidLimitOrderInputSchema, mcpHyperliquidSearchMarketsInputSchema, mcpHyperliquidSearchMarketsOutputSchema, mcpHyperliquidStakeInputSchema, mcpHyperliquidUndelegateInputSchema, mcpHyperliquidUnstakeInputSchema, mcpHyperliquidUpdateLeverageInputSchema, mcpHyperliquidUsdTransferInputSchema, mcpHyperliquidVaultDepositInputSchema, mcpHyperliquidVaultWithdrawInputSchema, mcpLidoClaimWithdrawalInputSchema, mcpLidoRequestWithdrawalsInputSchema, mcpLidoSubmitInputSchema, mcpLidoUnwrapWstEthInputSchema, mcpLidoWrapStEthInputSchema, mcpMapleDepositInputSchema, mcpMapleRequestRedeemInputSchema, mcpMorphoBlueBorrowInputSchema, mcpMorphoBlueCollateralDepositInputSchema, mcpMorphoBlueCollateralWithdrawInputSchema, mcpMorphoBlueRepayInputSchema, mcpMorphoFetchBlueMarketsInputSchema, mcpMorphoFetchBlueMarketsOutputSchema, mcpMorphoFetchEarnVaultsInputSchema, mcpMorphoFetchEarnVaultsOutputSchema, mcpMorphoMerklClaimInputSchema, mcpMorphoVaultDepositInputSchema, mcpMorphoVaultWithdrawInputSchema, mcpMultisignInput, multisignOutputSchema as mcpMultisignOutputSchema, mcpServerSubmitOutputSchema as mcpMultisignSubmitOutputSchema, mcpServerCommonInputSchema, mcpServerMultisignInput, mcpServerSubmitOutputSchema, mcpSkyLockstakeCloseInputSchema, mcpSkyLockstakeDrawInputSchema, mcpSkyLockstakeGetRewardInputSchema, mcpSkyLockstakeStakeInputSchema, mcpSkyLockstakeWipeInputSchema, mcpSkySusdsDepositInputSchema, mcpSkySusdsRedeemInputSchema, mcpUniswapV4BuildCollectFeesMultisignInputSchema, mcpUniswapV4BuildDecreaseLiquidityMultisignInputSchema, mcpUniswapV4BuildIncreaseLiquidityMultisignInputSchema, mcpUniswapV4BuildMintLiquidityMultisignInputSchema, mcpUniswapV4BuildSwapMultisignInputSchema, mcpUniswapV4CreateSwapInputSchema, mcpUniswapV4CreateSwapOutputSchema, mcpUniswapV4FetchOhlcvInputSchema, mcpUniswapV4FetchOhlcvOutputSchema, mcpUniswapV4LpClaimInputSchema, mcpUniswapV4LpClaimOutputSchema, mcpUniswapV4LpCreatePositionInputSchema, mcpUniswapV4LpCreatePositionOutputSchema, mcpUniswapV4LpDecreaseInputSchema, mcpUniswapV4LpDecreaseOutputSchema, mcpUniswapV4LpIncreaseInputSchema, mcpUniswapV4LpIncreaseOutputSchema, mcpUniswapV4LpListPoolsInputSchema, mcpUniswapV4LpListPoolsOutputSchema, mcpUniswapV4LpListPositionsInputSchema, mcpUniswapV4LpListPositionsOutputSchema, mcpUniswapV4QuoteInputSchema, mcpUniswapV4QuoteOutputSchema, mcpUniswapV4RegisterPositionFromMintTxInputSchema, mcpUniswapV4RegisterPositionFromMintTxOutputSchema, mcpUniswapV4RegisterPositionNftInputSchema, mcpUniswapV4RegisterPositionNftOutputSchema, multisignOutputSchema, parseAgentBoolean, parseAgentEvmChainId, parseMcpToolInput, parseMcpToolOutput, parseMultisignBuilderOutput, uniswapQuoteTradeTypeSchema, zodSchemaToMcpJsonSchema };
|
|
6089
|
+
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 McpCurveDaoBuildSwapMultisignInput, type McpCurveDaoQuoteInput, type McpCurveDaoQuoteOutput, type McpEthenaStakeInput, type McpEulerV2FetchLendVaultsInput, type McpEulerV2FetchLendVaultsOutput, type McpEulerV2IsolatedLendInput, type McpJsonSchema, type McpLidoSubmitInput, type McpMapleDepositInput, type McpMorphoFetchBlueMarketsInput, type McpMorphoFetchBlueMarketsOutput, type McpMorphoFetchEarnVaultsInput, type McpMorphoFetchEarnVaultsOutput, type McpMorphoVaultDepositInput, type McpSchemaProperty, type McpSkyLockstakeStakeInput, type McpToolDefinition, type McpToolHandler, type McpToolInputMap, type McpToolName, type McpToolOutputMap, type McpUniswapV4BuildMintLiquidityMultisignInput, type McpUniswapV4BuildSwapMultisignInput, type McpUniswapV4CreateSwapInput, type McpUniswapV4CreateSwapOutput, type McpUniswapV4FetchOhlcvInput, type McpUniswapV4FetchOhlcvOutput, 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, 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, mcpHyperliquidFetchUsdClassBalancesInputSchema, mcpHyperliquidFetchUsdClassBalancesOutputSchema, mcpHyperliquidFetchUserVaultEquitiesInputSchema, mcpHyperliquidFetchUserVaultEquitiesOutputSchema, mcpHyperliquidFetchVaultsInputSchema, mcpHyperliquidFetchVaultsOutputSchema, mcpHyperliquidLimitOrderInputSchema, mcpHyperliquidSearchMarketsInputSchema, mcpHyperliquidSearchMarketsOutputSchema, mcpHyperliquidStakeInputSchema, mcpHyperliquidUndelegateInputSchema, mcpHyperliquidUnstakeInputSchema, mcpHyperliquidUpdateLeverageInputSchema, mcpHyperliquidUsdTransferInputSchema, mcpHyperliquidVaultDepositInputSchema, mcpHyperliquidVaultWithdrawInputSchema, mcpLidoClaimWithdrawalInputSchema, mcpLidoRequestWithdrawalsInputSchema, mcpLidoSubmitInputSchema, mcpLidoUnwrapWstEthInputSchema, mcpLidoWrapStEthInputSchema, mcpMapleDepositInputSchema, mcpMapleRequestRedeemInputSchema, mcpMorphoBlueBorrowInputSchema, mcpMorphoBlueCollateralDepositInputSchema, mcpMorphoBlueCollateralWithdrawInputSchema, mcpMorphoBlueRepayInputSchema, mcpMorphoFetchBlueMarketsInputSchema, mcpMorphoFetchBlueMarketsOutputSchema, mcpMorphoFetchEarnVaultsInputSchema, mcpMorphoFetchEarnVaultsOutputSchema, mcpMorphoMerklClaimInputSchema, mcpMorphoVaultDepositInputSchema, mcpMorphoVaultWithdrawInputSchema, mcpMultisignInput, multisignOutputSchema as mcpMultisignOutputSchema, mcpServerSubmitOutputSchema as mcpMultisignSubmitOutputSchema, mcpServerCommonInputSchema, mcpServerMultisignInput, mcpServerSubmitOutputSchema, mcpSkyLockstakeCloseInputSchema, mcpSkyLockstakeDrawInputSchema, mcpSkyLockstakeGetRewardInputSchema, mcpSkyLockstakeStakeInputSchema, mcpSkyLockstakeWipeInputSchema, mcpSkySusdsDepositInputSchema, mcpSkySusdsRedeemInputSchema, mcpUniswapV4BuildCollectFeesMultisignInputSchema, mcpUniswapV4BuildDecreaseLiquidityMultisignInputSchema, mcpUniswapV4BuildIncreaseLiquidityMultisignInputSchema, mcpUniswapV4BuildLimitOrderMultisignInputSchema, mcpUniswapV4BuildMintLiquidityMultisignInputSchema, mcpUniswapV4BuildSwapMultisignInputSchema, mcpUniswapV4CreateSwapInputSchema, mcpUniswapV4CreateSwapOutputSchema, mcpUniswapV4FetchLimitOrdersInputSchema, mcpUniswapV4FetchLimitOrdersOutputSchema, mcpUniswapV4FetchOhlcvInputSchema, mcpUniswapV4FetchOhlcvOutputSchema, mcpUniswapV4LimitOrderQuoteInputSchema, mcpUniswapV4LimitOrderQuoteOutputSchema, mcpUniswapV4LpClaimInputSchema, mcpUniswapV4LpClaimOutputSchema, mcpUniswapV4LpCreatePositionInputSchema, mcpUniswapV4LpCreatePositionOutputSchema, mcpUniswapV4LpDecreaseInputSchema, mcpUniswapV4LpDecreaseOutputSchema, mcpUniswapV4LpIncreaseInputSchema, mcpUniswapV4LpIncreaseOutputSchema, mcpUniswapV4LpListPoolsInputSchema, mcpUniswapV4LpListPoolsOutputSchema, mcpUniswapV4LpListPositionsInputSchema, mcpUniswapV4LpListPositionsOutputSchema, mcpUniswapV4QuoteInputSchema, mcpUniswapV4QuoteOutputSchema, mcpUniswapV4RegisterPositionFromMintTxInputSchema, mcpUniswapV4RegisterPositionFromMintTxOutputSchema, mcpUniswapV4RegisterPositionNftInputSchema, mcpUniswapV4RegisterPositionNftOutputSchema, multisignOutputSchema, parseAgentBoolean, parseAgentEvmChainId, parseMcpToolInput, parseMcpToolOutput, parseMultisignBuilderOutput, uniswapQuoteTradeTypeSchema, zodSchemaToMcpJsonSchema };
|