@continuumdao/ctm-mpc-defi 0.2.22 → 0.2.25
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 +806 -18
- package/dist/agent/catalog.cjs.map +1 -1
- package/dist/agent/catalog.d.ts +2400 -43
- package/dist/agent/catalog.js +772 -19
- package/dist/agent/catalog.js.map +1 -1
- package/dist/agent/skills/arcus/SKILL.md +72 -0
- package/dist/agent/skills/gmx/SKILL.md +32 -0
- package/dist/agent/skills/hyperliquid/SKILL.md +44 -3
- package/dist/agent/skills/uniswap-v4/SKILL.md +31 -1
- package/dist/core/index.cjs +55 -0
- package/dist/core/index.cjs.map +1 -1
- package/dist/core/index.d.ts +15 -21
- package/dist/core/index.js +54 -1
- package/dist/core/index.js.map +1 -1
- package/dist/eip712Multisign-xhXpUYp3.d.ts +36 -0
- package/dist/index.cjs +399 -12
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +398 -13
- package/dist/index.js.map +1 -1
- package/dist/protocols/evm/arcus/index.cjs +2061 -0
- package/dist/protocols/evm/arcus/index.cjs.map +1 -0
- package/dist/protocols/evm/arcus/index.d.ts +726 -0
- package/dist/protocols/evm/arcus/index.js +1964 -0
- package/dist/protocols/evm/arcus/index.js.map +1 -0
- 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 +6 -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;
|
|
@@ -5736,6 +5975,2123 @@ declare const mcpHyperliquidUpdateLeverageInputSchema: z.ZodEffects<z.ZodObject<
|
|
|
5736
5975
|
[x: string]: any;
|
|
5737
5976
|
}, unknown>;
|
|
5738
5977
|
|
|
5978
|
+
declare const mcpArcusFetchMarketsInputSchema: z.ZodObject<{
|
|
5979
|
+
chainId: z.ZodDefault<z.ZodNumber>;
|
|
5980
|
+
}, "strip", z.ZodTypeAny, {
|
|
5981
|
+
chainId: number;
|
|
5982
|
+
}, {
|
|
5983
|
+
chainId?: number | undefined;
|
|
5984
|
+
}>;
|
|
5985
|
+
declare const mcpArcusFetchMarketsOutputSchema: z.ZodObject<{
|
|
5986
|
+
markets: z.ZodArray<z.ZodObject<{
|
|
5987
|
+
marketDisplayName: z.ZodString;
|
|
5988
|
+
marketId: z.ZodNumber;
|
|
5989
|
+
baseAsset: z.ZodOptional<z.ZodString>;
|
|
5990
|
+
category: z.ZodOptional<z.ZodString>;
|
|
5991
|
+
status: z.ZodOptional<z.ZodString>;
|
|
5992
|
+
markPrice: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5993
|
+
}, "strip", z.ZodTypeAny, {
|
|
5994
|
+
marketId: number;
|
|
5995
|
+
marketDisplayName: string;
|
|
5996
|
+
status?: string | undefined;
|
|
5997
|
+
category?: string | undefined;
|
|
5998
|
+
baseAsset?: string | undefined;
|
|
5999
|
+
markPrice?: string | null | undefined;
|
|
6000
|
+
}, {
|
|
6001
|
+
marketId: number;
|
|
6002
|
+
marketDisplayName: string;
|
|
6003
|
+
status?: string | undefined;
|
|
6004
|
+
category?: string | undefined;
|
|
6005
|
+
baseAsset?: string | undefined;
|
|
6006
|
+
markPrice?: string | null | undefined;
|
|
6007
|
+
}>, "many">;
|
|
6008
|
+
marketKind: z.ZodLiteral<"perp">;
|
|
6009
|
+
}, "strip", z.ZodTypeAny, {
|
|
6010
|
+
markets: {
|
|
6011
|
+
marketId: number;
|
|
6012
|
+
marketDisplayName: string;
|
|
6013
|
+
status?: string | undefined;
|
|
6014
|
+
category?: string | undefined;
|
|
6015
|
+
baseAsset?: string | undefined;
|
|
6016
|
+
markPrice?: string | null | undefined;
|
|
6017
|
+
}[];
|
|
6018
|
+
marketKind: "perp";
|
|
6019
|
+
}, {
|
|
6020
|
+
markets: {
|
|
6021
|
+
marketId: number;
|
|
6022
|
+
marketDisplayName: string;
|
|
6023
|
+
status?: string | undefined;
|
|
6024
|
+
category?: string | undefined;
|
|
6025
|
+
baseAsset?: string | undefined;
|
|
6026
|
+
markPrice?: string | null | undefined;
|
|
6027
|
+
}[];
|
|
6028
|
+
marketKind: "perp";
|
|
6029
|
+
}>;
|
|
6030
|
+
declare const mcpArcusSearchMarketsInputSchema: z.ZodObject<{
|
|
6031
|
+
chainId: z.ZodDefault<z.ZodNumber>;
|
|
6032
|
+
} & {
|
|
6033
|
+
query: z.ZodString;
|
|
6034
|
+
limit: z.ZodOptional<z.ZodNumber>;
|
|
6035
|
+
}, "strip", z.ZodTypeAny, {
|
|
6036
|
+
chainId: number;
|
|
6037
|
+
query: string;
|
|
6038
|
+
limit?: number | undefined;
|
|
6039
|
+
}, {
|
|
6040
|
+
query: string;
|
|
6041
|
+
chainId?: number | undefined;
|
|
6042
|
+
limit?: number | undefined;
|
|
6043
|
+
}>;
|
|
6044
|
+
declare const mcpArcusSearchMarketsOutputSchema: z.ZodObject<{
|
|
6045
|
+
markets: z.ZodArray<z.ZodObject<{
|
|
6046
|
+
marketDisplayName: z.ZodString;
|
|
6047
|
+
marketId: z.ZodNumber;
|
|
6048
|
+
baseAsset: z.ZodOptional<z.ZodString>;
|
|
6049
|
+
category: z.ZodOptional<z.ZodString>;
|
|
6050
|
+
status: z.ZodOptional<z.ZodString>;
|
|
6051
|
+
markPrice: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6052
|
+
}, "strip", z.ZodTypeAny, {
|
|
6053
|
+
marketId: number;
|
|
6054
|
+
marketDisplayName: string;
|
|
6055
|
+
status?: string | undefined;
|
|
6056
|
+
category?: string | undefined;
|
|
6057
|
+
baseAsset?: string | undefined;
|
|
6058
|
+
markPrice?: string | null | undefined;
|
|
6059
|
+
}, {
|
|
6060
|
+
marketId: number;
|
|
6061
|
+
marketDisplayName: string;
|
|
6062
|
+
status?: string | undefined;
|
|
6063
|
+
category?: string | undefined;
|
|
6064
|
+
baseAsset?: string | undefined;
|
|
6065
|
+
markPrice?: string | null | undefined;
|
|
6066
|
+
}>, "many">;
|
|
6067
|
+
marketKind: z.ZodLiteral<"perp">;
|
|
6068
|
+
}, "strip", z.ZodTypeAny, {
|
|
6069
|
+
markets: {
|
|
6070
|
+
marketId: number;
|
|
6071
|
+
marketDisplayName: string;
|
|
6072
|
+
status?: string | undefined;
|
|
6073
|
+
category?: string | undefined;
|
|
6074
|
+
baseAsset?: string | undefined;
|
|
6075
|
+
markPrice?: string | null | undefined;
|
|
6076
|
+
}[];
|
|
6077
|
+
marketKind: "perp";
|
|
6078
|
+
}, {
|
|
6079
|
+
markets: {
|
|
6080
|
+
marketId: number;
|
|
6081
|
+
marketDisplayName: string;
|
|
6082
|
+
status?: string | undefined;
|
|
6083
|
+
category?: string | undefined;
|
|
6084
|
+
baseAsset?: string | undefined;
|
|
6085
|
+
markPrice?: string | null | undefined;
|
|
6086
|
+
}[];
|
|
6087
|
+
marketKind: "perp";
|
|
6088
|
+
}>;
|
|
6089
|
+
declare const mcpArcusFetchOhlcvInputSchema: z.ZodObject<{
|
|
6090
|
+
chainId: z.ZodDefault<z.ZodNumber>;
|
|
6091
|
+
} & {
|
|
6092
|
+
market: z.ZodOptional<z.ZodString>;
|
|
6093
|
+
coin: z.ZodOptional<z.ZodString>;
|
|
6094
|
+
interval: z.ZodOptional<z.ZodString>;
|
|
6095
|
+
lookbackDays: z.ZodOptional<z.ZodNumber>;
|
|
6096
|
+
lookbackHours: z.ZodOptional<z.ZodNumber>;
|
|
6097
|
+
candleCount: z.ZodOptional<z.ZodNumber>;
|
|
6098
|
+
}, "strip", z.ZodTypeAny, {
|
|
6099
|
+
chainId: number;
|
|
6100
|
+
interval?: string | undefined;
|
|
6101
|
+
candleCount?: number | undefined;
|
|
6102
|
+
market?: string | undefined;
|
|
6103
|
+
coin?: string | undefined;
|
|
6104
|
+
lookbackDays?: number | undefined;
|
|
6105
|
+
lookbackHours?: number | undefined;
|
|
6106
|
+
}, {
|
|
6107
|
+
chainId?: number | undefined;
|
|
6108
|
+
interval?: string | undefined;
|
|
6109
|
+
candleCount?: number | undefined;
|
|
6110
|
+
market?: string | undefined;
|
|
6111
|
+
coin?: string | undefined;
|
|
6112
|
+
lookbackDays?: number | undefined;
|
|
6113
|
+
lookbackHours?: number | undefined;
|
|
6114
|
+
}>;
|
|
6115
|
+
declare const mcpArcusFetchOhlcvOutputSchema: z.ZodObject<{
|
|
6116
|
+
ohlcv: z.ZodObject<{
|
|
6117
|
+
market: z.ZodOptional<z.ZodString>;
|
|
6118
|
+
coin: z.ZodOptional<z.ZodString>;
|
|
6119
|
+
tokenAddress: z.ZodOptional<z.ZodString>;
|
|
6120
|
+
interval: z.ZodString;
|
|
6121
|
+
marketKind: z.ZodOptional<z.ZodEnum<["perp", "spot"]>>;
|
|
6122
|
+
candles: z.ZodArray<z.ZodObject<{
|
|
6123
|
+
timestampMs: z.ZodNumber;
|
|
6124
|
+
open: z.ZodString;
|
|
6125
|
+
high: z.ZodString;
|
|
6126
|
+
low: z.ZodString;
|
|
6127
|
+
close: z.ZodString;
|
|
6128
|
+
volume: z.ZodString;
|
|
6129
|
+
}, "strip", z.ZodTypeAny, {
|
|
6130
|
+
high: string;
|
|
6131
|
+
low: string;
|
|
6132
|
+
open: string;
|
|
6133
|
+
volume: string;
|
|
6134
|
+
timestampMs: number;
|
|
6135
|
+
close: string;
|
|
6136
|
+
}, {
|
|
6137
|
+
high: string;
|
|
6138
|
+
low: string;
|
|
6139
|
+
open: string;
|
|
6140
|
+
volume: string;
|
|
6141
|
+
timestampMs: number;
|
|
6142
|
+
close: string;
|
|
6143
|
+
}>, "many">;
|
|
6144
|
+
candleCount: z.ZodOptional<z.ZodNumber>;
|
|
6145
|
+
latestCandle: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
6146
|
+
timestampMs: z.ZodNumber;
|
|
6147
|
+
open: z.ZodString;
|
|
6148
|
+
high: z.ZodString;
|
|
6149
|
+
low: z.ZodString;
|
|
6150
|
+
close: z.ZodString;
|
|
6151
|
+
volume: z.ZodString;
|
|
6152
|
+
}, "strip", z.ZodTypeAny, {
|
|
6153
|
+
high: string;
|
|
6154
|
+
low: string;
|
|
6155
|
+
open: string;
|
|
6156
|
+
volume: string;
|
|
6157
|
+
timestampMs: number;
|
|
6158
|
+
close: string;
|
|
6159
|
+
}, {
|
|
6160
|
+
high: string;
|
|
6161
|
+
low: string;
|
|
6162
|
+
open: string;
|
|
6163
|
+
volume: string;
|
|
6164
|
+
timestampMs: number;
|
|
6165
|
+
close: string;
|
|
6166
|
+
}>>>;
|
|
6167
|
+
dataSource: z.ZodOptional<z.ZodLiteral<"arcus">>;
|
|
6168
|
+
}, "strip", z.ZodTypeAny, {
|
|
6169
|
+
candles: {
|
|
6170
|
+
high: string;
|
|
6171
|
+
low: string;
|
|
6172
|
+
open: string;
|
|
6173
|
+
volume: string;
|
|
6174
|
+
timestampMs: number;
|
|
6175
|
+
close: string;
|
|
6176
|
+
}[];
|
|
6177
|
+
interval: string;
|
|
6178
|
+
tokenAddress?: string | undefined;
|
|
6179
|
+
dataSource?: "arcus" | undefined;
|
|
6180
|
+
candleCount?: number | undefined;
|
|
6181
|
+
market?: string | undefined;
|
|
6182
|
+
coin?: string | undefined;
|
|
6183
|
+
latestCandle?: {
|
|
6184
|
+
high: string;
|
|
6185
|
+
low: string;
|
|
6186
|
+
open: string;
|
|
6187
|
+
volume: string;
|
|
6188
|
+
timestampMs: number;
|
|
6189
|
+
close: string;
|
|
6190
|
+
} | null | undefined;
|
|
6191
|
+
marketKind?: "perp" | "spot" | undefined;
|
|
6192
|
+
}, {
|
|
6193
|
+
candles: {
|
|
6194
|
+
high: string;
|
|
6195
|
+
low: string;
|
|
6196
|
+
open: string;
|
|
6197
|
+
volume: string;
|
|
6198
|
+
timestampMs: number;
|
|
6199
|
+
close: string;
|
|
6200
|
+
}[];
|
|
6201
|
+
interval: string;
|
|
6202
|
+
tokenAddress?: string | undefined;
|
|
6203
|
+
dataSource?: "arcus" | undefined;
|
|
6204
|
+
candleCount?: number | undefined;
|
|
6205
|
+
market?: string | undefined;
|
|
6206
|
+
coin?: string | undefined;
|
|
6207
|
+
latestCandle?: {
|
|
6208
|
+
high: string;
|
|
6209
|
+
low: string;
|
|
6210
|
+
open: string;
|
|
6211
|
+
volume: string;
|
|
6212
|
+
timestampMs: number;
|
|
6213
|
+
close: string;
|
|
6214
|
+
} | null | undefined;
|
|
6215
|
+
marketKind?: "perp" | "spot" | undefined;
|
|
6216
|
+
}>;
|
|
6217
|
+
dataSource: z.ZodOptional<z.ZodLiteral<"arcus">>;
|
|
6218
|
+
chainId: z.ZodOptional<z.ZodNumber>;
|
|
6219
|
+
resolvedMarket: z.ZodOptional<z.ZodString>;
|
|
6220
|
+
}, "strip", z.ZodTypeAny, {
|
|
6221
|
+
ohlcv: {
|
|
6222
|
+
candles: {
|
|
6223
|
+
high: string;
|
|
6224
|
+
low: string;
|
|
6225
|
+
open: string;
|
|
6226
|
+
volume: string;
|
|
6227
|
+
timestampMs: number;
|
|
6228
|
+
close: string;
|
|
6229
|
+
}[];
|
|
6230
|
+
interval: string;
|
|
6231
|
+
tokenAddress?: string | undefined;
|
|
6232
|
+
dataSource?: "arcus" | undefined;
|
|
6233
|
+
candleCount?: number | undefined;
|
|
6234
|
+
market?: string | undefined;
|
|
6235
|
+
coin?: string | undefined;
|
|
6236
|
+
latestCandle?: {
|
|
6237
|
+
high: string;
|
|
6238
|
+
low: string;
|
|
6239
|
+
open: string;
|
|
6240
|
+
volume: string;
|
|
6241
|
+
timestampMs: number;
|
|
6242
|
+
close: string;
|
|
6243
|
+
} | null | undefined;
|
|
6244
|
+
marketKind?: "perp" | "spot" | undefined;
|
|
6245
|
+
};
|
|
6246
|
+
chainId?: number | undefined;
|
|
6247
|
+
dataSource?: "arcus" | undefined;
|
|
6248
|
+
resolvedMarket?: string | undefined;
|
|
6249
|
+
}, {
|
|
6250
|
+
ohlcv: {
|
|
6251
|
+
candles: {
|
|
6252
|
+
high: string;
|
|
6253
|
+
low: string;
|
|
6254
|
+
open: string;
|
|
6255
|
+
volume: string;
|
|
6256
|
+
timestampMs: number;
|
|
6257
|
+
close: string;
|
|
6258
|
+
}[];
|
|
6259
|
+
interval: string;
|
|
6260
|
+
tokenAddress?: string | undefined;
|
|
6261
|
+
dataSource?: "arcus" | undefined;
|
|
6262
|
+
candleCount?: number | undefined;
|
|
6263
|
+
market?: string | undefined;
|
|
6264
|
+
coin?: string | undefined;
|
|
6265
|
+
latestCandle?: {
|
|
6266
|
+
high: string;
|
|
6267
|
+
low: string;
|
|
6268
|
+
open: string;
|
|
6269
|
+
volume: string;
|
|
6270
|
+
timestampMs: number;
|
|
6271
|
+
close: string;
|
|
6272
|
+
} | null | undefined;
|
|
6273
|
+
marketKind?: "perp" | "spot" | undefined;
|
|
6274
|
+
};
|
|
6275
|
+
chainId?: number | undefined;
|
|
6276
|
+
dataSource?: "arcus" | undefined;
|
|
6277
|
+
resolvedMarket?: string | undefined;
|
|
6278
|
+
}>;
|
|
6279
|
+
declare const mcpArcusSpotFetchMarketsInputSchema: z.ZodObject<{
|
|
6280
|
+
chainId: z.ZodDefault<z.ZodNumber>;
|
|
6281
|
+
}, "strip", z.ZodTypeAny, {
|
|
6282
|
+
chainId: number;
|
|
6283
|
+
}, {
|
|
6284
|
+
chainId?: number | undefined;
|
|
6285
|
+
}>;
|
|
6286
|
+
declare const mcpArcusSpotFetchMarketsOutputSchema: z.ZodObject<{
|
|
6287
|
+
tokens: z.ZodArray<z.ZodObject<{
|
|
6288
|
+
ticker: z.ZodString;
|
|
6289
|
+
contractAddress: z.ZodString;
|
|
6290
|
+
name: z.ZodString;
|
|
6291
|
+
logoUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6292
|
+
price: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6293
|
+
}, "strip", z.ZodTypeAny, {
|
|
6294
|
+
name: string;
|
|
6295
|
+
contractAddress: string;
|
|
6296
|
+
ticker: string;
|
|
6297
|
+
logoUrl?: string | null | undefined;
|
|
6298
|
+
price?: string | null | undefined;
|
|
6299
|
+
}, {
|
|
6300
|
+
name: string;
|
|
6301
|
+
contractAddress: string;
|
|
6302
|
+
ticker: string;
|
|
6303
|
+
logoUrl?: string | null | undefined;
|
|
6304
|
+
price?: string | null | undefined;
|
|
6305
|
+
}>, "many">;
|
|
6306
|
+
marketKind: z.ZodLiteral<"spot">;
|
|
6307
|
+
}, "strip", z.ZodTypeAny, {
|
|
6308
|
+
marketKind: "spot";
|
|
6309
|
+
tokens: {
|
|
6310
|
+
name: string;
|
|
6311
|
+
contractAddress: string;
|
|
6312
|
+
ticker: string;
|
|
6313
|
+
logoUrl?: string | null | undefined;
|
|
6314
|
+
price?: string | null | undefined;
|
|
6315
|
+
}[];
|
|
6316
|
+
}, {
|
|
6317
|
+
marketKind: "spot";
|
|
6318
|
+
tokens: {
|
|
6319
|
+
name: string;
|
|
6320
|
+
contractAddress: string;
|
|
6321
|
+
ticker: string;
|
|
6322
|
+
logoUrl?: string | null | undefined;
|
|
6323
|
+
price?: string | null | undefined;
|
|
6324
|
+
}[];
|
|
6325
|
+
}>;
|
|
6326
|
+
declare const mcpArcusSpotFetchOhlcvInputSchema: z.ZodObject<{
|
|
6327
|
+
chainId: z.ZodDefault<z.ZodNumber>;
|
|
6328
|
+
} & {
|
|
6329
|
+
ticker: z.ZodOptional<z.ZodString>;
|
|
6330
|
+
tokenAddress: z.ZodOptional<z.ZodString>;
|
|
6331
|
+
currencySymbol: z.ZodOptional<z.ZodString>;
|
|
6332
|
+
interval: z.ZodOptional<z.ZodString>;
|
|
6333
|
+
lookbackDays: z.ZodOptional<z.ZodNumber>;
|
|
6334
|
+
candleCount: z.ZodOptional<z.ZodNumber>;
|
|
6335
|
+
}, "strip", z.ZodTypeAny, {
|
|
6336
|
+
chainId: number;
|
|
6337
|
+
tokenAddress?: string | undefined;
|
|
6338
|
+
interval?: string | undefined;
|
|
6339
|
+
currencySymbol?: string | undefined;
|
|
6340
|
+
candleCount?: number | undefined;
|
|
6341
|
+
lookbackDays?: number | undefined;
|
|
6342
|
+
ticker?: string | undefined;
|
|
6343
|
+
}, {
|
|
6344
|
+
chainId?: number | undefined;
|
|
6345
|
+
tokenAddress?: string | undefined;
|
|
6346
|
+
interval?: string | undefined;
|
|
6347
|
+
currencySymbol?: string | undefined;
|
|
6348
|
+
candleCount?: number | undefined;
|
|
6349
|
+
lookbackDays?: number | undefined;
|
|
6350
|
+
ticker?: string | undefined;
|
|
6351
|
+
}>;
|
|
6352
|
+
declare const mcpArcusSpotFetchOhlcvOutputSchema: z.ZodObject<{
|
|
6353
|
+
ohlcv: z.ZodObject<{
|
|
6354
|
+
market: z.ZodOptional<z.ZodString>;
|
|
6355
|
+
coin: z.ZodOptional<z.ZodString>;
|
|
6356
|
+
tokenAddress: z.ZodOptional<z.ZodString>;
|
|
6357
|
+
interval: z.ZodString;
|
|
6358
|
+
marketKind: z.ZodOptional<z.ZodEnum<["perp", "spot"]>>;
|
|
6359
|
+
candles: z.ZodArray<z.ZodObject<{
|
|
6360
|
+
timestampMs: z.ZodNumber;
|
|
6361
|
+
open: z.ZodString;
|
|
6362
|
+
high: z.ZodString;
|
|
6363
|
+
low: z.ZodString;
|
|
6364
|
+
close: z.ZodString;
|
|
6365
|
+
volume: z.ZodString;
|
|
6366
|
+
}, "strip", z.ZodTypeAny, {
|
|
6367
|
+
high: string;
|
|
6368
|
+
low: string;
|
|
6369
|
+
open: string;
|
|
6370
|
+
volume: string;
|
|
6371
|
+
timestampMs: number;
|
|
6372
|
+
close: string;
|
|
6373
|
+
}, {
|
|
6374
|
+
high: string;
|
|
6375
|
+
low: string;
|
|
6376
|
+
open: string;
|
|
6377
|
+
volume: string;
|
|
6378
|
+
timestampMs: number;
|
|
6379
|
+
close: string;
|
|
6380
|
+
}>, "many">;
|
|
6381
|
+
candleCount: z.ZodOptional<z.ZodNumber>;
|
|
6382
|
+
latestCandle: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
6383
|
+
timestampMs: z.ZodNumber;
|
|
6384
|
+
open: z.ZodString;
|
|
6385
|
+
high: z.ZodString;
|
|
6386
|
+
low: z.ZodString;
|
|
6387
|
+
close: z.ZodString;
|
|
6388
|
+
volume: z.ZodString;
|
|
6389
|
+
}, "strip", z.ZodTypeAny, {
|
|
6390
|
+
high: string;
|
|
6391
|
+
low: string;
|
|
6392
|
+
open: string;
|
|
6393
|
+
volume: string;
|
|
6394
|
+
timestampMs: number;
|
|
6395
|
+
close: string;
|
|
6396
|
+
}, {
|
|
6397
|
+
high: string;
|
|
6398
|
+
low: string;
|
|
6399
|
+
open: string;
|
|
6400
|
+
volume: string;
|
|
6401
|
+
timestampMs: number;
|
|
6402
|
+
close: string;
|
|
6403
|
+
}>>>;
|
|
6404
|
+
dataSource: z.ZodOptional<z.ZodLiteral<"arcus">>;
|
|
6405
|
+
}, "strip", z.ZodTypeAny, {
|
|
6406
|
+
candles: {
|
|
6407
|
+
high: string;
|
|
6408
|
+
low: string;
|
|
6409
|
+
open: string;
|
|
6410
|
+
volume: string;
|
|
6411
|
+
timestampMs: number;
|
|
6412
|
+
close: string;
|
|
6413
|
+
}[];
|
|
6414
|
+
interval: string;
|
|
6415
|
+
tokenAddress?: string | undefined;
|
|
6416
|
+
dataSource?: "arcus" | undefined;
|
|
6417
|
+
candleCount?: number | undefined;
|
|
6418
|
+
market?: string | undefined;
|
|
6419
|
+
coin?: string | undefined;
|
|
6420
|
+
latestCandle?: {
|
|
6421
|
+
high: string;
|
|
6422
|
+
low: string;
|
|
6423
|
+
open: string;
|
|
6424
|
+
volume: string;
|
|
6425
|
+
timestampMs: number;
|
|
6426
|
+
close: string;
|
|
6427
|
+
} | null | undefined;
|
|
6428
|
+
marketKind?: "perp" | "spot" | undefined;
|
|
6429
|
+
}, {
|
|
6430
|
+
candles: {
|
|
6431
|
+
high: string;
|
|
6432
|
+
low: string;
|
|
6433
|
+
open: string;
|
|
6434
|
+
volume: string;
|
|
6435
|
+
timestampMs: number;
|
|
6436
|
+
close: string;
|
|
6437
|
+
}[];
|
|
6438
|
+
interval: string;
|
|
6439
|
+
tokenAddress?: string | undefined;
|
|
6440
|
+
dataSource?: "arcus" | undefined;
|
|
6441
|
+
candleCount?: number | undefined;
|
|
6442
|
+
market?: string | undefined;
|
|
6443
|
+
coin?: string | undefined;
|
|
6444
|
+
latestCandle?: {
|
|
6445
|
+
high: string;
|
|
6446
|
+
low: string;
|
|
6447
|
+
open: string;
|
|
6448
|
+
volume: string;
|
|
6449
|
+
timestampMs: number;
|
|
6450
|
+
close: string;
|
|
6451
|
+
} | null | undefined;
|
|
6452
|
+
marketKind?: "perp" | "spot" | undefined;
|
|
6453
|
+
}>;
|
|
6454
|
+
dataSource: z.ZodOptional<z.ZodLiteral<"arcus">>;
|
|
6455
|
+
chainId: z.ZodOptional<z.ZodNumber>;
|
|
6456
|
+
resolvedMarket: z.ZodOptional<z.ZodString>;
|
|
6457
|
+
}, "strip", z.ZodTypeAny, {
|
|
6458
|
+
ohlcv: {
|
|
6459
|
+
candles: {
|
|
6460
|
+
high: string;
|
|
6461
|
+
low: string;
|
|
6462
|
+
open: string;
|
|
6463
|
+
volume: string;
|
|
6464
|
+
timestampMs: number;
|
|
6465
|
+
close: string;
|
|
6466
|
+
}[];
|
|
6467
|
+
interval: string;
|
|
6468
|
+
tokenAddress?: string | undefined;
|
|
6469
|
+
dataSource?: "arcus" | undefined;
|
|
6470
|
+
candleCount?: number | undefined;
|
|
6471
|
+
market?: string | undefined;
|
|
6472
|
+
coin?: string | undefined;
|
|
6473
|
+
latestCandle?: {
|
|
6474
|
+
high: string;
|
|
6475
|
+
low: string;
|
|
6476
|
+
open: string;
|
|
6477
|
+
volume: string;
|
|
6478
|
+
timestampMs: number;
|
|
6479
|
+
close: string;
|
|
6480
|
+
} | null | undefined;
|
|
6481
|
+
marketKind?: "perp" | "spot" | undefined;
|
|
6482
|
+
};
|
|
6483
|
+
chainId?: number | undefined;
|
|
6484
|
+
dataSource?: "arcus" | undefined;
|
|
6485
|
+
resolvedMarket?: string | undefined;
|
|
6486
|
+
}, {
|
|
6487
|
+
ohlcv: {
|
|
6488
|
+
candles: {
|
|
6489
|
+
high: string;
|
|
6490
|
+
low: string;
|
|
6491
|
+
open: string;
|
|
6492
|
+
volume: string;
|
|
6493
|
+
timestampMs: number;
|
|
6494
|
+
close: string;
|
|
6495
|
+
}[];
|
|
6496
|
+
interval: string;
|
|
6497
|
+
tokenAddress?: string | undefined;
|
|
6498
|
+
dataSource?: "arcus" | undefined;
|
|
6499
|
+
candleCount?: number | undefined;
|
|
6500
|
+
market?: string | undefined;
|
|
6501
|
+
coin?: string | undefined;
|
|
6502
|
+
latestCandle?: {
|
|
6503
|
+
high: string;
|
|
6504
|
+
low: string;
|
|
6505
|
+
open: string;
|
|
6506
|
+
volume: string;
|
|
6507
|
+
timestampMs: number;
|
|
6508
|
+
close: string;
|
|
6509
|
+
} | null | undefined;
|
|
6510
|
+
marketKind?: "perp" | "spot" | undefined;
|
|
6511
|
+
};
|
|
6512
|
+
chainId?: number | undefined;
|
|
6513
|
+
dataSource?: "arcus" | undefined;
|
|
6514
|
+
resolvedMarket?: string | undefined;
|
|
6515
|
+
}>;
|
|
6516
|
+
declare const mcpArcusFetchMarketSnapshotInputSchema: z.ZodObject<{
|
|
6517
|
+
chainId: z.ZodDefault<z.ZodNumber>;
|
|
6518
|
+
} & {
|
|
6519
|
+
market: z.ZodOptional<z.ZodString>;
|
|
6520
|
+
coin: z.ZodOptional<z.ZodString>;
|
|
6521
|
+
interval: z.ZodOptional<z.ZodString>;
|
|
6522
|
+
candleLimit: z.ZodOptional<z.ZodNumber>;
|
|
6523
|
+
}, "strip", z.ZodTypeAny, {
|
|
6524
|
+
chainId: number;
|
|
6525
|
+
interval?: string | undefined;
|
|
6526
|
+
market?: string | undefined;
|
|
6527
|
+
coin?: string | undefined;
|
|
6528
|
+
candleLimit?: number | undefined;
|
|
6529
|
+
}, {
|
|
6530
|
+
chainId?: number | undefined;
|
|
6531
|
+
interval?: string | undefined;
|
|
6532
|
+
market?: string | undefined;
|
|
6533
|
+
coin?: string | undefined;
|
|
6534
|
+
candleLimit?: number | undefined;
|
|
6535
|
+
}>;
|
|
6536
|
+
declare const mcpArcusFetchMarketSnapshotOutputSchema: z.ZodObject<{
|
|
6537
|
+
snapshot: z.ZodObject<{
|
|
6538
|
+
market: z.ZodString;
|
|
6539
|
+
midUsd: z.ZodString;
|
|
6540
|
+
interval: z.ZodString;
|
|
6541
|
+
latestCandle: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
6542
|
+
timestampMs: z.ZodNumber;
|
|
6543
|
+
open: z.ZodString;
|
|
6544
|
+
high: z.ZodString;
|
|
6545
|
+
low: z.ZodString;
|
|
6546
|
+
close: z.ZodString;
|
|
6547
|
+
volume: z.ZodString;
|
|
6548
|
+
}, "strip", z.ZodTypeAny, {
|
|
6549
|
+
high: string;
|
|
6550
|
+
low: string;
|
|
6551
|
+
open: string;
|
|
6552
|
+
volume: string;
|
|
6553
|
+
timestampMs: number;
|
|
6554
|
+
close: string;
|
|
6555
|
+
}, {
|
|
6556
|
+
high: string;
|
|
6557
|
+
low: string;
|
|
6558
|
+
open: string;
|
|
6559
|
+
volume: string;
|
|
6560
|
+
timestampMs: number;
|
|
6561
|
+
close: string;
|
|
6562
|
+
}>>>;
|
|
6563
|
+
candles: z.ZodArray<z.ZodObject<{
|
|
6564
|
+
timestampMs: z.ZodNumber;
|
|
6565
|
+
open: z.ZodString;
|
|
6566
|
+
high: z.ZodString;
|
|
6567
|
+
low: z.ZodString;
|
|
6568
|
+
close: z.ZodString;
|
|
6569
|
+
volume: z.ZodString;
|
|
6570
|
+
}, "strip", z.ZodTypeAny, {
|
|
6571
|
+
high: string;
|
|
6572
|
+
low: string;
|
|
6573
|
+
open: string;
|
|
6574
|
+
volume: string;
|
|
6575
|
+
timestampMs: number;
|
|
6576
|
+
close: string;
|
|
6577
|
+
}, {
|
|
6578
|
+
high: string;
|
|
6579
|
+
low: string;
|
|
6580
|
+
open: string;
|
|
6581
|
+
volume: string;
|
|
6582
|
+
timestampMs: number;
|
|
6583
|
+
close: string;
|
|
6584
|
+
}>, "many">;
|
|
6585
|
+
candleCount: z.ZodNumber;
|
|
6586
|
+
fetchedAtMs: z.ZodNumber;
|
|
6587
|
+
}, "strip", z.ZodTypeAny, {
|
|
6588
|
+
candles: {
|
|
6589
|
+
high: string;
|
|
6590
|
+
low: string;
|
|
6591
|
+
open: string;
|
|
6592
|
+
volume: string;
|
|
6593
|
+
timestampMs: number;
|
|
6594
|
+
close: string;
|
|
6595
|
+
}[];
|
|
6596
|
+
interval: string;
|
|
6597
|
+
candleCount: number;
|
|
6598
|
+
fetchedAtMs: number;
|
|
6599
|
+
market: string;
|
|
6600
|
+
midUsd: string;
|
|
6601
|
+
latestCandle?: {
|
|
6602
|
+
high: string;
|
|
6603
|
+
low: string;
|
|
6604
|
+
open: string;
|
|
6605
|
+
volume: string;
|
|
6606
|
+
timestampMs: number;
|
|
6607
|
+
close: string;
|
|
6608
|
+
} | null | undefined;
|
|
6609
|
+
}, {
|
|
6610
|
+
candles: {
|
|
6611
|
+
high: string;
|
|
6612
|
+
low: string;
|
|
6613
|
+
open: string;
|
|
6614
|
+
volume: string;
|
|
6615
|
+
timestampMs: number;
|
|
6616
|
+
close: string;
|
|
6617
|
+
}[];
|
|
6618
|
+
interval: string;
|
|
6619
|
+
candleCount: number;
|
|
6620
|
+
fetchedAtMs: number;
|
|
6621
|
+
market: string;
|
|
6622
|
+
midUsd: string;
|
|
6623
|
+
latestCandle?: {
|
|
6624
|
+
high: string;
|
|
6625
|
+
low: string;
|
|
6626
|
+
open: string;
|
|
6627
|
+
volume: string;
|
|
6628
|
+
timestampMs: number;
|
|
6629
|
+
close: string;
|
|
6630
|
+
} | null | undefined;
|
|
6631
|
+
}>;
|
|
6632
|
+
resolvedMarket: z.ZodString;
|
|
6633
|
+
}, "strip", z.ZodTypeAny, {
|
|
6634
|
+
snapshot: {
|
|
6635
|
+
candles: {
|
|
6636
|
+
high: string;
|
|
6637
|
+
low: string;
|
|
6638
|
+
open: string;
|
|
6639
|
+
volume: string;
|
|
6640
|
+
timestampMs: number;
|
|
6641
|
+
close: string;
|
|
6642
|
+
}[];
|
|
6643
|
+
interval: string;
|
|
6644
|
+
candleCount: number;
|
|
6645
|
+
fetchedAtMs: number;
|
|
6646
|
+
market: string;
|
|
6647
|
+
midUsd: string;
|
|
6648
|
+
latestCandle?: {
|
|
6649
|
+
high: string;
|
|
6650
|
+
low: string;
|
|
6651
|
+
open: string;
|
|
6652
|
+
volume: string;
|
|
6653
|
+
timestampMs: number;
|
|
6654
|
+
close: string;
|
|
6655
|
+
} | null | undefined;
|
|
6656
|
+
};
|
|
6657
|
+
resolvedMarket: string;
|
|
6658
|
+
}, {
|
|
6659
|
+
snapshot: {
|
|
6660
|
+
candles: {
|
|
6661
|
+
high: string;
|
|
6662
|
+
low: string;
|
|
6663
|
+
open: string;
|
|
6664
|
+
volume: string;
|
|
6665
|
+
timestampMs: number;
|
|
6666
|
+
close: string;
|
|
6667
|
+
}[];
|
|
6668
|
+
interval: string;
|
|
6669
|
+
candleCount: number;
|
|
6670
|
+
fetchedAtMs: number;
|
|
6671
|
+
market: string;
|
|
6672
|
+
midUsd: string;
|
|
6673
|
+
latestCandle?: {
|
|
6674
|
+
high: string;
|
|
6675
|
+
low: string;
|
|
6676
|
+
open: string;
|
|
6677
|
+
volume: string;
|
|
6678
|
+
timestampMs: number;
|
|
6679
|
+
close: string;
|
|
6680
|
+
} | null | undefined;
|
|
6681
|
+
};
|
|
6682
|
+
resolvedMarket: string;
|
|
6683
|
+
}>;
|
|
6684
|
+
declare const mcpArcusFetchAccountInputSchema: z.ZodObject<{
|
|
6685
|
+
chainId: z.ZodDefault<z.ZodNumber>;
|
|
6686
|
+
} & {
|
|
6687
|
+
executorAddress: z.ZodString;
|
|
6688
|
+
}, "strip", z.ZodTypeAny, {
|
|
6689
|
+
chainId: number;
|
|
6690
|
+
executorAddress: string;
|
|
6691
|
+
}, {
|
|
6692
|
+
executorAddress: string;
|
|
6693
|
+
chainId?: number | undefined;
|
|
6694
|
+
}>;
|
|
6695
|
+
declare const mcpArcusFetchAccountOutputSchema: z.ZodObject<{
|
|
6696
|
+
account: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
6697
|
+
executorAddress: z.ZodString;
|
|
6698
|
+
}, "strip", z.ZodTypeAny, {
|
|
6699
|
+
account: Record<string, unknown>;
|
|
6700
|
+
executorAddress: string;
|
|
6701
|
+
}, {
|
|
6702
|
+
account: Record<string, unknown>;
|
|
6703
|
+
executorAddress: string;
|
|
6704
|
+
}>;
|
|
6705
|
+
declare const mcpArcusFetchPositionsInputSchema: z.ZodObject<{
|
|
6706
|
+
chainId: z.ZodDefault<z.ZodNumber>;
|
|
6707
|
+
} & {
|
|
6708
|
+
executorAddress: z.ZodString;
|
|
6709
|
+
}, "strip", z.ZodTypeAny, {
|
|
6710
|
+
chainId: number;
|
|
6711
|
+
executorAddress: string;
|
|
6712
|
+
}, {
|
|
6713
|
+
executorAddress: string;
|
|
6714
|
+
chainId?: number | undefined;
|
|
6715
|
+
}>;
|
|
6716
|
+
declare const mcpArcusFetchPositionsOutputSchema: z.ZodObject<{
|
|
6717
|
+
positions: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">;
|
|
6718
|
+
executorAddress: z.ZodString;
|
|
6719
|
+
}, "strip", z.ZodTypeAny, {
|
|
6720
|
+
executorAddress: string;
|
|
6721
|
+
positions: Record<string, unknown>[];
|
|
6722
|
+
}, {
|
|
6723
|
+
executorAddress: string;
|
|
6724
|
+
positions: Record<string, unknown>[];
|
|
6725
|
+
}>;
|
|
6726
|
+
declare const mcpArcusFetchOpenOrdersInputSchema: z.ZodObject<{
|
|
6727
|
+
chainId: z.ZodDefault<z.ZodNumber>;
|
|
6728
|
+
} & {
|
|
6729
|
+
executorAddress: z.ZodString;
|
|
6730
|
+
}, "strip", z.ZodTypeAny, {
|
|
6731
|
+
chainId: number;
|
|
6732
|
+
executorAddress: string;
|
|
6733
|
+
}, {
|
|
6734
|
+
executorAddress: string;
|
|
6735
|
+
chainId?: number | undefined;
|
|
6736
|
+
}>;
|
|
6737
|
+
declare const mcpArcusFetchOpenOrdersOutputSchema: z.ZodObject<{
|
|
6738
|
+
orders: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">;
|
|
6739
|
+
executorAddress: z.ZodString;
|
|
6740
|
+
}, "strip", z.ZodTypeAny, {
|
|
6741
|
+
executorAddress: string;
|
|
6742
|
+
orders: Record<string, unknown>[];
|
|
6743
|
+
}, {
|
|
6744
|
+
executorAddress: string;
|
|
6745
|
+
orders: Record<string, unknown>[];
|
|
6746
|
+
}>;
|
|
6747
|
+
declare const mcpArcusFetchOpenContextInputSchema: z.ZodObject<{
|
|
6748
|
+
chainId: z.ZodDefault<z.ZodNumber>;
|
|
6749
|
+
} & {
|
|
6750
|
+
executorAddress: z.ZodString;
|
|
6751
|
+
} & {
|
|
6752
|
+
market: z.ZodOptional<z.ZodString>;
|
|
6753
|
+
}, "strip", z.ZodTypeAny, {
|
|
6754
|
+
chainId: number;
|
|
6755
|
+
executorAddress: string;
|
|
6756
|
+
market?: string | undefined;
|
|
6757
|
+
}, {
|
|
6758
|
+
executorAddress: string;
|
|
6759
|
+
chainId?: number | undefined;
|
|
6760
|
+
market?: string | undefined;
|
|
6761
|
+
}>;
|
|
6762
|
+
declare const mcpArcusFetchOpenContextOutputSchema: z.ZodObject<{
|
|
6763
|
+
account: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
6764
|
+
positions: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">;
|
|
6765
|
+
orders: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">;
|
|
6766
|
+
apiKeys: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">;
|
|
6767
|
+
leverages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6768
|
+
marketId: z.ZodNumber;
|
|
6769
|
+
marketDisplayName: z.ZodString;
|
|
6770
|
+
leverage: z.ZodNumber;
|
|
6771
|
+
}, "strip", z.ZodTypeAny, {
|
|
6772
|
+
marketId: number;
|
|
6773
|
+
leverage: number;
|
|
6774
|
+
marketDisplayName: string;
|
|
6775
|
+
}, {
|
|
6776
|
+
marketId: number;
|
|
6777
|
+
leverage: number;
|
|
6778
|
+
marketDisplayName: string;
|
|
6779
|
+
}>, "many">>;
|
|
6780
|
+
activeAsset: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
6781
|
+
market: z.ZodString;
|
|
6782
|
+
leverage: z.ZodNullable<z.ZodNumber>;
|
|
6783
|
+
leverageLabel: z.ZodNullable<z.ZodString>;
|
|
6784
|
+
maxLeverage: z.ZodNullable<z.ZodNumber>;
|
|
6785
|
+
markPrice: z.ZodNullable<z.ZodString>;
|
|
6786
|
+
}, "strip", z.ZodTypeAny, {
|
|
6787
|
+
market: string;
|
|
6788
|
+
leverageLabel: string | null;
|
|
6789
|
+
maxLeverage: number | null;
|
|
6790
|
+
leverage: number | null;
|
|
6791
|
+
markPrice: string | null;
|
|
6792
|
+
}, {
|
|
6793
|
+
market: string;
|
|
6794
|
+
leverageLabel: string | null;
|
|
6795
|
+
maxLeverage: number | null;
|
|
6796
|
+
leverage: number | null;
|
|
6797
|
+
markPrice: string | null;
|
|
6798
|
+
}>>>;
|
|
6799
|
+
executorAddress: z.ZodString;
|
|
6800
|
+
hasRegisteredApiKey: z.ZodBoolean;
|
|
6801
|
+
}, "strip", z.ZodTypeAny, {
|
|
6802
|
+
account: Record<string, unknown> | null;
|
|
6803
|
+
executorAddress: string;
|
|
6804
|
+
positions: Record<string, unknown>[];
|
|
6805
|
+
orders: Record<string, unknown>[];
|
|
6806
|
+
apiKeys: Record<string, unknown>[];
|
|
6807
|
+
hasRegisteredApiKey: boolean;
|
|
6808
|
+
activeAsset?: {
|
|
6809
|
+
market: string;
|
|
6810
|
+
leverageLabel: string | null;
|
|
6811
|
+
maxLeverage: number | null;
|
|
6812
|
+
leverage: number | null;
|
|
6813
|
+
markPrice: string | null;
|
|
6814
|
+
} | null | undefined;
|
|
6815
|
+
leverages?: {
|
|
6816
|
+
marketId: number;
|
|
6817
|
+
leverage: number;
|
|
6818
|
+
marketDisplayName: string;
|
|
6819
|
+
}[] | undefined;
|
|
6820
|
+
}, {
|
|
6821
|
+
account: Record<string, unknown> | null;
|
|
6822
|
+
executorAddress: string;
|
|
6823
|
+
positions: Record<string, unknown>[];
|
|
6824
|
+
orders: Record<string, unknown>[];
|
|
6825
|
+
apiKeys: Record<string, unknown>[];
|
|
6826
|
+
hasRegisteredApiKey: boolean;
|
|
6827
|
+
activeAsset?: {
|
|
6828
|
+
market: string;
|
|
6829
|
+
leverageLabel: string | null;
|
|
6830
|
+
maxLeverage: number | null;
|
|
6831
|
+
leverage: number | null;
|
|
6832
|
+
markPrice: string | null;
|
|
6833
|
+
} | null | undefined;
|
|
6834
|
+
leverages?: {
|
|
6835
|
+
marketId: number;
|
|
6836
|
+
leverage: number;
|
|
6837
|
+
marketDisplayName: string;
|
|
6838
|
+
}[] | undefined;
|
|
6839
|
+
}>;
|
|
6840
|
+
declare const mcpArcusSpotFetchBalancesInputSchema: z.ZodObject<{
|
|
6841
|
+
chainId: z.ZodDefault<z.ZodNumber>;
|
|
6842
|
+
} & {
|
|
6843
|
+
executorAddress: z.ZodString;
|
|
6844
|
+
}, "strip", z.ZodTypeAny, {
|
|
6845
|
+
chainId: number;
|
|
6846
|
+
executorAddress: string;
|
|
6847
|
+
}, {
|
|
6848
|
+
executorAddress: string;
|
|
6849
|
+
chainId?: number | undefined;
|
|
6850
|
+
}>;
|
|
6851
|
+
declare const mcpArcusSpotFetchBalancesOutputSchema: z.ZodObject<{
|
|
6852
|
+
balances: z.ZodArray<z.ZodObject<{
|
|
6853
|
+
ticker: z.ZodString;
|
|
6854
|
+
contractAddress: z.ZodString;
|
|
6855
|
+
balanceHuman: z.ZodString;
|
|
6856
|
+
balanceRaw: z.ZodString;
|
|
6857
|
+
}, "strip", z.ZodTypeAny, {
|
|
6858
|
+
contractAddress: string;
|
|
6859
|
+
ticker: string;
|
|
6860
|
+
balanceHuman: string;
|
|
6861
|
+
balanceRaw: string;
|
|
6862
|
+
}, {
|
|
6863
|
+
contractAddress: string;
|
|
6864
|
+
ticker: string;
|
|
6865
|
+
balanceHuman: string;
|
|
6866
|
+
balanceRaw: string;
|
|
6867
|
+
}>, "many">;
|
|
6868
|
+
executorAddress: z.ZodString;
|
|
6869
|
+
}, "strip", z.ZodTypeAny, {
|
|
6870
|
+
executorAddress: string;
|
|
6871
|
+
balances: {
|
|
6872
|
+
contractAddress: string;
|
|
6873
|
+
ticker: string;
|
|
6874
|
+
balanceHuman: string;
|
|
6875
|
+
balanceRaw: string;
|
|
6876
|
+
}[];
|
|
6877
|
+
}, {
|
|
6878
|
+
executorAddress: string;
|
|
6879
|
+
balances: {
|
|
6880
|
+
contractAddress: string;
|
|
6881
|
+
ticker: string;
|
|
6882
|
+
balanceHuman: string;
|
|
6883
|
+
balanceRaw: string;
|
|
6884
|
+
}[];
|
|
6885
|
+
}>;
|
|
6886
|
+
declare const mcpArcusBuildCreateApiKeyMultisignInputSchema: z.ZodEffects<z.ZodObject<{
|
|
6887
|
+
keyGenId: z.ZodOptional<z.ZodString>;
|
|
6888
|
+
keyGen: z.ZodOptional<z.ZodObject<{
|
|
6889
|
+
pubkeyhex: z.ZodString;
|
|
6890
|
+
keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
6891
|
+
ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
6892
|
+
}, "strip", z.ZodTypeAny, {
|
|
6893
|
+
pubkeyhex: string;
|
|
6894
|
+
keylist?: string[] | undefined;
|
|
6895
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
6896
|
+
}, {
|
|
6897
|
+
pubkeyhex: string;
|
|
6898
|
+
keylist?: string[] | undefined;
|
|
6899
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
6900
|
+
}>>;
|
|
6901
|
+
purposeText: z.ZodString;
|
|
6902
|
+
useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
|
|
6903
|
+
chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
|
|
6904
|
+
rpcUrl: z.ZodOptional<z.ZodString>;
|
|
6905
|
+
executorAddress: z.ZodOptional<z.ZodString>;
|
|
6906
|
+
chainDetail: z.ZodOptional<z.ZodObject<{
|
|
6907
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
6908
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
6909
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
6910
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
6911
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
6912
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
6913
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
6914
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
6915
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
6916
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
6917
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
6918
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
6919
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
6920
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
6921
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
6922
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
6923
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
6924
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
6925
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
6926
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
6927
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
6928
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
6929
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
6930
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
6931
|
+
customGasChainDetails: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
6932
|
+
expiryDate: z.ZodOptional<z.ZodNumber>;
|
|
6933
|
+
} & {
|
|
6934
|
+
secp256k1KeyGenId: z.ZodString;
|
|
6935
|
+
ed25519KeyGenId: z.ZodString;
|
|
6936
|
+
}, "strip", z.ZodTypeAny, {
|
|
6937
|
+
purposeText: string;
|
|
6938
|
+
useCustomGas: boolean;
|
|
6939
|
+
chainId: number;
|
|
6940
|
+
secp256k1KeyGenId: string;
|
|
6941
|
+
ed25519KeyGenId: string;
|
|
6942
|
+
keyGen?: {
|
|
6943
|
+
pubkeyhex: string;
|
|
6944
|
+
keylist?: string[] | undefined;
|
|
6945
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
6946
|
+
} | undefined;
|
|
6947
|
+
expiryDate?: number | undefined;
|
|
6948
|
+
rpcUrl?: string | undefined;
|
|
6949
|
+
executorAddress?: string | undefined;
|
|
6950
|
+
chainDetail?: z.objectOutputType<{
|
|
6951
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
6952
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
6953
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
6954
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
6955
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
6956
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
6957
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
6958
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
6959
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
6960
|
+
keyGenId?: string | undefined;
|
|
6961
|
+
}, {
|
|
6962
|
+
purposeText: string;
|
|
6963
|
+
secp256k1KeyGenId: string;
|
|
6964
|
+
ed25519KeyGenId: string;
|
|
6965
|
+
keyGen?: {
|
|
6966
|
+
pubkeyhex: string;
|
|
6967
|
+
keylist?: string[] | undefined;
|
|
6968
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
6969
|
+
} | undefined;
|
|
6970
|
+
useCustomGas?: unknown;
|
|
6971
|
+
chainId?: unknown;
|
|
6972
|
+
expiryDate?: number | undefined;
|
|
6973
|
+
rpcUrl?: string | undefined;
|
|
6974
|
+
executorAddress?: string | undefined;
|
|
6975
|
+
chainDetail?: z.objectInputType<{
|
|
6976
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
6977
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
6978
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
6979
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
6980
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
6981
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
6982
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
6983
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
6984
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
6985
|
+
keyGenId?: string | undefined;
|
|
6986
|
+
}>, {
|
|
6987
|
+
purposeText: string;
|
|
6988
|
+
useCustomGas: boolean;
|
|
6989
|
+
chainId: number;
|
|
6990
|
+
secp256k1KeyGenId: string;
|
|
6991
|
+
ed25519KeyGenId: string;
|
|
6992
|
+
keyGen?: {
|
|
6993
|
+
pubkeyhex: string;
|
|
6994
|
+
keylist?: string[] | undefined;
|
|
6995
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
6996
|
+
} | undefined;
|
|
6997
|
+
expiryDate?: number | undefined;
|
|
6998
|
+
rpcUrl?: string | undefined;
|
|
6999
|
+
executorAddress?: string | undefined;
|
|
7000
|
+
chainDetail?: z.objectOutputType<{
|
|
7001
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
7002
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7003
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7004
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7005
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7006
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7007
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7008
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
7009
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
7010
|
+
keyGenId?: string | undefined;
|
|
7011
|
+
}, {
|
|
7012
|
+
purposeText: string;
|
|
7013
|
+
secp256k1KeyGenId: string;
|
|
7014
|
+
ed25519KeyGenId: string;
|
|
7015
|
+
keyGen?: {
|
|
7016
|
+
pubkeyhex: string;
|
|
7017
|
+
keylist?: string[] | undefined;
|
|
7018
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
7019
|
+
} | undefined;
|
|
7020
|
+
useCustomGas?: unknown;
|
|
7021
|
+
chainId?: unknown;
|
|
7022
|
+
expiryDate?: number | undefined;
|
|
7023
|
+
rpcUrl?: string | undefined;
|
|
7024
|
+
executorAddress?: string | undefined;
|
|
7025
|
+
chainDetail?: z.objectInputType<{
|
|
7026
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
7027
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7028
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7029
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7030
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7031
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7032
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7033
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
7034
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
7035
|
+
keyGenId?: string | undefined;
|
|
7036
|
+
}>;
|
|
7037
|
+
declare const mcpArcusBuildPlaceOrderMultisignInputSchema: z.ZodEffects<z.ZodObject<{
|
|
7038
|
+
keyGenId: z.ZodOptional<z.ZodString>;
|
|
7039
|
+
keyGen: z.ZodOptional<z.ZodObject<{
|
|
7040
|
+
pubkeyhex: z.ZodString;
|
|
7041
|
+
keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
7042
|
+
ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
7043
|
+
}, "strip", z.ZodTypeAny, {
|
|
7044
|
+
pubkeyhex: string;
|
|
7045
|
+
keylist?: string[] | undefined;
|
|
7046
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
7047
|
+
}, {
|
|
7048
|
+
pubkeyhex: string;
|
|
7049
|
+
keylist?: string[] | undefined;
|
|
7050
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
7051
|
+
}>>;
|
|
7052
|
+
purposeText: z.ZodString;
|
|
7053
|
+
useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
|
|
7054
|
+
chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
|
|
7055
|
+
rpcUrl: z.ZodOptional<z.ZodString>;
|
|
7056
|
+
executorAddress: z.ZodOptional<z.ZodString>;
|
|
7057
|
+
chainDetail: z.ZodOptional<z.ZodObject<{
|
|
7058
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
7059
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7060
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7061
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7062
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7063
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7064
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7065
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
7066
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
7067
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7068
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7069
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7070
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7071
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7072
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7073
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
7074
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
7075
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7076
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7077
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7078
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7079
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7080
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7081
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
7082
|
+
customGasChainDetails: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
7083
|
+
expiryDate: z.ZodOptional<z.ZodNumber>;
|
|
7084
|
+
} & {
|
|
7085
|
+
secp256k1KeyGenId: z.ZodString;
|
|
7086
|
+
ed25519KeyGenId: z.ZodString;
|
|
7087
|
+
}, "strip", z.ZodTypeAny, {
|
|
7088
|
+
purposeText: string;
|
|
7089
|
+
useCustomGas: boolean;
|
|
7090
|
+
chainId: number;
|
|
7091
|
+
secp256k1KeyGenId: string;
|
|
7092
|
+
ed25519KeyGenId: string;
|
|
7093
|
+
keyGen?: {
|
|
7094
|
+
pubkeyhex: string;
|
|
7095
|
+
keylist?: string[] | undefined;
|
|
7096
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
7097
|
+
} | undefined;
|
|
7098
|
+
expiryDate?: number | undefined;
|
|
7099
|
+
rpcUrl?: string | undefined;
|
|
7100
|
+
executorAddress?: string | undefined;
|
|
7101
|
+
chainDetail?: z.objectOutputType<{
|
|
7102
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
7103
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7104
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7105
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7106
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7107
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7108
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7109
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
7110
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
7111
|
+
keyGenId?: string | undefined;
|
|
7112
|
+
}, {
|
|
7113
|
+
purposeText: string;
|
|
7114
|
+
secp256k1KeyGenId: string;
|
|
7115
|
+
ed25519KeyGenId: string;
|
|
7116
|
+
keyGen?: {
|
|
7117
|
+
pubkeyhex: string;
|
|
7118
|
+
keylist?: string[] | undefined;
|
|
7119
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
7120
|
+
} | undefined;
|
|
7121
|
+
useCustomGas?: unknown;
|
|
7122
|
+
chainId?: unknown;
|
|
7123
|
+
expiryDate?: number | undefined;
|
|
7124
|
+
rpcUrl?: string | undefined;
|
|
7125
|
+
executorAddress?: string | undefined;
|
|
7126
|
+
chainDetail?: z.objectInputType<{
|
|
7127
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
7128
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7129
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7130
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7131
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7132
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7133
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7134
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
7135
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
7136
|
+
keyGenId?: string | undefined;
|
|
7137
|
+
}>, {
|
|
7138
|
+
purposeText: string;
|
|
7139
|
+
useCustomGas: boolean;
|
|
7140
|
+
chainId: number;
|
|
7141
|
+
secp256k1KeyGenId: string;
|
|
7142
|
+
ed25519KeyGenId: string;
|
|
7143
|
+
keyGen?: {
|
|
7144
|
+
pubkeyhex: string;
|
|
7145
|
+
keylist?: string[] | undefined;
|
|
7146
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
7147
|
+
} | undefined;
|
|
7148
|
+
expiryDate?: number | undefined;
|
|
7149
|
+
rpcUrl?: string | undefined;
|
|
7150
|
+
executorAddress?: string | undefined;
|
|
7151
|
+
chainDetail?: z.objectOutputType<{
|
|
7152
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
7153
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7154
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7155
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7156
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7157
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7158
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7159
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
7160
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
7161
|
+
keyGenId?: string | undefined;
|
|
7162
|
+
}, {
|
|
7163
|
+
purposeText: string;
|
|
7164
|
+
secp256k1KeyGenId: string;
|
|
7165
|
+
ed25519KeyGenId: string;
|
|
7166
|
+
keyGen?: {
|
|
7167
|
+
pubkeyhex: string;
|
|
7168
|
+
keylist?: string[] | undefined;
|
|
7169
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
7170
|
+
} | undefined;
|
|
7171
|
+
useCustomGas?: unknown;
|
|
7172
|
+
chainId?: unknown;
|
|
7173
|
+
expiryDate?: number | undefined;
|
|
7174
|
+
rpcUrl?: string | undefined;
|
|
7175
|
+
executorAddress?: string | undefined;
|
|
7176
|
+
chainDetail?: z.objectInputType<{
|
|
7177
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
7178
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7179
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7180
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7181
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7182
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7183
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7184
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
7185
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
7186
|
+
keyGenId?: string | undefined;
|
|
7187
|
+
}>;
|
|
7188
|
+
declare const mcpArcusBuildCloseMultisignInputSchema: z.ZodEffects<z.ZodObject<{
|
|
7189
|
+
keyGenId: z.ZodOptional<z.ZodString>;
|
|
7190
|
+
keyGen: z.ZodOptional<z.ZodObject<{
|
|
7191
|
+
pubkeyhex: z.ZodString;
|
|
7192
|
+
keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
7193
|
+
ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
7194
|
+
}, "strip", z.ZodTypeAny, {
|
|
7195
|
+
pubkeyhex: string;
|
|
7196
|
+
keylist?: string[] | undefined;
|
|
7197
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
7198
|
+
}, {
|
|
7199
|
+
pubkeyhex: string;
|
|
7200
|
+
keylist?: string[] | undefined;
|
|
7201
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
7202
|
+
}>>;
|
|
7203
|
+
purposeText: z.ZodString;
|
|
7204
|
+
useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
|
|
7205
|
+
chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
|
|
7206
|
+
rpcUrl: z.ZodOptional<z.ZodString>;
|
|
7207
|
+
executorAddress: z.ZodOptional<z.ZodString>;
|
|
7208
|
+
chainDetail: z.ZodOptional<z.ZodObject<{
|
|
7209
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
7210
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7211
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7212
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7213
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7214
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7215
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7216
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
7217
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
7218
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7219
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7220
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7221
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7222
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7223
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7224
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
7225
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
7226
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7227
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7228
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7229
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7230
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7231
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7232
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
7233
|
+
customGasChainDetails: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
7234
|
+
expiryDate: z.ZodOptional<z.ZodNumber>;
|
|
7235
|
+
} & {
|
|
7236
|
+
secp256k1KeyGenId: z.ZodString;
|
|
7237
|
+
ed25519KeyGenId: z.ZodString;
|
|
7238
|
+
}, "strip", z.ZodTypeAny, {
|
|
7239
|
+
purposeText: string;
|
|
7240
|
+
useCustomGas: boolean;
|
|
7241
|
+
chainId: number;
|
|
7242
|
+
secp256k1KeyGenId: string;
|
|
7243
|
+
ed25519KeyGenId: string;
|
|
7244
|
+
keyGen?: {
|
|
7245
|
+
pubkeyhex: string;
|
|
7246
|
+
keylist?: string[] | undefined;
|
|
7247
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
7248
|
+
} | undefined;
|
|
7249
|
+
expiryDate?: number | undefined;
|
|
7250
|
+
rpcUrl?: string | undefined;
|
|
7251
|
+
executorAddress?: string | undefined;
|
|
7252
|
+
chainDetail?: z.objectOutputType<{
|
|
7253
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
7254
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7255
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7256
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7257
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7258
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7259
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7260
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
7261
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
7262
|
+
keyGenId?: string | undefined;
|
|
7263
|
+
}, {
|
|
7264
|
+
purposeText: string;
|
|
7265
|
+
secp256k1KeyGenId: string;
|
|
7266
|
+
ed25519KeyGenId: string;
|
|
7267
|
+
keyGen?: {
|
|
7268
|
+
pubkeyhex: string;
|
|
7269
|
+
keylist?: string[] | undefined;
|
|
7270
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
7271
|
+
} | undefined;
|
|
7272
|
+
useCustomGas?: unknown;
|
|
7273
|
+
chainId?: unknown;
|
|
7274
|
+
expiryDate?: number | undefined;
|
|
7275
|
+
rpcUrl?: string | undefined;
|
|
7276
|
+
executorAddress?: string | undefined;
|
|
7277
|
+
chainDetail?: z.objectInputType<{
|
|
7278
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
7279
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7280
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7281
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7282
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7283
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7284
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7285
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
7286
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
7287
|
+
keyGenId?: string | undefined;
|
|
7288
|
+
}>, {
|
|
7289
|
+
purposeText: string;
|
|
7290
|
+
useCustomGas: boolean;
|
|
7291
|
+
chainId: number;
|
|
7292
|
+
secp256k1KeyGenId: string;
|
|
7293
|
+
ed25519KeyGenId: string;
|
|
7294
|
+
keyGen?: {
|
|
7295
|
+
pubkeyhex: string;
|
|
7296
|
+
keylist?: string[] | undefined;
|
|
7297
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
7298
|
+
} | undefined;
|
|
7299
|
+
expiryDate?: number | undefined;
|
|
7300
|
+
rpcUrl?: string | undefined;
|
|
7301
|
+
executorAddress?: string | undefined;
|
|
7302
|
+
chainDetail?: z.objectOutputType<{
|
|
7303
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
7304
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7305
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7306
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7307
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7308
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7309
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7310
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
7311
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
7312
|
+
keyGenId?: string | undefined;
|
|
7313
|
+
}, {
|
|
7314
|
+
purposeText: string;
|
|
7315
|
+
secp256k1KeyGenId: string;
|
|
7316
|
+
ed25519KeyGenId: string;
|
|
7317
|
+
keyGen?: {
|
|
7318
|
+
pubkeyhex: string;
|
|
7319
|
+
keylist?: string[] | undefined;
|
|
7320
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
7321
|
+
} | undefined;
|
|
7322
|
+
useCustomGas?: unknown;
|
|
7323
|
+
chainId?: unknown;
|
|
7324
|
+
expiryDate?: number | undefined;
|
|
7325
|
+
rpcUrl?: string | undefined;
|
|
7326
|
+
executorAddress?: string | undefined;
|
|
7327
|
+
chainDetail?: z.objectInputType<{
|
|
7328
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
7329
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7330
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7331
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7332
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7333
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7334
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7335
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
7336
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
7337
|
+
keyGenId?: string | undefined;
|
|
7338
|
+
}>;
|
|
7339
|
+
declare const mcpArcusBuildCancelOrderMultisignInputSchema: z.ZodEffects<z.ZodObject<{
|
|
7340
|
+
keyGenId: z.ZodOptional<z.ZodString>;
|
|
7341
|
+
keyGen: z.ZodOptional<z.ZodObject<{
|
|
7342
|
+
pubkeyhex: z.ZodString;
|
|
7343
|
+
keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
7344
|
+
ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
7345
|
+
}, "strip", z.ZodTypeAny, {
|
|
7346
|
+
pubkeyhex: string;
|
|
7347
|
+
keylist?: string[] | undefined;
|
|
7348
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
7349
|
+
}, {
|
|
7350
|
+
pubkeyhex: string;
|
|
7351
|
+
keylist?: string[] | undefined;
|
|
7352
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
7353
|
+
}>>;
|
|
7354
|
+
purposeText: z.ZodString;
|
|
7355
|
+
useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
|
|
7356
|
+
chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
|
|
7357
|
+
rpcUrl: z.ZodOptional<z.ZodString>;
|
|
7358
|
+
executorAddress: z.ZodOptional<z.ZodString>;
|
|
7359
|
+
chainDetail: z.ZodOptional<z.ZodObject<{
|
|
7360
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
7361
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7362
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7363
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7364
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7365
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7366
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7367
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
7368
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
7369
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7370
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7371
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7372
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7373
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7374
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7375
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
7376
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
7377
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7378
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7379
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7380
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7381
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7382
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7383
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
7384
|
+
customGasChainDetails: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
7385
|
+
expiryDate: z.ZodOptional<z.ZodNumber>;
|
|
7386
|
+
} & {
|
|
7387
|
+
secp256k1KeyGenId: z.ZodString;
|
|
7388
|
+
ed25519KeyGenId: z.ZodString;
|
|
7389
|
+
}, "strip", z.ZodTypeAny, {
|
|
7390
|
+
purposeText: string;
|
|
7391
|
+
useCustomGas: boolean;
|
|
7392
|
+
chainId: number;
|
|
7393
|
+
secp256k1KeyGenId: string;
|
|
7394
|
+
ed25519KeyGenId: string;
|
|
7395
|
+
keyGen?: {
|
|
7396
|
+
pubkeyhex: string;
|
|
7397
|
+
keylist?: string[] | undefined;
|
|
7398
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
7399
|
+
} | undefined;
|
|
7400
|
+
expiryDate?: number | undefined;
|
|
7401
|
+
rpcUrl?: string | undefined;
|
|
7402
|
+
executorAddress?: string | undefined;
|
|
7403
|
+
chainDetail?: z.objectOutputType<{
|
|
7404
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
7405
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7406
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7407
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7408
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7409
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7410
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7411
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
7412
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
7413
|
+
keyGenId?: string | undefined;
|
|
7414
|
+
}, {
|
|
7415
|
+
purposeText: string;
|
|
7416
|
+
secp256k1KeyGenId: string;
|
|
7417
|
+
ed25519KeyGenId: string;
|
|
7418
|
+
keyGen?: {
|
|
7419
|
+
pubkeyhex: string;
|
|
7420
|
+
keylist?: string[] | undefined;
|
|
7421
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
7422
|
+
} | undefined;
|
|
7423
|
+
useCustomGas?: unknown;
|
|
7424
|
+
chainId?: unknown;
|
|
7425
|
+
expiryDate?: number | undefined;
|
|
7426
|
+
rpcUrl?: string | undefined;
|
|
7427
|
+
executorAddress?: string | undefined;
|
|
7428
|
+
chainDetail?: z.objectInputType<{
|
|
7429
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
7430
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7431
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7432
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7433
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7434
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7435
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7436
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
7437
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
7438
|
+
keyGenId?: string | undefined;
|
|
7439
|
+
}>, {
|
|
7440
|
+
purposeText: string;
|
|
7441
|
+
useCustomGas: boolean;
|
|
7442
|
+
chainId: number;
|
|
7443
|
+
secp256k1KeyGenId: string;
|
|
7444
|
+
ed25519KeyGenId: string;
|
|
7445
|
+
keyGen?: {
|
|
7446
|
+
pubkeyhex: string;
|
|
7447
|
+
keylist?: string[] | undefined;
|
|
7448
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
7449
|
+
} | undefined;
|
|
7450
|
+
expiryDate?: number | undefined;
|
|
7451
|
+
rpcUrl?: string | undefined;
|
|
7452
|
+
executorAddress?: string | undefined;
|
|
7453
|
+
chainDetail?: z.objectOutputType<{
|
|
7454
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
7455
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7456
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7457
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7458
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7459
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7460
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7461
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
7462
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
7463
|
+
keyGenId?: string | undefined;
|
|
7464
|
+
}, {
|
|
7465
|
+
purposeText: string;
|
|
7466
|
+
secp256k1KeyGenId: string;
|
|
7467
|
+
ed25519KeyGenId: string;
|
|
7468
|
+
keyGen?: {
|
|
7469
|
+
pubkeyhex: string;
|
|
7470
|
+
keylist?: string[] | undefined;
|
|
7471
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
7472
|
+
} | undefined;
|
|
7473
|
+
useCustomGas?: unknown;
|
|
7474
|
+
chainId?: unknown;
|
|
7475
|
+
expiryDate?: number | undefined;
|
|
7476
|
+
rpcUrl?: string | undefined;
|
|
7477
|
+
executorAddress?: string | undefined;
|
|
7478
|
+
chainDetail?: z.objectInputType<{
|
|
7479
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
7480
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7481
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7482
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7483
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7484
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7485
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7486
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
7487
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
7488
|
+
keyGenId?: string | undefined;
|
|
7489
|
+
}>;
|
|
7490
|
+
declare const mcpArcusBuildSetLeverageMultisignInputSchema: z.ZodEffects<z.ZodObject<{
|
|
7491
|
+
keyGenId: z.ZodOptional<z.ZodString>;
|
|
7492
|
+
keyGen: z.ZodOptional<z.ZodObject<{
|
|
7493
|
+
pubkeyhex: z.ZodString;
|
|
7494
|
+
keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
7495
|
+
ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
7496
|
+
}, "strip", z.ZodTypeAny, {
|
|
7497
|
+
pubkeyhex: string;
|
|
7498
|
+
keylist?: string[] | undefined;
|
|
7499
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
7500
|
+
}, {
|
|
7501
|
+
pubkeyhex: string;
|
|
7502
|
+
keylist?: string[] | undefined;
|
|
7503
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
7504
|
+
}>>;
|
|
7505
|
+
purposeText: z.ZodString;
|
|
7506
|
+
useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
|
|
7507
|
+
chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
|
|
7508
|
+
rpcUrl: z.ZodOptional<z.ZodString>;
|
|
7509
|
+
executorAddress: z.ZodOptional<z.ZodString>;
|
|
7510
|
+
chainDetail: z.ZodOptional<z.ZodObject<{
|
|
7511
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
7512
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7513
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7514
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7515
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7516
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7517
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7518
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
7519
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
7520
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7521
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7522
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7523
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7524
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7525
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7526
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
7527
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
7528
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7529
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7530
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7531
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7532
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7533
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7534
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
7535
|
+
customGasChainDetails: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
7536
|
+
expiryDate: z.ZodOptional<z.ZodNumber>;
|
|
7537
|
+
} & {
|
|
7538
|
+
secp256k1KeyGenId: z.ZodString;
|
|
7539
|
+
ed25519KeyGenId: z.ZodString;
|
|
7540
|
+
}, "strip", z.ZodTypeAny, {
|
|
7541
|
+
purposeText: string;
|
|
7542
|
+
useCustomGas: boolean;
|
|
7543
|
+
chainId: number;
|
|
7544
|
+
secp256k1KeyGenId: string;
|
|
7545
|
+
ed25519KeyGenId: string;
|
|
7546
|
+
keyGen?: {
|
|
7547
|
+
pubkeyhex: string;
|
|
7548
|
+
keylist?: string[] | undefined;
|
|
7549
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
7550
|
+
} | undefined;
|
|
7551
|
+
expiryDate?: number | undefined;
|
|
7552
|
+
rpcUrl?: string | undefined;
|
|
7553
|
+
executorAddress?: string | undefined;
|
|
7554
|
+
chainDetail?: z.objectOutputType<{
|
|
7555
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
7556
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7557
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7558
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7559
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7560
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7561
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7562
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
7563
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
7564
|
+
keyGenId?: string | undefined;
|
|
7565
|
+
}, {
|
|
7566
|
+
purposeText: string;
|
|
7567
|
+
secp256k1KeyGenId: string;
|
|
7568
|
+
ed25519KeyGenId: string;
|
|
7569
|
+
keyGen?: {
|
|
7570
|
+
pubkeyhex: string;
|
|
7571
|
+
keylist?: string[] | undefined;
|
|
7572
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
7573
|
+
} | undefined;
|
|
7574
|
+
useCustomGas?: unknown;
|
|
7575
|
+
chainId?: unknown;
|
|
7576
|
+
expiryDate?: number | undefined;
|
|
7577
|
+
rpcUrl?: string | undefined;
|
|
7578
|
+
executorAddress?: string | undefined;
|
|
7579
|
+
chainDetail?: z.objectInputType<{
|
|
7580
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
7581
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7582
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7583
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7584
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7585
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7586
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7587
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
7588
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
7589
|
+
keyGenId?: string | undefined;
|
|
7590
|
+
}>, {
|
|
7591
|
+
purposeText: string;
|
|
7592
|
+
useCustomGas: boolean;
|
|
7593
|
+
chainId: number;
|
|
7594
|
+
secp256k1KeyGenId: string;
|
|
7595
|
+
ed25519KeyGenId: string;
|
|
7596
|
+
keyGen?: {
|
|
7597
|
+
pubkeyhex: string;
|
|
7598
|
+
keylist?: string[] | undefined;
|
|
7599
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
7600
|
+
} | undefined;
|
|
7601
|
+
expiryDate?: number | undefined;
|
|
7602
|
+
rpcUrl?: string | undefined;
|
|
7603
|
+
executorAddress?: string | undefined;
|
|
7604
|
+
chainDetail?: z.objectOutputType<{
|
|
7605
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
7606
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7607
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7608
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7609
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7610
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7611
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7612
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
7613
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
7614
|
+
keyGenId?: string | undefined;
|
|
7615
|
+
}, {
|
|
7616
|
+
purposeText: string;
|
|
7617
|
+
secp256k1KeyGenId: string;
|
|
7618
|
+
ed25519KeyGenId: string;
|
|
7619
|
+
keyGen?: {
|
|
7620
|
+
pubkeyhex: string;
|
|
7621
|
+
keylist?: string[] | undefined;
|
|
7622
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
7623
|
+
} | undefined;
|
|
7624
|
+
useCustomGas?: unknown;
|
|
7625
|
+
chainId?: unknown;
|
|
7626
|
+
expiryDate?: number | undefined;
|
|
7627
|
+
rpcUrl?: string | undefined;
|
|
7628
|
+
executorAddress?: string | undefined;
|
|
7629
|
+
chainDetail?: z.objectInputType<{
|
|
7630
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
7631
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7632
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7633
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7634
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7635
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7636
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7637
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
7638
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
7639
|
+
keyGenId?: string | undefined;
|
|
7640
|
+
}>;
|
|
7641
|
+
declare const mcpArcusSpotBuildRfqMultisignInputSchema: z.ZodEffects<z.ZodObject<{
|
|
7642
|
+
keyGenId: z.ZodOptional<z.ZodString>;
|
|
7643
|
+
keyGen: z.ZodOptional<z.ZodObject<{
|
|
7644
|
+
pubkeyhex: z.ZodString;
|
|
7645
|
+
keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
7646
|
+
ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
7647
|
+
}, "strip", z.ZodTypeAny, {
|
|
7648
|
+
pubkeyhex: string;
|
|
7649
|
+
keylist?: string[] | undefined;
|
|
7650
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
7651
|
+
}, {
|
|
7652
|
+
pubkeyhex: string;
|
|
7653
|
+
keylist?: string[] | undefined;
|
|
7654
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
7655
|
+
}>>;
|
|
7656
|
+
purposeText: z.ZodString;
|
|
7657
|
+
useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
|
|
7658
|
+
chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
|
|
7659
|
+
rpcUrl: z.ZodOptional<z.ZodString>;
|
|
7660
|
+
executorAddress: z.ZodOptional<z.ZodString>;
|
|
7661
|
+
chainDetail: z.ZodOptional<z.ZodObject<{
|
|
7662
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
7663
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7664
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7665
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7666
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7667
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7668
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7669
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
7670
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
7671
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7672
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7673
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7674
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7675
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7676
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7677
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
7678
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
7679
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7680
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7681
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7682
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7683
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7684
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7685
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
7686
|
+
customGasChainDetails: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
7687
|
+
expiryDate: z.ZodOptional<z.ZodNumber>;
|
|
7688
|
+
} & {
|
|
7689
|
+
secp256k1KeyGenId: z.ZodString;
|
|
7690
|
+
ed25519KeyGenId: z.ZodString;
|
|
7691
|
+
}, "strip", z.ZodTypeAny, {
|
|
7692
|
+
purposeText: string;
|
|
7693
|
+
useCustomGas: boolean;
|
|
7694
|
+
chainId: number;
|
|
7695
|
+
secp256k1KeyGenId: string;
|
|
7696
|
+
ed25519KeyGenId: string;
|
|
7697
|
+
keyGen?: {
|
|
7698
|
+
pubkeyhex: string;
|
|
7699
|
+
keylist?: string[] | undefined;
|
|
7700
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
7701
|
+
} | undefined;
|
|
7702
|
+
expiryDate?: number | undefined;
|
|
7703
|
+
rpcUrl?: string | undefined;
|
|
7704
|
+
executorAddress?: string | undefined;
|
|
7705
|
+
chainDetail?: z.objectOutputType<{
|
|
7706
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
7707
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7708
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7709
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7710
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7711
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7712
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7713
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
7714
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
7715
|
+
keyGenId?: string | undefined;
|
|
7716
|
+
}, {
|
|
7717
|
+
purposeText: string;
|
|
7718
|
+
secp256k1KeyGenId: string;
|
|
7719
|
+
ed25519KeyGenId: string;
|
|
7720
|
+
keyGen?: {
|
|
7721
|
+
pubkeyhex: string;
|
|
7722
|
+
keylist?: string[] | undefined;
|
|
7723
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
7724
|
+
} | undefined;
|
|
7725
|
+
useCustomGas?: unknown;
|
|
7726
|
+
chainId?: unknown;
|
|
7727
|
+
expiryDate?: number | undefined;
|
|
7728
|
+
rpcUrl?: string | undefined;
|
|
7729
|
+
executorAddress?: string | undefined;
|
|
7730
|
+
chainDetail?: z.objectInputType<{
|
|
7731
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
7732
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7733
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7734
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7735
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7736
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7737
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7738
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
7739
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
7740
|
+
keyGenId?: string | undefined;
|
|
7741
|
+
}>, {
|
|
7742
|
+
purposeText: string;
|
|
7743
|
+
useCustomGas: boolean;
|
|
7744
|
+
chainId: number;
|
|
7745
|
+
secp256k1KeyGenId: string;
|
|
7746
|
+
ed25519KeyGenId: string;
|
|
7747
|
+
keyGen?: {
|
|
7748
|
+
pubkeyhex: string;
|
|
7749
|
+
keylist?: string[] | undefined;
|
|
7750
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
7751
|
+
} | undefined;
|
|
7752
|
+
expiryDate?: number | undefined;
|
|
7753
|
+
rpcUrl?: string | undefined;
|
|
7754
|
+
executorAddress?: string | undefined;
|
|
7755
|
+
chainDetail?: z.objectOutputType<{
|
|
7756
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
7757
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7758
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7759
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7760
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7761
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7762
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7763
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
7764
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
7765
|
+
keyGenId?: string | undefined;
|
|
7766
|
+
}, {
|
|
7767
|
+
purposeText: string;
|
|
7768
|
+
secp256k1KeyGenId: string;
|
|
7769
|
+
ed25519KeyGenId: string;
|
|
7770
|
+
keyGen?: {
|
|
7771
|
+
pubkeyhex: string;
|
|
7772
|
+
keylist?: string[] | undefined;
|
|
7773
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
7774
|
+
} | undefined;
|
|
7775
|
+
useCustomGas?: unknown;
|
|
7776
|
+
chainId?: unknown;
|
|
7777
|
+
expiryDate?: number | undefined;
|
|
7778
|
+
rpcUrl?: string | undefined;
|
|
7779
|
+
executorAddress?: string | undefined;
|
|
7780
|
+
chainDetail?: z.objectInputType<{
|
|
7781
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
7782
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7783
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7784
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7785
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7786
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7787
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7788
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
7789
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
7790
|
+
keyGenId?: string | undefined;
|
|
7791
|
+
}>;
|
|
7792
|
+
declare const mcpArcusBuildDepositMultisignInputSchema: z.ZodEffects<z.ZodObject<{
|
|
7793
|
+
keyGenId: z.ZodOptional<z.ZodString>;
|
|
7794
|
+
keyGen: z.ZodOptional<z.ZodObject<{
|
|
7795
|
+
pubkeyhex: z.ZodString;
|
|
7796
|
+
keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
7797
|
+
ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
7798
|
+
}, "strip", z.ZodTypeAny, {
|
|
7799
|
+
pubkeyhex: string;
|
|
7800
|
+
keylist?: string[] | undefined;
|
|
7801
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
7802
|
+
}, {
|
|
7803
|
+
pubkeyhex: string;
|
|
7804
|
+
keylist?: string[] | undefined;
|
|
7805
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
7806
|
+
}>>;
|
|
7807
|
+
purposeText: z.ZodString;
|
|
7808
|
+
useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
|
|
7809
|
+
chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
|
|
7810
|
+
rpcUrl: z.ZodOptional<z.ZodString>;
|
|
7811
|
+
executorAddress: z.ZodOptional<z.ZodString>;
|
|
7812
|
+
chainDetail: z.ZodOptional<z.ZodObject<{
|
|
7813
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
7814
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7815
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7816
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7817
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7818
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7819
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7820
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
7821
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
7822
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7823
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7824
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7825
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7826
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7827
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7828
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
7829
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
7830
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7831
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7832
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7833
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7834
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7835
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7836
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
7837
|
+
customGasChainDetails: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
7838
|
+
expiryDate: z.ZodOptional<z.ZodNumber>;
|
|
7839
|
+
} & {
|
|
7840
|
+
usdHuman: z.ZodString;
|
|
7841
|
+
product: z.ZodDefault<z.ZodEnum<["perp", "spot"]>>;
|
|
7842
|
+
}, "strip", z.ZodTypeAny, {
|
|
7843
|
+
purposeText: string;
|
|
7844
|
+
useCustomGas: boolean;
|
|
7845
|
+
chainId: number;
|
|
7846
|
+
usdHuman: string;
|
|
7847
|
+
product: "perp" | "spot";
|
|
7848
|
+
keyGen?: {
|
|
7849
|
+
pubkeyhex: string;
|
|
7850
|
+
keylist?: string[] | undefined;
|
|
7851
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
7852
|
+
} | undefined;
|
|
7853
|
+
expiryDate?: number | undefined;
|
|
7854
|
+
rpcUrl?: string | undefined;
|
|
7855
|
+
executorAddress?: string | undefined;
|
|
7856
|
+
chainDetail?: z.objectOutputType<{
|
|
7857
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
7858
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7859
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7860
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7861
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7862
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7863
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7864
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
7865
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
7866
|
+
keyGenId?: string | undefined;
|
|
7867
|
+
}, {
|
|
7868
|
+
purposeText: string;
|
|
7869
|
+
usdHuman: string;
|
|
7870
|
+
keyGen?: {
|
|
7871
|
+
pubkeyhex: string;
|
|
7872
|
+
keylist?: string[] | undefined;
|
|
7873
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
7874
|
+
} | undefined;
|
|
7875
|
+
useCustomGas?: unknown;
|
|
7876
|
+
chainId?: unknown;
|
|
7877
|
+
expiryDate?: number | undefined;
|
|
7878
|
+
rpcUrl?: string | undefined;
|
|
7879
|
+
executorAddress?: string | undefined;
|
|
7880
|
+
chainDetail?: z.objectInputType<{
|
|
7881
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
7882
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7883
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7884
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7885
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7886
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7887
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7888
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
7889
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
7890
|
+
keyGenId?: string | undefined;
|
|
7891
|
+
product?: "perp" | "spot" | undefined;
|
|
7892
|
+
}>, {
|
|
7893
|
+
purposeText: string;
|
|
7894
|
+
useCustomGas: boolean;
|
|
7895
|
+
chainId: number;
|
|
7896
|
+
usdHuman: string;
|
|
7897
|
+
product: "perp" | "spot";
|
|
7898
|
+
keyGen?: {
|
|
7899
|
+
pubkeyhex: string;
|
|
7900
|
+
keylist?: string[] | undefined;
|
|
7901
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
7902
|
+
} | undefined;
|
|
7903
|
+
expiryDate?: number | undefined;
|
|
7904
|
+
rpcUrl?: string | undefined;
|
|
7905
|
+
executorAddress?: string | undefined;
|
|
7906
|
+
chainDetail?: z.objectOutputType<{
|
|
7907
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
7908
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7909
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7910
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7911
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7912
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7913
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7914
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
7915
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
7916
|
+
keyGenId?: string | undefined;
|
|
7917
|
+
}, {
|
|
7918
|
+
purposeText: string;
|
|
7919
|
+
usdHuman: string;
|
|
7920
|
+
keyGen?: {
|
|
7921
|
+
pubkeyhex: string;
|
|
7922
|
+
keylist?: string[] | undefined;
|
|
7923
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
7924
|
+
} | undefined;
|
|
7925
|
+
useCustomGas?: unknown;
|
|
7926
|
+
chainId?: unknown;
|
|
7927
|
+
expiryDate?: number | undefined;
|
|
7928
|
+
rpcUrl?: string | undefined;
|
|
7929
|
+
executorAddress?: string | undefined;
|
|
7930
|
+
chainDetail?: z.objectInputType<{
|
|
7931
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
7932
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7933
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7934
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7935
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7936
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7937
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7938
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
7939
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
7940
|
+
keyGenId?: string | undefined;
|
|
7941
|
+
product?: "perp" | "spot" | undefined;
|
|
7942
|
+
}>;
|
|
7943
|
+
declare const mcpArcusBuildWithdrawMultisignInputSchema: z.ZodEffects<z.ZodObject<{
|
|
7944
|
+
keyGenId: z.ZodOptional<z.ZodString>;
|
|
7945
|
+
keyGen: z.ZodOptional<z.ZodObject<{
|
|
7946
|
+
pubkeyhex: z.ZodString;
|
|
7947
|
+
keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
7948
|
+
ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
7949
|
+
}, "strip", z.ZodTypeAny, {
|
|
7950
|
+
pubkeyhex: string;
|
|
7951
|
+
keylist?: string[] | undefined;
|
|
7952
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
7953
|
+
}, {
|
|
7954
|
+
pubkeyhex: string;
|
|
7955
|
+
keylist?: string[] | undefined;
|
|
7956
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
7957
|
+
}>>;
|
|
7958
|
+
purposeText: z.ZodString;
|
|
7959
|
+
useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
|
|
7960
|
+
chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
|
|
7961
|
+
rpcUrl: z.ZodOptional<z.ZodString>;
|
|
7962
|
+
executorAddress: z.ZodOptional<z.ZodString>;
|
|
7963
|
+
chainDetail: z.ZodOptional<z.ZodObject<{
|
|
7964
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
7965
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7966
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7967
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7968
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7969
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7970
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7971
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
7972
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
7973
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7974
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7975
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7976
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7977
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7978
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7979
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
7980
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
7981
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7982
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7983
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7984
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7985
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7986
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
7987
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
7988
|
+
customGasChainDetails: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
7989
|
+
expiryDate: z.ZodOptional<z.ZodNumber>;
|
|
7990
|
+
} & {
|
|
7991
|
+
usdHuman: z.ZodString;
|
|
7992
|
+
product: z.ZodDefault<z.ZodEnum<["perp", "spot"]>>;
|
|
7993
|
+
}, "strip", z.ZodTypeAny, {
|
|
7994
|
+
purposeText: string;
|
|
7995
|
+
useCustomGas: boolean;
|
|
7996
|
+
chainId: number;
|
|
7997
|
+
usdHuman: string;
|
|
7998
|
+
product: "perp" | "spot";
|
|
7999
|
+
keyGen?: {
|
|
8000
|
+
pubkeyhex: string;
|
|
8001
|
+
keylist?: string[] | undefined;
|
|
8002
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
8003
|
+
} | undefined;
|
|
8004
|
+
expiryDate?: number | undefined;
|
|
8005
|
+
rpcUrl?: string | undefined;
|
|
8006
|
+
executorAddress?: string | undefined;
|
|
8007
|
+
chainDetail?: z.objectOutputType<{
|
|
8008
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
8009
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8010
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8011
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8012
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8013
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8014
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8015
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
8016
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
8017
|
+
keyGenId?: string | undefined;
|
|
8018
|
+
}, {
|
|
8019
|
+
purposeText: string;
|
|
8020
|
+
usdHuman: string;
|
|
8021
|
+
keyGen?: {
|
|
8022
|
+
pubkeyhex: string;
|
|
8023
|
+
keylist?: string[] | undefined;
|
|
8024
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
8025
|
+
} | undefined;
|
|
8026
|
+
useCustomGas?: unknown;
|
|
8027
|
+
chainId?: unknown;
|
|
8028
|
+
expiryDate?: number | undefined;
|
|
8029
|
+
rpcUrl?: string | undefined;
|
|
8030
|
+
executorAddress?: string | undefined;
|
|
8031
|
+
chainDetail?: z.objectInputType<{
|
|
8032
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
8033
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8034
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8035
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8036
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8037
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8038
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8039
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
8040
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
8041
|
+
keyGenId?: string | undefined;
|
|
8042
|
+
product?: "perp" | "spot" | undefined;
|
|
8043
|
+
}>, {
|
|
8044
|
+
purposeText: string;
|
|
8045
|
+
useCustomGas: boolean;
|
|
8046
|
+
chainId: number;
|
|
8047
|
+
usdHuman: string;
|
|
8048
|
+
product: "perp" | "spot";
|
|
8049
|
+
keyGen?: {
|
|
8050
|
+
pubkeyhex: string;
|
|
8051
|
+
keylist?: string[] | undefined;
|
|
8052
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
8053
|
+
} | undefined;
|
|
8054
|
+
expiryDate?: number | undefined;
|
|
8055
|
+
rpcUrl?: string | undefined;
|
|
8056
|
+
executorAddress?: string | undefined;
|
|
8057
|
+
chainDetail?: z.objectOutputType<{
|
|
8058
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
8059
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8060
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8061
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8062
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8063
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8064
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8065
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
8066
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
8067
|
+
keyGenId?: string | undefined;
|
|
8068
|
+
}, {
|
|
8069
|
+
purposeText: string;
|
|
8070
|
+
usdHuman: string;
|
|
8071
|
+
keyGen?: {
|
|
8072
|
+
pubkeyhex: string;
|
|
8073
|
+
keylist?: string[] | undefined;
|
|
8074
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
8075
|
+
} | undefined;
|
|
8076
|
+
useCustomGas?: unknown;
|
|
8077
|
+
chainId?: unknown;
|
|
8078
|
+
expiryDate?: number | undefined;
|
|
8079
|
+
rpcUrl?: string | undefined;
|
|
8080
|
+
executorAddress?: string | undefined;
|
|
8081
|
+
chainDetail?: z.objectInputType<{
|
|
8082
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
8083
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8084
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8085
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8086
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8087
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8088
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
8089
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
8090
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
8091
|
+
keyGenId?: string | undefined;
|
|
8092
|
+
product?: "perp" | "spot" | undefined;
|
|
8093
|
+
}>;
|
|
8094
|
+
|
|
5739
8095
|
/** LLMs often pass "false"/"true" strings; Boolean("false") is true in JavaScript. */
|
|
5740
8096
|
declare function parseAgentBoolean(raw: unknown, defaultValue?: boolean): boolean;
|
|
5741
8097
|
/**
|
|
@@ -5762,6 +8118,7 @@ declare function getAgentCatalog(): {
|
|
|
5762
8118
|
eulerV2: ProtocolModule;
|
|
5763
8119
|
gmx: ProtocolModule;
|
|
5764
8120
|
hyperliquid: ProtocolModule;
|
|
8121
|
+
arcus: ProtocolModule;
|
|
5765
8122
|
morpho: ProtocolModule;
|
|
5766
8123
|
circleCctp: ProtocolModule;
|
|
5767
8124
|
/** Prefer getAgentCatalogForMcp() or getMcpToolDefinitions() for MCP servers. */
|
|
@@ -5847,4 +8204,4 @@ declare function getAgentCatalog(): {
|
|
|
5847
8204
|
};
|
|
5848
8205
|
};
|
|
5849
8206
|
|
|
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 };
|
|
8207
|
+
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, 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, 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 };
|