hive-intelligence 0.3.1 → 0.4.1
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/README.md +48 -24
- package/build/{chunk-NEKSTV6P.js → chunk-X7ETBCBP.js} +39 -75
- package/build/chunk-X7ETBCBP.js.map +1 -0
- package/build/cli.js +9 -9
- package/build/{completion-N35TWBLT.js → completion-SBTSXTR3.js} +2 -2
- package/build/{doctor-GYP6IHPP.js → doctor-A76Q4U4K.js} +3 -3
- package/build/doctor-A76Q4U4K.js.map +1 -0
- package/build/{namespace-GWTS6U6J.js → namespace-7SBV4G7R.js} +2 -2
- package/build/server.js +1511 -1671
- package/build/server.js.map +1 -1
- package/build/{tools-4W3GGCUC.js → tools-WYOZZHHG.js} +2 -2
- package/package.json +1 -1
- package/build/chunk-NEKSTV6P.js.map +0 -1
- package/build/doctor-GYP6IHPP.js.map +0 -1
- /package/build/{completion-N35TWBLT.js.map → completion-SBTSXTR3.js.map} +0 -0
- /package/build/{namespace-GWTS6U6J.js.map → namespace-7SBV4G7R.js.map} +0 -0
- /package/build/{tools-4W3GGCUC.js.map → tools-WYOZZHHG.js.map} +0 -0
package/build/server.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/server.ts","../node_modules/zod-to-json-schema/dist/esm/Options.js","../node_modules/zod-to-json-schema/dist/esm/Refs.js","../node_modules/zod-to-json-schema/dist/esm/errorMessages.js","../node_modules/zod-to-json-schema/dist/esm/getRelativePath.js","../node_modules/zod/v3/external.js","../node_modules/zod/v3/helpers/util.js","../node_modules/zod/v3/ZodError.js","../node_modules/zod/v3/locales/en.js","../node_modules/zod/v3/errors.js","../node_modules/zod/v3/helpers/parseUtil.js","../node_modules/zod/v3/helpers/errorUtil.js","../node_modules/zod/v3/types.js","../node_modules/zod-to-json-schema/dist/esm/parsers/any.js","../node_modules/zod-to-json-schema/dist/esm/parsers/array.js","../node_modules/zod-to-json-schema/dist/esm/parsers/bigint.js","../node_modules/zod-to-json-schema/dist/esm/parsers/boolean.js","../node_modules/zod-to-json-schema/dist/esm/parsers/branded.js","../node_modules/zod-to-json-schema/dist/esm/parsers/catch.js","../node_modules/zod-to-json-schema/dist/esm/parsers/date.js","../node_modules/zod-to-json-schema/dist/esm/parsers/default.js","../node_modules/zod-to-json-schema/dist/esm/parsers/effects.js","../node_modules/zod-to-json-schema/dist/esm/parsers/enum.js","../node_modules/zod-to-json-schema/dist/esm/parsers/intersection.js","../node_modules/zod-to-json-schema/dist/esm/parsers/literal.js","../node_modules/zod-to-json-schema/dist/esm/parsers/string.js","../node_modules/zod-to-json-schema/dist/esm/parsers/record.js","../node_modules/zod-to-json-schema/dist/esm/parsers/map.js","../node_modules/zod-to-json-schema/dist/esm/parsers/nativeEnum.js","../node_modules/zod-to-json-schema/dist/esm/parsers/never.js","../node_modules/zod-to-json-schema/dist/esm/parsers/null.js","../node_modules/zod-to-json-schema/dist/esm/parsers/union.js","../node_modules/zod-to-json-schema/dist/esm/parsers/nullable.js","../node_modules/zod-to-json-schema/dist/esm/parsers/number.js","../node_modules/zod-to-json-schema/dist/esm/parsers/object.js","../node_modules/zod-to-json-schema/dist/esm/parsers/optional.js","../node_modules/zod-to-json-schema/dist/esm/parsers/pipeline.js","../node_modules/zod-to-json-schema/dist/esm/parsers/promise.js","../node_modules/zod-to-json-schema/dist/esm/parsers/set.js","../node_modules/zod-to-json-schema/dist/esm/parsers/tuple.js","../node_modules/zod-to-json-schema/dist/esm/parsers/undefined.js","../node_modules/zod-to-json-schema/dist/esm/parsers/unknown.js","../node_modules/zod-to-json-schema/dist/esm/parsers/readonly.js","../node_modules/zod-to-json-schema/dist/esm/selectParser.js","../node_modules/zod-to-json-schema/dist/esm/parseDef.js","../node_modules/zod-to-json-schema/dist/esm/zodToJsonSchema.js","../src/mcp/allToolList.ts","../src/toolRegistry.ts","../src/dynamic-tools.ts"],"sourcesContent":["#!/usr/bin/env node\nimport express from 'express';\nimport cors from 'cors';\nimport { Server } from \"@modelcontextprotocol/sdk/server/index.js\";\nimport { StreamableHTTPServerTransport } from '@modelcontextprotocol/sdk/server/streamableHttp.js';\nimport { StdioServerTransport } from \"@modelcontextprotocol/sdk/server/stdio.js\";\nimport {\n CallToolRequestSchema,\n ListToolsRequestSchema,\n} from \"@modelcontextprotocol/sdk/types.js\";\nimport dotenv from 'dotenv';\nimport { Tool } from '@modelcontextprotocol/sdk/types.js';\nimport { dynamicTools } from \"./dynamic-tools\";\nimport { supportedTools } from './mcp/allToolList.js';\nimport {getToolByCategory} from './toolRegistry'\nimport { CategoryEndpoints } from './toolRegistry';\ndotenv.config();\n\nconst API_EXECUTE_ENDPOINT = process.env.API_EXECUTE_ENDPOINT || 'https://mcp.hiveintelligence.xyz/api/execute';\n\nfunction getDynamicTools(){\n const allToolEndpoints = supportedTools\n \n const allTools = dynamicTools(allToolEndpoints)\n // const tools = [\n // ...allTools.map(endpoint => (\n // endpoint.tool\n // ))\n // ]\n\n const tools = [\n ...allTools.map(endpoint => {\n const tool = endpoint.tool;\n // Ensure the tool has the required MCP structure\n if (!tool || typeof tool !== 'object') {\n console.error('Invalid tool structure:', tool);\n return null;\n }\n \n // Validate required fields\n if (!tool.name || typeof tool.name !== 'string') {\n console.error('Tool missing name:', tool);\n return null;\n }\n \n if (!tool.inputSchema || typeof tool.inputSchema !== 'object') {\n console.error('Tool missing inputSchema:', tool);\n return null;\n }\n \n return tool;\n }).filter(Boolean) // Remove null entries\n ]\n\n return {\n allTools,\n tools\n }\n}\n\n\nfunction staticTools(category:number){\n const allToolEndpoints = getToolByCategory(category)\n return {\n allTools:[],\n tools: allToolEndpoints\n }\n}\n\n\nexport class HiveMCPServer {\n private server: Server;\n private allTools:any;\n private tools: any;\n \n private isDynamicTools: boolean; // currently dynamic tools include all categories\n private category: number; // category of tool (refer tool registry) it will be null for dynamic tools\n \n constructor(_isDynamicTools:boolean, _category:number) {\n this.isDynamicTools = _isDynamicTools\n this.category = _category\n\n this.server = new Server(\n {\n name: \"hive-mcp-server\",\n version: \"0.1.0\",\n },\n {\n capabilities: {\n tools: {},\n },\n }\n );\n\n if(this.isDynamicTools){\n\n const { allTools, tools } = getDynamicTools();\n this.allTools = allTools;\n this.tools = tools;\n }\n else{\n const { allTools, tools } = staticTools(this.category);\n this.allTools = allTools;\n this.tools = tools;\n }\n\n this.setupToolHandlers();\n }\n\n\n\n private async dynamicToolsHandler(request:any){\n\n const highLevelToolUsed = this.allTools.find(\n // @ts-ignore\n tool => tool.tool.name === request.params.name\n );\n\n if(request.params.name == \"call_api_endpoint\"){\n const toolName:any= request.params.arguments?.endpoint_name\n \n try {\n // Call the API server's /execute endpoint\n const response = await fetch(API_EXECUTE_ENDPOINT, {\n method: 'POST',\n headers: {\n 'Content-Type': 'application/json',\n },\n body: JSON.stringify({\n toolName: toolName,\n arguments: request.params.arguments?.args\n })\n });\n\n const result = await response.json();\n \n if (!response.ok) {\n \n return {\n content: [\n {\n type: \"text\",\n text: `Error executing hive tool: ${result.error || 'Request failed'}`,\n },\n ],\n };\n }\n\n return {\n content: [\n {\n type: \"text\",\n text: JSON.stringify(result, null, 2),\n },\n ],\n };\n \n } catch (error) {\n \n return {\n content: [\n {\n type: \"text\",\n text: `Error executing hive tool: ${error}`,\n },\n ],\n };\n }\n } else {\n try {\n // @ts-ignore\n const result = await highLevelToolUsed?.handler(\n request.params.arguments\n );\n \n return result || {\n content: [\n {\n type: \"text\",\n text: \"No result returned from tool handler\",\n },\n ],\n };\n } catch (error) {\n // Track failed tool usage\n \n return {\n content: [\n {\n type: \"text\",\n text: `Error executing hive tool: ${error}`,\n },\n ],\n };\n }\n }\n }\n\n private async staticToolsHandler(request:any){\n \n const toolName:any= request.params.name\n console.log(\"toolName \", toolName)\n \n try {\n // Call the API server's /execute endpoint\n const response = await fetch(API_EXECUTE_ENDPOINT, {\n method: 'POST',\n headers: {\n 'Content-Type': 'application/json',\n },\n body: JSON.stringify({\n toolName: toolName,\n arguments: request.params.arguments\n })\n });\n\n const result = await response.json();\n \n if (!response.ok) {\n \n return {\n content: [\n {\n type: \"text\",\n text: `Error executing hive tool: ${result.error || 'Request failed'}`,\n },\n ],\n };\n }\n\n return {\n content: [\n {\n type: \"text\",\n text: JSON.stringify(result, null, 2),\n },\n ],\n };\n \n } catch (error) {\n \n return {\n content: [\n {\n type: \"text\",\n text: `Error executing hive tool: ${error}`,\n },\n ],\n };\n }\n }\n\n private setupToolHandlers() {\n this.server.setRequestHandler(ListToolsRequestSchema, async () => {\n return {\n tools: this.tools as Tool\n };\n });\n\n this.server.setRequestHandler(CallToolRequestSchema, \n this.isDynamicTools ? this.dynamicToolsHandler.bind(this) : this.staticToolsHandler.bind(this)\n );\n }\n\n getServer() {\n return this.server;\n }\n\n}\nasync function main() {\n\n console.error(\"Starting MCP server in stdio mode...\");\n const isDynamicTools = true;\n const category = 0;\n \n const transport = new StdioServerTransport();\n const server = new HiveMCPServer(isDynamicTools, category);\n \n await server.getServer().connect(transport);\n console.error(\"MCP server is running in stdio mode...\");\n}\n\nmain().catch((error) => {\n console.error(\"Server error:\", error);\n process.exit(1);\n});\n\n// // Factory function to create server instances - following doc pattern\n// const getServer = (isDynamicTools:boolean, category:number) => {\n// return new HiveMCPServer(isDynamicTools, category);\n// };\n\n// // Create Express app\n// const app = express();\n// const port = process.env.PORT || 8080;\n\n// // Add CORS middleware before your MCP routes - as per doc\n// app.use(cors({\n// origin: '*', // Or your specific frontend origins in prod\n// exposedHeaders: ['Mcp-Session-Id'],\n// allowedHeaders: ['Content-Type', 'mcp-session-id', 'Authorization'],\n// }));\n\n// // Parse JSON bodies - Don't use globally as mcpAuthRouter handles its own parsing\n// // app.use(express.json());\n\n// // Health check endpoint (accessible at /mcp/ping)\n// app.get('/ping', (req, res) => {\n// res.json({ \n// status: 'ok', \n// message: 'Hive MCP Server is running',\n// version: '0.1.0',\n// endpoints: {\n// health: '/mcp/ping',\n// mcp: '/mcp'\n// }\n// });\n// });\n\n// // POST: Stateless handler - Following exact doc pattern (accessible at /mcp)\n// // Apply rate limiting after auth: 20 requests per minute per user (based on sub claim)\n// const mcpMiddlewares = [\n// express.json({\n// limit: '10mb', // Prevent large payload DoS attacks\n// type: 'application/json'\n// }),\n// ];\n\n// app.post('/mcp/', ...mcpMiddlewares, async (req: express.Request, res: express.Response) => {\n// try {\n// const serverInstance = getServer(true, 0);\n// const server = serverInstance.getServer(); \n// const transport: StreamableHTTPServerTransport = new StreamableHTTPServerTransport({\n// sessionIdGenerator: undefined,\n// });\n\n// res.on('close', () => {\n// console.log('Request closed');\n// transport.close();\n// server.close();\n// });\n// await server.connect(transport);\n// await transport.handleRequest(req, res, req.body);\n// } catch (error) {\n// console.error('Error handling MCP request:', error);\n// if (!res.headersSent) {\n// res.status(500).json({\n// jsonrpc: '2.0',\n// error: {\n// code: -32603,\n// message: 'Internal server error',\n// },\n// id: null,\n// });\n// }\n// }\n// });\n\n// // Dynamically create category-specific endpoints\n// Object.entries(CategoryEndpoints).forEach(([categoryIndex, endpointPath]) => {\n// const index = parseInt(categoryIndex);\n \n// app.post(endpointPath, ...mcpMiddlewares, async (req: express.Request, res: express.Response) => {\n// try {\n// const serverInstance = getServer(false, index);\n// const server = serverInstance.getServer(); \n// const transport: StreamableHTTPServerTransport = new StreamableHTTPServerTransport({\n// sessionIdGenerator: undefined,\n// });\n\n// res.on('close', () => {\n// console.log(`Request closed for ${endpointPath}`);\n// transport.close();\n// server.close();\n// // Ensure analytics are flushed when request closes\n// });\n \n// await server.connect(transport);\n// await transport.handleRequest(req, res, req.body);\n// } catch (error) {\n// console.error(`Error handling MCP request for ${endpointPath}:`, error);\n// if (!res.headersSent) {\n// res.status(500).json({\n// jsonrpc: '2.0',\n// error: {\n// code: -32603,\n// message: 'Internal server error',\n// },\n// id: null,\n// });\n// }\n// }\n// });\n// });\n\n\n// app.get('/mcp/', async (req: express.Request, res: express.Response) => {\n// console.log('Received GET MCP request');\n// res.writeHead(405).end(JSON.stringify({\n// jsonrpc: \"2.0\",\n// error: {\n// code: -32000,\n// message: \"Method not allowed.\"\n// },\n// id: null\n// }));\n// });\n\n\n// app.delete('/mcp/', async (req: express.Request, res: express.Response) => {\n// console.log('Received DELETE MCP request');\n// res.writeHead(405).end(JSON.stringify({\n// jsonrpc: \"2.0\",\n// error: {\n// code: -32000,\n// message: \"Method not allowed.\"\n// },\n// id: null\n// }));\n// });\n\n// // Root health check for the service itself (optional, for container health checks)\n// app.get('/', (req, res) => {\n// res.json({ \n// status: 'ok', \n// message: 'Hive MCP Service is running',\n// version: '0.1.0',\n// note: 'Main service available at /mcp/'\n// });\n// });\n\n// // Setup and start server - Following doc pattern\n// const setupServer = async () => {\n// // Any setup logic here\n// console.log('Setting up Hive MCP server...');\n// };\n\n// // Start the server - Following exact doc pattern\n// // const PORT = port;\n// // setupServer().then(() => {\n// // app.listen(PORT, (error?: any) => {\n// // if (error) {\n// // console.error('Failed to start server:', error);\n// // process.exit(1);\n// // }\n// // console.log(`MCP Stateless Streamable HTTP Server listening on port ${PORT}`);\n// // });\n// // }).catch(error => {\n// // console.error('Failed to set up the server:', error);\n// // process.exit(1);\n// // });\n\n// // export default app;","export const ignoreOverride = Symbol(\"Let zodToJsonSchema decide on which parser to use\");\nexport const jsonDescription = (jsonSchema, def) => {\n if (def.description) {\n try {\n return {\n ...jsonSchema,\n ...JSON.parse(def.description),\n };\n }\n catch { }\n }\n return jsonSchema;\n};\nexport const defaultOptions = {\n name: undefined,\n $refStrategy: \"root\",\n basePath: [\"#\"],\n effectStrategy: \"input\",\n pipeStrategy: \"all\",\n dateStrategy: \"format:date-time\",\n mapStrategy: \"entries\",\n removeAdditionalStrategy: \"passthrough\",\n allowedAdditionalProperties: true,\n rejectedAdditionalProperties: false,\n definitionPath: \"definitions\",\n target: \"jsonSchema7\",\n strictUnions: false,\n definitions: {},\n errorMessages: false,\n markdownDescription: false,\n patternStrategy: \"escape\",\n applyRegexFlags: false,\n emailStrategy: \"format:email\",\n base64Strategy: \"contentEncoding:base64\",\n nameStrategy: \"ref\",\n openAiAnyTypeName: \"OpenAiAnyType\"\n};\nexport const getDefaultOptions = (options) => (typeof options === \"string\"\n ? {\n ...defaultOptions,\n name: options,\n }\n : {\n ...defaultOptions,\n ...options,\n });\n","import { getDefaultOptions } from \"./Options.js\";\nexport const getRefs = (options) => {\n const _options = getDefaultOptions(options);\n const currentPath = _options.name !== undefined\n ? [..._options.basePath, _options.definitionPath, _options.name]\n : _options.basePath;\n return {\n ..._options,\n flags: { hasReferencedOpenAiAnyType: false },\n currentPath: currentPath,\n propertyPath: undefined,\n seen: new Map(Object.entries(_options.definitions).map(([name, def]) => [\n def._def,\n {\n def: def._def,\n path: [..._options.basePath, _options.definitionPath, name],\n // Resolution of references will be forced even though seen, so it's ok that the schema is undefined here for now.\n jsonSchema: undefined,\n },\n ])),\n };\n};\n","export function addErrorMessage(res, key, errorMessage, refs) {\n if (!refs?.errorMessages)\n return;\n if (errorMessage) {\n res.errorMessage = {\n ...res.errorMessage,\n [key]: errorMessage,\n };\n }\n}\nexport function setResponseValueAndErrors(res, key, value, errorMessage, refs) {\n res[key] = value;\n addErrorMessage(res, key, errorMessage, refs);\n}\n","export const getRelativePath = (pathA, pathB) => {\n let i = 0;\n for (; i < pathA.length && i < pathB.length; i++) {\n if (pathA[i] !== pathB[i])\n break;\n }\n return [(pathA.length - i).toString(), ...pathB.slice(i)].join(\"/\");\n};\n","export * from \"./errors.js\";\nexport * from \"./helpers/parseUtil.js\";\nexport * from \"./helpers/typeAliases.js\";\nexport * from \"./helpers/util.js\";\nexport * from \"./types.js\";\nexport * from \"./ZodError.js\";\n","export var util;\n(function (util) {\n util.assertEqual = (_) => { };\n function assertIs(_arg) { }\n util.assertIs = assertIs;\n function assertNever(_x) {\n throw new Error();\n }\n util.assertNever = assertNever;\n util.arrayToEnum = (items) => {\n const obj = {};\n for (const item of items) {\n obj[item] = item;\n }\n return obj;\n };\n util.getValidEnumValues = (obj) => {\n const validKeys = util.objectKeys(obj).filter((k) => typeof obj[obj[k]] !== \"number\");\n const filtered = {};\n for (const k of validKeys) {\n filtered[k] = obj[k];\n }\n return util.objectValues(filtered);\n };\n util.objectValues = (obj) => {\n return util.objectKeys(obj).map(function (e) {\n return obj[e];\n });\n };\n util.objectKeys = typeof Object.keys === \"function\" // eslint-disable-line ban/ban\n ? (obj) => Object.keys(obj) // eslint-disable-line ban/ban\n : (object) => {\n const keys = [];\n for (const key in object) {\n if (Object.prototype.hasOwnProperty.call(object, key)) {\n keys.push(key);\n }\n }\n return keys;\n };\n util.find = (arr, checker) => {\n for (const item of arr) {\n if (checker(item))\n return item;\n }\n return undefined;\n };\n util.isInteger = typeof Number.isInteger === \"function\"\n ? (val) => Number.isInteger(val) // eslint-disable-line ban/ban\n : (val) => typeof val === \"number\" && Number.isFinite(val) && Math.floor(val) === val;\n function joinValues(array, separator = \" | \") {\n return array.map((val) => (typeof val === \"string\" ? `'${val}'` : val)).join(separator);\n }\n util.joinValues = joinValues;\n util.jsonStringifyReplacer = (_, value) => {\n if (typeof value === \"bigint\") {\n return value.toString();\n }\n return value;\n };\n})(util || (util = {}));\nexport var objectUtil;\n(function (objectUtil) {\n objectUtil.mergeShapes = (first, second) => {\n return {\n ...first,\n ...second, // second overwrites first\n };\n };\n})(objectUtil || (objectUtil = {}));\nexport const ZodParsedType = util.arrayToEnum([\n \"string\",\n \"nan\",\n \"number\",\n \"integer\",\n \"float\",\n \"boolean\",\n \"date\",\n \"bigint\",\n \"symbol\",\n \"function\",\n \"undefined\",\n \"null\",\n \"array\",\n \"object\",\n \"unknown\",\n \"promise\",\n \"void\",\n \"never\",\n \"map\",\n \"set\",\n]);\nexport const getParsedType = (data) => {\n const t = typeof data;\n switch (t) {\n case \"undefined\":\n return ZodParsedType.undefined;\n case \"string\":\n return ZodParsedType.string;\n case \"number\":\n return Number.isNaN(data) ? ZodParsedType.nan : ZodParsedType.number;\n case \"boolean\":\n return ZodParsedType.boolean;\n case \"function\":\n return ZodParsedType.function;\n case \"bigint\":\n return ZodParsedType.bigint;\n case \"symbol\":\n return ZodParsedType.symbol;\n case \"object\":\n if (Array.isArray(data)) {\n return ZodParsedType.array;\n }\n if (data === null) {\n return ZodParsedType.null;\n }\n if (data.then && typeof data.then === \"function\" && data.catch && typeof data.catch === \"function\") {\n return ZodParsedType.promise;\n }\n if (typeof Map !== \"undefined\" && data instanceof Map) {\n return ZodParsedType.map;\n }\n if (typeof Set !== \"undefined\" && data instanceof Set) {\n return ZodParsedType.set;\n }\n if (typeof Date !== \"undefined\" && data instanceof Date) {\n return ZodParsedType.date;\n }\n return ZodParsedType.object;\n default:\n return ZodParsedType.unknown;\n }\n};\n","import { util } from \"./helpers/util.js\";\nexport const ZodIssueCode = util.arrayToEnum([\n \"invalid_type\",\n \"invalid_literal\",\n \"custom\",\n \"invalid_union\",\n \"invalid_union_discriminator\",\n \"invalid_enum_value\",\n \"unrecognized_keys\",\n \"invalid_arguments\",\n \"invalid_return_type\",\n \"invalid_date\",\n \"invalid_string\",\n \"too_small\",\n \"too_big\",\n \"invalid_intersection_types\",\n \"not_multiple_of\",\n \"not_finite\",\n]);\nexport const quotelessJson = (obj) => {\n const json = JSON.stringify(obj, null, 2);\n return json.replace(/\"([^\"]+)\":/g, \"$1:\");\n};\nexport class ZodError extends Error {\n get errors() {\n return this.issues;\n }\n constructor(issues) {\n super();\n this.issues = [];\n this.addIssue = (sub) => {\n this.issues = [...this.issues, sub];\n };\n this.addIssues = (subs = []) => {\n this.issues = [...this.issues, ...subs];\n };\n const actualProto = new.target.prototype;\n if (Object.setPrototypeOf) {\n // eslint-disable-next-line ban/ban\n Object.setPrototypeOf(this, actualProto);\n }\n else {\n this.__proto__ = actualProto;\n }\n this.name = \"ZodError\";\n this.issues = issues;\n }\n format(_mapper) {\n const mapper = _mapper ||\n function (issue) {\n return issue.message;\n };\n const fieldErrors = { _errors: [] };\n const processError = (error) => {\n for (const issue of error.issues) {\n if (issue.code === \"invalid_union\") {\n issue.unionErrors.map(processError);\n }\n else if (issue.code === \"invalid_return_type\") {\n processError(issue.returnTypeError);\n }\n else if (issue.code === \"invalid_arguments\") {\n processError(issue.argumentsError);\n }\n else if (issue.path.length === 0) {\n fieldErrors._errors.push(mapper(issue));\n }\n else {\n let curr = fieldErrors;\n let i = 0;\n while (i < issue.path.length) {\n const el = issue.path[i];\n const terminal = i === issue.path.length - 1;\n if (!terminal) {\n curr[el] = curr[el] || { _errors: [] };\n // if (typeof el === \"string\") {\n // curr[el] = curr[el] || { _errors: [] };\n // } else if (typeof el === \"number\") {\n // const errorArray: any = [];\n // errorArray._errors = [];\n // curr[el] = curr[el] || errorArray;\n // }\n }\n else {\n curr[el] = curr[el] || { _errors: [] };\n curr[el]._errors.push(mapper(issue));\n }\n curr = curr[el];\n i++;\n }\n }\n }\n };\n processError(this);\n return fieldErrors;\n }\n static assert(value) {\n if (!(value instanceof ZodError)) {\n throw new Error(`Not a ZodError: ${value}`);\n }\n }\n toString() {\n return this.message;\n }\n get message() {\n return JSON.stringify(this.issues, util.jsonStringifyReplacer, 2);\n }\n get isEmpty() {\n return this.issues.length === 0;\n }\n flatten(mapper = (issue) => issue.message) {\n const fieldErrors = {};\n const formErrors = [];\n for (const sub of this.issues) {\n if (sub.path.length > 0) {\n const firstEl = sub.path[0];\n fieldErrors[firstEl] = fieldErrors[firstEl] || [];\n fieldErrors[firstEl].push(mapper(sub));\n }\n else {\n formErrors.push(mapper(sub));\n }\n }\n return { formErrors, fieldErrors };\n }\n get formErrors() {\n return this.flatten();\n }\n}\nZodError.create = (issues) => {\n const error = new ZodError(issues);\n return error;\n};\n","import { ZodIssueCode } from \"../ZodError.js\";\nimport { util, ZodParsedType } from \"../helpers/util.js\";\nconst errorMap = (issue, _ctx) => {\n let message;\n switch (issue.code) {\n case ZodIssueCode.invalid_type:\n if (issue.received === ZodParsedType.undefined) {\n message = \"Required\";\n }\n else {\n message = `Expected ${issue.expected}, received ${issue.received}`;\n }\n break;\n case ZodIssueCode.invalid_literal:\n message = `Invalid literal value, expected ${JSON.stringify(issue.expected, util.jsonStringifyReplacer)}`;\n break;\n case ZodIssueCode.unrecognized_keys:\n message = `Unrecognized key(s) in object: ${util.joinValues(issue.keys, \", \")}`;\n break;\n case ZodIssueCode.invalid_union:\n message = `Invalid input`;\n break;\n case ZodIssueCode.invalid_union_discriminator:\n message = `Invalid discriminator value. Expected ${util.joinValues(issue.options)}`;\n break;\n case ZodIssueCode.invalid_enum_value:\n message = `Invalid enum value. Expected ${util.joinValues(issue.options)}, received '${issue.received}'`;\n break;\n case ZodIssueCode.invalid_arguments:\n message = `Invalid function arguments`;\n break;\n case ZodIssueCode.invalid_return_type:\n message = `Invalid function return type`;\n break;\n case ZodIssueCode.invalid_date:\n message = `Invalid date`;\n break;\n case ZodIssueCode.invalid_string:\n if (typeof issue.validation === \"object\") {\n if (\"includes\" in issue.validation) {\n message = `Invalid input: must include \"${issue.validation.includes}\"`;\n if (typeof issue.validation.position === \"number\") {\n message = `${message} at one or more positions greater than or equal to ${issue.validation.position}`;\n }\n }\n else if (\"startsWith\" in issue.validation) {\n message = `Invalid input: must start with \"${issue.validation.startsWith}\"`;\n }\n else if (\"endsWith\" in issue.validation) {\n message = `Invalid input: must end with \"${issue.validation.endsWith}\"`;\n }\n else {\n util.assertNever(issue.validation);\n }\n }\n else if (issue.validation !== \"regex\") {\n message = `Invalid ${issue.validation}`;\n }\n else {\n message = \"Invalid\";\n }\n break;\n case ZodIssueCode.too_small:\n if (issue.type === \"array\")\n message = `Array must contain ${issue.exact ? \"exactly\" : issue.inclusive ? `at least` : `more than`} ${issue.minimum} element(s)`;\n else if (issue.type === \"string\")\n message = `String must contain ${issue.exact ? \"exactly\" : issue.inclusive ? `at least` : `over`} ${issue.minimum} character(s)`;\n else if (issue.type === \"number\")\n message = `Number must be ${issue.exact ? `exactly equal to ` : issue.inclusive ? `greater than or equal to ` : `greater than `}${issue.minimum}`;\n else if (issue.type === \"bigint\")\n message = `Number must be ${issue.exact ? `exactly equal to ` : issue.inclusive ? `greater than or equal to ` : `greater than `}${issue.minimum}`;\n else if (issue.type === \"date\")\n message = `Date must be ${issue.exact ? `exactly equal to ` : issue.inclusive ? `greater than or equal to ` : `greater than `}${new Date(Number(issue.minimum))}`;\n else\n message = \"Invalid input\";\n break;\n case ZodIssueCode.too_big:\n if (issue.type === \"array\")\n message = `Array must contain ${issue.exact ? `exactly` : issue.inclusive ? `at most` : `less than`} ${issue.maximum} element(s)`;\n else if (issue.type === \"string\")\n message = `String must contain ${issue.exact ? `exactly` : issue.inclusive ? `at most` : `under`} ${issue.maximum} character(s)`;\n else if (issue.type === \"number\")\n message = `Number must be ${issue.exact ? `exactly` : issue.inclusive ? `less than or equal to` : `less than`} ${issue.maximum}`;\n else if (issue.type === \"bigint\")\n message = `BigInt must be ${issue.exact ? `exactly` : issue.inclusive ? `less than or equal to` : `less than`} ${issue.maximum}`;\n else if (issue.type === \"date\")\n message = `Date must be ${issue.exact ? `exactly` : issue.inclusive ? `smaller than or equal to` : `smaller than`} ${new Date(Number(issue.maximum))}`;\n else\n message = \"Invalid input\";\n break;\n case ZodIssueCode.custom:\n message = `Invalid input`;\n break;\n case ZodIssueCode.invalid_intersection_types:\n message = `Intersection results could not be merged`;\n break;\n case ZodIssueCode.not_multiple_of:\n message = `Number must be a multiple of ${issue.multipleOf}`;\n break;\n case ZodIssueCode.not_finite:\n message = \"Number must be finite\";\n break;\n default:\n message = _ctx.defaultError;\n util.assertNever(issue);\n }\n return { message };\n};\nexport default errorMap;\n","import defaultErrorMap from \"./locales/en.js\";\nlet overrideErrorMap = defaultErrorMap;\nexport { defaultErrorMap };\nexport function setErrorMap(map) {\n overrideErrorMap = map;\n}\nexport function getErrorMap() {\n return overrideErrorMap;\n}\n","import { getErrorMap } from \"../errors.js\";\nimport defaultErrorMap from \"../locales/en.js\";\nexport const makeIssue = (params) => {\n const { data, path, errorMaps, issueData } = params;\n const fullPath = [...path, ...(issueData.path || [])];\n const fullIssue = {\n ...issueData,\n path: fullPath,\n };\n if (issueData.message !== undefined) {\n return {\n ...issueData,\n path: fullPath,\n message: issueData.message,\n };\n }\n let errorMessage = \"\";\n const maps = errorMaps\n .filter((m) => !!m)\n .slice()\n .reverse();\n for (const map of maps) {\n errorMessage = map(fullIssue, { data, defaultError: errorMessage }).message;\n }\n return {\n ...issueData,\n path: fullPath,\n message: errorMessage,\n };\n};\nexport const EMPTY_PATH = [];\nexport function addIssueToContext(ctx, issueData) {\n const overrideMap = getErrorMap();\n const issue = makeIssue({\n issueData: issueData,\n data: ctx.data,\n path: ctx.path,\n errorMaps: [\n ctx.common.contextualErrorMap, // contextual error map is first priority\n ctx.schemaErrorMap, // then schema-bound map if available\n overrideMap, // then global override map\n overrideMap === defaultErrorMap ? undefined : defaultErrorMap, // then global default map\n ].filter((x) => !!x),\n });\n ctx.common.issues.push(issue);\n}\nexport class ParseStatus {\n constructor() {\n this.value = \"valid\";\n }\n dirty() {\n if (this.value === \"valid\")\n this.value = \"dirty\";\n }\n abort() {\n if (this.value !== \"aborted\")\n this.value = \"aborted\";\n }\n static mergeArray(status, results) {\n const arrayValue = [];\n for (const s of results) {\n if (s.status === \"aborted\")\n return INVALID;\n if (s.status === \"dirty\")\n status.dirty();\n arrayValue.push(s.value);\n }\n return { status: status.value, value: arrayValue };\n }\n static async mergeObjectAsync(status, pairs) {\n const syncPairs = [];\n for (const pair of pairs) {\n const key = await pair.key;\n const value = await pair.value;\n syncPairs.push({\n key,\n value,\n });\n }\n return ParseStatus.mergeObjectSync(status, syncPairs);\n }\n static mergeObjectSync(status, pairs) {\n const finalObject = {};\n for (const pair of pairs) {\n const { key, value } = pair;\n if (key.status === \"aborted\")\n return INVALID;\n if (value.status === \"aborted\")\n return INVALID;\n if (key.status === \"dirty\")\n status.dirty();\n if (value.status === \"dirty\")\n status.dirty();\n if (key.value !== \"__proto__\" && (typeof value.value !== \"undefined\" || pair.alwaysSet)) {\n finalObject[key.value] = value.value;\n }\n }\n return { status: status.value, value: finalObject };\n }\n}\nexport const INVALID = Object.freeze({\n status: \"aborted\",\n});\nexport const DIRTY = (value) => ({ status: \"dirty\", value });\nexport const OK = (value) => ({ status: \"valid\", value });\nexport const isAborted = (x) => x.status === \"aborted\";\nexport const isDirty = (x) => x.status === \"dirty\";\nexport const isValid = (x) => x.status === \"valid\";\nexport const isAsync = (x) => typeof Promise !== \"undefined\" && x instanceof Promise;\n","export var errorUtil;\n(function (errorUtil) {\n errorUtil.errToObj = (message) => typeof message === \"string\" ? { message } : message || {};\n // biome-ignore lint:\n errorUtil.toString = (message) => typeof message === \"string\" ? message : message?.message;\n})(errorUtil || (errorUtil = {}));\n","import { ZodError, ZodIssueCode, } from \"./ZodError.js\";\nimport { defaultErrorMap, getErrorMap } from \"./errors.js\";\nimport { errorUtil } from \"./helpers/errorUtil.js\";\nimport { DIRTY, INVALID, OK, ParseStatus, addIssueToContext, isAborted, isAsync, isDirty, isValid, makeIssue, } from \"./helpers/parseUtil.js\";\nimport { util, ZodParsedType, getParsedType } from \"./helpers/util.js\";\nclass ParseInputLazyPath {\n constructor(parent, value, path, key) {\n this._cachedPath = [];\n this.parent = parent;\n this.data = value;\n this._path = path;\n this._key = key;\n }\n get path() {\n if (!this._cachedPath.length) {\n if (Array.isArray(this._key)) {\n this._cachedPath.push(...this._path, ...this._key);\n }\n else {\n this._cachedPath.push(...this._path, this._key);\n }\n }\n return this._cachedPath;\n }\n}\nconst handleResult = (ctx, result) => {\n if (isValid(result)) {\n return { success: true, data: result.value };\n }\n else {\n if (!ctx.common.issues.length) {\n throw new Error(\"Validation failed but no issues detected.\");\n }\n return {\n success: false,\n get error() {\n if (this._error)\n return this._error;\n const error = new ZodError(ctx.common.issues);\n this._error = error;\n return this._error;\n },\n };\n }\n};\nfunction processCreateParams(params) {\n if (!params)\n return {};\n const { errorMap, invalid_type_error, required_error, description } = params;\n if (errorMap && (invalid_type_error || required_error)) {\n throw new Error(`Can't use \"invalid_type_error\" or \"required_error\" in conjunction with custom error map.`);\n }\n if (errorMap)\n return { errorMap: errorMap, description };\n const customMap = (iss, ctx) => {\n const { message } = params;\n if (iss.code === \"invalid_enum_value\") {\n return { message: message ?? ctx.defaultError };\n }\n if (typeof ctx.data === \"undefined\") {\n return { message: message ?? required_error ?? ctx.defaultError };\n }\n if (iss.code !== \"invalid_type\")\n return { message: ctx.defaultError };\n return { message: message ?? invalid_type_error ?? ctx.defaultError };\n };\n return { errorMap: customMap, description };\n}\nexport class ZodType {\n get description() {\n return this._def.description;\n }\n _getType(input) {\n return getParsedType(input.data);\n }\n _getOrReturnCtx(input, ctx) {\n return (ctx || {\n common: input.parent.common,\n data: input.data,\n parsedType: getParsedType(input.data),\n schemaErrorMap: this._def.errorMap,\n path: input.path,\n parent: input.parent,\n });\n }\n _processInputParams(input) {\n return {\n status: new ParseStatus(),\n ctx: {\n common: input.parent.common,\n data: input.data,\n parsedType: getParsedType(input.data),\n schemaErrorMap: this._def.errorMap,\n path: input.path,\n parent: input.parent,\n },\n };\n }\n _parseSync(input) {\n const result = this._parse(input);\n if (isAsync(result)) {\n throw new Error(\"Synchronous parse encountered promise.\");\n }\n return result;\n }\n _parseAsync(input) {\n const result = this._parse(input);\n return Promise.resolve(result);\n }\n parse(data, params) {\n const result = this.safeParse(data, params);\n if (result.success)\n return result.data;\n throw result.error;\n }\n safeParse(data, params) {\n const ctx = {\n common: {\n issues: [],\n async: params?.async ?? false,\n contextualErrorMap: params?.errorMap,\n },\n path: params?.path || [],\n schemaErrorMap: this._def.errorMap,\n parent: null,\n data,\n parsedType: getParsedType(data),\n };\n const result = this._parseSync({ data, path: ctx.path, parent: ctx });\n return handleResult(ctx, result);\n }\n \"~validate\"(data) {\n const ctx = {\n common: {\n issues: [],\n async: !!this[\"~standard\"].async,\n },\n path: [],\n schemaErrorMap: this._def.errorMap,\n parent: null,\n data,\n parsedType: getParsedType(data),\n };\n if (!this[\"~standard\"].async) {\n try {\n const result = this._parseSync({ data, path: [], parent: ctx });\n return isValid(result)\n ? {\n value: result.value,\n }\n : {\n issues: ctx.common.issues,\n };\n }\n catch (err) {\n if (err?.message?.toLowerCase()?.includes(\"encountered\")) {\n this[\"~standard\"].async = true;\n }\n ctx.common = {\n issues: [],\n async: true,\n };\n }\n }\n return this._parseAsync({ data, path: [], parent: ctx }).then((result) => isValid(result)\n ? {\n value: result.value,\n }\n : {\n issues: ctx.common.issues,\n });\n }\n async parseAsync(data, params) {\n const result = await this.safeParseAsync(data, params);\n if (result.success)\n return result.data;\n throw result.error;\n }\n async safeParseAsync(data, params) {\n const ctx = {\n common: {\n issues: [],\n contextualErrorMap: params?.errorMap,\n async: true,\n },\n path: params?.path || [],\n schemaErrorMap: this._def.errorMap,\n parent: null,\n data,\n parsedType: getParsedType(data),\n };\n const maybeAsyncResult = this._parse({ data, path: ctx.path, parent: ctx });\n const result = await (isAsync(maybeAsyncResult) ? maybeAsyncResult : Promise.resolve(maybeAsyncResult));\n return handleResult(ctx, result);\n }\n refine(check, message) {\n const getIssueProperties = (val) => {\n if (typeof message === \"string\" || typeof message === \"undefined\") {\n return { message };\n }\n else if (typeof message === \"function\") {\n return message(val);\n }\n else {\n return message;\n }\n };\n return this._refinement((val, ctx) => {\n const result = check(val);\n const setError = () => ctx.addIssue({\n code: ZodIssueCode.custom,\n ...getIssueProperties(val),\n });\n if (typeof Promise !== \"undefined\" && result instanceof Promise) {\n return result.then((data) => {\n if (!data) {\n setError();\n return false;\n }\n else {\n return true;\n }\n });\n }\n if (!result) {\n setError();\n return false;\n }\n else {\n return true;\n }\n });\n }\n refinement(check, refinementData) {\n return this._refinement((val, ctx) => {\n if (!check(val)) {\n ctx.addIssue(typeof refinementData === \"function\" ? refinementData(val, ctx) : refinementData);\n return false;\n }\n else {\n return true;\n }\n });\n }\n _refinement(refinement) {\n return new ZodEffects({\n schema: this,\n typeName: ZodFirstPartyTypeKind.ZodEffects,\n effect: { type: \"refinement\", refinement },\n });\n }\n superRefine(refinement) {\n return this._refinement(refinement);\n }\n constructor(def) {\n /** Alias of safeParseAsync */\n this.spa = this.safeParseAsync;\n this._def = def;\n this.parse = this.parse.bind(this);\n this.safeParse = this.safeParse.bind(this);\n this.parseAsync = this.parseAsync.bind(this);\n this.safeParseAsync = this.safeParseAsync.bind(this);\n this.spa = this.spa.bind(this);\n this.refine = this.refine.bind(this);\n this.refinement = this.refinement.bind(this);\n this.superRefine = this.superRefine.bind(this);\n this.optional = this.optional.bind(this);\n this.nullable = this.nullable.bind(this);\n this.nullish = this.nullish.bind(this);\n this.array = this.array.bind(this);\n this.promise = this.promise.bind(this);\n this.or = this.or.bind(this);\n this.and = this.and.bind(this);\n this.transform = this.transform.bind(this);\n this.brand = this.brand.bind(this);\n this.default = this.default.bind(this);\n this.catch = this.catch.bind(this);\n this.describe = this.describe.bind(this);\n this.pipe = this.pipe.bind(this);\n this.readonly = this.readonly.bind(this);\n this.isNullable = this.isNullable.bind(this);\n this.isOptional = this.isOptional.bind(this);\n this[\"~standard\"] = {\n version: 1,\n vendor: \"zod\",\n validate: (data) => this[\"~validate\"](data),\n };\n }\n optional() {\n return ZodOptional.create(this, this._def);\n }\n nullable() {\n return ZodNullable.create(this, this._def);\n }\n nullish() {\n return this.nullable().optional();\n }\n array() {\n return ZodArray.create(this);\n }\n promise() {\n return ZodPromise.create(this, this._def);\n }\n or(option) {\n return ZodUnion.create([this, option], this._def);\n }\n and(incoming) {\n return ZodIntersection.create(this, incoming, this._def);\n }\n transform(transform) {\n return new ZodEffects({\n ...processCreateParams(this._def),\n schema: this,\n typeName: ZodFirstPartyTypeKind.ZodEffects,\n effect: { type: \"transform\", transform },\n });\n }\n default(def) {\n const defaultValueFunc = typeof def === \"function\" ? def : () => def;\n return new ZodDefault({\n ...processCreateParams(this._def),\n innerType: this,\n defaultValue: defaultValueFunc,\n typeName: ZodFirstPartyTypeKind.ZodDefault,\n });\n }\n brand() {\n return new ZodBranded({\n typeName: ZodFirstPartyTypeKind.ZodBranded,\n type: this,\n ...processCreateParams(this._def),\n });\n }\n catch(def) {\n const catchValueFunc = typeof def === \"function\" ? def : () => def;\n return new ZodCatch({\n ...processCreateParams(this._def),\n innerType: this,\n catchValue: catchValueFunc,\n typeName: ZodFirstPartyTypeKind.ZodCatch,\n });\n }\n describe(description) {\n const This = this.constructor;\n return new This({\n ...this._def,\n description,\n });\n }\n pipe(target) {\n return ZodPipeline.create(this, target);\n }\n readonly() {\n return ZodReadonly.create(this);\n }\n isOptional() {\n return this.safeParse(undefined).success;\n }\n isNullable() {\n return this.safeParse(null).success;\n }\n}\nconst cuidRegex = /^c[^\\s-]{8,}$/i;\nconst cuid2Regex = /^[0-9a-z]+$/;\nconst ulidRegex = /^[0-9A-HJKMNP-TV-Z]{26}$/i;\n// const uuidRegex =\n// /^([a-f0-9]{8}-[a-f0-9]{4}-[1-5][a-f0-9]{3}-[a-f0-9]{4}-[a-f0-9]{12}|00000000-0000-0000-0000-000000000000)$/i;\nconst uuidRegex = /^[0-9a-fA-F]{8}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{12}$/i;\nconst nanoidRegex = /^[a-z0-9_-]{21}$/i;\nconst jwtRegex = /^[A-Za-z0-9-_]+\\.[A-Za-z0-9-_]+\\.[A-Za-z0-9-_]*$/;\nconst durationRegex = /^[-+]?P(?!$)(?:(?:[-+]?\\d+Y)|(?:[-+]?\\d+[.,]\\d+Y$))?(?:(?:[-+]?\\d+M)|(?:[-+]?\\d+[.,]\\d+M$))?(?:(?:[-+]?\\d+W)|(?:[-+]?\\d+[.,]\\d+W$))?(?:(?:[-+]?\\d+D)|(?:[-+]?\\d+[.,]\\d+D$))?(?:T(?=[\\d+-])(?:(?:[-+]?\\d+H)|(?:[-+]?\\d+[.,]\\d+H$))?(?:(?:[-+]?\\d+M)|(?:[-+]?\\d+[.,]\\d+M$))?(?:[-+]?\\d+(?:[.,]\\d+)?S)?)??$/;\n// from https://stackoverflow.com/a/46181/1550155\n// old version: too slow, didn't support unicode\n// const emailRegex = /^((([a-z]|\\d|[!#\\$%&'\\*\\+\\-\\/=\\?\\^_`{\\|}~]|[\\u00A0-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF])+(\\.([a-z]|\\d|[!#\\$%&'\\*\\+\\-\\/=\\?\\^_`{\\|}~]|[\\u00A0-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF])+)*)|((\\x22)((((\\x20|\\x09)*(\\x0d\\x0a))?(\\x20|\\x09)+)?(([\\x01-\\x08\\x0b\\x0c\\x0e-\\x1f\\x7f]|\\x21|[\\x23-\\x5b]|[\\x5d-\\x7e]|[\\u00A0-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF])|(\\\\([\\x01-\\x09\\x0b\\x0c\\x0d-\\x7f]|[\\u00A0-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF]))))*(((\\x20|\\x09)*(\\x0d\\x0a))?(\\x20|\\x09)+)?(\\x22)))@((([a-z]|\\d|[\\u00A0-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF])|(([a-z]|\\d|[\\u00A0-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF])([a-z]|\\d|-|\\.|_|~|[\\u00A0-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF])*([a-z]|\\d|[\\u00A0-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF])))\\.)+(([a-z]|[\\u00A0-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF])|(([a-z]|[\\u00A0-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF])([a-z]|\\d|-|\\.|_|~|[\\u00A0-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF])*([a-z]|[\\u00A0-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF])))$/i;\n//old email regex\n// const emailRegex = /^(([^<>()[\\].,;:\\s@\"]+(\\.[^<>()[\\].,;:\\s@\"]+)*)|(\".+\"))@((?!-)([^<>()[\\].,;:\\s@\"]+\\.)+[^<>()[\\].,;:\\s@\"]{1,})[^-<>()[\\].,;:\\s@\"]$/i;\n// eslint-disable-next-line\n// const emailRegex =\n// /^(([^<>()[\\]\\\\.,;:\\s@\\\"]+(\\.[^<>()[\\]\\\\.,;:\\s@\\\"]+)*)|(\\\".+\\\"))@((\\[(((25[0-5])|(2[0-4][0-9])|(1[0-9]{2})|([0-9]{1,2}))\\.){3}((25[0-5])|(2[0-4][0-9])|(1[0-9]{2})|([0-9]{1,2}))\\])|(\\[IPv6:(([a-f0-9]{1,4}:){7}|::([a-f0-9]{1,4}:){0,6}|([a-f0-9]{1,4}:){1}:([a-f0-9]{1,4}:){0,5}|([a-f0-9]{1,4}:){2}:([a-f0-9]{1,4}:){0,4}|([a-f0-9]{1,4}:){3}:([a-f0-9]{1,4}:){0,3}|([a-f0-9]{1,4}:){4}:([a-f0-9]{1,4}:){0,2}|([a-f0-9]{1,4}:){5}:([a-f0-9]{1,4}:){0,1})([a-f0-9]{1,4}|(((25[0-5])|(2[0-4][0-9])|(1[0-9]{2})|([0-9]{1,2}))\\.){3}((25[0-5])|(2[0-4][0-9])|(1[0-9]{2})|([0-9]{1,2})))\\])|([A-Za-z0-9]([A-Za-z0-9-]*[A-Za-z0-9])*(\\.[A-Za-z]{2,})+))$/;\n// const emailRegex =\n// /^[a-zA-Z0-9\\.\\!\\#\\$\\%\\&\\'\\*\\+\\/\\=\\?\\^\\_\\`\\{\\|\\}\\~\\-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$/;\n// const emailRegex =\n// /^(?:[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*|\"(?:[\\x01-\\x08\\x0b\\x0c\\x0e-\\x1f\\x21\\x23-\\x5b\\x5d-\\x7f]|\\\\[\\x01-\\x09\\x0b\\x0c\\x0e-\\x7f])*\")@(?:(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?|\\[(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?|[a-z0-9-]*[a-z0-9]:(?:[\\x01-\\x08\\x0b\\x0c\\x0e-\\x1f\\x21-\\x5a\\x53-\\x7f]|\\\\[\\x01-\\x09\\x0b\\x0c\\x0e-\\x7f])+)\\])$/i;\nconst emailRegex = /^(?!\\.)(?!.*\\.\\.)([A-Z0-9_'+\\-\\.]*)[A-Z0-9_+-]@([A-Z0-9][A-Z0-9\\-]*\\.)+[A-Z]{2,}$/i;\n// const emailRegex =\n// /^[a-z0-9.!#$%&’*+/=?^_`{|}~-]+@[a-z0-9-]+(?:\\.[a-z0-9\\-]+)*$/i;\n// from https://thekevinscott.com/emojis-in-javascript/#writing-a-regular-expression\nconst _emojiRegex = `^(\\\\p{Extended_Pictographic}|\\\\p{Emoji_Component})+$`;\nlet emojiRegex;\n// faster, simpler, safer\nconst ipv4Regex = /^(?:(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\\.){3}(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])$/;\nconst ipv4CidrRegex = /^(?:(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\\.){3}(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\\/(3[0-2]|[12]?[0-9])$/;\n// const ipv6Regex =\n// /^(([a-f0-9]{1,4}:){7}|::([a-f0-9]{1,4}:){0,6}|([a-f0-9]{1,4}:){1}:([a-f0-9]{1,4}:){0,5}|([a-f0-9]{1,4}:){2}:([a-f0-9]{1,4}:){0,4}|([a-f0-9]{1,4}:){3}:([a-f0-9]{1,4}:){0,3}|([a-f0-9]{1,4}:){4}:([a-f0-9]{1,4}:){0,2}|([a-f0-9]{1,4}:){5}:([a-f0-9]{1,4}:){0,1})([a-f0-9]{1,4}|(((25[0-5])|(2[0-4][0-9])|(1[0-9]{2})|([0-9]{1,2}))\\.){3}((25[0-5])|(2[0-4][0-9])|(1[0-9]{2})|([0-9]{1,2})))$/;\nconst ipv6Regex = /^(([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]))$/;\nconst ipv6CidrRegex = /^(([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]))\\/(12[0-8]|1[01][0-9]|[1-9]?[0-9])$/;\n// https://stackoverflow.com/questions/7860392/determine-if-string-is-in-base64-using-javascript\nconst base64Regex = /^([0-9a-zA-Z+/]{4})*(([0-9a-zA-Z+/]{2}==)|([0-9a-zA-Z+/]{3}=))?$/;\n// https://base64.guru/standards/base64url\nconst base64urlRegex = /^([0-9a-zA-Z-_]{4})*(([0-9a-zA-Z-_]{2}(==)?)|([0-9a-zA-Z-_]{3}(=)?))?$/;\n// simple\n// const dateRegexSource = `\\\\d{4}-\\\\d{2}-\\\\d{2}`;\n// no leap year validation\n// const dateRegexSource = `\\\\d{4}-((0[13578]|10|12)-31|(0[13-9]|1[0-2])-30|(0[1-9]|1[0-2])-(0[1-9]|1\\\\d|2\\\\d))`;\n// with leap year validation\nconst dateRegexSource = `((\\\\d\\\\d[2468][048]|\\\\d\\\\d[13579][26]|\\\\d\\\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\\\d{4}-((0[13578]|1[02])-(0[1-9]|[12]\\\\d|3[01])|(0[469]|11)-(0[1-9]|[12]\\\\d|30)|(02)-(0[1-9]|1\\\\d|2[0-8])))`;\nconst dateRegex = new RegExp(`^${dateRegexSource}$`);\nfunction timeRegexSource(args) {\n let secondsRegexSource = `[0-5]\\\\d`;\n if (args.precision) {\n secondsRegexSource = `${secondsRegexSource}\\\\.\\\\d{${args.precision}}`;\n }\n else if (args.precision == null) {\n secondsRegexSource = `${secondsRegexSource}(\\\\.\\\\d+)?`;\n }\n const secondsQuantifier = args.precision ? \"+\" : \"?\"; // require seconds if precision is nonzero\n return `([01]\\\\d|2[0-3]):[0-5]\\\\d(:${secondsRegexSource})${secondsQuantifier}`;\n}\nfunction timeRegex(args) {\n return new RegExp(`^${timeRegexSource(args)}$`);\n}\n// Adapted from https://stackoverflow.com/a/3143231\nexport function datetimeRegex(args) {\n let regex = `${dateRegexSource}T${timeRegexSource(args)}`;\n const opts = [];\n opts.push(args.local ? `Z?` : `Z`);\n if (args.offset)\n opts.push(`([+-]\\\\d{2}:?\\\\d{2})`);\n regex = `${regex}(${opts.join(\"|\")})`;\n return new RegExp(`^${regex}$`);\n}\nfunction isValidIP(ip, version) {\n if ((version === \"v4\" || !version) && ipv4Regex.test(ip)) {\n return true;\n }\n if ((version === \"v6\" || !version) && ipv6Regex.test(ip)) {\n return true;\n }\n return false;\n}\nfunction isValidJWT(jwt, alg) {\n if (!jwtRegex.test(jwt))\n return false;\n try {\n const [header] = jwt.split(\".\");\n if (!header)\n return false;\n // Convert base64url to base64\n const base64 = header\n .replace(/-/g, \"+\")\n .replace(/_/g, \"/\")\n .padEnd(header.length + ((4 - (header.length % 4)) % 4), \"=\");\n const decoded = JSON.parse(atob(base64));\n if (typeof decoded !== \"object\" || decoded === null)\n return false;\n if (\"typ\" in decoded && decoded?.typ !== \"JWT\")\n return false;\n if (!decoded.alg)\n return false;\n if (alg && decoded.alg !== alg)\n return false;\n return true;\n }\n catch {\n return false;\n }\n}\nfunction isValidCidr(ip, version) {\n if ((version === \"v4\" || !version) && ipv4CidrRegex.test(ip)) {\n return true;\n }\n if ((version === \"v6\" || !version) && ipv6CidrRegex.test(ip)) {\n return true;\n }\n return false;\n}\nexport class ZodString extends ZodType {\n _parse(input) {\n if (this._def.coerce) {\n input.data = String(input.data);\n }\n const parsedType = this._getType(input);\n if (parsedType !== ZodParsedType.string) {\n const ctx = this._getOrReturnCtx(input);\n addIssueToContext(ctx, {\n code: ZodIssueCode.invalid_type,\n expected: ZodParsedType.string,\n received: ctx.parsedType,\n });\n return INVALID;\n }\n const status = new ParseStatus();\n let ctx = undefined;\n for (const check of this._def.checks) {\n if (check.kind === \"min\") {\n if (input.data.length < check.value) {\n ctx = this._getOrReturnCtx(input, ctx);\n addIssueToContext(ctx, {\n code: ZodIssueCode.too_small,\n minimum: check.value,\n type: \"string\",\n inclusive: true,\n exact: false,\n message: check.message,\n });\n status.dirty();\n }\n }\n else if (check.kind === \"max\") {\n if (input.data.length > check.value) {\n ctx = this._getOrReturnCtx(input, ctx);\n addIssueToContext(ctx, {\n code: ZodIssueCode.too_big,\n maximum: check.value,\n type: \"string\",\n inclusive: true,\n exact: false,\n message: check.message,\n });\n status.dirty();\n }\n }\n else if (check.kind === \"length\") {\n const tooBig = input.data.length > check.value;\n const tooSmall = input.data.length < check.value;\n if (tooBig || tooSmall) {\n ctx = this._getOrReturnCtx(input, ctx);\n if (tooBig) {\n addIssueToContext(ctx, {\n code: ZodIssueCode.too_big,\n maximum: check.value,\n type: \"string\",\n inclusive: true,\n exact: true,\n message: check.message,\n });\n }\n else if (tooSmall) {\n addIssueToContext(ctx, {\n code: ZodIssueCode.too_small,\n minimum: check.value,\n type: \"string\",\n inclusive: true,\n exact: true,\n message: check.message,\n });\n }\n status.dirty();\n }\n }\n else if (check.kind === \"email\") {\n if (!emailRegex.test(input.data)) {\n ctx = this._getOrReturnCtx(input, ctx);\n addIssueToContext(ctx, {\n validation: \"email\",\n code: ZodIssueCode.invalid_string,\n message: check.message,\n });\n status.dirty();\n }\n }\n else if (check.kind === \"emoji\") {\n if (!emojiRegex) {\n emojiRegex = new RegExp(_emojiRegex, \"u\");\n }\n if (!emojiRegex.test(input.data)) {\n ctx = this._getOrReturnCtx(input, ctx);\n addIssueToContext(ctx, {\n validation: \"emoji\",\n code: ZodIssueCode.invalid_string,\n message: check.message,\n });\n status.dirty();\n }\n }\n else if (check.kind === \"uuid\") {\n if (!uuidRegex.test(input.data)) {\n ctx = this._getOrReturnCtx(input, ctx);\n addIssueToContext(ctx, {\n validation: \"uuid\",\n code: ZodIssueCode.invalid_string,\n message: check.message,\n });\n status.dirty();\n }\n }\n else if (check.kind === \"nanoid\") {\n if (!nanoidRegex.test(input.data)) {\n ctx = this._getOrReturnCtx(input, ctx);\n addIssueToContext(ctx, {\n validation: \"nanoid\",\n code: ZodIssueCode.invalid_string,\n message: check.message,\n });\n status.dirty();\n }\n }\n else if (check.kind === \"cuid\") {\n if (!cuidRegex.test(input.data)) {\n ctx = this._getOrReturnCtx(input, ctx);\n addIssueToContext(ctx, {\n validation: \"cuid\",\n code: ZodIssueCode.invalid_string,\n message: check.message,\n });\n status.dirty();\n }\n }\n else if (check.kind === \"cuid2\") {\n if (!cuid2Regex.test(input.data)) {\n ctx = this._getOrReturnCtx(input, ctx);\n addIssueToContext(ctx, {\n validation: \"cuid2\",\n code: ZodIssueCode.invalid_string,\n message: check.message,\n });\n status.dirty();\n }\n }\n else if (check.kind === \"ulid\") {\n if (!ulidRegex.test(input.data)) {\n ctx = this._getOrReturnCtx(input, ctx);\n addIssueToContext(ctx, {\n validation: \"ulid\",\n code: ZodIssueCode.invalid_string,\n message: check.message,\n });\n status.dirty();\n }\n }\n else if (check.kind === \"url\") {\n try {\n new URL(input.data);\n }\n catch {\n ctx = this._getOrReturnCtx(input, ctx);\n addIssueToContext(ctx, {\n validation: \"url\",\n code: ZodIssueCode.invalid_string,\n message: check.message,\n });\n status.dirty();\n }\n }\n else if (check.kind === \"regex\") {\n check.regex.lastIndex = 0;\n const testResult = check.regex.test(input.data);\n if (!testResult) {\n ctx = this._getOrReturnCtx(input, ctx);\n addIssueToContext(ctx, {\n validation: \"regex\",\n code: ZodIssueCode.invalid_string,\n message: check.message,\n });\n status.dirty();\n }\n }\n else if (check.kind === \"trim\") {\n input.data = input.data.trim();\n }\n else if (check.kind === \"includes\") {\n if (!input.data.includes(check.value, check.position)) {\n ctx = this._getOrReturnCtx(input, ctx);\n addIssueToContext(ctx, {\n code: ZodIssueCode.invalid_string,\n validation: { includes: check.value, position: check.position },\n message: check.message,\n });\n status.dirty();\n }\n }\n else if (check.kind === \"toLowerCase\") {\n input.data = input.data.toLowerCase();\n }\n else if (check.kind === \"toUpperCase\") {\n input.data = input.data.toUpperCase();\n }\n else if (check.kind === \"startsWith\") {\n if (!input.data.startsWith(check.value)) {\n ctx = this._getOrReturnCtx(input, ctx);\n addIssueToContext(ctx, {\n code: ZodIssueCode.invalid_string,\n validation: { startsWith: check.value },\n message: check.message,\n });\n status.dirty();\n }\n }\n else if (check.kind === \"endsWith\") {\n if (!input.data.endsWith(check.value)) {\n ctx = this._getOrReturnCtx(input, ctx);\n addIssueToContext(ctx, {\n code: ZodIssueCode.invalid_string,\n validation: { endsWith: check.value },\n message: check.message,\n });\n status.dirty();\n }\n }\n else if (check.kind === \"datetime\") {\n const regex = datetimeRegex(check);\n if (!regex.test(input.data)) {\n ctx = this._getOrReturnCtx(input, ctx);\n addIssueToContext(ctx, {\n code: ZodIssueCode.invalid_string,\n validation: \"datetime\",\n message: check.message,\n });\n status.dirty();\n }\n }\n else if (check.kind === \"date\") {\n const regex = dateRegex;\n if (!regex.test(input.data)) {\n ctx = this._getOrReturnCtx(input, ctx);\n addIssueToContext(ctx, {\n code: ZodIssueCode.invalid_string,\n validation: \"date\",\n message: check.message,\n });\n status.dirty();\n }\n }\n else if (check.kind === \"time\") {\n const regex = timeRegex(check);\n if (!regex.test(input.data)) {\n ctx = this._getOrReturnCtx(input, ctx);\n addIssueToContext(ctx, {\n code: ZodIssueCode.invalid_string,\n validation: \"time\",\n message: check.message,\n });\n status.dirty();\n }\n }\n else if (check.kind === \"duration\") {\n if (!durationRegex.test(input.data)) {\n ctx = this._getOrReturnCtx(input, ctx);\n addIssueToContext(ctx, {\n validation: \"duration\",\n code: ZodIssueCode.invalid_string,\n message: check.message,\n });\n status.dirty();\n }\n }\n else if (check.kind === \"ip\") {\n if (!isValidIP(input.data, check.version)) {\n ctx = this._getOrReturnCtx(input, ctx);\n addIssueToContext(ctx, {\n validation: \"ip\",\n code: ZodIssueCode.invalid_string,\n message: check.message,\n });\n status.dirty();\n }\n }\n else if (check.kind === \"jwt\") {\n if (!isValidJWT(input.data, check.alg)) {\n ctx = this._getOrReturnCtx(input, ctx);\n addIssueToContext(ctx, {\n validation: \"jwt\",\n code: ZodIssueCode.invalid_string,\n message: check.message,\n });\n status.dirty();\n }\n }\n else if (check.kind === \"cidr\") {\n if (!isValidCidr(input.data, check.version)) {\n ctx = this._getOrReturnCtx(input, ctx);\n addIssueToContext(ctx, {\n validation: \"cidr\",\n code: ZodIssueCode.invalid_string,\n message: check.message,\n });\n status.dirty();\n }\n }\n else if (check.kind === \"base64\") {\n if (!base64Regex.test(input.data)) {\n ctx = this._getOrReturnCtx(input, ctx);\n addIssueToContext(ctx, {\n validation: \"base64\",\n code: ZodIssueCode.invalid_string,\n message: check.message,\n });\n status.dirty();\n }\n }\n else if (check.kind === \"base64url\") {\n if (!base64urlRegex.test(input.data)) {\n ctx = this._getOrReturnCtx(input, ctx);\n addIssueToContext(ctx, {\n validation: \"base64url\",\n code: ZodIssueCode.invalid_string,\n message: check.message,\n });\n status.dirty();\n }\n }\n else {\n util.assertNever(check);\n }\n }\n return { status: status.value, value: input.data };\n }\n _regex(regex, validation, message) {\n return this.refinement((data) => regex.test(data), {\n validation,\n code: ZodIssueCode.invalid_string,\n ...errorUtil.errToObj(message),\n });\n }\n _addCheck(check) {\n return new ZodString({\n ...this._def,\n checks: [...this._def.checks, check],\n });\n }\n email(message) {\n return this._addCheck({ kind: \"email\", ...errorUtil.errToObj(message) });\n }\n url(message) {\n return this._addCheck({ kind: \"url\", ...errorUtil.errToObj(message) });\n }\n emoji(message) {\n return this._addCheck({ kind: \"emoji\", ...errorUtil.errToObj(message) });\n }\n uuid(message) {\n return this._addCheck({ kind: \"uuid\", ...errorUtil.errToObj(message) });\n }\n nanoid(message) {\n return this._addCheck({ kind: \"nanoid\", ...errorUtil.errToObj(message) });\n }\n cuid(message) {\n return this._addCheck({ kind: \"cuid\", ...errorUtil.errToObj(message) });\n }\n cuid2(message) {\n return this._addCheck({ kind: \"cuid2\", ...errorUtil.errToObj(message) });\n }\n ulid(message) {\n return this._addCheck({ kind: \"ulid\", ...errorUtil.errToObj(message) });\n }\n base64(message) {\n return this._addCheck({ kind: \"base64\", ...errorUtil.errToObj(message) });\n }\n base64url(message) {\n // base64url encoding is a modification of base64 that can safely be used in URLs and filenames\n return this._addCheck({\n kind: \"base64url\",\n ...errorUtil.errToObj(message),\n });\n }\n jwt(options) {\n return this._addCheck({ kind: \"jwt\", ...errorUtil.errToObj(options) });\n }\n ip(options) {\n return this._addCheck({ kind: \"ip\", ...errorUtil.errToObj(options) });\n }\n cidr(options) {\n return this._addCheck({ kind: \"cidr\", ...errorUtil.errToObj(options) });\n }\n datetime(options) {\n if (typeof options === \"string\") {\n return this._addCheck({\n kind: \"datetime\",\n precision: null,\n offset: false,\n local: false,\n message: options,\n });\n }\n return this._addCheck({\n kind: \"datetime\",\n precision: typeof options?.precision === \"undefined\" ? null : options?.precision,\n offset: options?.offset ?? false,\n local: options?.local ?? false,\n ...errorUtil.errToObj(options?.message),\n });\n }\n date(message) {\n return this._addCheck({ kind: \"date\", message });\n }\n time(options) {\n if (typeof options === \"string\") {\n return this._addCheck({\n kind: \"time\",\n precision: null,\n message: options,\n });\n }\n return this._addCheck({\n kind: \"time\",\n precision: typeof options?.precision === \"undefined\" ? null : options?.precision,\n ...errorUtil.errToObj(options?.message),\n });\n }\n duration(message) {\n return this._addCheck({ kind: \"duration\", ...errorUtil.errToObj(message) });\n }\n regex(regex, message) {\n return this._addCheck({\n kind: \"regex\",\n regex: regex,\n ...errorUtil.errToObj(message),\n });\n }\n includes(value, options) {\n return this._addCheck({\n kind: \"includes\",\n value: value,\n position: options?.position,\n ...errorUtil.errToObj(options?.message),\n });\n }\n startsWith(value, message) {\n return this._addCheck({\n kind: \"startsWith\",\n value: value,\n ...errorUtil.errToObj(message),\n });\n }\n endsWith(value, message) {\n return this._addCheck({\n kind: \"endsWith\",\n value: value,\n ...errorUtil.errToObj(message),\n });\n }\n min(minLength, message) {\n return this._addCheck({\n kind: \"min\",\n value: minLength,\n ...errorUtil.errToObj(message),\n });\n }\n max(maxLength, message) {\n return this._addCheck({\n kind: \"max\",\n value: maxLength,\n ...errorUtil.errToObj(message),\n });\n }\n length(len, message) {\n return this._addCheck({\n kind: \"length\",\n value: len,\n ...errorUtil.errToObj(message),\n });\n }\n /**\n * Equivalent to `.min(1)`\n */\n nonempty(message) {\n return this.min(1, errorUtil.errToObj(message));\n }\n trim() {\n return new ZodString({\n ...this._def,\n checks: [...this._def.checks, { kind: \"trim\" }],\n });\n }\n toLowerCase() {\n return new ZodString({\n ...this._def,\n checks: [...this._def.checks, { kind: \"toLowerCase\" }],\n });\n }\n toUpperCase() {\n return new ZodString({\n ...this._def,\n checks: [...this._def.checks, { kind: \"toUpperCase\" }],\n });\n }\n get isDatetime() {\n return !!this._def.checks.find((ch) => ch.kind === \"datetime\");\n }\n get isDate() {\n return !!this._def.checks.find((ch) => ch.kind === \"date\");\n }\n get isTime() {\n return !!this._def.checks.find((ch) => ch.kind === \"time\");\n }\n get isDuration() {\n return !!this._def.checks.find((ch) => ch.kind === \"duration\");\n }\n get isEmail() {\n return !!this._def.checks.find((ch) => ch.kind === \"email\");\n }\n get isURL() {\n return !!this._def.checks.find((ch) => ch.kind === \"url\");\n }\n get isEmoji() {\n return !!this._def.checks.find((ch) => ch.kind === \"emoji\");\n }\n get isUUID() {\n return !!this._def.checks.find((ch) => ch.kind === \"uuid\");\n }\n get isNANOID() {\n return !!this._def.checks.find((ch) => ch.kind === \"nanoid\");\n }\n get isCUID() {\n return !!this._def.checks.find((ch) => ch.kind === \"cuid\");\n }\n get isCUID2() {\n return !!this._def.checks.find((ch) => ch.kind === \"cuid2\");\n }\n get isULID() {\n return !!this._def.checks.find((ch) => ch.kind === \"ulid\");\n }\n get isIP() {\n return !!this._def.checks.find((ch) => ch.kind === \"ip\");\n }\n get isCIDR() {\n return !!this._def.checks.find((ch) => ch.kind === \"cidr\");\n }\n get isBase64() {\n return !!this._def.checks.find((ch) => ch.kind === \"base64\");\n }\n get isBase64url() {\n // base64url encoding is a modification of base64 that can safely be used in URLs and filenames\n return !!this._def.checks.find((ch) => ch.kind === \"base64url\");\n }\n get minLength() {\n let min = null;\n for (const ch of this._def.checks) {\n if (ch.kind === \"min\") {\n if (min === null || ch.value > min)\n min = ch.value;\n }\n }\n return min;\n }\n get maxLength() {\n let max = null;\n for (const ch of this._def.checks) {\n if (ch.kind === \"max\") {\n if (max === null || ch.value < max)\n max = ch.value;\n }\n }\n return max;\n }\n}\nZodString.create = (params) => {\n return new ZodString({\n checks: [],\n typeName: ZodFirstPartyTypeKind.ZodString,\n coerce: params?.coerce ?? false,\n ...processCreateParams(params),\n });\n};\n// https://stackoverflow.com/questions/3966484/why-does-modulus-operator-return-fractional-number-in-javascript/31711034#31711034\nfunction floatSafeRemainder(val, step) {\n const valDecCount = (val.toString().split(\".\")[1] || \"\").length;\n const stepDecCount = (step.toString().split(\".\")[1] || \"\").length;\n const decCount = valDecCount > stepDecCount ? valDecCount : stepDecCount;\n const valInt = Number.parseInt(val.toFixed(decCount).replace(\".\", \"\"));\n const stepInt = Number.parseInt(step.toFixed(decCount).replace(\".\", \"\"));\n return (valInt % stepInt) / 10 ** decCount;\n}\nexport class ZodNumber extends ZodType {\n constructor() {\n super(...arguments);\n this.min = this.gte;\n this.max = this.lte;\n this.step = this.multipleOf;\n }\n _parse(input) {\n if (this._def.coerce) {\n input.data = Number(input.data);\n }\n const parsedType = this._getType(input);\n if (parsedType !== ZodParsedType.number) {\n const ctx = this._getOrReturnCtx(input);\n addIssueToContext(ctx, {\n code: ZodIssueCode.invalid_type,\n expected: ZodParsedType.number,\n received: ctx.parsedType,\n });\n return INVALID;\n }\n let ctx = undefined;\n const status = new ParseStatus();\n for (const check of this._def.checks) {\n if (check.kind === \"int\") {\n if (!util.isInteger(input.data)) {\n ctx = this._getOrReturnCtx(input, ctx);\n addIssueToContext(ctx, {\n code: ZodIssueCode.invalid_type,\n expected: \"integer\",\n received: \"float\",\n message: check.message,\n });\n status.dirty();\n }\n }\n else if (check.kind === \"min\") {\n const tooSmall = check.inclusive ? input.data < check.value : input.data <= check.value;\n if (tooSmall) {\n ctx = this._getOrReturnCtx(input, ctx);\n addIssueToContext(ctx, {\n code: ZodIssueCode.too_small,\n minimum: check.value,\n type: \"number\",\n inclusive: check.inclusive,\n exact: false,\n message: check.message,\n });\n status.dirty();\n }\n }\n else if (check.kind === \"max\") {\n const tooBig = check.inclusive ? input.data > check.value : input.data >= check.value;\n if (tooBig) {\n ctx = this._getOrReturnCtx(input, ctx);\n addIssueToContext(ctx, {\n code: ZodIssueCode.too_big,\n maximum: check.value,\n type: \"number\",\n inclusive: check.inclusive,\n exact: false,\n message: check.message,\n });\n status.dirty();\n }\n }\n else if (check.kind === \"multipleOf\") {\n if (floatSafeRemainder(input.data, check.value) !== 0) {\n ctx = this._getOrReturnCtx(input, ctx);\n addIssueToContext(ctx, {\n code: ZodIssueCode.not_multiple_of,\n multipleOf: check.value,\n message: check.message,\n });\n status.dirty();\n }\n }\n else if (check.kind === \"finite\") {\n if (!Number.isFinite(input.data)) {\n ctx = this._getOrReturnCtx(input, ctx);\n addIssueToContext(ctx, {\n code: ZodIssueCode.not_finite,\n message: check.message,\n });\n status.dirty();\n }\n }\n else {\n util.assertNever(check);\n }\n }\n return { status: status.value, value: input.data };\n }\n gte(value, message) {\n return this.setLimit(\"min\", value, true, errorUtil.toString(message));\n }\n gt(value, message) {\n return this.setLimit(\"min\", value, false, errorUtil.toString(message));\n }\n lte(value, message) {\n return this.setLimit(\"max\", value, true, errorUtil.toString(message));\n }\n lt(value, message) {\n return this.setLimit(\"max\", value, false, errorUtil.toString(message));\n }\n setLimit(kind, value, inclusive, message) {\n return new ZodNumber({\n ...this._def,\n checks: [\n ...this._def.checks,\n {\n kind,\n value,\n inclusive,\n message: errorUtil.toString(message),\n },\n ],\n });\n }\n _addCheck(check) {\n return new ZodNumber({\n ...this._def,\n checks: [...this._def.checks, check],\n });\n }\n int(message) {\n return this._addCheck({\n kind: \"int\",\n message: errorUtil.toString(message),\n });\n }\n positive(message) {\n return this._addCheck({\n kind: \"min\",\n value: 0,\n inclusive: false,\n message: errorUtil.toString(message),\n });\n }\n negative(message) {\n return this._addCheck({\n kind: \"max\",\n value: 0,\n inclusive: false,\n message: errorUtil.toString(message),\n });\n }\n nonpositive(message) {\n return this._addCheck({\n kind: \"max\",\n value: 0,\n inclusive: true,\n message: errorUtil.toString(message),\n });\n }\n nonnegative(message) {\n return this._addCheck({\n kind: \"min\",\n value: 0,\n inclusive: true,\n message: errorUtil.toString(message),\n });\n }\n multipleOf(value, message) {\n return this._addCheck({\n kind: \"multipleOf\",\n value: value,\n message: errorUtil.toString(message),\n });\n }\n finite(message) {\n return this._addCheck({\n kind: \"finite\",\n message: errorUtil.toString(message),\n });\n }\n safe(message) {\n return this._addCheck({\n kind: \"min\",\n inclusive: true,\n value: Number.MIN_SAFE_INTEGER,\n message: errorUtil.toString(message),\n })._addCheck({\n kind: \"max\",\n inclusive: true,\n value: Number.MAX_SAFE_INTEGER,\n message: errorUtil.toString(message),\n });\n }\n get minValue() {\n let min = null;\n for (const ch of this._def.checks) {\n if (ch.kind === \"min\") {\n if (min === null || ch.value > min)\n min = ch.value;\n }\n }\n return min;\n }\n get maxValue() {\n let max = null;\n for (const ch of this._def.checks) {\n if (ch.kind === \"max\") {\n if (max === null || ch.value < max)\n max = ch.value;\n }\n }\n return max;\n }\n get isInt() {\n return !!this._def.checks.find((ch) => ch.kind === \"int\" || (ch.kind === \"multipleOf\" && util.isInteger(ch.value)));\n }\n get isFinite() {\n let max = null;\n let min = null;\n for (const ch of this._def.checks) {\n if (ch.kind === \"finite\" || ch.kind === \"int\" || ch.kind === \"multipleOf\") {\n return true;\n }\n else if (ch.kind === \"min\") {\n if (min === null || ch.value > min)\n min = ch.value;\n }\n else if (ch.kind === \"max\") {\n if (max === null || ch.value < max)\n max = ch.value;\n }\n }\n return Number.isFinite(min) && Number.isFinite(max);\n }\n}\nZodNumber.create = (params) => {\n return new ZodNumber({\n checks: [],\n typeName: ZodFirstPartyTypeKind.ZodNumber,\n coerce: params?.coerce || false,\n ...processCreateParams(params),\n });\n};\nexport class ZodBigInt extends ZodType {\n constructor() {\n super(...arguments);\n this.min = this.gte;\n this.max = this.lte;\n }\n _parse(input) {\n if (this._def.coerce) {\n try {\n input.data = BigInt(input.data);\n }\n catch {\n return this._getInvalidInput(input);\n }\n }\n const parsedType = this._getType(input);\n if (parsedType !== ZodParsedType.bigint) {\n return this._getInvalidInput(input);\n }\n let ctx = undefined;\n const status = new ParseStatus();\n for (const check of this._def.checks) {\n if (check.kind === \"min\") {\n const tooSmall = check.inclusive ? input.data < check.value : input.data <= check.value;\n if (tooSmall) {\n ctx = this._getOrReturnCtx(input, ctx);\n addIssueToContext(ctx, {\n code: ZodIssueCode.too_small,\n type: \"bigint\",\n minimum: check.value,\n inclusive: check.inclusive,\n message: check.message,\n });\n status.dirty();\n }\n }\n else if (check.kind === \"max\") {\n const tooBig = check.inclusive ? input.data > check.value : input.data >= check.value;\n if (tooBig) {\n ctx = this._getOrReturnCtx(input, ctx);\n addIssueToContext(ctx, {\n code: ZodIssueCode.too_big,\n type: \"bigint\",\n maximum: check.value,\n inclusive: check.inclusive,\n message: check.message,\n });\n status.dirty();\n }\n }\n else if (check.kind === \"multipleOf\") {\n if (input.data % check.value !== BigInt(0)) {\n ctx = this._getOrReturnCtx(input, ctx);\n addIssueToContext(ctx, {\n code: ZodIssueCode.not_multiple_of,\n multipleOf: check.value,\n message: check.message,\n });\n status.dirty();\n }\n }\n else {\n util.assertNever(check);\n }\n }\n return { status: status.value, value: input.data };\n }\n _getInvalidInput(input) {\n const ctx = this._getOrReturnCtx(input);\n addIssueToContext(ctx, {\n code: ZodIssueCode.invalid_type,\n expected: ZodParsedType.bigint,\n received: ctx.parsedType,\n });\n return INVALID;\n }\n gte(value, message) {\n return this.setLimit(\"min\", value, true, errorUtil.toString(message));\n }\n gt(value, message) {\n return this.setLimit(\"min\", value, false, errorUtil.toString(message));\n }\n lte(value, message) {\n return this.setLimit(\"max\", value, true, errorUtil.toString(message));\n }\n lt(value, message) {\n return this.setLimit(\"max\", value, false, errorUtil.toString(message));\n }\n setLimit(kind, value, inclusive, message) {\n return new ZodBigInt({\n ...this._def,\n checks: [\n ...this._def.checks,\n {\n kind,\n value,\n inclusive,\n message: errorUtil.toString(message),\n },\n ],\n });\n }\n _addCheck(check) {\n return new ZodBigInt({\n ...this._def,\n checks: [...this._def.checks, check],\n });\n }\n positive(message) {\n return this._addCheck({\n kind: \"min\",\n value: BigInt(0),\n inclusive: false,\n message: errorUtil.toString(message),\n });\n }\n negative(message) {\n return this._addCheck({\n kind: \"max\",\n value: BigInt(0),\n inclusive: false,\n message: errorUtil.toString(message),\n });\n }\n nonpositive(message) {\n return this._addCheck({\n kind: \"max\",\n value: BigInt(0),\n inclusive: true,\n message: errorUtil.toString(message),\n });\n }\n nonnegative(message) {\n return this._addCheck({\n kind: \"min\",\n value: BigInt(0),\n inclusive: true,\n message: errorUtil.toString(message),\n });\n }\n multipleOf(value, message) {\n return this._addCheck({\n kind: \"multipleOf\",\n value,\n message: errorUtil.toString(message),\n });\n }\n get minValue() {\n let min = null;\n for (const ch of this._def.checks) {\n if (ch.kind === \"min\") {\n if (min === null || ch.value > min)\n min = ch.value;\n }\n }\n return min;\n }\n get maxValue() {\n let max = null;\n for (const ch of this._def.checks) {\n if (ch.kind === \"max\") {\n if (max === null || ch.value < max)\n max = ch.value;\n }\n }\n return max;\n }\n}\nZodBigInt.create = (params) => {\n return new ZodBigInt({\n checks: [],\n typeName: ZodFirstPartyTypeKind.ZodBigInt,\n coerce: params?.coerce ?? false,\n ...processCreateParams(params),\n });\n};\nexport class ZodBoolean extends ZodType {\n _parse(input) {\n if (this._def.coerce) {\n input.data = Boolean(input.data);\n }\n const parsedType = this._getType(input);\n if (parsedType !== ZodParsedType.boolean) {\n const ctx = this._getOrReturnCtx(input);\n addIssueToContext(ctx, {\n code: ZodIssueCode.invalid_type,\n expected: ZodParsedType.boolean,\n received: ctx.parsedType,\n });\n return INVALID;\n }\n return OK(input.data);\n }\n}\nZodBoolean.create = (params) => {\n return new ZodBoolean({\n typeName: ZodFirstPartyTypeKind.ZodBoolean,\n coerce: params?.coerce || false,\n ...processCreateParams(params),\n });\n};\nexport class ZodDate extends ZodType {\n _parse(input) {\n if (this._def.coerce) {\n input.data = new Date(input.data);\n }\n const parsedType = this._getType(input);\n if (parsedType !== ZodParsedType.date) {\n const ctx = this._getOrReturnCtx(input);\n addIssueToContext(ctx, {\n code: ZodIssueCode.invalid_type,\n expected: ZodParsedType.date,\n received: ctx.parsedType,\n });\n return INVALID;\n }\n if (Number.isNaN(input.data.getTime())) {\n const ctx = this._getOrReturnCtx(input);\n addIssueToContext(ctx, {\n code: ZodIssueCode.invalid_date,\n });\n return INVALID;\n }\n const status = new ParseStatus();\n let ctx = undefined;\n for (const check of this._def.checks) {\n if (check.kind === \"min\") {\n if (input.data.getTime() < check.value) {\n ctx = this._getOrReturnCtx(input, ctx);\n addIssueToContext(ctx, {\n code: ZodIssueCode.too_small,\n message: check.message,\n inclusive: true,\n exact: false,\n minimum: check.value,\n type: \"date\",\n });\n status.dirty();\n }\n }\n else if (check.kind === \"max\") {\n if (input.data.getTime() > check.value) {\n ctx = this._getOrReturnCtx(input, ctx);\n addIssueToContext(ctx, {\n code: ZodIssueCode.too_big,\n message: check.message,\n inclusive: true,\n exact: false,\n maximum: check.value,\n type: \"date\",\n });\n status.dirty();\n }\n }\n else {\n util.assertNever(check);\n }\n }\n return {\n status: status.value,\n value: new Date(input.data.getTime()),\n };\n }\n _addCheck(check) {\n return new ZodDate({\n ...this._def,\n checks: [...this._def.checks, check],\n });\n }\n min(minDate, message) {\n return this._addCheck({\n kind: \"min\",\n value: minDate.getTime(),\n message: errorUtil.toString(message),\n });\n }\n max(maxDate, message) {\n return this._addCheck({\n kind: \"max\",\n value: maxDate.getTime(),\n message: errorUtil.toString(message),\n });\n }\n get minDate() {\n let min = null;\n for (const ch of this._def.checks) {\n if (ch.kind === \"min\") {\n if (min === null || ch.value > min)\n min = ch.value;\n }\n }\n return min != null ? new Date(min) : null;\n }\n get maxDate() {\n let max = null;\n for (const ch of this._def.checks) {\n if (ch.kind === \"max\") {\n if (max === null || ch.value < max)\n max = ch.value;\n }\n }\n return max != null ? new Date(max) : null;\n }\n}\nZodDate.create = (params) => {\n return new ZodDate({\n checks: [],\n coerce: params?.coerce || false,\n typeName: ZodFirstPartyTypeKind.ZodDate,\n ...processCreateParams(params),\n });\n};\nexport class ZodSymbol extends ZodType {\n _parse(input) {\n const parsedType = this._getType(input);\n if (parsedType !== ZodParsedType.symbol) {\n const ctx = this._getOrReturnCtx(input);\n addIssueToContext(ctx, {\n code: ZodIssueCode.invalid_type,\n expected: ZodParsedType.symbol,\n received: ctx.parsedType,\n });\n return INVALID;\n }\n return OK(input.data);\n }\n}\nZodSymbol.create = (params) => {\n return new ZodSymbol({\n typeName: ZodFirstPartyTypeKind.ZodSymbol,\n ...processCreateParams(params),\n });\n};\nexport class ZodUndefined extends ZodType {\n _parse(input) {\n const parsedType = this._getType(input);\n if (parsedType !== ZodParsedType.undefined) {\n const ctx = this._getOrReturnCtx(input);\n addIssueToContext(ctx, {\n code: ZodIssueCode.invalid_type,\n expected: ZodParsedType.undefined,\n received: ctx.parsedType,\n });\n return INVALID;\n }\n return OK(input.data);\n }\n}\nZodUndefined.create = (params) => {\n return new ZodUndefined({\n typeName: ZodFirstPartyTypeKind.ZodUndefined,\n ...processCreateParams(params),\n });\n};\nexport class ZodNull extends ZodType {\n _parse(input) {\n const parsedType = this._getType(input);\n if (parsedType !== ZodParsedType.null) {\n const ctx = this._getOrReturnCtx(input);\n addIssueToContext(ctx, {\n code: ZodIssueCode.invalid_type,\n expected: ZodParsedType.null,\n received: ctx.parsedType,\n });\n return INVALID;\n }\n return OK(input.data);\n }\n}\nZodNull.create = (params) => {\n return new ZodNull({\n typeName: ZodFirstPartyTypeKind.ZodNull,\n ...processCreateParams(params),\n });\n};\nexport class ZodAny extends ZodType {\n constructor() {\n super(...arguments);\n // to prevent instances of other classes from extending ZodAny. this causes issues with catchall in ZodObject.\n this._any = true;\n }\n _parse(input) {\n return OK(input.data);\n }\n}\nZodAny.create = (params) => {\n return new ZodAny({\n typeName: ZodFirstPartyTypeKind.ZodAny,\n ...processCreateParams(params),\n });\n};\nexport class ZodUnknown extends ZodType {\n constructor() {\n super(...arguments);\n // required\n this._unknown = true;\n }\n _parse(input) {\n return OK(input.data);\n }\n}\nZodUnknown.create = (params) => {\n return new ZodUnknown({\n typeName: ZodFirstPartyTypeKind.ZodUnknown,\n ...processCreateParams(params),\n });\n};\nexport class ZodNever extends ZodType {\n _parse(input) {\n const ctx = this._getOrReturnCtx(input);\n addIssueToContext(ctx, {\n code: ZodIssueCode.invalid_type,\n expected: ZodParsedType.never,\n received: ctx.parsedType,\n });\n return INVALID;\n }\n}\nZodNever.create = (params) => {\n return new ZodNever({\n typeName: ZodFirstPartyTypeKind.ZodNever,\n ...processCreateParams(params),\n });\n};\nexport class ZodVoid extends ZodType {\n _parse(input) {\n const parsedType = this._getType(input);\n if (parsedType !== ZodParsedType.undefined) {\n const ctx = this._getOrReturnCtx(input);\n addIssueToContext(ctx, {\n code: ZodIssueCode.invalid_type,\n expected: ZodParsedType.void,\n received: ctx.parsedType,\n });\n return INVALID;\n }\n return OK(input.data);\n }\n}\nZodVoid.create = (params) => {\n return new ZodVoid({\n typeName: ZodFirstPartyTypeKind.ZodVoid,\n ...processCreateParams(params),\n });\n};\nexport class ZodArray extends ZodType {\n _parse(input) {\n const { ctx, status } = this._processInputParams(input);\n const def = this._def;\n if (ctx.parsedType !== ZodParsedType.array) {\n addIssueToContext(ctx, {\n code: ZodIssueCode.invalid_type,\n expected: ZodParsedType.array,\n received: ctx.parsedType,\n });\n return INVALID;\n }\n if (def.exactLength !== null) {\n const tooBig = ctx.data.length > def.exactLength.value;\n const tooSmall = ctx.data.length < def.exactLength.value;\n if (tooBig || tooSmall) {\n addIssueToContext(ctx, {\n code: tooBig ? ZodIssueCode.too_big : ZodIssueCode.too_small,\n minimum: (tooSmall ? def.exactLength.value : undefined),\n maximum: (tooBig ? def.exactLength.value : undefined),\n type: \"array\",\n inclusive: true,\n exact: true,\n message: def.exactLength.message,\n });\n status.dirty();\n }\n }\n if (def.minLength !== null) {\n if (ctx.data.length < def.minLength.value) {\n addIssueToContext(ctx, {\n code: ZodIssueCode.too_small,\n minimum: def.minLength.value,\n type: \"array\",\n inclusive: true,\n exact: false,\n message: def.minLength.message,\n });\n status.dirty();\n }\n }\n if (def.maxLength !== null) {\n if (ctx.data.length > def.maxLength.value) {\n addIssueToContext(ctx, {\n code: ZodIssueCode.too_big,\n maximum: def.maxLength.value,\n type: \"array\",\n inclusive: true,\n exact: false,\n message: def.maxLength.message,\n });\n status.dirty();\n }\n }\n if (ctx.common.async) {\n return Promise.all([...ctx.data].map((item, i) => {\n return def.type._parseAsync(new ParseInputLazyPath(ctx, item, ctx.path, i));\n })).then((result) => {\n return ParseStatus.mergeArray(status, result);\n });\n }\n const result = [...ctx.data].map((item, i) => {\n return def.type._parseSync(new ParseInputLazyPath(ctx, item, ctx.path, i));\n });\n return ParseStatus.mergeArray(status, result);\n }\n get element() {\n return this._def.type;\n }\n min(minLength, message) {\n return new ZodArray({\n ...this._def,\n minLength: { value: minLength, message: errorUtil.toString(message) },\n });\n }\n max(maxLength, message) {\n return new ZodArray({\n ...this._def,\n maxLength: { value: maxLength, message: errorUtil.toString(message) },\n });\n }\n length(len, message) {\n return new ZodArray({\n ...this._def,\n exactLength: { value: len, message: errorUtil.toString(message) },\n });\n }\n nonempty(message) {\n return this.min(1, message);\n }\n}\nZodArray.create = (schema, params) => {\n return new ZodArray({\n type: schema,\n minLength: null,\n maxLength: null,\n exactLength: null,\n typeName: ZodFirstPartyTypeKind.ZodArray,\n ...processCreateParams(params),\n });\n};\nfunction deepPartialify(schema) {\n if (schema instanceof ZodObject) {\n const newShape = {};\n for (const key in schema.shape) {\n const fieldSchema = schema.shape[key];\n newShape[key] = ZodOptional.create(deepPartialify(fieldSchema));\n }\n return new ZodObject({\n ...schema._def,\n shape: () => newShape,\n });\n }\n else if (schema instanceof ZodArray) {\n return new ZodArray({\n ...schema._def,\n type: deepPartialify(schema.element),\n });\n }\n else if (schema instanceof ZodOptional) {\n return ZodOptional.create(deepPartialify(schema.unwrap()));\n }\n else if (schema instanceof ZodNullable) {\n return ZodNullable.create(deepPartialify(schema.unwrap()));\n }\n else if (schema instanceof ZodTuple) {\n return ZodTuple.create(schema.items.map((item) => deepPartialify(item)));\n }\n else {\n return schema;\n }\n}\nexport class ZodObject extends ZodType {\n constructor() {\n super(...arguments);\n this._cached = null;\n /**\n * @deprecated In most cases, this is no longer needed - unknown properties are now silently stripped.\n * If you want to pass through unknown properties, use `.passthrough()` instead.\n */\n this.nonstrict = this.passthrough;\n // extend<\n // Augmentation extends ZodRawShape,\n // NewOutput extends util.flatten<{\n // [k in keyof Augmentation | keyof Output]: k extends keyof Augmentation\n // ? Augmentation[k][\"_output\"]\n // : k extends keyof Output\n // ? Output[k]\n // : never;\n // }>,\n // NewInput extends util.flatten<{\n // [k in keyof Augmentation | keyof Input]: k extends keyof Augmentation\n // ? Augmentation[k][\"_input\"]\n // : k extends keyof Input\n // ? Input[k]\n // : never;\n // }>\n // >(\n // augmentation: Augmentation\n // ): ZodObject<\n // extendShape<T, Augmentation>,\n // UnknownKeys,\n // Catchall,\n // NewOutput,\n // NewInput\n // > {\n // return new ZodObject({\n // ...this._def,\n // shape: () => ({\n // ...this._def.shape(),\n // ...augmentation,\n // }),\n // }) as any;\n // }\n /**\n * @deprecated Use `.extend` instead\n * */\n this.augment = this.extend;\n }\n _getCached() {\n if (this._cached !== null)\n return this._cached;\n const shape = this._def.shape();\n const keys = util.objectKeys(shape);\n this._cached = { shape, keys };\n return this._cached;\n }\n _parse(input) {\n const parsedType = this._getType(input);\n if (parsedType !== ZodParsedType.object) {\n const ctx = this._getOrReturnCtx(input);\n addIssueToContext(ctx, {\n code: ZodIssueCode.invalid_type,\n expected: ZodParsedType.object,\n received: ctx.parsedType,\n });\n return INVALID;\n }\n const { status, ctx } = this._processInputParams(input);\n const { shape, keys: shapeKeys } = this._getCached();\n const extraKeys = [];\n if (!(this._def.catchall instanceof ZodNever && this._def.unknownKeys === \"strip\")) {\n for (const key in ctx.data) {\n if (!shapeKeys.includes(key)) {\n extraKeys.push(key);\n }\n }\n }\n const pairs = [];\n for (const key of shapeKeys) {\n const keyValidator = shape[key];\n const value = ctx.data[key];\n pairs.push({\n key: { status: \"valid\", value: key },\n value: keyValidator._parse(new ParseInputLazyPath(ctx, value, ctx.path, key)),\n alwaysSet: key in ctx.data,\n });\n }\n if (this._def.catchall instanceof ZodNever) {\n const unknownKeys = this._def.unknownKeys;\n if (unknownKeys === \"passthrough\") {\n for (const key of extraKeys) {\n pairs.push({\n key: { status: \"valid\", value: key },\n value: { status: \"valid\", value: ctx.data[key] },\n });\n }\n }\n else if (unknownKeys === \"strict\") {\n if (extraKeys.length > 0) {\n addIssueToContext(ctx, {\n code: ZodIssueCode.unrecognized_keys,\n keys: extraKeys,\n });\n status.dirty();\n }\n }\n else if (unknownKeys === \"strip\") {\n }\n else {\n throw new Error(`Internal ZodObject error: invalid unknownKeys value.`);\n }\n }\n else {\n // run catchall validation\n const catchall = this._def.catchall;\n for (const key of extraKeys) {\n const value = ctx.data[key];\n pairs.push({\n key: { status: \"valid\", value: key },\n value: catchall._parse(new ParseInputLazyPath(ctx, value, ctx.path, key) //, ctx.child(key), value, getParsedType(value)\n ),\n alwaysSet: key in ctx.data,\n });\n }\n }\n if (ctx.common.async) {\n return Promise.resolve()\n .then(async () => {\n const syncPairs = [];\n for (const pair of pairs) {\n const key = await pair.key;\n const value = await pair.value;\n syncPairs.push({\n key,\n value,\n alwaysSet: pair.alwaysSet,\n });\n }\n return syncPairs;\n })\n .then((syncPairs) => {\n return ParseStatus.mergeObjectSync(status, syncPairs);\n });\n }\n else {\n return ParseStatus.mergeObjectSync(status, pairs);\n }\n }\n get shape() {\n return this._def.shape();\n }\n strict(message) {\n errorUtil.errToObj;\n return new ZodObject({\n ...this._def,\n unknownKeys: \"strict\",\n ...(message !== undefined\n ? {\n errorMap: (issue, ctx) => {\n const defaultError = this._def.errorMap?.(issue, ctx).message ?? ctx.defaultError;\n if (issue.code === \"unrecognized_keys\")\n return {\n message: errorUtil.errToObj(message).message ?? defaultError,\n };\n return {\n message: defaultError,\n };\n },\n }\n : {}),\n });\n }\n strip() {\n return new ZodObject({\n ...this._def,\n unknownKeys: \"strip\",\n });\n }\n passthrough() {\n return new ZodObject({\n ...this._def,\n unknownKeys: \"passthrough\",\n });\n }\n // const AugmentFactory =\n // <Def extends ZodObjectDef>(def: Def) =>\n // <Augmentation extends ZodRawShape>(\n // augmentation: Augmentation\n // ): ZodObject<\n // extendShape<ReturnType<Def[\"shape\"]>, Augmentation>,\n // Def[\"unknownKeys\"],\n // Def[\"catchall\"]\n // > => {\n // return new ZodObject({\n // ...def,\n // shape: () => ({\n // ...def.shape(),\n // ...augmentation,\n // }),\n // }) as any;\n // };\n extend(augmentation) {\n return new ZodObject({\n ...this._def,\n shape: () => ({\n ...this._def.shape(),\n ...augmentation,\n }),\n });\n }\n /**\n * Prior to zod@1.0.12 there was a bug in the\n * inferred type of merged objects. Please\n * upgrade if you are experiencing issues.\n */\n merge(merging) {\n const merged = new ZodObject({\n unknownKeys: merging._def.unknownKeys,\n catchall: merging._def.catchall,\n shape: () => ({\n ...this._def.shape(),\n ...merging._def.shape(),\n }),\n typeName: ZodFirstPartyTypeKind.ZodObject,\n });\n return merged;\n }\n // merge<\n // Incoming extends AnyZodObject,\n // Augmentation extends Incoming[\"shape\"],\n // NewOutput extends {\n // [k in keyof Augmentation | keyof Output]: k extends keyof Augmentation\n // ? Augmentation[k][\"_output\"]\n // : k extends keyof Output\n // ? Output[k]\n // : never;\n // },\n // NewInput extends {\n // [k in keyof Augmentation | keyof Input]: k extends keyof Augmentation\n // ? Augmentation[k][\"_input\"]\n // : k extends keyof Input\n // ? Input[k]\n // : never;\n // }\n // >(\n // merging: Incoming\n // ): ZodObject<\n // extendShape<T, ReturnType<Incoming[\"_def\"][\"shape\"]>>,\n // Incoming[\"_def\"][\"unknownKeys\"],\n // Incoming[\"_def\"][\"catchall\"],\n // NewOutput,\n // NewInput\n // > {\n // const merged: any = new ZodObject({\n // unknownKeys: merging._def.unknownKeys,\n // catchall: merging._def.catchall,\n // shape: () =>\n // objectUtil.mergeShapes(this._def.shape(), merging._def.shape()),\n // typeName: ZodFirstPartyTypeKind.ZodObject,\n // }) as any;\n // return merged;\n // }\n setKey(key, schema) {\n return this.augment({ [key]: schema });\n }\n // merge<Incoming extends AnyZodObject>(\n // merging: Incoming\n // ): //ZodObject<T & Incoming[\"_shape\"], UnknownKeys, Catchall> = (merging) => {\n // ZodObject<\n // extendShape<T, ReturnType<Incoming[\"_def\"][\"shape\"]>>,\n // Incoming[\"_def\"][\"unknownKeys\"],\n // Incoming[\"_def\"][\"catchall\"]\n // > {\n // // const mergedShape = objectUtil.mergeShapes(\n // // this._def.shape(),\n // // merging._def.shape()\n // // );\n // const merged: any = new ZodObject({\n // unknownKeys: merging._def.unknownKeys,\n // catchall: merging._def.catchall,\n // shape: () =>\n // objectUtil.mergeShapes(this._def.shape(), merging._def.shape()),\n // typeName: ZodFirstPartyTypeKind.ZodObject,\n // }) as any;\n // return merged;\n // }\n catchall(index) {\n return new ZodObject({\n ...this._def,\n catchall: index,\n });\n }\n pick(mask) {\n const shape = {};\n for (const key of util.objectKeys(mask)) {\n if (mask[key] && this.shape[key]) {\n shape[key] = this.shape[key];\n }\n }\n return new ZodObject({\n ...this._def,\n shape: () => shape,\n });\n }\n omit(mask) {\n const shape = {};\n for (const key of util.objectKeys(this.shape)) {\n if (!mask[key]) {\n shape[key] = this.shape[key];\n }\n }\n return new ZodObject({\n ...this._def,\n shape: () => shape,\n });\n }\n /**\n * @deprecated\n */\n deepPartial() {\n return deepPartialify(this);\n }\n partial(mask) {\n const newShape = {};\n for (const key of util.objectKeys(this.shape)) {\n const fieldSchema = this.shape[key];\n if (mask && !mask[key]) {\n newShape[key] = fieldSchema;\n }\n else {\n newShape[key] = fieldSchema.optional();\n }\n }\n return new ZodObject({\n ...this._def,\n shape: () => newShape,\n });\n }\n required(mask) {\n const newShape = {};\n for (const key of util.objectKeys(this.shape)) {\n if (mask && !mask[key]) {\n newShape[key] = this.shape[key];\n }\n else {\n const fieldSchema = this.shape[key];\n let newField = fieldSchema;\n while (newField instanceof ZodOptional) {\n newField = newField._def.innerType;\n }\n newShape[key] = newField;\n }\n }\n return new ZodObject({\n ...this._def,\n shape: () => newShape,\n });\n }\n keyof() {\n return createZodEnum(util.objectKeys(this.shape));\n }\n}\nZodObject.create = (shape, params) => {\n return new ZodObject({\n shape: () => shape,\n unknownKeys: \"strip\",\n catchall: ZodNever.create(),\n typeName: ZodFirstPartyTypeKind.ZodObject,\n ...processCreateParams(params),\n });\n};\nZodObject.strictCreate = (shape, params) => {\n return new ZodObject({\n shape: () => shape,\n unknownKeys: \"strict\",\n catchall: ZodNever.create(),\n typeName: ZodFirstPartyTypeKind.ZodObject,\n ...processCreateParams(params),\n });\n};\nZodObject.lazycreate = (shape, params) => {\n return new ZodObject({\n shape,\n unknownKeys: \"strip\",\n catchall: ZodNever.create(),\n typeName: ZodFirstPartyTypeKind.ZodObject,\n ...processCreateParams(params),\n });\n};\nexport class ZodUnion extends ZodType {\n _parse(input) {\n const { ctx } = this._processInputParams(input);\n const options = this._def.options;\n function handleResults(results) {\n // return first issue-free validation if it exists\n for (const result of results) {\n if (result.result.status === \"valid\") {\n return result.result;\n }\n }\n for (const result of results) {\n if (result.result.status === \"dirty\") {\n // add issues from dirty option\n ctx.common.issues.push(...result.ctx.common.issues);\n return result.result;\n }\n }\n // return invalid\n const unionErrors = results.map((result) => new ZodError(result.ctx.common.issues));\n addIssueToContext(ctx, {\n code: ZodIssueCode.invalid_union,\n unionErrors,\n });\n return INVALID;\n }\n if (ctx.common.async) {\n return Promise.all(options.map(async (option) => {\n const childCtx = {\n ...ctx,\n common: {\n ...ctx.common,\n issues: [],\n },\n parent: null,\n };\n return {\n result: await option._parseAsync({\n data: ctx.data,\n path: ctx.path,\n parent: childCtx,\n }),\n ctx: childCtx,\n };\n })).then(handleResults);\n }\n else {\n let dirty = undefined;\n const issues = [];\n for (const option of options) {\n const childCtx = {\n ...ctx,\n common: {\n ...ctx.common,\n issues: [],\n },\n parent: null,\n };\n const result = option._parseSync({\n data: ctx.data,\n path: ctx.path,\n parent: childCtx,\n });\n if (result.status === \"valid\") {\n return result;\n }\n else if (result.status === \"dirty\" && !dirty) {\n dirty = { result, ctx: childCtx };\n }\n if (childCtx.common.issues.length) {\n issues.push(childCtx.common.issues);\n }\n }\n if (dirty) {\n ctx.common.issues.push(...dirty.ctx.common.issues);\n return dirty.result;\n }\n const unionErrors = issues.map((issues) => new ZodError(issues));\n addIssueToContext(ctx, {\n code: ZodIssueCode.invalid_union,\n unionErrors,\n });\n return INVALID;\n }\n }\n get options() {\n return this._def.options;\n }\n}\nZodUnion.create = (types, params) => {\n return new ZodUnion({\n options: types,\n typeName: ZodFirstPartyTypeKind.ZodUnion,\n ...processCreateParams(params),\n });\n};\n/////////////////////////////////////////////////////\n/////////////////////////////////////////////////////\n////////// //////////\n////////// ZodDiscriminatedUnion //////////\n////////// //////////\n/////////////////////////////////////////////////////\n/////////////////////////////////////////////////////\nconst getDiscriminator = (type) => {\n if (type instanceof ZodLazy) {\n return getDiscriminator(type.schema);\n }\n else if (type instanceof ZodEffects) {\n return getDiscriminator(type.innerType());\n }\n else if (type instanceof ZodLiteral) {\n return [type.value];\n }\n else if (type instanceof ZodEnum) {\n return type.options;\n }\n else if (type instanceof ZodNativeEnum) {\n // eslint-disable-next-line ban/ban\n return util.objectValues(type.enum);\n }\n else if (type instanceof ZodDefault) {\n return getDiscriminator(type._def.innerType);\n }\n else if (type instanceof ZodUndefined) {\n return [undefined];\n }\n else if (type instanceof ZodNull) {\n return [null];\n }\n else if (type instanceof ZodOptional) {\n return [undefined, ...getDiscriminator(type.unwrap())];\n }\n else if (type instanceof ZodNullable) {\n return [null, ...getDiscriminator(type.unwrap())];\n }\n else if (type instanceof ZodBranded) {\n return getDiscriminator(type.unwrap());\n }\n else if (type instanceof ZodReadonly) {\n return getDiscriminator(type.unwrap());\n }\n else if (type instanceof ZodCatch) {\n return getDiscriminator(type._def.innerType);\n }\n else {\n return [];\n }\n};\nexport class ZodDiscriminatedUnion extends ZodType {\n _parse(input) {\n const { ctx } = this._processInputParams(input);\n if (ctx.parsedType !== ZodParsedType.object) {\n addIssueToContext(ctx, {\n code: ZodIssueCode.invalid_type,\n expected: ZodParsedType.object,\n received: ctx.parsedType,\n });\n return INVALID;\n }\n const discriminator = this.discriminator;\n const discriminatorValue = ctx.data[discriminator];\n const option = this.optionsMap.get(discriminatorValue);\n if (!option) {\n addIssueToContext(ctx, {\n code: ZodIssueCode.invalid_union_discriminator,\n options: Array.from(this.optionsMap.keys()),\n path: [discriminator],\n });\n return INVALID;\n }\n if (ctx.common.async) {\n return option._parseAsync({\n data: ctx.data,\n path: ctx.path,\n parent: ctx,\n });\n }\n else {\n return option._parseSync({\n data: ctx.data,\n path: ctx.path,\n parent: ctx,\n });\n }\n }\n get discriminator() {\n return this._def.discriminator;\n }\n get options() {\n return this._def.options;\n }\n get optionsMap() {\n return this._def.optionsMap;\n }\n /**\n * The constructor of the discriminated union schema. Its behaviour is very similar to that of the normal z.union() constructor.\n * However, it only allows a union of objects, all of which need to share a discriminator property. This property must\n * have a different value for each object in the union.\n * @param discriminator the name of the discriminator property\n * @param types an array of object schemas\n * @param params\n */\n static create(discriminator, options, params) {\n // Get all the valid discriminator values\n const optionsMap = new Map();\n // try {\n for (const type of options) {\n const discriminatorValues = getDiscriminator(type.shape[discriminator]);\n if (!discriminatorValues.length) {\n throw new Error(`A discriminator value for key \\`${discriminator}\\` could not be extracted from all schema options`);\n }\n for (const value of discriminatorValues) {\n if (optionsMap.has(value)) {\n throw new Error(`Discriminator property ${String(discriminator)} has duplicate value ${String(value)}`);\n }\n optionsMap.set(value, type);\n }\n }\n return new ZodDiscriminatedUnion({\n typeName: ZodFirstPartyTypeKind.ZodDiscriminatedUnion,\n discriminator,\n options,\n optionsMap,\n ...processCreateParams(params),\n });\n }\n}\nfunction mergeValues(a, b) {\n const aType = getParsedType(a);\n const bType = getParsedType(b);\n if (a === b) {\n return { valid: true, data: a };\n }\n else if (aType === ZodParsedType.object && bType === ZodParsedType.object) {\n const bKeys = util.objectKeys(b);\n const sharedKeys = util.objectKeys(a).filter((key) => bKeys.indexOf(key) !== -1);\n const newObj = { ...a, ...b };\n for (const key of sharedKeys) {\n const sharedValue = mergeValues(a[key], b[key]);\n if (!sharedValue.valid) {\n return { valid: false };\n }\n newObj[key] = sharedValue.data;\n }\n return { valid: true, data: newObj };\n }\n else if (aType === ZodParsedType.array && bType === ZodParsedType.array) {\n if (a.length !== b.length) {\n return { valid: false };\n }\n const newArray = [];\n for (let index = 0; index < a.length; index++) {\n const itemA = a[index];\n const itemB = b[index];\n const sharedValue = mergeValues(itemA, itemB);\n if (!sharedValue.valid) {\n return { valid: false };\n }\n newArray.push(sharedValue.data);\n }\n return { valid: true, data: newArray };\n }\n else if (aType === ZodParsedType.date && bType === ZodParsedType.date && +a === +b) {\n return { valid: true, data: a };\n }\n else {\n return { valid: false };\n }\n}\nexport class ZodIntersection extends ZodType {\n _parse(input) {\n const { status, ctx } = this._processInputParams(input);\n const handleParsed = (parsedLeft, parsedRight) => {\n if (isAborted(parsedLeft) || isAborted(parsedRight)) {\n return INVALID;\n }\n const merged = mergeValues(parsedLeft.value, parsedRight.value);\n if (!merged.valid) {\n addIssueToContext(ctx, {\n code: ZodIssueCode.invalid_intersection_types,\n });\n return INVALID;\n }\n if (isDirty(parsedLeft) || isDirty(parsedRight)) {\n status.dirty();\n }\n return { status: status.value, value: merged.data };\n };\n if (ctx.common.async) {\n return Promise.all([\n this._def.left._parseAsync({\n data: ctx.data,\n path: ctx.path,\n parent: ctx,\n }),\n this._def.right._parseAsync({\n data: ctx.data,\n path: ctx.path,\n parent: ctx,\n }),\n ]).then(([left, right]) => handleParsed(left, right));\n }\n else {\n return handleParsed(this._def.left._parseSync({\n data: ctx.data,\n path: ctx.path,\n parent: ctx,\n }), this._def.right._parseSync({\n data: ctx.data,\n path: ctx.path,\n parent: ctx,\n }));\n }\n }\n}\nZodIntersection.create = (left, right, params) => {\n return new ZodIntersection({\n left: left,\n right: right,\n typeName: ZodFirstPartyTypeKind.ZodIntersection,\n ...processCreateParams(params),\n });\n};\n// type ZodTupleItems = [ZodTypeAny, ...ZodTypeAny[]];\nexport class ZodTuple extends ZodType {\n _parse(input) {\n const { status, ctx } = this._processInputParams(input);\n if (ctx.parsedType !== ZodParsedType.array) {\n addIssueToContext(ctx, {\n code: ZodIssueCode.invalid_type,\n expected: ZodParsedType.array,\n received: ctx.parsedType,\n });\n return INVALID;\n }\n if (ctx.data.length < this._def.items.length) {\n addIssueToContext(ctx, {\n code: ZodIssueCode.too_small,\n minimum: this._def.items.length,\n inclusive: true,\n exact: false,\n type: \"array\",\n });\n return INVALID;\n }\n const rest = this._def.rest;\n if (!rest && ctx.data.length > this._def.items.length) {\n addIssueToContext(ctx, {\n code: ZodIssueCode.too_big,\n maximum: this._def.items.length,\n inclusive: true,\n exact: false,\n type: \"array\",\n });\n status.dirty();\n }\n const items = [...ctx.data]\n .map((item, itemIndex) => {\n const schema = this._def.items[itemIndex] || this._def.rest;\n if (!schema)\n return null;\n return schema._parse(new ParseInputLazyPath(ctx, item, ctx.path, itemIndex));\n })\n .filter((x) => !!x); // filter nulls\n if (ctx.common.async) {\n return Promise.all(items).then((results) => {\n return ParseStatus.mergeArray(status, results);\n });\n }\n else {\n return ParseStatus.mergeArray(status, items);\n }\n }\n get items() {\n return this._def.items;\n }\n rest(rest) {\n return new ZodTuple({\n ...this._def,\n rest,\n });\n }\n}\nZodTuple.create = (schemas, params) => {\n if (!Array.isArray(schemas)) {\n throw new Error(\"You must pass an array of schemas to z.tuple([ ... ])\");\n }\n return new ZodTuple({\n items: schemas,\n typeName: ZodFirstPartyTypeKind.ZodTuple,\n rest: null,\n ...processCreateParams(params),\n });\n};\nexport class ZodRecord extends ZodType {\n get keySchema() {\n return this._def.keyType;\n }\n get valueSchema() {\n return this._def.valueType;\n }\n _parse(input) {\n const { status, ctx } = this._processInputParams(input);\n if (ctx.parsedType !== ZodParsedType.object) {\n addIssueToContext(ctx, {\n code: ZodIssueCode.invalid_type,\n expected: ZodParsedType.object,\n received: ctx.parsedType,\n });\n return INVALID;\n }\n const pairs = [];\n const keyType = this._def.keyType;\n const valueType = this._def.valueType;\n for (const key in ctx.data) {\n pairs.push({\n key: keyType._parse(new ParseInputLazyPath(ctx, key, ctx.path, key)),\n value: valueType._parse(new ParseInputLazyPath(ctx, ctx.data[key], ctx.path, key)),\n alwaysSet: key in ctx.data,\n });\n }\n if (ctx.common.async) {\n return ParseStatus.mergeObjectAsync(status, pairs);\n }\n else {\n return ParseStatus.mergeObjectSync(status, pairs);\n }\n }\n get element() {\n return this._def.valueType;\n }\n static create(first, second, third) {\n if (second instanceof ZodType) {\n return new ZodRecord({\n keyType: first,\n valueType: second,\n typeName: ZodFirstPartyTypeKind.ZodRecord,\n ...processCreateParams(third),\n });\n }\n return new ZodRecord({\n keyType: ZodString.create(),\n valueType: first,\n typeName: ZodFirstPartyTypeKind.ZodRecord,\n ...processCreateParams(second),\n });\n }\n}\nexport class ZodMap extends ZodType {\n get keySchema() {\n return this._def.keyType;\n }\n get valueSchema() {\n return this._def.valueType;\n }\n _parse(input) {\n const { status, ctx } = this._processInputParams(input);\n if (ctx.parsedType !== ZodParsedType.map) {\n addIssueToContext(ctx, {\n code: ZodIssueCode.invalid_type,\n expected: ZodParsedType.map,\n received: ctx.parsedType,\n });\n return INVALID;\n }\n const keyType = this._def.keyType;\n const valueType = this._def.valueType;\n const pairs = [...ctx.data.entries()].map(([key, value], index) => {\n return {\n key: keyType._parse(new ParseInputLazyPath(ctx, key, ctx.path, [index, \"key\"])),\n value: valueType._parse(new ParseInputLazyPath(ctx, value, ctx.path, [index, \"value\"])),\n };\n });\n if (ctx.common.async) {\n const finalMap = new Map();\n return Promise.resolve().then(async () => {\n for (const pair of pairs) {\n const key = await pair.key;\n const value = await pair.value;\n if (key.status === \"aborted\" || value.status === \"aborted\") {\n return INVALID;\n }\n if (key.status === \"dirty\" || value.status === \"dirty\") {\n status.dirty();\n }\n finalMap.set(key.value, value.value);\n }\n return { status: status.value, value: finalMap };\n });\n }\n else {\n const finalMap = new Map();\n for (const pair of pairs) {\n const key = pair.key;\n const value = pair.value;\n if (key.status === \"aborted\" || value.status === \"aborted\") {\n return INVALID;\n }\n if (key.status === \"dirty\" || value.status === \"dirty\") {\n status.dirty();\n }\n finalMap.set(key.value, value.value);\n }\n return { status: status.value, value: finalMap };\n }\n }\n}\nZodMap.create = (keyType, valueType, params) => {\n return new ZodMap({\n valueType,\n keyType,\n typeName: ZodFirstPartyTypeKind.ZodMap,\n ...processCreateParams(params),\n });\n};\nexport class ZodSet extends ZodType {\n _parse(input) {\n const { status, ctx } = this._processInputParams(input);\n if (ctx.parsedType !== ZodParsedType.set) {\n addIssueToContext(ctx, {\n code: ZodIssueCode.invalid_type,\n expected: ZodParsedType.set,\n received: ctx.parsedType,\n });\n return INVALID;\n }\n const def = this._def;\n if (def.minSize !== null) {\n if (ctx.data.size < def.minSize.value) {\n addIssueToContext(ctx, {\n code: ZodIssueCode.too_small,\n minimum: def.minSize.value,\n type: \"set\",\n inclusive: true,\n exact: false,\n message: def.minSize.message,\n });\n status.dirty();\n }\n }\n if (def.maxSize !== null) {\n if (ctx.data.size > def.maxSize.value) {\n addIssueToContext(ctx, {\n code: ZodIssueCode.too_big,\n maximum: def.maxSize.value,\n type: \"set\",\n inclusive: true,\n exact: false,\n message: def.maxSize.message,\n });\n status.dirty();\n }\n }\n const valueType = this._def.valueType;\n function finalizeSet(elements) {\n const parsedSet = new Set();\n for (const element of elements) {\n if (element.status === \"aborted\")\n return INVALID;\n if (element.status === \"dirty\")\n status.dirty();\n parsedSet.add(element.value);\n }\n return { status: status.value, value: parsedSet };\n }\n const elements = [...ctx.data.values()].map((item, i) => valueType._parse(new ParseInputLazyPath(ctx, item, ctx.path, i)));\n if (ctx.common.async) {\n return Promise.all(elements).then((elements) => finalizeSet(elements));\n }\n else {\n return finalizeSet(elements);\n }\n }\n min(minSize, message) {\n return new ZodSet({\n ...this._def,\n minSize: { value: minSize, message: errorUtil.toString(message) },\n });\n }\n max(maxSize, message) {\n return new ZodSet({\n ...this._def,\n maxSize: { value: maxSize, message: errorUtil.toString(message) },\n });\n }\n size(size, message) {\n return this.min(size, message).max(size, message);\n }\n nonempty(message) {\n return this.min(1, message);\n }\n}\nZodSet.create = (valueType, params) => {\n return new ZodSet({\n valueType,\n minSize: null,\n maxSize: null,\n typeName: ZodFirstPartyTypeKind.ZodSet,\n ...processCreateParams(params),\n });\n};\nexport class ZodFunction extends ZodType {\n constructor() {\n super(...arguments);\n this.validate = this.implement;\n }\n _parse(input) {\n const { ctx } = this._processInputParams(input);\n if (ctx.parsedType !== ZodParsedType.function) {\n addIssueToContext(ctx, {\n code: ZodIssueCode.invalid_type,\n expected: ZodParsedType.function,\n received: ctx.parsedType,\n });\n return INVALID;\n }\n function makeArgsIssue(args, error) {\n return makeIssue({\n data: args,\n path: ctx.path,\n errorMaps: [ctx.common.contextualErrorMap, ctx.schemaErrorMap, getErrorMap(), defaultErrorMap].filter((x) => !!x),\n issueData: {\n code: ZodIssueCode.invalid_arguments,\n argumentsError: error,\n },\n });\n }\n function makeReturnsIssue(returns, error) {\n return makeIssue({\n data: returns,\n path: ctx.path,\n errorMaps: [ctx.common.contextualErrorMap, ctx.schemaErrorMap, getErrorMap(), defaultErrorMap].filter((x) => !!x),\n issueData: {\n code: ZodIssueCode.invalid_return_type,\n returnTypeError: error,\n },\n });\n }\n const params = { errorMap: ctx.common.contextualErrorMap };\n const fn = ctx.data;\n if (this._def.returns instanceof ZodPromise) {\n // Would love a way to avoid disabling this rule, but we need\n // an alias (using an arrow function was what caused 2651).\n // eslint-disable-next-line @typescript-eslint/no-this-alias\n const me = this;\n return OK(async function (...args) {\n const error = new ZodError([]);\n const parsedArgs = await me._def.args.parseAsync(args, params).catch((e) => {\n error.addIssue(makeArgsIssue(args, e));\n throw error;\n });\n const result = await Reflect.apply(fn, this, parsedArgs);\n const parsedReturns = await me._def.returns._def.type\n .parseAsync(result, params)\n .catch((e) => {\n error.addIssue(makeReturnsIssue(result, e));\n throw error;\n });\n return parsedReturns;\n });\n }\n else {\n // Would love a way to avoid disabling this rule, but we need\n // an alias (using an arrow function was what caused 2651).\n // eslint-disable-next-line @typescript-eslint/no-this-alias\n const me = this;\n return OK(function (...args) {\n const parsedArgs = me._def.args.safeParse(args, params);\n if (!parsedArgs.success) {\n throw new ZodError([makeArgsIssue(args, parsedArgs.error)]);\n }\n const result = Reflect.apply(fn, this, parsedArgs.data);\n const parsedReturns = me._def.returns.safeParse(result, params);\n if (!parsedReturns.success) {\n throw new ZodError([makeReturnsIssue(result, parsedReturns.error)]);\n }\n return parsedReturns.data;\n });\n }\n }\n parameters() {\n return this._def.args;\n }\n returnType() {\n return this._def.returns;\n }\n args(...items) {\n return new ZodFunction({\n ...this._def,\n args: ZodTuple.create(items).rest(ZodUnknown.create()),\n });\n }\n returns(returnType) {\n return new ZodFunction({\n ...this._def,\n returns: returnType,\n });\n }\n implement(func) {\n const validatedFunc = this.parse(func);\n return validatedFunc;\n }\n strictImplement(func) {\n const validatedFunc = this.parse(func);\n return validatedFunc;\n }\n static create(args, returns, params) {\n return new ZodFunction({\n args: (args ? args : ZodTuple.create([]).rest(ZodUnknown.create())),\n returns: returns || ZodUnknown.create(),\n typeName: ZodFirstPartyTypeKind.ZodFunction,\n ...processCreateParams(params),\n });\n }\n}\nexport class ZodLazy extends ZodType {\n get schema() {\n return this._def.getter();\n }\n _parse(input) {\n const { ctx } = this._processInputParams(input);\n const lazySchema = this._def.getter();\n return lazySchema._parse({ data: ctx.data, path: ctx.path, parent: ctx });\n }\n}\nZodLazy.create = (getter, params) => {\n return new ZodLazy({\n getter: getter,\n typeName: ZodFirstPartyTypeKind.ZodLazy,\n ...processCreateParams(params),\n });\n};\nexport class ZodLiteral extends ZodType {\n _parse(input) {\n if (input.data !== this._def.value) {\n const ctx = this._getOrReturnCtx(input);\n addIssueToContext(ctx, {\n received: ctx.data,\n code: ZodIssueCode.invalid_literal,\n expected: this._def.value,\n });\n return INVALID;\n }\n return { status: \"valid\", value: input.data };\n }\n get value() {\n return this._def.value;\n }\n}\nZodLiteral.create = (value, params) => {\n return new ZodLiteral({\n value: value,\n typeName: ZodFirstPartyTypeKind.ZodLiteral,\n ...processCreateParams(params),\n });\n};\nfunction createZodEnum(values, params) {\n return new ZodEnum({\n values,\n typeName: ZodFirstPartyTypeKind.ZodEnum,\n ...processCreateParams(params),\n });\n}\nexport class ZodEnum extends ZodType {\n _parse(input) {\n if (typeof input.data !== \"string\") {\n const ctx = this._getOrReturnCtx(input);\n const expectedValues = this._def.values;\n addIssueToContext(ctx, {\n expected: util.joinValues(expectedValues),\n received: ctx.parsedType,\n code: ZodIssueCode.invalid_type,\n });\n return INVALID;\n }\n if (!this._cache) {\n this._cache = new Set(this._def.values);\n }\n if (!this._cache.has(input.data)) {\n const ctx = this._getOrReturnCtx(input);\n const expectedValues = this._def.values;\n addIssueToContext(ctx, {\n received: ctx.data,\n code: ZodIssueCode.invalid_enum_value,\n options: expectedValues,\n });\n return INVALID;\n }\n return OK(input.data);\n }\n get options() {\n return this._def.values;\n }\n get enum() {\n const enumValues = {};\n for (const val of this._def.values) {\n enumValues[val] = val;\n }\n return enumValues;\n }\n get Values() {\n const enumValues = {};\n for (const val of this._def.values) {\n enumValues[val] = val;\n }\n return enumValues;\n }\n get Enum() {\n const enumValues = {};\n for (const val of this._def.values) {\n enumValues[val] = val;\n }\n return enumValues;\n }\n extract(values, newDef = this._def) {\n return ZodEnum.create(values, {\n ...this._def,\n ...newDef,\n });\n }\n exclude(values, newDef = this._def) {\n return ZodEnum.create(this.options.filter((opt) => !values.includes(opt)), {\n ...this._def,\n ...newDef,\n });\n }\n}\nZodEnum.create = createZodEnum;\nexport class ZodNativeEnum extends ZodType {\n _parse(input) {\n const nativeEnumValues = util.getValidEnumValues(this._def.values);\n const ctx = this._getOrReturnCtx(input);\n if (ctx.parsedType !== ZodParsedType.string && ctx.parsedType !== ZodParsedType.number) {\n const expectedValues = util.objectValues(nativeEnumValues);\n addIssueToContext(ctx, {\n expected: util.joinValues(expectedValues),\n received: ctx.parsedType,\n code: ZodIssueCode.invalid_type,\n });\n return INVALID;\n }\n if (!this._cache) {\n this._cache = new Set(util.getValidEnumValues(this._def.values));\n }\n if (!this._cache.has(input.data)) {\n const expectedValues = util.objectValues(nativeEnumValues);\n addIssueToContext(ctx, {\n received: ctx.data,\n code: ZodIssueCode.invalid_enum_value,\n options: expectedValues,\n });\n return INVALID;\n }\n return OK(input.data);\n }\n get enum() {\n return this._def.values;\n }\n}\nZodNativeEnum.create = (values, params) => {\n return new ZodNativeEnum({\n values: values,\n typeName: ZodFirstPartyTypeKind.ZodNativeEnum,\n ...processCreateParams(params),\n });\n};\nexport class ZodPromise extends ZodType {\n unwrap() {\n return this._def.type;\n }\n _parse(input) {\n const { ctx } = this._processInputParams(input);\n if (ctx.parsedType !== ZodParsedType.promise && ctx.common.async === false) {\n addIssueToContext(ctx, {\n code: ZodIssueCode.invalid_type,\n expected: ZodParsedType.promise,\n received: ctx.parsedType,\n });\n return INVALID;\n }\n const promisified = ctx.parsedType === ZodParsedType.promise ? ctx.data : Promise.resolve(ctx.data);\n return OK(promisified.then((data) => {\n return this._def.type.parseAsync(data, {\n path: ctx.path,\n errorMap: ctx.common.contextualErrorMap,\n });\n }));\n }\n}\nZodPromise.create = (schema, params) => {\n return new ZodPromise({\n type: schema,\n typeName: ZodFirstPartyTypeKind.ZodPromise,\n ...processCreateParams(params),\n });\n};\nexport class ZodEffects extends ZodType {\n innerType() {\n return this._def.schema;\n }\n sourceType() {\n return this._def.schema._def.typeName === ZodFirstPartyTypeKind.ZodEffects\n ? this._def.schema.sourceType()\n : this._def.schema;\n }\n _parse(input) {\n const { status, ctx } = this._processInputParams(input);\n const effect = this._def.effect || null;\n const checkCtx = {\n addIssue: (arg) => {\n addIssueToContext(ctx, arg);\n if (arg.fatal) {\n status.abort();\n }\n else {\n status.dirty();\n }\n },\n get path() {\n return ctx.path;\n },\n };\n checkCtx.addIssue = checkCtx.addIssue.bind(checkCtx);\n if (effect.type === \"preprocess\") {\n const processed = effect.transform(ctx.data, checkCtx);\n if (ctx.common.async) {\n return Promise.resolve(processed).then(async (processed) => {\n if (status.value === \"aborted\")\n return INVALID;\n const result = await this._def.schema._parseAsync({\n data: processed,\n path: ctx.path,\n parent: ctx,\n });\n if (result.status === \"aborted\")\n return INVALID;\n if (result.status === \"dirty\")\n return DIRTY(result.value);\n if (status.value === \"dirty\")\n return DIRTY(result.value);\n return result;\n });\n }\n else {\n if (status.value === \"aborted\")\n return INVALID;\n const result = this._def.schema._parseSync({\n data: processed,\n path: ctx.path,\n parent: ctx,\n });\n if (result.status === \"aborted\")\n return INVALID;\n if (result.status === \"dirty\")\n return DIRTY(result.value);\n if (status.value === \"dirty\")\n return DIRTY(result.value);\n return result;\n }\n }\n if (effect.type === \"refinement\") {\n const executeRefinement = (acc) => {\n const result = effect.refinement(acc, checkCtx);\n if (ctx.common.async) {\n return Promise.resolve(result);\n }\n if (result instanceof Promise) {\n throw new Error(\"Async refinement encountered during synchronous parse operation. Use .parseAsync instead.\");\n }\n return acc;\n };\n if (ctx.common.async === false) {\n const inner = this._def.schema._parseSync({\n data: ctx.data,\n path: ctx.path,\n parent: ctx,\n });\n if (inner.status === \"aborted\")\n return INVALID;\n if (inner.status === \"dirty\")\n status.dirty();\n // return value is ignored\n executeRefinement(inner.value);\n return { status: status.value, value: inner.value };\n }\n else {\n return this._def.schema._parseAsync({ data: ctx.data, path: ctx.path, parent: ctx }).then((inner) => {\n if (inner.status === \"aborted\")\n return INVALID;\n if (inner.status === \"dirty\")\n status.dirty();\n return executeRefinement(inner.value).then(() => {\n return { status: status.value, value: inner.value };\n });\n });\n }\n }\n if (effect.type === \"transform\") {\n if (ctx.common.async === false) {\n const base = this._def.schema._parseSync({\n data: ctx.data,\n path: ctx.path,\n parent: ctx,\n });\n if (!isValid(base))\n return INVALID;\n const result = effect.transform(base.value, checkCtx);\n if (result instanceof Promise) {\n throw new Error(`Asynchronous transform encountered during synchronous parse operation. Use .parseAsync instead.`);\n }\n return { status: status.value, value: result };\n }\n else {\n return this._def.schema._parseAsync({ data: ctx.data, path: ctx.path, parent: ctx }).then((base) => {\n if (!isValid(base))\n return INVALID;\n return Promise.resolve(effect.transform(base.value, checkCtx)).then((result) => ({\n status: status.value,\n value: result,\n }));\n });\n }\n }\n util.assertNever(effect);\n }\n}\nZodEffects.create = (schema, effect, params) => {\n return new ZodEffects({\n schema,\n typeName: ZodFirstPartyTypeKind.ZodEffects,\n effect,\n ...processCreateParams(params),\n });\n};\nZodEffects.createWithPreprocess = (preprocess, schema, params) => {\n return new ZodEffects({\n schema,\n effect: { type: \"preprocess\", transform: preprocess },\n typeName: ZodFirstPartyTypeKind.ZodEffects,\n ...processCreateParams(params),\n });\n};\nexport { ZodEffects as ZodTransformer };\nexport class ZodOptional extends ZodType {\n _parse(input) {\n const parsedType = this._getType(input);\n if (parsedType === ZodParsedType.undefined) {\n return OK(undefined);\n }\n return this._def.innerType._parse(input);\n }\n unwrap() {\n return this._def.innerType;\n }\n}\nZodOptional.create = (type, params) => {\n return new ZodOptional({\n innerType: type,\n typeName: ZodFirstPartyTypeKind.ZodOptional,\n ...processCreateParams(params),\n });\n};\nexport class ZodNullable extends ZodType {\n _parse(input) {\n const parsedType = this._getType(input);\n if (parsedType === ZodParsedType.null) {\n return OK(null);\n }\n return this._def.innerType._parse(input);\n }\n unwrap() {\n return this._def.innerType;\n }\n}\nZodNullable.create = (type, params) => {\n return new ZodNullable({\n innerType: type,\n typeName: ZodFirstPartyTypeKind.ZodNullable,\n ...processCreateParams(params),\n });\n};\nexport class ZodDefault extends ZodType {\n _parse(input) {\n const { ctx } = this._processInputParams(input);\n let data = ctx.data;\n if (ctx.parsedType === ZodParsedType.undefined) {\n data = this._def.defaultValue();\n }\n return this._def.innerType._parse({\n data,\n path: ctx.path,\n parent: ctx,\n });\n }\n removeDefault() {\n return this._def.innerType;\n }\n}\nZodDefault.create = (type, params) => {\n return new ZodDefault({\n innerType: type,\n typeName: ZodFirstPartyTypeKind.ZodDefault,\n defaultValue: typeof params.default === \"function\" ? params.default : () => params.default,\n ...processCreateParams(params),\n });\n};\nexport class ZodCatch extends ZodType {\n _parse(input) {\n const { ctx } = this._processInputParams(input);\n // newCtx is used to not collect issues from inner types in ctx\n const newCtx = {\n ...ctx,\n common: {\n ...ctx.common,\n issues: [],\n },\n };\n const result = this._def.innerType._parse({\n data: newCtx.data,\n path: newCtx.path,\n parent: {\n ...newCtx,\n },\n });\n if (isAsync(result)) {\n return result.then((result) => {\n return {\n status: \"valid\",\n value: result.status === \"valid\"\n ? result.value\n : this._def.catchValue({\n get error() {\n return new ZodError(newCtx.common.issues);\n },\n input: newCtx.data,\n }),\n };\n });\n }\n else {\n return {\n status: \"valid\",\n value: result.status === \"valid\"\n ? result.value\n : this._def.catchValue({\n get error() {\n return new ZodError(newCtx.common.issues);\n },\n input: newCtx.data,\n }),\n };\n }\n }\n removeCatch() {\n return this._def.innerType;\n }\n}\nZodCatch.create = (type, params) => {\n return new ZodCatch({\n innerType: type,\n typeName: ZodFirstPartyTypeKind.ZodCatch,\n catchValue: typeof params.catch === \"function\" ? params.catch : () => params.catch,\n ...processCreateParams(params),\n });\n};\nexport class ZodNaN extends ZodType {\n _parse(input) {\n const parsedType = this._getType(input);\n if (parsedType !== ZodParsedType.nan) {\n const ctx = this._getOrReturnCtx(input);\n addIssueToContext(ctx, {\n code: ZodIssueCode.invalid_type,\n expected: ZodParsedType.nan,\n received: ctx.parsedType,\n });\n return INVALID;\n }\n return { status: \"valid\", value: input.data };\n }\n}\nZodNaN.create = (params) => {\n return new ZodNaN({\n typeName: ZodFirstPartyTypeKind.ZodNaN,\n ...processCreateParams(params),\n });\n};\nexport const BRAND = Symbol(\"zod_brand\");\nexport class ZodBranded extends ZodType {\n _parse(input) {\n const { ctx } = this._processInputParams(input);\n const data = ctx.data;\n return this._def.type._parse({\n data,\n path: ctx.path,\n parent: ctx,\n });\n }\n unwrap() {\n return this._def.type;\n }\n}\nexport class ZodPipeline extends ZodType {\n _parse(input) {\n const { status, ctx } = this._processInputParams(input);\n if (ctx.common.async) {\n const handleAsync = async () => {\n const inResult = await this._def.in._parseAsync({\n data: ctx.data,\n path: ctx.path,\n parent: ctx,\n });\n if (inResult.status === \"aborted\")\n return INVALID;\n if (inResult.status === \"dirty\") {\n status.dirty();\n return DIRTY(inResult.value);\n }\n else {\n return this._def.out._parseAsync({\n data: inResult.value,\n path: ctx.path,\n parent: ctx,\n });\n }\n };\n return handleAsync();\n }\n else {\n const inResult = this._def.in._parseSync({\n data: ctx.data,\n path: ctx.path,\n parent: ctx,\n });\n if (inResult.status === \"aborted\")\n return INVALID;\n if (inResult.status === \"dirty\") {\n status.dirty();\n return {\n status: \"dirty\",\n value: inResult.value,\n };\n }\n else {\n return this._def.out._parseSync({\n data: inResult.value,\n path: ctx.path,\n parent: ctx,\n });\n }\n }\n }\n static create(a, b) {\n return new ZodPipeline({\n in: a,\n out: b,\n typeName: ZodFirstPartyTypeKind.ZodPipeline,\n });\n }\n}\nexport class ZodReadonly extends ZodType {\n _parse(input) {\n const result = this._def.innerType._parse(input);\n const freeze = (data) => {\n if (isValid(data)) {\n data.value = Object.freeze(data.value);\n }\n return data;\n };\n return isAsync(result) ? result.then((data) => freeze(data)) : freeze(result);\n }\n unwrap() {\n return this._def.innerType;\n }\n}\nZodReadonly.create = (type, params) => {\n return new ZodReadonly({\n innerType: type,\n typeName: ZodFirstPartyTypeKind.ZodReadonly,\n ...processCreateParams(params),\n });\n};\n////////////////////////////////////////\n////////////////////////////////////////\n////////// //////////\n////////// z.custom //////////\n////////// //////////\n////////////////////////////////////////\n////////////////////////////////////////\nfunction cleanParams(params, data) {\n const p = typeof params === \"function\" ? params(data) : typeof params === \"string\" ? { message: params } : params;\n const p2 = typeof p === \"string\" ? { message: p } : p;\n return p2;\n}\nexport function custom(check, _params = {}, \n/**\n * @deprecated\n *\n * Pass `fatal` into the params object instead:\n *\n * ```ts\n * z.string().custom((val) => val.length > 5, { fatal: false })\n * ```\n *\n */\nfatal) {\n if (check)\n return ZodAny.create().superRefine((data, ctx) => {\n const r = check(data);\n if (r instanceof Promise) {\n return r.then((r) => {\n if (!r) {\n const params = cleanParams(_params, data);\n const _fatal = params.fatal ?? fatal ?? true;\n ctx.addIssue({ code: \"custom\", ...params, fatal: _fatal });\n }\n });\n }\n if (!r) {\n const params = cleanParams(_params, data);\n const _fatal = params.fatal ?? fatal ?? true;\n ctx.addIssue({ code: \"custom\", ...params, fatal: _fatal });\n }\n return;\n });\n return ZodAny.create();\n}\nexport { ZodType as Schema, ZodType as ZodSchema };\nexport const late = {\n object: ZodObject.lazycreate,\n};\nexport var ZodFirstPartyTypeKind;\n(function (ZodFirstPartyTypeKind) {\n ZodFirstPartyTypeKind[\"ZodString\"] = \"ZodString\";\n ZodFirstPartyTypeKind[\"ZodNumber\"] = \"ZodNumber\";\n ZodFirstPartyTypeKind[\"ZodNaN\"] = \"ZodNaN\";\n ZodFirstPartyTypeKind[\"ZodBigInt\"] = \"ZodBigInt\";\n ZodFirstPartyTypeKind[\"ZodBoolean\"] = \"ZodBoolean\";\n ZodFirstPartyTypeKind[\"ZodDate\"] = \"ZodDate\";\n ZodFirstPartyTypeKind[\"ZodSymbol\"] = \"ZodSymbol\";\n ZodFirstPartyTypeKind[\"ZodUndefined\"] = \"ZodUndefined\";\n ZodFirstPartyTypeKind[\"ZodNull\"] = \"ZodNull\";\n ZodFirstPartyTypeKind[\"ZodAny\"] = \"ZodAny\";\n ZodFirstPartyTypeKind[\"ZodUnknown\"] = \"ZodUnknown\";\n ZodFirstPartyTypeKind[\"ZodNever\"] = \"ZodNever\";\n ZodFirstPartyTypeKind[\"ZodVoid\"] = \"ZodVoid\";\n ZodFirstPartyTypeKind[\"ZodArray\"] = \"ZodArray\";\n ZodFirstPartyTypeKind[\"ZodObject\"] = \"ZodObject\";\n ZodFirstPartyTypeKind[\"ZodUnion\"] = \"ZodUnion\";\n ZodFirstPartyTypeKind[\"ZodDiscriminatedUnion\"] = \"ZodDiscriminatedUnion\";\n ZodFirstPartyTypeKind[\"ZodIntersection\"] = \"ZodIntersection\";\n ZodFirstPartyTypeKind[\"ZodTuple\"] = \"ZodTuple\";\n ZodFirstPartyTypeKind[\"ZodRecord\"] = \"ZodRecord\";\n ZodFirstPartyTypeKind[\"ZodMap\"] = \"ZodMap\";\n ZodFirstPartyTypeKind[\"ZodSet\"] = \"ZodSet\";\n ZodFirstPartyTypeKind[\"ZodFunction\"] = \"ZodFunction\";\n ZodFirstPartyTypeKind[\"ZodLazy\"] = \"ZodLazy\";\n ZodFirstPartyTypeKind[\"ZodLiteral\"] = \"ZodLiteral\";\n ZodFirstPartyTypeKind[\"ZodEnum\"] = \"ZodEnum\";\n ZodFirstPartyTypeKind[\"ZodEffects\"] = \"ZodEffects\";\n ZodFirstPartyTypeKind[\"ZodNativeEnum\"] = \"ZodNativeEnum\";\n ZodFirstPartyTypeKind[\"ZodOptional\"] = \"ZodOptional\";\n ZodFirstPartyTypeKind[\"ZodNullable\"] = \"ZodNullable\";\n ZodFirstPartyTypeKind[\"ZodDefault\"] = \"ZodDefault\";\n ZodFirstPartyTypeKind[\"ZodCatch\"] = \"ZodCatch\";\n ZodFirstPartyTypeKind[\"ZodPromise\"] = \"ZodPromise\";\n ZodFirstPartyTypeKind[\"ZodBranded\"] = \"ZodBranded\";\n ZodFirstPartyTypeKind[\"ZodPipeline\"] = \"ZodPipeline\";\n ZodFirstPartyTypeKind[\"ZodReadonly\"] = \"ZodReadonly\";\n})(ZodFirstPartyTypeKind || (ZodFirstPartyTypeKind = {}));\n// requires TS 4.4+\nclass Class {\n constructor(..._) { }\n}\nconst instanceOfType = (\n// const instanceOfType = <T extends new (...args: any[]) => any>(\ncls, params = {\n message: `Input not instance of ${cls.name}`,\n}) => custom((data) => data instanceof cls, params);\nconst stringType = ZodString.create;\nconst numberType = ZodNumber.create;\nconst nanType = ZodNaN.create;\nconst bigIntType = ZodBigInt.create;\nconst booleanType = ZodBoolean.create;\nconst dateType = ZodDate.create;\nconst symbolType = ZodSymbol.create;\nconst undefinedType = ZodUndefined.create;\nconst nullType = ZodNull.create;\nconst anyType = ZodAny.create;\nconst unknownType = ZodUnknown.create;\nconst neverType = ZodNever.create;\nconst voidType = ZodVoid.create;\nconst arrayType = ZodArray.create;\nconst objectType = ZodObject.create;\nconst strictObjectType = ZodObject.strictCreate;\nconst unionType = ZodUnion.create;\nconst discriminatedUnionType = ZodDiscriminatedUnion.create;\nconst intersectionType = ZodIntersection.create;\nconst tupleType = ZodTuple.create;\nconst recordType = ZodRecord.create;\nconst mapType = ZodMap.create;\nconst setType = ZodSet.create;\nconst functionType = ZodFunction.create;\nconst lazyType = ZodLazy.create;\nconst literalType = ZodLiteral.create;\nconst enumType = ZodEnum.create;\nconst nativeEnumType = ZodNativeEnum.create;\nconst promiseType = ZodPromise.create;\nconst effectsType = ZodEffects.create;\nconst optionalType = ZodOptional.create;\nconst nullableType = ZodNullable.create;\nconst preprocessType = ZodEffects.createWithPreprocess;\nconst pipelineType = ZodPipeline.create;\nconst ostring = () => stringType().optional();\nconst onumber = () => numberType().optional();\nconst oboolean = () => booleanType().optional();\nexport const coerce = {\n string: ((arg) => ZodString.create({ ...arg, coerce: true })),\n number: ((arg) => ZodNumber.create({ ...arg, coerce: true })),\n boolean: ((arg) => ZodBoolean.create({\n ...arg,\n coerce: true,\n })),\n bigint: ((arg) => ZodBigInt.create({ ...arg, coerce: true })),\n date: ((arg) => ZodDate.create({ ...arg, coerce: true })),\n};\nexport { anyType as any, arrayType as array, bigIntType as bigint, booleanType as boolean, dateType as date, discriminatedUnionType as discriminatedUnion, effectsType as effect, enumType as enum, functionType as function, instanceOfType as instanceof, intersectionType as intersection, lazyType as lazy, literalType as literal, mapType as map, nanType as nan, nativeEnumType as nativeEnum, neverType as never, nullType as null, nullableType as nullable, numberType as number, objectType as object, oboolean, onumber, optionalType as optional, ostring, pipelineType as pipeline, preprocessType as preprocess, promiseType as promise, recordType as record, setType as set, strictObjectType as strictObject, stringType as string, symbolType as symbol, effectsType as transformer, tupleType as tuple, undefinedType as undefined, unionType as union, unknownType as unknown, voidType as void, };\nexport const NEVER = INVALID;\n","import { getRelativePath } from \"../getRelativePath.js\";\nexport function parseAnyDef(refs) {\n if (refs.target !== \"openAi\") {\n return {};\n }\n const anyDefinitionPath = [\n ...refs.basePath,\n refs.definitionPath,\n refs.openAiAnyTypeName,\n ];\n refs.flags.hasReferencedOpenAiAnyType = true;\n return {\n $ref: refs.$refStrategy === \"relative\"\n ? getRelativePath(anyDefinitionPath, refs.currentPath)\n : anyDefinitionPath.join(\"/\"),\n };\n}\n","import { ZodFirstPartyTypeKind } from \"zod\";\nimport { setResponseValueAndErrors } from \"../errorMessages.js\";\nimport { parseDef } from \"../parseDef.js\";\nexport function parseArrayDef(def, refs) {\n const res = {\n type: \"array\",\n };\n if (def.type?._def &&\n def.type?._def?.typeName !== ZodFirstPartyTypeKind.ZodAny) {\n res.items = parseDef(def.type._def, {\n ...refs,\n currentPath: [...refs.currentPath, \"items\"],\n });\n }\n if (def.minLength) {\n setResponseValueAndErrors(res, \"minItems\", def.minLength.value, def.minLength.message, refs);\n }\n if (def.maxLength) {\n setResponseValueAndErrors(res, \"maxItems\", def.maxLength.value, def.maxLength.message, refs);\n }\n if (def.exactLength) {\n setResponseValueAndErrors(res, \"minItems\", def.exactLength.value, def.exactLength.message, refs);\n setResponseValueAndErrors(res, \"maxItems\", def.exactLength.value, def.exactLength.message, refs);\n }\n return res;\n}\n","import { setResponseValueAndErrors } from \"../errorMessages.js\";\nexport function parseBigintDef(def, refs) {\n const res = {\n type: \"integer\",\n format: \"int64\",\n };\n if (!def.checks)\n return res;\n for (const check of def.checks) {\n switch (check.kind) {\n case \"min\":\n if (refs.target === \"jsonSchema7\") {\n if (check.inclusive) {\n setResponseValueAndErrors(res, \"minimum\", check.value, check.message, refs);\n }\n else {\n setResponseValueAndErrors(res, \"exclusiveMinimum\", check.value, check.message, refs);\n }\n }\n else {\n if (!check.inclusive) {\n res.exclusiveMinimum = true;\n }\n setResponseValueAndErrors(res, \"minimum\", check.value, check.message, refs);\n }\n break;\n case \"max\":\n if (refs.target === \"jsonSchema7\") {\n if (check.inclusive) {\n setResponseValueAndErrors(res, \"maximum\", check.value, check.message, refs);\n }\n else {\n setResponseValueAndErrors(res, \"exclusiveMaximum\", check.value, check.message, refs);\n }\n }\n else {\n if (!check.inclusive) {\n res.exclusiveMaximum = true;\n }\n setResponseValueAndErrors(res, \"maximum\", check.value, check.message, refs);\n }\n break;\n case \"multipleOf\":\n setResponseValueAndErrors(res, \"multipleOf\", check.value, check.message, refs);\n break;\n }\n }\n return res;\n}\n","export function parseBooleanDef() {\n return {\n type: \"boolean\",\n };\n}\n","import { parseDef } from \"../parseDef.js\";\nexport function parseBrandedDef(_def, refs) {\n return parseDef(_def.type._def, refs);\n}\n","import { parseDef } from \"../parseDef.js\";\nexport const parseCatchDef = (def, refs) => {\n return parseDef(def.innerType._def, refs);\n};\n","import { setResponseValueAndErrors } from \"../errorMessages.js\";\nexport function parseDateDef(def, refs, overrideDateStrategy) {\n const strategy = overrideDateStrategy ?? refs.dateStrategy;\n if (Array.isArray(strategy)) {\n return {\n anyOf: strategy.map((item, i) => parseDateDef(def, refs, item)),\n };\n }\n switch (strategy) {\n case \"string\":\n case \"format:date-time\":\n return {\n type: \"string\",\n format: \"date-time\",\n };\n case \"format:date\":\n return {\n type: \"string\",\n format: \"date\",\n };\n case \"integer\":\n return integerDateParser(def, refs);\n }\n}\nconst integerDateParser = (def, refs) => {\n const res = {\n type: \"integer\",\n format: \"unix-time\",\n };\n if (refs.target === \"openApi3\") {\n return res;\n }\n for (const check of def.checks) {\n switch (check.kind) {\n case \"min\":\n setResponseValueAndErrors(res, \"minimum\", check.value, // This is in milliseconds\n check.message, refs);\n break;\n case \"max\":\n setResponseValueAndErrors(res, \"maximum\", check.value, // This is in milliseconds\n check.message, refs);\n break;\n }\n }\n return res;\n};\n","import { parseDef } from \"../parseDef.js\";\nexport function parseDefaultDef(_def, refs) {\n return {\n ...parseDef(_def.innerType._def, refs),\n default: _def.defaultValue(),\n };\n}\n","import { parseDef } from \"../parseDef.js\";\nimport { parseAnyDef } from \"./any.js\";\nexport function parseEffectsDef(_def, refs) {\n return refs.effectStrategy === \"input\"\n ? parseDef(_def.schema._def, refs)\n : parseAnyDef(refs);\n}\n","export function parseEnumDef(def) {\n return {\n type: \"string\",\n enum: Array.from(def.values),\n };\n}\n","import { parseDef } from \"../parseDef.js\";\nconst isJsonSchema7AllOfType = (type) => {\n if (\"type\" in type && type.type === \"string\")\n return false;\n return \"allOf\" in type;\n};\nexport function parseIntersectionDef(def, refs) {\n const allOf = [\n parseDef(def.left._def, {\n ...refs,\n currentPath: [...refs.currentPath, \"allOf\", \"0\"],\n }),\n parseDef(def.right._def, {\n ...refs,\n currentPath: [...refs.currentPath, \"allOf\", \"1\"],\n }),\n ].filter((x) => !!x);\n let unevaluatedProperties = refs.target === \"jsonSchema2019-09\"\n ? { unevaluatedProperties: false }\n : undefined;\n const mergedAllOf = [];\n // If either of the schemas is an allOf, merge them into a single allOf\n allOf.forEach((schema) => {\n if (isJsonSchema7AllOfType(schema)) {\n mergedAllOf.push(...schema.allOf);\n if (schema.unevaluatedProperties === undefined) {\n // If one of the schemas has no unevaluatedProperties set,\n // the merged schema should also have no unevaluatedProperties set\n unevaluatedProperties = undefined;\n }\n }\n else {\n let nestedSchema = schema;\n if (\"additionalProperties\" in schema &&\n schema.additionalProperties === false) {\n const { additionalProperties, ...rest } = schema;\n nestedSchema = rest;\n }\n else {\n // As soon as one of the schemas has additionalProperties set not to false, we allow unevaluatedProperties\n unevaluatedProperties = undefined;\n }\n mergedAllOf.push(nestedSchema);\n }\n });\n return mergedAllOf.length\n ? {\n allOf: mergedAllOf,\n ...unevaluatedProperties,\n }\n : undefined;\n}\n","export function parseLiteralDef(def, refs) {\n const parsedType = typeof def.value;\n if (parsedType !== \"bigint\" &&\n parsedType !== \"number\" &&\n parsedType !== \"boolean\" &&\n parsedType !== \"string\") {\n return {\n type: Array.isArray(def.value) ? \"array\" : \"object\",\n };\n }\n if (refs.target === \"openApi3\") {\n return {\n type: parsedType === \"bigint\" ? \"integer\" : parsedType,\n enum: [def.value],\n };\n }\n return {\n type: parsedType === \"bigint\" ? \"integer\" : parsedType,\n const: def.value,\n };\n}\n","import { setResponseValueAndErrors } from \"../errorMessages.js\";\nlet emojiRegex = undefined;\n/**\n * Generated from the regular expressions found here as of 2024-05-22:\n * https://github.com/colinhacks/zod/blob/master/src/types.ts.\n *\n * Expressions with /i flag have been changed accordingly.\n */\nexport const zodPatterns = {\n /**\n * `c` was changed to `[cC]` to replicate /i flag\n */\n cuid: /^[cC][^\\s-]{8,}$/,\n cuid2: /^[0-9a-z]+$/,\n ulid: /^[0-9A-HJKMNP-TV-Z]{26}$/,\n /**\n * `a-z` was added to replicate /i flag\n */\n email: /^(?!\\.)(?!.*\\.\\.)([a-zA-Z0-9_'+\\-\\.]*)[a-zA-Z0-9_+-]@([a-zA-Z0-9][a-zA-Z0-9\\-]*\\.)+[a-zA-Z]{2,}$/,\n /**\n * Constructed a valid Unicode RegExp\n *\n * Lazily instantiate since this type of regex isn't supported\n * in all envs (e.g. React Native).\n *\n * See:\n * https://github.com/colinhacks/zod/issues/2433\n * Fix in Zod:\n * https://github.com/colinhacks/zod/commit/9340fd51e48576a75adc919bff65dbc4a5d4c99b\n */\n emoji: () => {\n if (emojiRegex === undefined) {\n emojiRegex = RegExp(\"^(\\\\p{Extended_Pictographic}|\\\\p{Emoji_Component})+$\", \"u\");\n }\n return emojiRegex;\n },\n /**\n * Unused\n */\n uuid: /^[0-9a-fA-F]{8}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{12}$/,\n /**\n * Unused\n */\n ipv4: /^(?:(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\\.){3}(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])$/,\n ipv4Cidr: /^(?:(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\\.){3}(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\\/(3[0-2]|[12]?[0-9])$/,\n /**\n * Unused\n */\n ipv6: /^(([a-f0-9]{1,4}:){7}|::([a-f0-9]{1,4}:){0,6}|([a-f0-9]{1,4}:){1}:([a-f0-9]{1,4}:){0,5}|([a-f0-9]{1,4}:){2}:([a-f0-9]{1,4}:){0,4}|([a-f0-9]{1,4}:){3}:([a-f0-9]{1,4}:){0,3}|([a-f0-9]{1,4}:){4}:([a-f0-9]{1,4}:){0,2}|([a-f0-9]{1,4}:){5}:([a-f0-9]{1,4}:){0,1})([a-f0-9]{1,4}|(((25[0-5])|(2[0-4][0-9])|(1[0-9]{2})|([0-9]{1,2}))\\.){3}((25[0-5])|(2[0-4][0-9])|(1[0-9]{2})|([0-9]{1,2})))$/,\n ipv6Cidr: /^(([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]))\\/(12[0-8]|1[01][0-9]|[1-9]?[0-9])$/,\n base64: /^([0-9a-zA-Z+/]{4})*(([0-9a-zA-Z+/]{2}==)|([0-9a-zA-Z+/]{3}=))?$/,\n base64url: /^([0-9a-zA-Z-_]{4})*(([0-9a-zA-Z-_]{2}(==)?)|([0-9a-zA-Z-_]{3}(=)?))?$/,\n nanoid: /^[a-zA-Z0-9_-]{21}$/,\n jwt: /^[A-Za-z0-9-_]+\\.[A-Za-z0-9-_]+\\.[A-Za-z0-9-_]*$/,\n};\nexport function parseStringDef(def, refs) {\n const res = {\n type: \"string\",\n };\n if (def.checks) {\n for (const check of def.checks) {\n switch (check.kind) {\n case \"min\":\n setResponseValueAndErrors(res, \"minLength\", typeof res.minLength === \"number\"\n ? Math.max(res.minLength, check.value)\n : check.value, check.message, refs);\n break;\n case \"max\":\n setResponseValueAndErrors(res, \"maxLength\", typeof res.maxLength === \"number\"\n ? Math.min(res.maxLength, check.value)\n : check.value, check.message, refs);\n break;\n case \"email\":\n switch (refs.emailStrategy) {\n case \"format:email\":\n addFormat(res, \"email\", check.message, refs);\n break;\n case \"format:idn-email\":\n addFormat(res, \"idn-email\", check.message, refs);\n break;\n case \"pattern:zod\":\n addPattern(res, zodPatterns.email, check.message, refs);\n break;\n }\n break;\n case \"url\":\n addFormat(res, \"uri\", check.message, refs);\n break;\n case \"uuid\":\n addFormat(res, \"uuid\", check.message, refs);\n break;\n case \"regex\":\n addPattern(res, check.regex, check.message, refs);\n break;\n case \"cuid\":\n addPattern(res, zodPatterns.cuid, check.message, refs);\n break;\n case \"cuid2\":\n addPattern(res, zodPatterns.cuid2, check.message, refs);\n break;\n case \"startsWith\":\n addPattern(res, RegExp(`^${escapeLiteralCheckValue(check.value, refs)}`), check.message, refs);\n break;\n case \"endsWith\":\n addPattern(res, RegExp(`${escapeLiteralCheckValue(check.value, refs)}$`), check.message, refs);\n break;\n case \"datetime\":\n addFormat(res, \"date-time\", check.message, refs);\n break;\n case \"date\":\n addFormat(res, \"date\", check.message, refs);\n break;\n case \"time\":\n addFormat(res, \"time\", check.message, refs);\n break;\n case \"duration\":\n addFormat(res, \"duration\", check.message, refs);\n break;\n case \"length\":\n setResponseValueAndErrors(res, \"minLength\", typeof res.minLength === \"number\"\n ? Math.max(res.minLength, check.value)\n : check.value, check.message, refs);\n setResponseValueAndErrors(res, \"maxLength\", typeof res.maxLength === \"number\"\n ? Math.min(res.maxLength, check.value)\n : check.value, check.message, refs);\n break;\n case \"includes\": {\n addPattern(res, RegExp(escapeLiteralCheckValue(check.value, refs)), check.message, refs);\n break;\n }\n case \"ip\": {\n if (check.version !== \"v6\") {\n addFormat(res, \"ipv4\", check.message, refs);\n }\n if (check.version !== \"v4\") {\n addFormat(res, \"ipv6\", check.message, refs);\n }\n break;\n }\n case \"base64url\":\n addPattern(res, zodPatterns.base64url, check.message, refs);\n break;\n case \"jwt\":\n addPattern(res, zodPatterns.jwt, check.message, refs);\n break;\n case \"cidr\": {\n if (check.version !== \"v6\") {\n addPattern(res, zodPatterns.ipv4Cidr, check.message, refs);\n }\n if (check.version !== \"v4\") {\n addPattern(res, zodPatterns.ipv6Cidr, check.message, refs);\n }\n break;\n }\n case \"emoji\":\n addPattern(res, zodPatterns.emoji(), check.message, refs);\n break;\n case \"ulid\": {\n addPattern(res, zodPatterns.ulid, check.message, refs);\n break;\n }\n case \"base64\": {\n switch (refs.base64Strategy) {\n case \"format:binary\": {\n addFormat(res, \"binary\", check.message, refs);\n break;\n }\n case \"contentEncoding:base64\": {\n setResponseValueAndErrors(res, \"contentEncoding\", \"base64\", check.message, refs);\n break;\n }\n case \"pattern:zod\": {\n addPattern(res, zodPatterns.base64, check.message, refs);\n break;\n }\n }\n break;\n }\n case \"nanoid\": {\n addPattern(res, zodPatterns.nanoid, check.message, refs);\n }\n case \"toLowerCase\":\n case \"toUpperCase\":\n case \"trim\":\n break;\n default:\n /* c8 ignore next */\n ((_) => { })(check);\n }\n }\n }\n return res;\n}\nfunction escapeLiteralCheckValue(literal, refs) {\n return refs.patternStrategy === \"escape\"\n ? escapeNonAlphaNumeric(literal)\n : literal;\n}\nconst ALPHA_NUMERIC = new Set(\"ABCDEFGHIJKLMNOPQRSTUVXYZabcdefghijklmnopqrstuvxyz0123456789\");\nfunction escapeNonAlphaNumeric(source) {\n let result = \"\";\n for (let i = 0; i < source.length; i++) {\n if (!ALPHA_NUMERIC.has(source[i])) {\n result += \"\\\\\";\n }\n result += source[i];\n }\n return result;\n}\n// Adds a \"format\" keyword to the schema. If a format exists, both formats will be joined in an allOf-node, along with subsequent ones.\nfunction addFormat(schema, value, message, refs) {\n if (schema.format || schema.anyOf?.some((x) => x.format)) {\n if (!schema.anyOf) {\n schema.anyOf = [];\n }\n if (schema.format) {\n schema.anyOf.push({\n format: schema.format,\n ...(schema.errorMessage &&\n refs.errorMessages && {\n errorMessage: { format: schema.errorMessage.format },\n }),\n });\n delete schema.format;\n if (schema.errorMessage) {\n delete schema.errorMessage.format;\n if (Object.keys(schema.errorMessage).length === 0) {\n delete schema.errorMessage;\n }\n }\n }\n schema.anyOf.push({\n format: value,\n ...(message &&\n refs.errorMessages && { errorMessage: { format: message } }),\n });\n }\n else {\n setResponseValueAndErrors(schema, \"format\", value, message, refs);\n }\n}\n// Adds a \"pattern\" keyword to the schema. If a pattern exists, both patterns will be joined in an allOf-node, along with subsequent ones.\nfunction addPattern(schema, regex, message, refs) {\n if (schema.pattern || schema.allOf?.some((x) => x.pattern)) {\n if (!schema.allOf) {\n schema.allOf = [];\n }\n if (schema.pattern) {\n schema.allOf.push({\n pattern: schema.pattern,\n ...(schema.errorMessage &&\n refs.errorMessages && {\n errorMessage: { pattern: schema.errorMessage.pattern },\n }),\n });\n delete schema.pattern;\n if (schema.errorMessage) {\n delete schema.errorMessage.pattern;\n if (Object.keys(schema.errorMessage).length === 0) {\n delete schema.errorMessage;\n }\n }\n }\n schema.allOf.push({\n pattern: stringifyRegExpWithFlags(regex, refs),\n ...(message &&\n refs.errorMessages && { errorMessage: { pattern: message } }),\n });\n }\n else {\n setResponseValueAndErrors(schema, \"pattern\", stringifyRegExpWithFlags(regex, refs), message, refs);\n }\n}\n// Mutate z.string.regex() in a best attempt to accommodate for regex flags when applyRegexFlags is true\nfunction stringifyRegExpWithFlags(regex, refs) {\n if (!refs.applyRegexFlags || !regex.flags) {\n return regex.source;\n }\n // Currently handled flags\n const flags = {\n i: regex.flags.includes(\"i\"),\n m: regex.flags.includes(\"m\"),\n s: regex.flags.includes(\"s\"), // `.` matches newlines\n };\n // The general principle here is to step through each character, one at a time, applying mutations as flags require. We keep track when the current character is escaped, and when it's inside a group /like [this]/ or (also) a range like /[a-z]/. The following is fairly brittle imperative code; edit at your peril!\n const source = flags.i ? regex.source.toLowerCase() : regex.source;\n let pattern = \"\";\n let isEscaped = false;\n let inCharGroup = false;\n let inCharRange = false;\n for (let i = 0; i < source.length; i++) {\n if (isEscaped) {\n pattern += source[i];\n isEscaped = false;\n continue;\n }\n if (flags.i) {\n if (inCharGroup) {\n if (source[i].match(/[a-z]/)) {\n if (inCharRange) {\n pattern += source[i];\n pattern += `${source[i - 2]}-${source[i]}`.toUpperCase();\n inCharRange = false;\n }\n else if (source[i + 1] === \"-\" && source[i + 2]?.match(/[a-z]/)) {\n pattern += source[i];\n inCharRange = true;\n }\n else {\n pattern += `${source[i]}${source[i].toUpperCase()}`;\n }\n continue;\n }\n }\n else if (source[i].match(/[a-z]/)) {\n pattern += `[${source[i]}${source[i].toUpperCase()}]`;\n continue;\n }\n }\n if (flags.m) {\n if (source[i] === \"^\") {\n pattern += `(^|(?<=[\\r\\n]))`;\n continue;\n }\n else if (source[i] === \"$\") {\n pattern += `($|(?=[\\r\\n]))`;\n continue;\n }\n }\n if (flags.s && source[i] === \".\") {\n pattern += inCharGroup ? `${source[i]}\\r\\n` : `[${source[i]}\\r\\n]`;\n continue;\n }\n pattern += source[i];\n if (source[i] === \"\\\\\") {\n isEscaped = true;\n }\n else if (inCharGroup && source[i] === \"]\") {\n inCharGroup = false;\n }\n else if (!inCharGroup && source[i] === \"[\") {\n inCharGroup = true;\n }\n }\n try {\n new RegExp(pattern);\n }\n catch {\n console.warn(`Could not convert regex pattern at ${refs.currentPath.join(\"/\")} to a flag-independent form! Falling back to the flag-ignorant source`);\n return regex.source;\n }\n return pattern;\n}\n","import { ZodFirstPartyTypeKind, } from \"zod\";\nimport { parseDef } from \"../parseDef.js\";\nimport { parseStringDef } from \"./string.js\";\nimport { parseBrandedDef } from \"./branded.js\";\nimport { parseAnyDef } from \"./any.js\";\nexport function parseRecordDef(def, refs) {\n if (refs.target === \"openAi\") {\n console.warn(\"Warning: OpenAI may not support records in schemas! Try an array of key-value pairs instead.\");\n }\n if (refs.target === \"openApi3\" &&\n def.keyType?._def.typeName === ZodFirstPartyTypeKind.ZodEnum) {\n return {\n type: \"object\",\n required: def.keyType._def.values,\n properties: def.keyType._def.values.reduce((acc, key) => ({\n ...acc,\n [key]: parseDef(def.valueType._def, {\n ...refs,\n currentPath: [...refs.currentPath, \"properties\", key],\n }) ?? parseAnyDef(refs),\n }), {}),\n additionalProperties: refs.rejectedAdditionalProperties,\n };\n }\n const schema = {\n type: \"object\",\n additionalProperties: parseDef(def.valueType._def, {\n ...refs,\n currentPath: [...refs.currentPath, \"additionalProperties\"],\n }) ?? refs.allowedAdditionalProperties,\n };\n if (refs.target === \"openApi3\") {\n return schema;\n }\n if (def.keyType?._def.typeName === ZodFirstPartyTypeKind.ZodString &&\n def.keyType._def.checks?.length) {\n const { type, ...keyType } = parseStringDef(def.keyType._def, refs);\n return {\n ...schema,\n propertyNames: keyType,\n };\n }\n else if (def.keyType?._def.typeName === ZodFirstPartyTypeKind.ZodEnum) {\n return {\n ...schema,\n propertyNames: {\n enum: def.keyType._def.values,\n },\n };\n }\n else if (def.keyType?._def.typeName === ZodFirstPartyTypeKind.ZodBranded &&\n def.keyType._def.type._def.typeName === ZodFirstPartyTypeKind.ZodString &&\n def.keyType._def.type._def.checks?.length) {\n const { type, ...keyType } = parseBrandedDef(def.keyType._def, refs);\n return {\n ...schema,\n propertyNames: keyType,\n };\n }\n return schema;\n}\n","import { parseDef } from \"../parseDef.js\";\nimport { parseRecordDef } from \"./record.js\";\nimport { parseAnyDef } from \"./any.js\";\nexport function parseMapDef(def, refs) {\n if (refs.mapStrategy === \"record\") {\n return parseRecordDef(def, refs);\n }\n const keys = parseDef(def.keyType._def, {\n ...refs,\n currentPath: [...refs.currentPath, \"items\", \"items\", \"0\"],\n }) || parseAnyDef(refs);\n const values = parseDef(def.valueType._def, {\n ...refs,\n currentPath: [...refs.currentPath, \"items\", \"items\", \"1\"],\n }) || parseAnyDef(refs);\n return {\n type: \"array\",\n maxItems: 125,\n items: {\n type: \"array\",\n items: [keys, values],\n minItems: 2,\n maxItems: 2,\n },\n };\n}\n","export function parseNativeEnumDef(def) {\n const object = def.values;\n const actualKeys = Object.keys(def.values).filter((key) => {\n return typeof object[object[key]] !== \"number\";\n });\n const actualValues = actualKeys.map((key) => object[key]);\n const parsedTypes = Array.from(new Set(actualValues.map((values) => typeof values)));\n return {\n type: parsedTypes.length === 1\n ? parsedTypes[0] === \"string\"\n ? \"string\"\n : \"number\"\n : [\"string\", \"number\"],\n enum: actualValues,\n };\n}\n","import { parseAnyDef } from \"./any.js\";\nexport function parseNeverDef(refs) {\n return refs.target === \"openAi\"\n ? undefined\n : {\n not: parseAnyDef({\n ...refs,\n currentPath: [...refs.currentPath, \"not\"],\n }),\n };\n}\n","export function parseNullDef(refs) {\n return refs.target === \"openApi3\"\n ? {\n enum: [\"null\"],\n nullable: true,\n }\n : {\n type: \"null\",\n };\n}\n","import { parseDef } from \"../parseDef.js\";\nexport const primitiveMappings = {\n ZodString: \"string\",\n ZodNumber: \"number\",\n ZodBigInt: \"integer\",\n ZodBoolean: \"boolean\",\n ZodNull: \"null\",\n};\nexport function parseUnionDef(def, refs) {\n if (refs.target === \"openApi3\")\n return asAnyOf(def, refs);\n const options = def.options instanceof Map ? Array.from(def.options.values()) : def.options;\n // This blocks tries to look ahead a bit to produce nicer looking schemas with type array instead of anyOf.\n if (options.every((x) => x._def.typeName in primitiveMappings &&\n (!x._def.checks || !x._def.checks.length))) {\n // all types in union are primitive and lack checks, so might as well squash into {type: [...]}\n const types = options.reduce((types, x) => {\n const type = primitiveMappings[x._def.typeName]; //Can be safely casted due to row 43\n return type && !types.includes(type) ? [...types, type] : types;\n }, []);\n return {\n type: types.length > 1 ? types : types[0],\n };\n }\n else if (options.every((x) => x._def.typeName === \"ZodLiteral\" && !x.description)) {\n // all options literals\n const types = options.reduce((acc, x) => {\n const type = typeof x._def.value;\n switch (type) {\n case \"string\":\n case \"number\":\n case \"boolean\":\n return [...acc, type];\n case \"bigint\":\n return [...acc, \"integer\"];\n case \"object\":\n if (x._def.value === null)\n return [...acc, \"null\"];\n case \"symbol\":\n case \"undefined\":\n case \"function\":\n default:\n return acc;\n }\n }, []);\n if (types.length === options.length) {\n // all the literals are primitive, as far as null can be considered primitive\n const uniqueTypes = types.filter((x, i, a) => a.indexOf(x) === i);\n return {\n type: uniqueTypes.length > 1 ? uniqueTypes : uniqueTypes[0],\n enum: options.reduce((acc, x) => {\n return acc.includes(x._def.value) ? acc : [...acc, x._def.value];\n }, []),\n };\n }\n }\n else if (options.every((x) => x._def.typeName === \"ZodEnum\")) {\n return {\n type: \"string\",\n enum: options.reduce((acc, x) => [\n ...acc,\n ...x._def.values.filter((x) => !acc.includes(x)),\n ], []),\n };\n }\n return asAnyOf(def, refs);\n}\nconst asAnyOf = (def, refs) => {\n const anyOf = (def.options instanceof Map\n ? Array.from(def.options.values())\n : def.options)\n .map((x, i) => parseDef(x._def, {\n ...refs,\n currentPath: [...refs.currentPath, \"anyOf\", `${i}`],\n }))\n .filter((x) => !!x &&\n (!refs.strictUnions ||\n (typeof x === \"object\" && Object.keys(x).length > 0)));\n return anyOf.length ? { anyOf } : undefined;\n};\n","import { parseDef } from \"../parseDef.js\";\nimport { primitiveMappings } from \"./union.js\";\nexport function parseNullableDef(def, refs) {\n if ([\"ZodString\", \"ZodNumber\", \"ZodBigInt\", \"ZodBoolean\", \"ZodNull\"].includes(def.innerType._def.typeName) &&\n (!def.innerType._def.checks || !def.innerType._def.checks.length)) {\n if (refs.target === \"openApi3\") {\n return {\n type: primitiveMappings[def.innerType._def.typeName],\n nullable: true,\n };\n }\n return {\n type: [\n primitiveMappings[def.innerType._def.typeName],\n \"null\",\n ],\n };\n }\n if (refs.target === \"openApi3\") {\n const base = parseDef(def.innerType._def, {\n ...refs,\n currentPath: [...refs.currentPath],\n });\n if (base && \"$ref\" in base)\n return { allOf: [base], nullable: true };\n return base && { ...base, nullable: true };\n }\n const base = parseDef(def.innerType._def, {\n ...refs,\n currentPath: [...refs.currentPath, \"anyOf\", \"0\"],\n });\n return base && { anyOf: [base, { type: \"null\" }] };\n}\n","import { addErrorMessage, setResponseValueAndErrors, } from \"../errorMessages.js\";\nexport function parseNumberDef(def, refs) {\n const res = {\n type: \"number\",\n };\n if (!def.checks)\n return res;\n for (const check of def.checks) {\n switch (check.kind) {\n case \"int\":\n res.type = \"integer\";\n addErrorMessage(res, \"type\", check.message, refs);\n break;\n case \"min\":\n if (refs.target === \"jsonSchema7\") {\n if (check.inclusive) {\n setResponseValueAndErrors(res, \"minimum\", check.value, check.message, refs);\n }\n else {\n setResponseValueAndErrors(res, \"exclusiveMinimum\", check.value, check.message, refs);\n }\n }\n else {\n if (!check.inclusive) {\n res.exclusiveMinimum = true;\n }\n setResponseValueAndErrors(res, \"minimum\", check.value, check.message, refs);\n }\n break;\n case \"max\":\n if (refs.target === \"jsonSchema7\") {\n if (check.inclusive) {\n setResponseValueAndErrors(res, \"maximum\", check.value, check.message, refs);\n }\n else {\n setResponseValueAndErrors(res, \"exclusiveMaximum\", check.value, check.message, refs);\n }\n }\n else {\n if (!check.inclusive) {\n res.exclusiveMaximum = true;\n }\n setResponseValueAndErrors(res, \"maximum\", check.value, check.message, refs);\n }\n break;\n case \"multipleOf\":\n setResponseValueAndErrors(res, \"multipleOf\", check.value, check.message, refs);\n break;\n }\n }\n return res;\n}\n","import { parseDef } from \"../parseDef.js\";\nexport function parseObjectDef(def, refs) {\n const forceOptionalIntoNullable = refs.target === \"openAi\";\n const result = {\n type: \"object\",\n properties: {},\n };\n const required = [];\n const shape = def.shape();\n for (const propName in shape) {\n let propDef = shape[propName];\n if (propDef === undefined || propDef._def === undefined) {\n continue;\n }\n let propOptional = safeIsOptional(propDef);\n if (propOptional && forceOptionalIntoNullable) {\n if (propDef._def.typeName === \"ZodOptional\") {\n propDef = propDef._def.innerType;\n }\n if (!propDef.isNullable()) {\n propDef = propDef.nullable();\n }\n propOptional = false;\n }\n const parsedDef = parseDef(propDef._def, {\n ...refs,\n currentPath: [...refs.currentPath, \"properties\", propName],\n propertyPath: [...refs.currentPath, \"properties\", propName],\n });\n if (parsedDef === undefined) {\n continue;\n }\n result.properties[propName] = parsedDef;\n if (!propOptional) {\n required.push(propName);\n }\n }\n if (required.length) {\n result.required = required;\n }\n const additionalProperties = decideAdditionalProperties(def, refs);\n if (additionalProperties !== undefined) {\n result.additionalProperties = additionalProperties;\n }\n return result;\n}\nfunction decideAdditionalProperties(def, refs) {\n if (def.catchall._def.typeName !== \"ZodNever\") {\n return parseDef(def.catchall._def, {\n ...refs,\n currentPath: [...refs.currentPath, \"additionalProperties\"],\n });\n }\n switch (def.unknownKeys) {\n case \"passthrough\":\n return refs.allowedAdditionalProperties;\n case \"strict\":\n return refs.rejectedAdditionalProperties;\n case \"strip\":\n return refs.removeAdditionalStrategy === \"strict\"\n ? refs.allowedAdditionalProperties\n : refs.rejectedAdditionalProperties;\n }\n}\nfunction safeIsOptional(schema) {\n try {\n return schema.isOptional();\n }\n catch {\n return true;\n }\n}\n","import { parseDef } from \"../parseDef.js\";\nimport { parseAnyDef } from \"./any.js\";\nexport const parseOptionalDef = (def, refs) => {\n if (refs.currentPath.toString() === refs.propertyPath?.toString()) {\n return parseDef(def.innerType._def, refs);\n }\n const innerSchema = parseDef(def.innerType._def, {\n ...refs,\n currentPath: [...refs.currentPath, \"anyOf\", \"1\"],\n });\n return innerSchema\n ? {\n anyOf: [\n {\n not: parseAnyDef(refs),\n },\n innerSchema,\n ],\n }\n : parseAnyDef(refs);\n};\n","import { parseDef } from \"../parseDef.js\";\nexport const parsePipelineDef = (def, refs) => {\n if (refs.pipeStrategy === \"input\") {\n return parseDef(def.in._def, refs);\n }\n else if (refs.pipeStrategy === \"output\") {\n return parseDef(def.out._def, refs);\n }\n const a = parseDef(def.in._def, {\n ...refs,\n currentPath: [...refs.currentPath, \"allOf\", \"0\"],\n });\n const b = parseDef(def.out._def, {\n ...refs,\n currentPath: [...refs.currentPath, \"allOf\", a ? \"1\" : \"0\"],\n });\n return {\n allOf: [a, b].filter((x) => x !== undefined),\n };\n};\n","import { parseDef } from \"../parseDef.js\";\nexport function parsePromiseDef(def, refs) {\n return parseDef(def.type._def, refs);\n}\n","import { setResponseValueAndErrors } from \"../errorMessages.js\";\nimport { parseDef } from \"../parseDef.js\";\nexport function parseSetDef(def, refs) {\n const items = parseDef(def.valueType._def, {\n ...refs,\n currentPath: [...refs.currentPath, \"items\"],\n });\n const schema = {\n type: \"array\",\n uniqueItems: true,\n items,\n };\n if (def.minSize) {\n setResponseValueAndErrors(schema, \"minItems\", def.minSize.value, def.minSize.message, refs);\n }\n if (def.maxSize) {\n setResponseValueAndErrors(schema, \"maxItems\", def.maxSize.value, def.maxSize.message, refs);\n }\n return schema;\n}\n","import { parseDef } from \"../parseDef.js\";\nexport function parseTupleDef(def, refs) {\n if (def.rest) {\n return {\n type: \"array\",\n minItems: def.items.length,\n items: def.items\n .map((x, i) => parseDef(x._def, {\n ...refs,\n currentPath: [...refs.currentPath, \"items\", `${i}`],\n }))\n .reduce((acc, x) => (x === undefined ? acc : [...acc, x]), []),\n additionalItems: parseDef(def.rest._def, {\n ...refs,\n currentPath: [...refs.currentPath, \"additionalItems\"],\n }),\n };\n }\n else {\n return {\n type: \"array\",\n minItems: def.items.length,\n maxItems: def.items.length,\n items: def.items\n .map((x, i) => parseDef(x._def, {\n ...refs,\n currentPath: [...refs.currentPath, \"items\", `${i}`],\n }))\n .reduce((acc, x) => (x === undefined ? acc : [...acc, x]), []),\n };\n }\n}\n","import { parseAnyDef } from \"./any.js\";\nexport function parseUndefinedDef(refs) {\n return {\n not: parseAnyDef(refs),\n };\n}\n","import { parseAnyDef } from \"./any.js\";\nexport function parseUnknownDef(refs) {\n return parseAnyDef(refs);\n}\n","import { parseDef } from \"../parseDef.js\";\nexport const parseReadonlyDef = (def, refs) => {\n return parseDef(def.innerType._def, refs);\n};\n","import { ZodFirstPartyTypeKind } from \"zod\";\nimport { parseAnyDef } from \"./parsers/any.js\";\nimport { parseArrayDef } from \"./parsers/array.js\";\nimport { parseBigintDef } from \"./parsers/bigint.js\";\nimport { parseBooleanDef } from \"./parsers/boolean.js\";\nimport { parseBrandedDef } from \"./parsers/branded.js\";\nimport { parseCatchDef } from \"./parsers/catch.js\";\nimport { parseDateDef } from \"./parsers/date.js\";\nimport { parseDefaultDef } from \"./parsers/default.js\";\nimport { parseEffectsDef } from \"./parsers/effects.js\";\nimport { parseEnumDef } from \"./parsers/enum.js\";\nimport { parseIntersectionDef } from \"./parsers/intersection.js\";\nimport { parseLiteralDef } from \"./parsers/literal.js\";\nimport { parseMapDef } from \"./parsers/map.js\";\nimport { parseNativeEnumDef } from \"./parsers/nativeEnum.js\";\nimport { parseNeverDef } from \"./parsers/never.js\";\nimport { parseNullDef } from \"./parsers/null.js\";\nimport { parseNullableDef } from \"./parsers/nullable.js\";\nimport { parseNumberDef } from \"./parsers/number.js\";\nimport { parseObjectDef } from \"./parsers/object.js\";\nimport { parseOptionalDef } from \"./parsers/optional.js\";\nimport { parsePipelineDef } from \"./parsers/pipeline.js\";\nimport { parsePromiseDef } from \"./parsers/promise.js\";\nimport { parseRecordDef } from \"./parsers/record.js\";\nimport { parseSetDef } from \"./parsers/set.js\";\nimport { parseStringDef } from \"./parsers/string.js\";\nimport { parseTupleDef } from \"./parsers/tuple.js\";\nimport { parseUndefinedDef } from \"./parsers/undefined.js\";\nimport { parseUnionDef } from \"./parsers/union.js\";\nimport { parseUnknownDef } from \"./parsers/unknown.js\";\nimport { parseReadonlyDef } from \"./parsers/readonly.js\";\nexport const selectParser = (def, typeName, refs) => {\n switch (typeName) {\n case ZodFirstPartyTypeKind.ZodString:\n return parseStringDef(def, refs);\n case ZodFirstPartyTypeKind.ZodNumber:\n return parseNumberDef(def, refs);\n case ZodFirstPartyTypeKind.ZodObject:\n return parseObjectDef(def, refs);\n case ZodFirstPartyTypeKind.ZodBigInt:\n return parseBigintDef(def, refs);\n case ZodFirstPartyTypeKind.ZodBoolean:\n return parseBooleanDef();\n case ZodFirstPartyTypeKind.ZodDate:\n return parseDateDef(def, refs);\n case ZodFirstPartyTypeKind.ZodUndefined:\n return parseUndefinedDef(refs);\n case ZodFirstPartyTypeKind.ZodNull:\n return parseNullDef(refs);\n case ZodFirstPartyTypeKind.ZodArray:\n return parseArrayDef(def, refs);\n case ZodFirstPartyTypeKind.ZodUnion:\n case ZodFirstPartyTypeKind.ZodDiscriminatedUnion:\n return parseUnionDef(def, refs);\n case ZodFirstPartyTypeKind.ZodIntersection:\n return parseIntersectionDef(def, refs);\n case ZodFirstPartyTypeKind.ZodTuple:\n return parseTupleDef(def, refs);\n case ZodFirstPartyTypeKind.ZodRecord:\n return parseRecordDef(def, refs);\n case ZodFirstPartyTypeKind.ZodLiteral:\n return parseLiteralDef(def, refs);\n case ZodFirstPartyTypeKind.ZodEnum:\n return parseEnumDef(def);\n case ZodFirstPartyTypeKind.ZodNativeEnum:\n return parseNativeEnumDef(def);\n case ZodFirstPartyTypeKind.ZodNullable:\n return parseNullableDef(def, refs);\n case ZodFirstPartyTypeKind.ZodOptional:\n return parseOptionalDef(def, refs);\n case ZodFirstPartyTypeKind.ZodMap:\n return parseMapDef(def, refs);\n case ZodFirstPartyTypeKind.ZodSet:\n return parseSetDef(def, refs);\n case ZodFirstPartyTypeKind.ZodLazy:\n return () => def.getter()._def;\n case ZodFirstPartyTypeKind.ZodPromise:\n return parsePromiseDef(def, refs);\n case ZodFirstPartyTypeKind.ZodNaN:\n case ZodFirstPartyTypeKind.ZodNever:\n return parseNeverDef(refs);\n case ZodFirstPartyTypeKind.ZodEffects:\n return parseEffectsDef(def, refs);\n case ZodFirstPartyTypeKind.ZodAny:\n return parseAnyDef(refs);\n case ZodFirstPartyTypeKind.ZodUnknown:\n return parseUnknownDef(refs);\n case ZodFirstPartyTypeKind.ZodDefault:\n return parseDefaultDef(def, refs);\n case ZodFirstPartyTypeKind.ZodBranded:\n return parseBrandedDef(def, refs);\n case ZodFirstPartyTypeKind.ZodReadonly:\n return parseReadonlyDef(def, refs);\n case ZodFirstPartyTypeKind.ZodCatch:\n return parseCatchDef(def, refs);\n case ZodFirstPartyTypeKind.ZodPipeline:\n return parsePipelineDef(def, refs);\n case ZodFirstPartyTypeKind.ZodFunction:\n case ZodFirstPartyTypeKind.ZodVoid:\n case ZodFirstPartyTypeKind.ZodSymbol:\n return undefined;\n default:\n /* c8 ignore next */\n return ((_) => undefined)(typeName);\n }\n};\n","import { ignoreOverride } from \"./Options.js\";\nimport { selectParser } from \"./selectParser.js\";\nimport { getRelativePath } from \"./getRelativePath.js\";\nimport { parseAnyDef } from \"./parsers/any.js\";\nexport function parseDef(def, refs, forceResolution = false) {\n const seenItem = refs.seen.get(def);\n if (refs.override) {\n const overrideResult = refs.override?.(def, refs, seenItem, forceResolution);\n if (overrideResult !== ignoreOverride) {\n return overrideResult;\n }\n }\n if (seenItem && !forceResolution) {\n const seenSchema = get$ref(seenItem, refs);\n if (seenSchema !== undefined) {\n return seenSchema;\n }\n }\n const newItem = { def, path: refs.currentPath, jsonSchema: undefined };\n refs.seen.set(def, newItem);\n const jsonSchemaOrGetter = selectParser(def, def.typeName, refs);\n // If the return was a function, then the inner definition needs to be extracted before a call to parseDef (recursive)\n const jsonSchema = typeof jsonSchemaOrGetter === \"function\"\n ? parseDef(jsonSchemaOrGetter(), refs)\n : jsonSchemaOrGetter;\n if (jsonSchema) {\n addMeta(def, refs, jsonSchema);\n }\n if (refs.postProcess) {\n const postProcessResult = refs.postProcess(jsonSchema, def, refs);\n newItem.jsonSchema = jsonSchema;\n return postProcessResult;\n }\n newItem.jsonSchema = jsonSchema;\n return jsonSchema;\n}\nconst get$ref = (item, refs) => {\n switch (refs.$refStrategy) {\n case \"root\":\n return { $ref: item.path.join(\"/\") };\n case \"relative\":\n return { $ref: getRelativePath(refs.currentPath, item.path) };\n case \"none\":\n case \"seen\": {\n if (item.path.length < refs.currentPath.length &&\n item.path.every((value, index) => refs.currentPath[index] === value)) {\n console.warn(`Recursive reference detected at ${refs.currentPath.join(\"/\")}! Defaulting to any`);\n return parseAnyDef(refs);\n }\n return refs.$refStrategy === \"seen\" ? parseAnyDef(refs) : undefined;\n }\n }\n};\nconst addMeta = (def, refs, jsonSchema) => {\n if (def.description) {\n jsonSchema.description = def.description;\n if (refs.markdownDescription) {\n jsonSchema.markdownDescription = def.description;\n }\n }\n return jsonSchema;\n};\n","import { parseDef } from \"./parseDef.js\";\nimport { getRefs } from \"./Refs.js\";\nimport { parseAnyDef } from \"./parsers/any.js\";\nconst zodToJsonSchema = (schema, options) => {\n const refs = getRefs(options);\n let definitions = typeof options === \"object\" && options.definitions\n ? Object.entries(options.definitions).reduce((acc, [name, schema]) => ({\n ...acc,\n [name]: parseDef(schema._def, {\n ...refs,\n currentPath: [...refs.basePath, refs.definitionPath, name],\n }, true) ?? parseAnyDef(refs),\n }), {})\n : undefined;\n const name = typeof options === \"string\"\n ? options\n : options?.nameStrategy === \"title\"\n ? undefined\n : options?.name;\n const main = parseDef(schema._def, name === undefined\n ? refs\n : {\n ...refs,\n currentPath: [...refs.basePath, refs.definitionPath, name],\n }, false) ?? parseAnyDef(refs);\n const title = typeof options === \"object\" &&\n options.name !== undefined &&\n options.nameStrategy === \"title\"\n ? options.name\n : undefined;\n if (title !== undefined) {\n main.title = title;\n }\n if (refs.flags.hasReferencedOpenAiAnyType) {\n if (!definitions) {\n definitions = {};\n }\n if (!definitions[refs.openAiAnyTypeName]) {\n definitions[refs.openAiAnyTypeName] = {\n // Skipping \"object\" as no properties can be defined and additionalProperties must be \"false\"\n type: [\"string\", \"number\", \"integer\", \"boolean\", \"array\", \"null\"],\n items: {\n $ref: refs.$refStrategy === \"relative\"\n ? \"1\"\n : [\n ...refs.basePath,\n refs.definitionPath,\n refs.openAiAnyTypeName,\n ].join(\"/\"),\n },\n };\n }\n }\n const combined = name === undefined\n ? definitions\n ? {\n ...main,\n [refs.definitionPath]: definitions,\n }\n : main\n : {\n $ref: [\n ...(refs.$refStrategy === \"relative\" ? [] : refs.basePath),\n refs.definitionPath,\n name,\n ].join(\"/\"),\n [refs.definitionPath]: {\n ...definitions,\n [name]: main,\n },\n };\n if (refs.target === \"jsonSchema7\") {\n combined.$schema = \"http://json-schema.org/draft-07/schema#\";\n }\n else if (refs.target === \"jsonSchema2019-09\" || refs.target === \"openAi\") {\n combined.$schema = \"https://json-schema.org/draft/2019-09/schema#\";\n }\n if (refs.target === \"openAi\" &&\n (\"anyOf\" in combined ||\n \"oneOf\" in combined ||\n \"allOf\" in combined ||\n (\"type\" in combined && Array.isArray(combined.type)))) {\n console.warn(\"Warning: OpenAI may not support schemas with unions as roots! Try wrapping it in an object property.\");\n }\n return combined;\n};\nexport { zodToJsonSchema };\n","import { Tool } from \"@modelcontextprotocol/sdk/types\"\n\nexport const supportedTools :Tool[]= [\n {\n \"name\": \"get_asset_platforms\",\n \"description\": \"This endpoint allows you to **query all the asset platforms on HIVE_DATASOURCE_ONE**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"filter\": {\n \"type\": \"string\",\n \"description\": \"apply relevant filters to results\",\n \"enum\": [\n \"nft\"\n ]\n }\n }\n }\n },\n {\n \"name\": \"get_coins_index\",\n \"description\": \"This endpoint allows you to **query all the metadata (image, websites, socials, description, contract address, etc.) and market data (price, ATH, exchange tickers, etc.) of a coin from the HIVE_DATASOURCE_ONE coin page based on a particular coin ID**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"id\": {\n \"type\": \"string\"\n },\n \"community_data\": {\n \"type\": \"boolean\",\n \"description\": \"include community data, default: true\"\n },\n \"developer_data\": {\n \"type\": \"boolean\",\n \"description\": \"include developer data, default: true\"\n },\n \"dex_pair_format\": {\n \"type\": \"string\",\n \"description\": \"set to `symbol` to display DEX pair base and target as symbols, default: `contract_address`\",\n \"enum\": [\n \"contract_address\",\n \"symbol\"\n ]\n },\n \"localization\": {\n \"type\": \"boolean\",\n \"description\": \"include all the localized languages in the response, default: true\"\n },\n \"market_data\": {\n \"type\": \"boolean\",\n \"description\": \"include market data, default: true\"\n },\n \"sparkline\": {\n \"type\": \"boolean\",\n \"description\": \"include sparkline 7 days data, default: false\"\n },\n \"tickers\": {\n \"type\": \"boolean\",\n \"description\": \"include tickers data, default: true\"\n }\n }\n }\n },\n {\n \"name\": \"get_categories\",\n \"description\": \"This endpoint allows you to **query all the coins categories on HIVE_DATASOURCE_ONE**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_coins_list\",\n \"description\": \"This endpoint allows you to **query all the supported coins on HIVE_DATASOURCE_ONE with coins ID, name and symbol**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"include_platform\": {\n \"type\": \"boolean\",\n \"description\": \"include platform and token's contract addresses, default: false\"\n },\n \"status\": {\n \"type\": \"string\",\n \"description\": \"filter by status of coins, default: active\",\n \"enum\": [\n \"active\",\n \"inactive\"\n ]\n }\n }\n }\n },\n {\n \"name\": \"get_new_coins\",\n \"description\": \"This endpoint allows you to **query the latest 200 coins that recently listed on HIVE_DATASOURCE_ONE**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_coins_market_data\",\n \"description\": \"This endpoint allows you to **query all the supported coins with price, market cap, volume and market related data**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"vs_currency\": {\n \"type\": \"string\",\n \"description\": \"target currency of coins and market data <br> *refers to [`/simple/supported_vs_currencies`](/reference/simple-supported-currencies).\"\n },\n \"category\": {\n \"type\": \"string\",\n \"description\": \"filter based on coins' category <br> *refers to [`/coins/categories/list`](/reference/coins-categories-list).\"\n },\n \"ids\": {\n \"type\": \"string\",\n \"description\": \"coins' IDs, comma-separated if querying more than 1 coin. <br> *refers to [`/coins/list`](/reference/coins-list).\"\n },\n \"include_tokens\": {\n \"type\": \"string\",\n \"description\": \"for `symbols` lookups, specify `all` to include all matching tokens <br> Default `top` returns top-ranked tokens (by market cap or volume)\",\n \"enum\": [\n \"top\",\n \"all\"\n ]\n },\n \"locale\": {\n \"type\": \"string\",\n \"description\": \"language background, default: en\",\n \"enum\": [\n \"ar\",\n \"bg\",\n \"cs\",\n \"da\",\n \"de\",\n \"el\",\n \"en\",\n \"es\",\n \"fi\",\n \"fr\",\n \"he\",\n \"hi\",\n \"hr\",\n \"hu\",\n \"id\",\n \"it\",\n \"ja\",\n \"ko\",\n \"lt\",\n \"nl\",\n \"no\",\n \"pl\",\n \"pt\",\n \"ro\",\n \"ru\",\n \"sk\",\n \"sl\",\n \"sv\",\n \"th\",\n \"tr\",\n \"uk\",\n \"vi\",\n \"zh\",\n \"zh-tw\"\n ]\n },\n \"names\": {\n \"type\": \"string\",\n \"description\": \"coins' names, comma-separated if querying more than 1 coin.\"\n },\n \"order\": {\n \"type\": \"string\",\n \"description\": \"sort result by field, default: market_cap_desc\",\n \"enum\": [\n \"market_cap_asc\",\n \"market_cap_desc\",\n \"volume_asc\",\n \"volume_desc\",\n \"id_asc\",\n \"id_desc\"\n ]\n },\n \"page\": {\n \"type\": \"number\",\n \"description\": \"page through results, default: 1\"\n },\n \"per_page\": {\n \"type\": \"number\",\n \"description\": \"total results per page, default: 100 <br> Valid values: 1...250\"\n },\n \"precision\": {\n \"type\": \"string\",\n \"description\": \"decimal place for currency price value\",\n \"enum\": [\n \"full\",\n \"0\",\n \"1\",\n \"2\",\n \"3\",\n \"4\",\n \"5\",\n \"6\",\n \"7\",\n \"8\",\n \"9\",\n \"10\",\n \"11\",\n \"12\",\n \"13\",\n \"14\",\n \"15\",\n \"16\",\n \"17\",\n \"18\"\n ]\n },\n \"price_change_percentage\": {\n \"type\": \"string\",\n \"description\": \"include price change percentage timeframe, comma-separated if query more than 1 price change percentage timeframe <br> Valid values: 1h, 24h, 7d, 14d, 30d, 200d, 1y\"\n },\n \"sparkline\": {\n \"type\": \"boolean\",\n \"description\": \"include sparkline 7 days data, default: false\"\n },\n \"symbols\": {\n \"type\": \"string\",\n \"description\": \"coins' symbols, comma-separated if querying more than 1 coin.\"\n }\n }\n }\n },\n {\n \"name\": \"get_gainers_losers\",\n \"description\": \"This endpoint allows you to **query the top 30 coins with largest price gain and loss by a specific time duration**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"vs_currency\": {\n \"type\": \"string\",\n \"description\": \"target currency of coins <br> *refers to [`/simple/supported_vs_currencies`](/reference/simple-supported-currencies).\"\n },\n \"duration\": {\n \"type\": \"string\",\n \"description\": \"filter result by time range <br> Default value: `24h`\",\n \"enum\": [\n \"1h\",\n \"24h\",\n \"7d\",\n \"14d\",\n \"30d\",\n \"60d\",\n \"1y\"\n ]\n },\n \"top_coins\": {\n \"type\": \"string\",\n \"description\": \"filter result by market cap ranking (top 300 to 1000) or all coins (including coins that do not have market cap) <br> Default value: `1000`\",\n \"enum\": [\n \"300\",\n \"500\",\n \"1000\",\n \"all\"\n ]\n }\n }\n }\n },\n {\n \"name\": \"get_contract_coin\",\n \"description\": \"This endpoint allows you to **query all the metadata (image, websites, socials, description, contract address, etc.) and market data (price, ATH, exchange tickers, etc.) of a coin from the HIVE_DATASOURCE_ONE coin page based on an asset platform and a particular token contract address**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"id\": {\n \"type\": \"string\"\n },\n \"contract_address\": {\n \"type\": \"string\"\n }\n }\n }\n },\n {\n \"name\": \"get_contract_market_chart_range\",\n \"description\": \"This endpoint allows you to **get the historical chart data within certain time range in UNIX along with price, market cap and 24hr volume based on asset platform and particular token contract address**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"id\": {\n \"type\": \"string\"\n },\n \"contract_address\": {\n \"type\": \"string\"\n },\n \"from\": {\n \"type\": \"number\",\n \"description\": \"starting date in UNIX timestamp\"\n },\n \"to\": {\n \"type\": \"number\",\n \"description\": \"ending date in UNIX timestamp\"\n },\n \"vs_currency\": {\n \"type\": \"string\",\n \"description\": \"target currency of market data <br> *refers to [`/simple/supported_vs_currencies`](/reference/simple-supported-currencies).\"\n },\n \"interval\": {\n \"type\": \"string\",\n \"description\": \"data interval, leave empty for auto granularity\",\n \"enum\": [\n \"5m\",\n \"hourly\",\n \"daily\"\n ]\n },\n \"precision\": {\n \"type\": \"string\",\n \"description\": \"decimal place for currency price value\",\n \"enum\": [\n \"full\",\n \"0\",\n \"1\",\n \"2\",\n \"3\",\n \"4\",\n \"5\",\n \"6\",\n \"7\",\n \"8\",\n \"9\",\n \"10\",\n \"11\",\n \"12\",\n \"13\",\n \"14\",\n \"15\",\n \"16\",\n \"17\",\n \"18\"\n ]\n }\n }\n }\n },\n {\n \"name\": \"get_coin_history\",\n \"description\": \"This endpoint allows you to **query the historical data (price, market cap, 24hrs volume, ...) at a given date for a coin based on a particular coin ID**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"id\": {\n \"type\": \"string\"\n },\n \"date\": {\n \"type\": \"string\",\n \"description\": \"the date of data snapshot <br> Format: `dd-mm-yyyy`\"\n },\n \"localization\": {\n \"type\": \"boolean\",\n \"description\": \"include all the localized languages in response, default: true\"\n }\n }\n }\n },\n {\n \"name\": \"get_coin_market_chart_range\",\n \"description\": \"This endpoint allows you to **get the historical chart data of a coin within certain time range in UNIX along with price, market cap and 24hr volume based on particular coin ID**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"id\": {\n \"type\": \"string\"\n },\n \"from\": {\n \"type\": \"number\",\n \"description\": \"starting date in UNIX timestamp \"\n },\n \"to\": {\n \"type\": \"number\",\n \"description\": \"ending date in UNIX timestamp\"\n },\n \"vs_currency\": {\n \"type\": \"string\",\n \"description\": \"target currency of market data <br> *refers to [`/simple/supported_vs_currencies`](/reference/simple-supported-currencies).\"\n },\n \"interval\": {\n \"type\": \"string\",\n \"description\": \"data interval, leave empty for auto granularity\",\n \"enum\": [\n \"5m\",\n \"hourly\",\n \"daily\"\n ]\n },\n \"precision\": {\n \"type\": \"string\",\n \"description\": \"decimal place for currency price value\",\n \"enum\": [\n \"full\",\n \"0\",\n \"1\",\n \"2\",\n \"3\",\n \"4\",\n \"5\",\n \"6\",\n \"7\",\n \"8\",\n \"9\",\n \"10\",\n \"11\",\n \"12\",\n \"13\",\n \"14\",\n \"15\",\n \"16\",\n \"17\",\n \"18\"\n ]\n }\n }\n }\n },\n {\n \"name\": \"get_coin_ohlc_range\",\n \"description\": \"This endpoint allows you to **get the OHLC chart (Open, High, Low, Close) of a coin within a range of timestamp based on particular coin ID**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"id\": {\n \"type\": \"string\"\n },\n \"from\": {\n \"type\": \"number\",\n \"description\": \"starting date in UNIX timestamp\"\n },\n \"interval\": {\n \"type\": \"string\",\n \"description\": \"data interval\",\n \"enum\": [\n \"daily\",\n \"hourly\"\n ]\n },\n \"to\": {\n \"type\": \"number\",\n \"description\": \"ending date in UNIX timestamp\"\n },\n \"vs_currency\": {\n \"type\": \"string\",\n \"description\": \"target currency of price data <br> *refers to [`/simple/supported_vs_currencies`](/reference/simple-supported-currencies).\"\n }\n }\n }\n },\n {\n \"name\": \"get_global_stats\",\n \"description\": \"This endpoint allows you **query cryptocurrency global data including active cryptocurrencies, markets, total crypto market cap and etc**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_nft\",\n \"description\": \"This endpoint allows you to **query all the NFT data (name, floor price, 24hr volume ...) based on the NFT collection ID**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"id\": {\n \"type\": \"string\"\n }\n }\n }\n },\n {\n \"name\": \"get_nfts\",\n \"description\": \"This endpoint allows you to **query all supported NFTs with ID, contract address, name, asset platform ID and symbol on HIVE_DATASOURCE_ONE**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"order\": {\n \"type\": \"string\",\n \"description\": \"use this to sort the order of responses\",\n \"enum\": [\n \"h24_volume_usd_asc\",\n \"h24_volume_usd_desc\",\n \"h24_volume_native_asc\",\n \"h24_volume_native_desc\",\n \"floor_price_native_asc\",\n \"floor_price_native_desc\",\n \"market_cap_native_asc\",\n \"market_cap_native_desc\",\n \"market_cap_usd_asc\",\n \"market_cap_usd_desc\"\n ]\n },\n \"page\": {\n \"type\": \"number\",\n \"description\": \"page through results\"\n },\n \"per_page\": {\n \"type\": \"number\",\n \"description\": \"total results per page <br> Valid values: 1...250\"\n }\n }\n }\n },\n {\n \"name\": \"get_nft_market_chart\",\n \"description\": \"This endpoint allows you **query historical market data of a NFT collection, including floor price, market cap, and 24hr volume, by number of days away from now**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"id\": {\n \"type\": \"string\"\n },\n \"days\": {\n \"type\": \"string\",\n \"description\": \"data up to number of days <br> Valid values: any integer or max\"\n }\n }\n }\n },\n {\n \"name\": \"get_onchain_categories\",\n \"description\": \"This endpoint allows you to **query all the supported categories on HIVE_DATASOURCE_ONE_CONSOLE**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"page\": {\n \"type\": \"integer\",\n \"description\": \"page through results <br> Default value: `1`\"\n },\n \"sort\": {\n \"type\": \"string\",\n \"description\": \"sort the categories by field <br> Default value: `h6_volume_percentage_desc`\",\n \"enum\": [\n \"h1_volume_percentage_desc\",\n \"h6_volume_percentage_desc\",\n \"h12_volume_percentage_desc\",\n \"h24_tx_count_desc\",\n \"h24_volume_usd_desc\",\n \"fdv_usd_desc\",\n \"reserve_in_usd_desc\"\n ]\n }\n }\n }\n },\n {\n \"name\": \"get_pools_by_category\",\n \"description\": \"This endpoint allows you to **query all the pools based on the provided category ID**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"category_id\": {\n \"type\": \"string\"\n },\n \"include\": {\n \"type\": \"string\",\n \"description\": \"attributes to include, comma-separated if more than one to include <br> Available values: `base_token`, `quote_token`, `dex`, `network`. <br> Example: `base_token` or `base_token,dex`\"\n },\n \"page\": {\n \"type\": \"integer\",\n \"description\": \"page through results <br> Default value: `1`\"\n },\n \"sort\": {\n \"type\": \"string\",\n \"description\": \"sort the pools by field <br> Default value: `pool_created_at_desc`\",\n \"enum\": [\n \"m5_trending\",\n \"h1_trending\",\n \"h6_trending\",\n \"h24_trending\",\n \"h24_tx_count_desc\",\n \"h24_volume_usd_desc\",\n \"pool_created_at_desc\",\n \"h24_price_change_percentage_desc\"\n ]\n }\n }\n }\n },\n {\n \"name\": \"get_networks\",\n \"description\": \"This endpoint allows you to **query all the supported networks on HIVE_DATASOURCE_ONE_CONSOLE**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"page\": {\n \"type\": \"integer\",\n \"description\": \"page through results <br> Default value: 1\"\n }\n }\n }\n },\n {\n \"name\": \"get_new_pools\",\n \"description\": \"This endpoint allows you to **query all the latest pools across all networks on HIVE_DATASOURCE_ONE_CONSOLE**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"include\": {\n \"type\": \"string\",\n \"description\": \"attributes to include, comma-separated if more than one to include <br> Available values: `base_token`, `quote_token`, `dex`, `network`\"\n },\n \"page\": {\n \"type\": \"integer\",\n \"description\": \"page through results <br> Default value: 1\"\n }\n }\n }\n },\n {\n \"name\": \"get_new_pools_by_network\",\n \"description\": \"This endpoint allows you to **query all the latest pools based on provided network**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"network\": {\n \"type\": \"string\"\n },\n \"include\": {\n \"type\": \"string\",\n \"description\": \"attributes to include, comma-separated if more than one to include <br> Available values: `base_token`, `quote_token`, `dex`\"\n },\n \"page\": {\n \"type\": \"integer\",\n \"description\": \"page through results <br> Default value: 1\"\n }\n }\n }\n },\n {\n \"name\": \"get_trending_pools\",\n \"description\": \"This endpoint allows you to **query all the trending pools across all networks on HIVE_DATASOURCE_ONE_CONSOLE**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"duration\": {\n \"type\": \"string\",\n \"description\": \"duration to sort trending list by <br> Default value: 24h\",\n \"enum\": [\n \"5m\",\n \"1h\",\n \"6h\",\n \"24h\"\n ]\n },\n \"include\": {\n \"type\": \"string\",\n \"description\": \"attributes to include, comma-separated if more than one to include <br> Available values: `base_token`, `quote_token`, `dex`, `network`. <br> Example: `base_token` or `base_token,dex`\"\n },\n \"page\": {\n \"type\": \"integer\",\n \"description\": \"page through results <br> Default value: 1\"\n }\n }\n }\n },\n {\n \"name\": \"get_trending_pools_by_network\",\n \"description\": \"This endpoint allows you to **query the trending pools based on the provided network**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"network\": {\n \"type\": \"string\"\n },\n \"duration\": {\n \"type\": \"string\",\n \"description\": \"duration to sort trending list by <br> Default value: 24h\",\n \"enum\": [\n \"5m\",\n \"1h\",\n \"6h\",\n \"24h\"\n ]\n },\n \"include\": {\n \"type\": \"string\",\n \"description\": \"attributes to include, comma-separated if more than one to include <br> Available values: `base_token`, `quote_token`, `dex`\"\n },\n \"page\": {\n \"type\": \"integer\",\n \"description\": \"page through results <br> Default value: 1\"\n }\n }\n }\n },\n {\n \"name\": \"get_dexes\",\n \"description\": \"This endpoint allows you to **query all the supported decentralized exchanges (DEXs) based on the provided network on HIVE_DATASOURCE_ONE_CONSOLE**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"network\": {\n \"type\": \"string\"\n },\n \"page\": {\n \"type\": \"integer\",\n \"description\": \"page through results <br> Default value: 1\"\n }\n }\n }\n },\n {\n \"name\": \"get_pools_by_dex\",\n \"description\": \"This endpoint allows you to **query all the top pools based on the provided network and decentralized exchange (DEX)**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"network\": {\n \"type\": \"string\"\n },\n \"dex\": {\n \"type\": \"string\"\n },\n \"include\": {\n \"type\": \"string\",\n \"description\": \"attributes to include, comma-separated if more than one to include <br> Available values: `base_token`, `quote_token`, `dex`\"\n },\n \"page\": {\n \"type\": \"integer\",\n \"description\": \"page through results <br> Default value: 1\"\n },\n \"sort\": {\n \"type\": \"string\",\n \"description\": \"sort the pools by field <br> Default value: h24_tx_count_desc\",\n \"enum\": [\n \"h24_tx_count_desc\",\n \"h24_volume_usd_desc\"\n ]\n }\n }\n }\n },\n {\n \"name\": \"get_pools\",\n \"description\": \"This endpoint allows you to **query all the top pools based on the provided network**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"network\": {\n \"type\": \"string\"\n },\n \"include\": {\n \"type\": \"string\",\n \"description\": \"attributes to include, comma-separated if more than one to include <br> Available values: `base_token`, `quote_token`, `dex`\"\n },\n \"page\": {\n \"type\": \"integer\",\n \"description\": \"page through results <br> Default value: 1\"\n },\n \"sort\": {\n \"type\": \"string\",\n \"description\": \"sort the pools by field <br> Default value: h24_tx_count_desc\",\n \"enum\": [\n \"h24_tx_count_desc\",\n \"h24_volume_usd_desc\"\n ]\n }\n }\n }\n },\n {\n \"name\": \"get_pools_by_address\",\n \"description\": \"This endpoint allows you to **query the specific pool based on the provided network and pool address**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"network\": {\n \"type\": \"string\"\n },\n \"address\": {\n \"type\": \"string\"\n },\n \"include\": {\n \"type\": \"string\",\n \"description\": \"attributes to include, comma-separated if more than one to include <br> Available values: `base_token`, `quote_token`, `dex`\"\n },\n \"include_volume_breakdown\": {\n \"type\": \"boolean\",\n \"description\": \"include volume breakdown, default: false\"\n }\n }\n }\n },\n {\n \"name\": \"get_pool_info\",\n \"description\": \"This endpoint allows you to **query pool metadata (base and quote token details, image, socials, websites, description, contract address, etc.) based on a provided pool contract address on a network**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"network\": {\n \"type\": \"string\"\n },\n \"pool_address\": {\n \"type\": \"string\"\n }\n }\n }\n },\n {\n \"name\": \"get_pool_ohlcv\",\n \"description\": \"This endpoint allows you to **get the OHLCV chart (Open, High, Low, Close, Volume) of a pool based on the provided pool address on a network**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"network\": {\n \"type\": \"string\"\n },\n \"pool_address\": {\n \"type\": \"string\"\n },\n \"timeframe\": {\n \"type\": \"string\",\n \"enum\": [\n \"day\",\n \"hour\",\n \"minute\"\n ]\n },\n \"token\": {\n \"type\": \"string\",\n \"description\": \"return OHLCV for token <br> use this to invert the chart <br> Available values: 'base', 'quote' or token address <br> Default value: 'base'\"\n },\n \"aggregate\": {\n \"type\": \"string\",\n \"description\": \"time period to aggregate each OHLCV <br> Available values (day): `1` <br> Available values (hour): `1` , `4` , `12` <br> Available values (minute): `1` , `5` , `15` <br> Default value: 1\"\n },\n \"before_timestamp\": {\n \"type\": \"integer\",\n \"description\": \"return OHLCV data before this timestamp (integer seconds since epoch)\"\n },\n \"currency\": {\n \"type\": \"string\",\n \"description\": \"return OHLCV in USD or quote token <br> Default value: usd\",\n \"enum\": [\n \"usd\",\n \"token\"\n ]\n },\n \"include_empty_intervals\": {\n \"type\": \"boolean\",\n \"description\": \"include empty intervals with no trade data, default: false\"\n },\n \"limit\": {\n \"type\": \"integer\",\n \"description\": \"number of OHLCV results to return, maximum 1000 <br> Default value: 100\"\n }\n }\n }\n },\n {\n \"name\": \"get_pool_trades\",\n \"description\": \"This endpoint allows you to **query the last 300 trades in the past 24 hours based on the provided pool address**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"network\": {\n \"type\": \"string\"\n },\n \"pool_address\": {\n \"type\": \"string\"\n },\n \"token\": {\n \"type\": \"string\",\n \"description\": \"return trades for token <br> use this to invert the chart <br> Available values: 'base', 'quote' or token address <br> Default value: 'base'\"\n },\n \"trade_volume_in_usd_greater_than\": {\n \"type\": \"number\",\n \"description\": \"filter trades by trade volume in USD greater than this value <br> Default value: 0\"\n }\n }\n }\n },\n {\n \"name\": \"get_tokens_by_address\",\n \"description\": \"This endpoint allows you to **query specific token data based on the provided token contract address on a network**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"network\": {\n \"type\": \"string\"\n },\n \"address\": {\n \"type\": \"string\"\n },\n \"include\": {\n \"type\": \"string\",\n \"description\": \"attributes to include\",\n \"enum\": [\n \"top_pools\"\n ]\n }\n }\n }\n },\n {\n \"name\": \"get_token_info\",\n \"description\": \"This endpoint allows you to **query token metadata (name, symbol, HIVE_DATASOURCE_ONE ID, image, socials, websites, description, etc.) based on a provided token contract address on a network**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"network\": {\n \"type\": \"string\"\n },\n \"address\": {\n \"type\": \"string\"\n }\n }\n }\n },\n {\n \"name\": \"get_token_top_holders\",\n \"description\": \"This endpoint allows you to **query top token holders based on the provided token contract address on a network**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"network\": {\n \"type\": \"string\"\n },\n \"address\": {\n \"type\": \"string\"\n },\n \"holders\": {\n \"type\": \"string\",\n \"description\": \"number of top token holders to return, you may use any integer or `max` <br> Default value: 10\"\n }\n }\n }\n },\n {\n \"name\": \"get_token_holders_chart\",\n \"description\": \"This endpoint allows you to **get the historical token holders chart based on the provided token contract address on a network**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"network\": {\n \"type\": \"string\"\n },\n \"token_address\": {\n \"type\": \"string\"\n },\n \"days\": {\n \"type\": \"string\",\n \"description\": \"number of days to return the historical token holders chart <br> Default value: 7\",\n \"enum\": [\n \"7\",\n \"30\",\n \"max\"\n ]\n }\n }\n }\n },\n {\n \"name\": \"get_token_ohlcv\",\n \"description\": \"This endpoint allows you to **get the OHLCV chart (Open, High, Low, Close, Volume) of a token based on the provided token address on a network**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"network\": {\n \"type\": \"string\"\n },\n \"token_address\": {\n \"type\": \"string\"\n },\n \"timeframe\": {\n \"type\": \"string\",\n \"enum\": [\n \"day\",\n \"hour\",\n \"minute\"\n ]\n },\n \"aggregate\": {\n \"type\": \"string\",\n \"description\": \"time period to aggregate each OHLCV <br> Available values (day): `1` <br> Available values (hour): `1` , `4` , `12` <br> Available values (minute): `1` , `5` , `15` <br> Default value: 1\"\n },\n \"before_timestamp\": {\n \"type\": \"integer\",\n \"description\": \"return OHLCV data before this timestamp (integer seconds since epoch)\"\n },\n \"currency\": {\n \"type\": \"string\",\n \"description\": \"return OHLCV in USD or quote token <br> Default value: usd\",\n \"enum\": [\n \"usd\",\n \"token\"\n ]\n },\n \"include_empty_intervals\": {\n \"type\": \"boolean\",\n \"description\": \"include empty intervals with no trade data, default: false\"\n },\n \"limit\": {\n \"type\": \"integer\",\n \"description\": \"number of OHLCV results to return, maximum 1000 <br> Default value: 100\"\n }\n }\n }\n },\n {\n \"name\": \"get_token_pools\",\n \"description\": \"This endpoint allows you to **query top pools based on the provided token contract address on a network**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"network\": {\n \"type\": \"string\"\n },\n \"token_address\": {\n \"type\": \"string\"\n },\n \"include\": {\n \"type\": \"string\",\n \"description\": \"attributes to include, comma-separated if more than one to include <br> Available values: `base_token`, `quote_token`, `dex`\"\n },\n \"page\": {\n \"type\": \"integer\",\n \"description\": \"page through results <br> Default value: 1\"\n },\n \"sort\": {\n \"type\": \"string\",\n \"description\": \"sort the pools by field <br> Default value: h24_volume_usd_liquidity_desc\",\n \"enum\": [\n \"h24_volume_usd_liquidity_desc\",\n \"h24_tx_count_desc\",\n \"h24_volume_usd_desc\"\n ]\n }\n }\n }\n },\n {\n \"name\": \"get_token_trades\",\n \"description\": \"This endpoint allows you to **query the last 300 trades in the past 24 hours, across all pools, based on the provided token contract address on a network**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"network\": {\n \"type\": \"string\"\n },\n \"token_address\": {\n \"type\": \"string\"\n },\n \"trade_volume_in_usd_greater_than\": {\n \"type\": \"number\",\n \"description\": \"filter trades by trade volume in USD greater than this value <br> Default value: 0\"\n }\n }\n }\n },\n {\n \"name\": \"filter_pools\",\n \"description\": \"This endpoint allows you to **query pools based on various filters across all networks on HIVE_DATASOURCE_ONE_CONSOLE**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"buy_tax_percentage_max\": {\n \"type\": \"number\",\n \"description\": \"maximum buy tax percentage\"\n },\n \"buy_tax_percentage_min\": {\n \"type\": \"number\",\n \"description\": \"minimum buy tax percentage\"\n },\n \"buys_duration\": {\n \"type\": \"string\",\n \"description\": \"duration for buy transactions metric <br> Default value: 24h\",\n \"enum\": [\n \"5m\",\n \"1h\",\n \"6h\",\n \"24h\"\n ]\n },\n \"buys_max\": {\n \"type\": \"integer\",\n \"description\": \"maximum number of buy transactions\"\n },\n \"buys_min\": {\n \"type\": \"integer\",\n \"description\": \"minimum number of buy transactions\"\n },\n \"checks\": {\n \"type\": \"string\",\n \"description\": \"filter options for various checks, comma-separated if more than one <br> Available values: `no_honeypot`, `good_gt_score`, `has_social`\"\n },\n \"dexes\": {\n \"type\": \"string\",\n \"description\": \"filter pools by DEXes, comma-separated if more than one <br> DEX ID refers to [/networks/{network}/dexes](/reference/dexes-list)\"\n },\n \"fdv_usd_max\": {\n \"type\": \"number\",\n \"description\": \"maximum fully diluted value in USD\"\n },\n \"fdv_usd_min\": {\n \"type\": \"number\",\n \"description\": \"minimum fully diluted value in USD\"\n },\n \"h24_volume_usd_max\": {\n \"type\": \"number\",\n \"description\": \"maximum 24hr volume in USD\"\n },\n \"h24_volume_usd_min\": {\n \"type\": \"number\",\n \"description\": \"minimum 24hr volume in USD\"\n },\n \"include\": {\n \"type\": \"string\",\n \"description\": \"attributes to include, comma-separated if more than one to include <br> Available values: `base_token`, `quote_token`, `dex`, `network`\"\n },\n \"networks\": {\n \"type\": \"string\",\n \"description\": \"filter pools by networks, comma-separated if more than one <br> Network ID refers to [/networks](/reference/networks-list)\"\n },\n \"page\": {\n \"type\": \"integer\",\n \"description\": \"page through results <br> Default value: 1\"\n },\n \"pool_created_hour_max\": {\n \"type\": \"number\",\n \"description\": \"maximum pool age in hours\"\n },\n \"pool_created_hour_min\": {\n \"type\": \"number\",\n \"description\": \"minimum pool age in hours\"\n },\n \"reserve_in_usd_max\": {\n \"type\": \"number\",\n \"description\": \"maximum reserve in USD\"\n },\n \"reserve_in_usd_min\": {\n \"type\": \"number\",\n \"description\": \"minimum reserve in USD\"\n },\n \"sell_tax_percentage_max\": {\n \"type\": \"number\",\n \"description\": \"maximum sell tax percentage\"\n },\n \"sell_tax_percentage_min\": {\n \"type\": \"number\",\n \"description\": \"minimum sell tax percentage\"\n },\n \"sells_duration\": {\n \"type\": \"string\",\n \"description\": \"duration for sell transactions metric <br> Default value: 24h\",\n \"enum\": [\n \"5m\",\n \"1h\",\n \"6h\",\n \"24h\"\n ]\n },\n \"sells_max\": {\n \"type\": \"integer\",\n \"description\": \"maximum number of sell transactions\"\n },\n \"sells_min\": {\n \"type\": \"integer\",\n \"description\": \"minimum number of sell transactions\"\n },\n \"sort\": {\n \"type\": \"string\",\n \"description\": \"sort the pools by field <br> Default value: h6_trending\",\n \"enum\": [\n \"m5_trending\",\n \"h1_trending\",\n \"h6_trending\",\n \"h24_trending\",\n \"h24_tx_count_desc\",\n \"h24_volume_usd_desc\",\n \"h24_price_change_percentage_desc\",\n \"pool_created_at_desc\"\n ]\n },\n \"tx_count_duration\": {\n \"type\": \"string\",\n \"description\": \"duration for transaction count metric <br> Default value: 24h\",\n \"enum\": [\n \"5m\",\n \"1h\",\n \"6h\",\n \"24h\"\n ]\n },\n \"tx_count_max\": {\n \"type\": \"integer\",\n \"description\": \"maximum transaction count\"\n },\n \"tx_count_min\": {\n \"type\": \"integer\",\n \"description\": \"minimum transaction count\"\n }\n }\n }\n },\n {\n \"name\": \"search_trending_pools\",\n \"description\": \"This endpoint allows you to **query all the trending search pools across all networks on HIVE_DATASOURCE_ONE_CONSOLE**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"include\": {\n \"type\": \"string\",\n \"description\": \"attributes to include, comma-separated if more than one to include <br> Available values: `base_token`, `quote_token`, `dex`, `network`\"\n },\n \"pools\": {\n \"type\": \"integer\",\n \"description\": \"number of pools to return, maximum 10 <br> Default value: 4\"\n }\n }\n }\n },\n {\n \"name\": \"search_pools\",\n \"description\": \"This endpoint allows you to **search for pools on a network**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"include\": {\n \"type\": \"string\",\n \"description\": \"attributes to include, comma-separated if more than one to include <br> Available values: `base_token`, `quote_token`, `dex`\"\n },\n \"network\": {\n \"type\": \"string\",\n \"description\": \"network ID <br> *refers to [/networks](/reference/networks-list)\"\n },\n \"page\": {\n \"type\": \"integer\",\n \"description\": \"page through results <br> Default value: 1\"\n },\n \"query\": {\n \"type\": \"string\",\n \"description\": \"search query\"\n }\n }\n }\n },\n {\n \"name\": \"get_onchain_token_price\",\n \"description\": \"This endpoint allows you to **get token price based on the provided token contract address on a network**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"network\": {\n \"type\": \"string\"\n },\n \"addresses\": {\n \"type\": \"string\"\n },\n \"include_24hr_price_change\": {\n \"type\": \"boolean\",\n \"description\": \"include 24hr price change, default: false\"\n },\n \"include_24hr_vol\": {\n \"type\": \"boolean\",\n \"description\": \"include 24hr volume, default: false\"\n },\n \"include_market_cap\": {\n \"type\": \"boolean\",\n \"description\": \"include market capitalization, default: false\"\n },\n \"include_total_reserve_in_usd\": {\n \"type\": \"boolean\",\n \"description\": \"include total reserve in USD, default: false\"\n },\n \"mcap_fdv_fallback\": {\n \"type\": \"boolean\",\n \"description\": \"return FDV if market cap is not available, default: false\"\n }\n }\n }\n },\n {\n \"name\": \"search_all\",\n \"description\": \"This endpoint allows you to **search for coins, categories and markets listed on HIVE_DATASOURCE_ONE**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"query\": {\n \"type\": \"string\",\n \"description\": \"search query\"\n }\n }\n }\n },\n {\n \"name\": \"get_trending\",\n \"description\": \"This endpoint allows you **query trending search coins, NFTs and categories on HIVE_DATASOURCE_ONE in the last 24 hours**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"show_max\": {\n \"type\": \"string\",\n \"description\": \"show max number of results available for the given type <br> Available values: `coins`, `nfts`, `categories` <br> Example: `coins` or `coins,nfts,categories`\"\n }\n }\n }\n },\n {\n \"name\": \"get_price\",\n \"description\": \"This endpoint allows you to **query the prices of one or more coins by using their unique Coin API IDs**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"vs_currencies\": {\n \"type\": \"string\",\n \"description\": \"target currency of coins, comma-separated if querying more than 1 currency. <br> *refers to [`/simple/supported_vs_currencies`](/reference/simple-supported-currencies).\"\n },\n \"ids\": {\n \"type\": \"string\",\n \"description\": \"coins' IDs, comma-separated if querying more than 1 coin. <br> *refers to [`/coins/list`](/reference/coins-list).\"\n },\n \"include_24hr_change\": {\n \"type\": \"boolean\",\n \"description\": \"include 24hr change, default: false\"\n },\n \"include_24hr_vol\": {\n \"type\": \"boolean\",\n \"description\": \"include 24hr volume, default: false\"\n },\n \"include_last_updated_at\": {\n \"type\": \"boolean\",\n \"description\": \"include last updated price time in UNIX, default: false\"\n },\n \"include_market_cap\": {\n \"type\": \"boolean\",\n \"description\": \"include market capitalization, default: false\"\n },\n \"include_tokens\": {\n \"type\": \"string\",\n \"description\": \"for `symbols` lookups, specify `all` to include all matching tokens <br> Default `top` returns top-ranked tokens (by market cap or volume)\",\n \"enum\": [\n \"top\",\n \"all\"\n ]\n },\n \"names\": {\n \"type\": \"string\",\n \"description\": \"coins' names, comma-separated if querying more than 1 coin.\"\n },\n \"precision\": {\n \"type\": \"string\",\n \"description\": \"decimal place for currency price value\",\n \"enum\": [\n \"full\",\n \"0\",\n \"1\",\n \"2\",\n \"3\",\n \"4\",\n \"5\",\n \"6\",\n \"7\",\n \"8\",\n \"9\",\n \"10\",\n \"11\",\n \"12\",\n \"13\",\n \"14\",\n \"15\",\n \"16\",\n \"17\",\n \"18\"\n ]\n },\n \"symbols\": {\n \"type\": \"string\",\n \"description\": \"coins' symbols, comma-separated if querying more than 1 coin.\"\n }\n }\n }\n },\n {\n \"name\": \"get_supported_currencies\",\n \"description\": \"This endpoint allows you to **query all the supported currencies on HIVE_DATASOURCE_ONE**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_token_price_by_contract\",\n \"description\": \"This endpoint allows you to **query one or more token prices using their token contract addresses**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"id\": {\n \"type\": \"string\"\n },\n \"contract_addresses\": {\n \"type\": \"string\",\n \"description\": \"the contract addresses of tokens, comma-separated if querying more than 1 token's contract address\"\n },\n \"vs_currencies\": {\n \"type\": \"string\",\n \"description\": \"target currency of coins, comma-separated if querying more than 1 currency. <br> *refers to [`/simple/supported_vs_currencies`](/reference/simple-supported-currencies).\"\n },\n \"include_24hr_change\": {\n \"type\": \"boolean\",\n \"description\": \"include 24hr change <br> default: false\"\n },\n \"include_24hr_vol\": {\n \"type\": \"boolean\",\n \"description\": \"include 24hr volume, default: false\"\n },\n \"include_last_updated_at\": {\n \"type\": \"boolean\",\n \"description\": \"include last updated price time in UNIX , default: false\"\n },\n \"include_market_cap\": {\n \"type\": \"boolean\",\n \"description\": \"include market capitalization, default: false\"\n },\n \"precision\": {\n \"type\": \"string\",\n \"description\": \"decimal place for currency price value\",\n \"enum\": [\n \"full\",\n \"0\",\n \"1\",\n \"2\",\n \"3\",\n \"4\",\n \"5\",\n \"6\",\n \"7\",\n \"8\",\n \"9\",\n \"10\",\n \"11\",\n \"12\",\n \"13\",\n \"14\",\n \"15\",\n \"16\",\n \"17\",\n \"18\"\n ]\n }\n }\n }\n },\n {\n \"name\": \"get_coin_tickers\",\n \"description\": \"This endpoint allows you to **query the coin tickers on both centralized exchange (CEX) and decentralized exchange (DEX) based on a particular coin ID**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"id\": {\n \"type\": \"string\",\n \"description\": \"coin id (use /coins/list endpoint to get the coin id)\"\n },\n \"exchange_ids\": {\n \"type\": \"string\",\n \"description\": \"filter results by exchange_ids (comma-separated if querying more than 1 exchange)\"\n },\n \"include_exchange_logo\": {\n \"type\": \"boolean\",\n \"description\": \"flag to show exchange logo, default: false\"\n },\n \"page\": {\n \"type\": \"integer\",\n \"description\": \"page through results, default: 1\"\n },\n \"order\": {\n \"type\": \"string\",\n \"description\": \"valid values: trust_score_desc (default), trust_score_asc, volume_desc\"\n },\n \"depth\": {\n \"type\": \"boolean\",\n \"description\": \"flag to show 2% orderbook depth, default: false\"\n }\n },\n \"required\": [\n \"id\"\n ]\n }\n },\n {\n \"name\": \"get_coin_historical_chart\",\n \"description\": \"This endpoint allows you to **get the historical chart data of a coin including time in UNIX, price, market cap and 24hr volume based on particular coin ID**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"id\": {\n \"type\": \"string\",\n \"description\": \"coin id (use /coins/list endpoint to get the coin id)\"\n },\n \"vs_currency\": {\n \"type\": \"string\",\n \"description\": \"target currency of coins (usd, eur, jpy, etc.)\"\n },\n \"days\": {\n \"type\": \"string\",\n \"description\": \"data up to number of days ago (1/7/14/30/90/180/365/max)\"\n },\n \"interval\": {\n \"type\": \"string\",\n \"description\": \"data interval. Automatically calculated, or specify 5m, hourly (Enterprise only)\",\n \"enum\": [\n \"5m\",\n \"hourly\"\n ]\n },\n \"precision\": {\n \"type\": \"string\",\n \"description\": \"decimal place for currency price value\",\n \"enum\": [\n \"full\",\n \"0\",\n \"1\",\n \"2\",\n \"3\",\n \"4\",\n \"5\",\n \"6\",\n \"7\",\n \"8\",\n \"9\",\n \"10\",\n \"11\",\n \"12\",\n \"13\",\n \"14\",\n \"15\",\n \"16\",\n \"17\",\n \"18\"\n ]\n }\n },\n \"required\": [\n \"id\",\n \"vs_currency\",\n \"days\"\n ]\n }\n },\n {\n \"name\": \"get_categories_market_data\",\n \"description\": \"This endpoint allows you to **query all the coins categories with market data (market cap, volume, ...) on HIVE_DATASOURCE_ONE**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"order\": {\n \"type\": \"string\",\n \"description\": \"sort results by field\"\n }\n }\n }\n },\n {\n \"name\": \"get_exchanges\",\n \"description\": \"This endpoint allows you to **query all the supported exchanges with exchanges' data (ID, name, country, ...) that have active trading volumes on HIVE_DATASOURCE_ONE**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"per_page\": {\n \"type\": \"integer\",\n \"description\": \"total results per page, default: 100\"\n },\n \"page\": {\n \"type\": \"integer\",\n \"description\": \"page through results, default: 1\"\n }\n }\n }\n },\n {\n \"name\": \"get_exchanges_list\",\n \"description\": \"This endpoint allows you to **query all the exchanges with ID and name**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_exchange\",\n \"description\": \"This endpoint allows you to **query exchange's data (name, year established, country, ...), exchange volume in BTC and top 100 tickers based on exchange's ID**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"id\": {\n \"type\": \"string\",\n \"description\": \"exchange id (use /exchanges/list endpoint to get exchange id)\"\n },\n \"dex_pair_format\": {\n \"type\": \"string\",\n \"description\": \"set to symbol to display DEX pair base and target as symbols, default: contract_address\",\n \"enum\": [\n \"contract_address\",\n \"symbol\"\n ]\n }\n },\n \"required\": [\n \"id\"\n ]\n }\n },\n {\n \"name\": \"get_exchange_tickers\",\n \"description\": \"This endpoint allows you to **query exchange's tickers based on exchange's ID**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"id\": {\n \"type\": \"string\",\n \"description\": \"exchange id (use /exchanges/list endpoint to get exchange id)\"\n },\n \"coin_ids\": {\n \"type\": \"string\",\n \"description\": \"filter results by coin_ids (comma-separated if querying more than 1 coin)\"\n },\n \"include_exchange_logo\": {\n \"type\": \"boolean\",\n \"description\": \"flag to show exchange logo, default: false\"\n },\n \"page\": {\n \"type\": \"integer\",\n \"description\": \"page through results, default: 1\"\n },\n \"depth\": {\n \"type\": \"boolean\",\n \"description\": \"flag to show 2% orderbook depth, default: false\"\n },\n \"order\": {\n \"type\": \"string\",\n \"description\": \"valid values: trust_score_desc (default), trust_score_asc, volume_desc, base_target\"\n },\n \"dex_pair_format\": {\n \"type\": \"string\",\n \"description\": \"set to symbol to display DEX pair base and target as symbols, default: contract_address\",\n \"enum\": [\n \"contract_address\",\n \"symbol\"\n ]\n }\n },\n \"required\": [\n \"id\"\n ]\n }\n },\n {\n \"name\": \"get_exchange_volume_chart\",\n \"description\": \"This endpoint allows you to **query the historical volume chart data with time in UNIX and trading volume data in BTC based on exchange's ID**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"id\": {\n \"type\": \"string\",\n \"description\": \"exchange id (use /exchanges/list endpoint to get exchange id)\"\n },\n \"days\": {\n \"type\": \"integer\",\n \"description\": \"data up to number of days ago (1/7/14/30/90/180/365)\"\n }\n },\n \"required\": [\n \"id\",\n \"days\"\n ]\n }\n },\n {\n \"name\": \"get_exchange_volume_chart_range\",\n \"description\": \"This endpoint allows you to **query the historical volume chart data within a specific time range with time in UNIX and trading volume data in BTC based on exchange's ID**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"id\": {\n \"type\": \"string\",\n \"description\": \"exchange id (use /exchanges/list endpoint to get exchange id)\"\n },\n \"from\": {\n \"type\": \"integer\",\n \"description\": \"from date in UNIX timestamp\"\n },\n \"to\": {\n \"type\": \"integer\",\n \"description\": \"to date in UNIX timestamp\"\n }\n },\n \"required\": [\n \"id\",\n \"from\",\n \"to\"\n ]\n }\n },\n {\n \"name\": \"get_derivatives_tickers\",\n \"description\": \"This endpoint allows you to **query all the tickers from derivatives exchanges on HIVE_DATASOURCE_ONE**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"include_tickers\": {\n \"type\": \"string\",\n \"description\": \"include all or unexpired tickers, default: unexpired\",\n \"enum\": [\n \"all\",\n \"unexpired\"\n ]\n }\n }\n }\n },\n {\n \"name\": \"get_derivatives_exchanges\",\n \"description\": \"This endpoint allows you to **query all the derivatives exchanges with related data (ID, name, open interest, ...) on HIVE_DATASOURCE_ONE**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"order\": {\n \"type\": \"string\",\n \"description\": \"sort results by field\"\n },\n \"per_page\": {\n \"type\": \"integer\",\n \"description\": \"total results per page, default: 100\"\n },\n \"page\": {\n \"type\": \"integer\",\n \"description\": \"page through results, default: 1\"\n }\n }\n }\n },\n {\n \"name\": \"get_derivatives_exchange\",\n \"description\": \"This endpoint allows you to **query the derivatives exchange's related data (ID, name, open interest, ...) based on the exchanges' ID**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"id\": {\n \"type\": \"string\",\n \"description\": \"derivatives exchange id\"\n },\n \"include_tickers\": {\n \"type\": \"string\",\n \"description\": \"include all or unexpired tickers, leave blank to omit\",\n \"enum\": [\n \"all\",\n \"unexpired\"\n ]\n }\n },\n \"required\": [\n \"id\"\n ]\n }\n },\n {\n \"name\": \"get_derivatives_exchanges_list\",\n \"description\": \"This endpoint allows you to **query all the derivatives exchanges with ID and name**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_btc_exchange_rates\",\n \"description\": \"This endpoint allows you to **query BTC exchange rates with other currencies**. You may use this endpoint to convert the response data, which is originally in BTC, to other currencies.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_global_defi\",\n \"description\": \"This endpoint allows you **query top 100 cryptocurrency global decentralized finance (DeFi) data including DeFi market cap, trading volume**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_global_market_cap_chart\",\n \"description\": \"This endpoint allows you to **query global market cap chart data**. Get historical global market cap chart data with timestamps.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"days\": {\n \"type\": \"string\",\n \"description\": \"Data up to number of days ago (1/7/14/30/90/180/365/max)\",\n \"enum\": [\n \"1\",\n \"7\",\n \"14\",\n \"30\",\n \"90\",\n \"180\",\n \"365\",\n \"max\"\n ]\n },\n \"vs_currency\": {\n \"type\": \"string\",\n \"description\": \"Target currency of market cap data (default: usd)\",\n \"default\": \"usd\"\n }\n },\n \"required\": [\n \"days\"\n ]\n }\n },\n {\n \"name\": \"get_companies_treasury\",\n \"description\": \"This endpoint allows you to **query public companies Bitcoin or Ethereum holdings**. Get detailed information about public companies and their cryptocurrency treasury holdings.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"coin_id\": {\n \"type\": \"string\",\n \"description\": \"Target cryptocurrency (bitcoin or ethereum)\",\n \"enum\": [\n \"bitcoin\",\n \"ethereum\"\n ]\n }\n },\n \"required\": [\n \"coin_id\"\n ]\n }\n },\n {\n \"name\": \"get_network_trending_pools\",\n \"description\": \"This endpoint allows you to **query the trending pools based on the provided network**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"network\": {\n \"type\": \"string\",\n \"description\": \"Network ID (refers to /onchain/networks)\"\n },\n \"duration\": {\n \"type\": \"string\",\n \"description\": \"Duration to sort trending list by (Default: 24h)\",\n \"enum\": [\n \"5m\",\n \"1h\",\n \"6h\",\n \"24h\"\n ],\n \"default\": \"24h\"\n },\n \"include\": {\n \"type\": \"string\",\n \"description\": \"Attributes to include, comma-separated (base_token, quote_token, dex)\"\n },\n \"page\": {\n \"type\": \"integer\",\n \"description\": \"Page through results (Default: 1)\",\n \"default\": 1\n }\n },\n \"required\": [\n \"network\"\n ]\n }\n },\n {\n \"name\": \"get_multi_pools\",\n \"description\": \"This endpoint allows you to **query multiple pools data based on the provided pool addresses on a network**. You can query up to 30 pool addresses per request.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"network\": {\n \"type\": \"string\",\n \"description\": \"Network ID (refers to /onchain/networks)\"\n },\n \"addresses\": {\n \"type\": \"string\",\n \"description\": \"Pool addresses, comma-separated (up to 30 addresses)\"\n },\n \"include\": {\n \"type\": \"string\",\n \"description\": \"Attributes to include, comma-separated (base_token, quote_token, dex)\"\n }\n },\n \"required\": [\n \"network\",\n \"addresses\"\n ]\n }\n },\n {\n \"name\": \"get_multi_tokens\",\n \"description\": \"This endpoint allows you to **query multiple tokens data based on the provided token contract addresses on a network**. You can query up to 50 contract addresses per request (Paid plan subscribers only).\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"network\": {\n \"type\": \"string\",\n \"description\": \"Network ID (refers to /onchain/networks)\"\n },\n \"addresses\": {\n \"type\": \"string\",\n \"description\": \"Token contract addresses, comma-separated (up to 50 addresses)\"\n },\n \"include\": {\n \"type\": \"string\",\n \"description\": \"Attributes to include (top_pools)\",\n \"enum\": [\n \"top_pools\"\n ]\n }\n },\n \"required\": [\n \"network\",\n \"addresses\"\n ]\n }\n },\n {\n \"name\": \"get_recently_updated_tokens\",\n \"description\": \"This endpoint allows you to **query the most recently updated tokens information (metadata) across all networks**. Returns tokens with recently updated metadata such as socials, websites, descriptions, etc.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"page\": {\n \"type\": \"integer\",\n \"description\": \"Page through results (Default: 1)\",\n \"default\": 1\n },\n \"include\": {\n \"type\": \"string\",\n \"description\": \"Attributes to include, comma-separated (network)\",\n \"enum\": [\n \"network\"\n ]\n }\n }\n }\n },\n {\n \"name\": \"get_nft_tickers\",\n \"description\": \"Execute the get_nft_tickers tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_nft_by_contract\",\n \"description\": \"Execute the get_nft_by_contract tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_nft_markets\",\n \"description\": \"Execute the get_nft_markets tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_circulating_supply_chart\",\n \"description\": \"Execute the get_circulating_supply_chart tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_circulating_supply_chart_range\",\n \"description\": \"Execute the get_circulating_supply_chart_range tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_coin_ohlc\",\n \"description\": \"Execute the get_coin_ohlc tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_total_supply_chart\",\n \"description\": \"Execute the get_total_supply_chart tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_total_supply_chart_range\",\n \"description\": \"Execute the get_total_supply_chart_range tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_entities_list\",\n \"description\": \"Execute the get_entities_list tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_treasury_by_entity\",\n \"description\": \"Execute the get_treasury_by_entity tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_treasury_holding_chart\",\n \"description\": \"Execute the get_treasury_holding_chart tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_treasury_transaction_history\",\n \"description\": \"Execute the get_treasury_transaction_history tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_token_lists\",\n \"description\": \"Execute the get_token_lists tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_onchain_token_top_traders\",\n \"description\": \"Execute the get_onchain_token_top_traders tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_nft_contract_market_chart\",\n \"description\": \"Execute the get_nft_contract_market_chart tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_contract_market_chart\",\n \"description\": \"Execute the get_contract_market_chart tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_defi_protocols\",\n \"description\": \"Get a list of DeFi protocols with TVL metrics. Supports pagination with limit (max 100) and offset parameters. Default limit is 50.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Maximum number of protocols to return (default: 200, max: 1000)\"\n }\n }\n }\n },\n {\n \"name\": \"get_defi_protocol\",\n \"description\": \"Get detailed information about a specific DeFi protocol including historical TVL data\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"protocol\": {\n \"type\": \"string\",\n \"description\": \"Protocol slug (e.g., \\\"uniswap\\\", \\\"aave\\\", \\\"compound\\\")\"\n }\n },\n \"required\": [\n \"protocol\"\n ]\n }\n },\n {\n \"name\": \"get_protocol_tvl\",\n \"description\": \"Get current TVL (Total Value Locked) for a specific protocol as a single number\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"protocol\": {\n \"type\": \"string\",\n \"description\": \"Protocol slug (e.g., \\\"uniswap\\\", \\\"aave\\\", \\\"compound\\\")\"\n }\n },\n \"required\": [\n \"protocol\"\n ]\n }\n },\n {\n \"name\": \"get_protocol_fees\",\n \"description\": \"Get fee data for a specific protocol\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"protocol\": {\n \"type\": \"string\",\n \"description\": \"Protocol name\"\n }\n },\n \"required\": [\n \"protocol\"\n ]\n }\n },\n {\n \"name\": \"get_chains\",\n \"description\": \"Get a list of all blockchain networks with their current TVL\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Maximum number of chains to return (default: 100)\"\n }\n }\n }\n },\n {\n \"name\": \"get_chain_tvl_history\",\n \"description\": \"Get historical TVL data for a specific blockchain\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"chain\": {\n \"type\": \"string\",\n \"description\": \"Chain name (e.g., \\\"ethereum\\\", \\\"bsc\\\", \\\"polygon\\\")\"\n }\n },\n \"required\": [\n \"chain\"\n ]\n }\n },\n {\n \"name\": \"get_chains_tvl_history\",\n \"description\": \"Get historical TVL data for all chains\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_yield_pools\",\n \"description\": \"Get yield pools with APY data. Supports pagination (limit max 100, offset) and filtering by minTvl. Default limit is 50.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Maximum number of pools to return (default: 200, max: 1000)\",\n \"minimum\": 1,\n \"maximum\": 1000,\n \"default\": 200\n }\n }\n }\n },\n {\n \"name\": \"get_yield_pool\",\n \"description\": \"Get detailed information about a specific yield pool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"poolId\": {\n \"type\": \"string\",\n \"description\": \"Pool identifier (get from yield pools list)\"\n }\n },\n \"required\": [\n \"poolId\"\n ]\n }\n },\n {\n \"name\": \"get_yield_pool_chart\",\n \"description\": \"Get historical chart data for a specific yield pool showing APY and TVL over time\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"poolId\": {\n \"type\": \"string\",\n \"description\": \"Pool identifier (get from yield pools list)\"\n }\n },\n \"required\": [\n \"poolId\"\n ]\n }\n },\n {\n \"name\": \"get_stablecoins\",\n \"description\": \"Get all stablecoins with their market cap and chain distribution. Results are limited to prevent oversized responses.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Maximum number of stablecoins to return (default: 100, max: 500)\",\n \"minimum\": 1,\n \"maximum\": 500,\n \"default\": 100\n }\n }\n }\n },\n {\n \"name\": \"get_stablecoin_chains\",\n \"description\": \"Get list of all chains with stablecoin data and their TVL.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_stablecoin_charts_global\",\n \"description\": \"Get historical chart data for all stablecoins showing market cap over time. Response is limited to prevent MCP timeouts.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Maximum number of recent data points to return (default: 30, max: 100)\",\n \"minimum\": 1,\n \"maximum\": 100,\n \"default\": 30\n }\n }\n }\n },\n {\n \"name\": \"get_stablecoin_charts_by_chain\",\n \"description\": \"Get historical chart data for stablecoins on a specific blockchain. Response is limited to prevent MCP timeouts.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"chain\": {\n \"type\": \"string\",\n \"description\": \"Chain name (e.g., \\\"ethereum\\\", \\\"bsc\\\", \\\"polygon\\\")\"\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Maximum number of recent data points to return (default: 30, max: 100)\",\n \"minimum\": 1,\n \"maximum\": 100,\n \"default\": 30\n }\n },\n \"required\": [\n \"chain\"\n ]\n }\n },\n {\n \"name\": \"get_stablecoin_prices\",\n \"description\": \"Get current prices of stablecoins. Response is limited to prevent MCP timeouts.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Maximum number of recent time entries to return (default: 5, max: 20)\",\n \"minimum\": 1,\n \"maximum\": 20,\n \"default\": 5\n }\n }\n }\n },\n {\n \"name\": \"stablecoin_data_by_id\",\n \"description\": \"Get stablecoin data (DISABLED for MCP: 14MB response causes timeouts). Returns error message with alternatives.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"stablecoinId\": {\n \"type\": \"string\",\n \"description\": \"Stablecoin ID from the stablecoins list (e.g., \\\"1\\\" for Tether)\"\n }\n },\n \"required\": [\n \"stablecoinId\"\n ]\n }\n },\n {\n \"name\": \"get_options_overview\",\n \"description\": \"Get options trading overview data across all chains and protocols with historical charts\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_options_by_chain\",\n \"description\": \"Get options trading data for a specific blockchain\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"chain\": {\n \"type\": \"string\",\n \"description\": \"Chain name (e.g., \\\"ethereum\\\", \\\"arbitrum\\\", \\\"polygon\\\")\"\n }\n },\n \"required\": [\n \"chain\"\n ]\n }\n },\n {\n \"name\": \"get_options_protocol\",\n \"description\": \"Get detailed summary for a specific options trading protocol\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"protocol\": {\n \"type\": \"string\",\n \"description\": \"Protocol slug (e.g., \\\"hegic\\\", \\\"opyn\\\", \\\"ribbon\\\")\"\n }\n },\n \"required\": [\n \"protocol\"\n ]\n }\n },\n {\n \"name\": \"get_dex_volumes\",\n \"description\": \"Get DEX volumes overview across all protocols\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Maximum number of DEXs to return (default: 100, max: 500)\"\n }\n }\n }\n },\n {\n \"name\": \"get_dex_volume\",\n \"description\": \"Get volume data for a specific DEX with key metrics and recent chart data\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"dexName\": {\n \"type\": \"string\",\n \"description\": \"DEX name (e.g., \\\"uniswap\\\", \\\"sushiswap\\\")\"\n }\n },\n \"required\": [\n \"dexName\"\n ]\n }\n },\n {\n \"name\": \"get_dex_volumes_by_chain\",\n \"description\": \"Get DEX volumes overview for a specific blockchain with historical data\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"chain\": {\n \"type\": \"string\",\n \"description\": \"Chain name (e.g., \\\"ethereum\\\", \\\"bsc\\\", \\\"polygon\\\", \\\"arbitrum\\\")\"\n }\n },\n \"required\": [\n \"chain\"\n ]\n }\n },\n {\n \"name\": \"get_fees_overview\",\n \"description\": \"Get protocol fees overview. Supports pagination (limit max 100, offset) and filtering by minFees. Default limit is 50.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Maximum number of protocols to return (default: 200, max: 1000)\",\n \"minimum\": 1,\n \"maximum\": 1000\n }\n }\n }\n },\n {\n \"name\": \"get_chain_fees\",\n \"description\": \"Get fees overview for a specific blockchain with historical data and protocol breakdown\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"chain\": {\n \"type\": \"string\",\n \"description\": \"Chain name (e.g., \\\"ethereum\\\", \\\"bsc\\\", \\\"polygon\\\", \\\"arbitrum\\\")\"\n }\n },\n \"required\": [\n \"chain\"\n ]\n }\n },\n {\n \"name\": \"defillama_get_bridges\",\n \"description\": \"Get comprehensive list of all cross-chain bridges with metrics including total value locked, volume, and supported chains.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"defillama_get_bridge_by_id\",\n \"description\": \"Get detailed information about a specific bridge including supported tokens, chains, and historical volume data.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"defillama_get_bridge_volume\",\n \"description\": \"Get bridge volume data for a specific chain showing inflows, outflows, and net flows across different bridges.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"defillama_get_hacks\",\n \"description\": \"Get comprehensive list of DeFi hacks, exploits, and security incidents with details on amounts lost, affected protocols, and attack vectors.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"defillama_get_treasuries\",\n \"description\": \"Get list of all protocol treasuries showing their holdings, value in USD, and asset composition across chains.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"defillama_get_treasury\",\n \"description\": \"Get detailed treasury information for a specific protocol including token holdings, historical changes, and chain distribution.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"defillama_get_raises\",\n \"description\": \"Get comprehensive list of all protocol funding rounds including amounts raised, investors, valuation, and funding categories.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"defillama_get_emissions\",\n \"description\": \"Get token emission and unlock schedules for all protocols including vesting events, cliff unlocks, and circulation supply changes.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_protocol_fee_summary\",\n \"description\": \"Get comprehensive fee summary for a specific protocol including revenue breakdown, fee tiers, and historical fee data.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_current_prices\",\n \"description\": \"Get current token prices from DeFiLlama. Supports multiple tokens across different chains with price aggregation.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_historical_prices\",\n \"description\": \"Get historical token prices at a specific timestamp from DeFiLlama. Useful for portfolio valuations and historical analysis.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_batch_historical_prices\",\n \"description\": \"Get historical prices for multiple tokens at multiple timestamps in a single request. Efficient for bulk historical data retrieval.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_price_chart\",\n \"description\": \"Get price chart data for a token over a time range. Returns timestamped price points for charting and analysis.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_price_percentage_change\",\n \"description\": \"Get percentage price change for tokens over specified time periods. Useful for tracking price movements.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_first_prices\",\n \"description\": \"Get the earliest recorded price for tokens. Useful for determining when tokens were first tracked.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_block_by_timestamp\",\n \"description\": \"Get the block number closest to a given timestamp for a specific chain. Useful for historical blockchain queries.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_stablecoin_dominance\",\n \"description\": \"Get stablecoin dominance metrics showing market share and distribution across chains and stablecoin types.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_defi_oracles\",\n \"description\": \"Get list of DeFi oracles with their TVL secured and protocols using them.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_defi_forks\",\n \"description\": \"Get list of protocol forks with TVL data showing forked-from relationships in DeFi.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_defi_categories\",\n \"description\": \"Get DeFi protocol categories with aggregated TVL data for each category.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_defi_entities\",\n \"description\": \"Get list of DeFi entities (companies/organizations) with their associated protocols and combined TVL.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_wallet_history\",\n \"description\": \"Get transaction history for a user address\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"id\": {\n \"type\": \"string\",\n \"description\": \"User address (Single wallet address only)\",\n \"example\": \"0x1234...\"\n },\n \"chain_id\": {\n \"type\": \"string\",\n \"description\": \"Chain ID (e.g., eth, bsc, xdai)\",\n \"example\": \"eth\"\n },\n \"token_id\": {\n \"type\": \"string\",\n \"description\": \"Token ID to filter history (optional)\",\n \"example\": \"0x55d3...\"\n },\n \"start_time\": {\n \"type\": \"number\",\n \"description\": \"Timestamp, return history earlier than this time (optional)\",\n \"example\": 1693958400\n },\n \"page_count\": {\n \"type\": \"number\",\n \"description\": \"Number of entries to return (max 20)\",\n \"example\": 10\n }\n },\n \"required\": [\n \"id\",\n \"chain_id\"\n ]\n }\n },\n {\n \"name\": \"get_wallet_balance\",\n \"description\": \"Get net assets on multiple chains or single chain\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"id\": {\n \"type\": \"string\",\n \"description\": \"User address (Single wallet address only)\",\n \"example\": \"0x1234...\"\n },\n \"chain_id\": {\n \"type\": \"string\",\n \"description\": \"Chain ID\",\n \"example\": \"eth\"\n },\n \"is_all\": {\n \"type\": \"boolean\",\n \"description\": \"If true, all tokens are returned\",\n \"default\": true\n }\n },\n \"required\": [\n \"id\",\n \"chain_id\"\n ]\n }\n },\n {\n \"name\": \"get_wallet_token_balances\",\n \"description\": \"Get token balances on all supported chains\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"id\": {\n \"type\": \"string\",\n \"description\": \"User address (Single wallet address only)\",\n \"example\": \"0x1234...\"\n },\n \"is_all\": {\n \"type\": \"boolean\",\n \"description\": \"If true, all tokens are returned\",\n \"default\": true\n },\n \"chain_ids\": {\n \"type\": \"string\",\n \"description\": \"Comma-separated list of chain IDs\",\n \"example\": \"eth,bsc,xdai\"\n }\n },\n \"required\": [\n \"id\"\n ]\n }\n },\n {\n \"name\": \"get_wallet_protocol_positions\",\n \"description\": \"Get user positions in a protocol\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"protocol_id\": {\n \"type\": \"string\",\n \"description\": \"Protocol ID (e.g., bsc_pancakeswap, curve, uniswap)\",\n \"example\": \"uniswap\"\n },\n \"id\": {\n \"type\": \"string\",\n \"description\": \"User address (Single wallet address only)\",\n \"example\": \"0x1234...\"\n }\n },\n \"required\": [\n \"protocol_id\",\n \"id\"\n ]\n }\n },\n {\n \"name\": \"get_wallet_defi_positions\",\n \"description\": \"Get user portfolios on a chain in protocol\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"chain_id\": {\n \"type\": \"string\",\n \"description\": \"Chain ID (e.g., eth, bsc, xdai)\",\n \"example\": \"eth\"\n },\n \"id\": {\n \"type\": \"string\",\n \"description\": \"User address (Single wallet address only)\",\n \"example\": \"0x1234...\"\n }\n },\n \"required\": [\n \"chain_id\",\n \"id\"\n ]\n }\n },\n {\n \"name\": \"get_wallet_defi_positions_all_chains\",\n \"description\": \"Get user portfolios on all supported chains\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"id\": {\n \"type\": \"string\",\n \"description\": \"User address (Single wallet address only)\",\n \"example\": \"0x1234...\"\n },\n \"chain_ids\": {\n \"type\": \"string\",\n \"description\": \"List of chain IDs\",\n \"example\": \"eth,bsc,xdai\"\n }\n },\n \"required\": [\n \"id\"\n ]\n }\n },\n {\n \"name\": \"get_wallet_nfts\",\n \"description\": \"Get user NFT list for a specific chain\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"id\": {\n \"type\": \"string\",\n \"description\": \"User address (Single wallet address only)\",\n \"example\": \"0x1234...\"\n },\n \"chain_id\": {\n \"type\": \"string\",\n \"description\": \"Chain ID\",\n \"example\": \"eth\"\n },\n \"is_all\": {\n \"type\": \"boolean\",\n \"description\": \"If false, only verified collections are returned\",\n \"default\": true\n }\n },\n \"required\": [\n \"id\",\n \"chain_id\"\n ]\n }\n },\n {\n \"name\": \"get_wallet_all_nfts\",\n \"description\": \"Get user NFT list across all chains\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"id\": {\n \"type\": \"string\",\n \"description\": \"User address (Single wallet address only)\",\n \"example\": \"0x1234...\"\n },\n \"is_all\": {\n \"type\": \"boolean\",\n \"description\": \"If true, all tokens are returned\",\n \"default\": true\n },\n \"chain_ids\": {\n \"type\": \"string\",\n \"description\": \"List of chain IDs\",\n \"example\": \"eth,bsc,xdai\"\n }\n },\n \"required\": [\n \"id\"\n ]\n }\n },\n {\n \"name\": \"explain_transaction\",\n \"description\": \"Get detailed explanation of a transaction\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"tx_id\": {\n \"type\": \"string\",\n \"description\": \"Transaction hash\",\n \"example\": \"0xabc123...\"\n }\n },\n \"required\": [\n \"tx_id\"\n ]\n }\n },\n {\n \"name\": \"get_gas_prices\",\n \"description\": \"Get gas prices for a specific chain\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"chain_id\": {\n \"type\": \"string\",\n \"description\": \"Chain ID (e.g., eth, bsc, xdai)\",\n \"example\": \"eth\"\n }\n },\n \"required\": [\n \"chain_id\"\n ]\n }\n },\n {\n \"name\": \"get_nft_collection\",\n \"description\": \"Get NFT list of a specific collection\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"id\": {\n \"type\": \"string\",\n \"description\": \"Contract address of NFT\",\n \"example\": \"0x1234...\"\n },\n \"chain_id\": {\n \"type\": \"string\",\n \"description\": \"Chain ID\",\n \"example\": \"eth\"\n },\n \"start\": {\n \"type\": \"integer\",\n \"description\": \"Offset, default 0, max 100000\",\n \"default\": 0\n },\n \"limit\": {\n \"type\": \"integer\",\n \"description\": \"Limit size, default 20, max 100\",\n \"default\": 20\n }\n },\n \"required\": [\n \"id\",\n \"chain_id\"\n ]\n }\n },\n {\n \"name\": \"get_protocol_info\",\n \"description\": \"Get detailed information about a protocol\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"id\": {\n \"type\": \"string\",\n \"description\": \"Protocol ID (e.g., bsc_pancakeswap, curve, uniswap)\",\n \"example\": \"uniswap\"\n }\n },\n \"required\": [\n \"id\"\n ]\n }\n },\n {\n \"name\": \"get_protocols\",\n \"description\": \"Get list of protocols on a chain\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"chain_id\": {\n \"type\": \"string\",\n \"description\": \"Chain ID (e.g., eth, bsc, xdai)\",\n \"example\": \"eth\"\n }\n },\n \"required\": [\n \"chain_id\"\n ]\n }\n },\n {\n \"name\": \"get_supported_chains\",\n \"description\": \"Get list of all blockchain chains supported by DeBank, including chain IDs, names, and native tokens.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_chain_details\",\n \"description\": \"Get detailed information about a specific blockchain chain including name, native token, explorer URL, and wrapped token address.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_debank_token_info\",\n \"description\": \"Get detailed token information including price, symbol, decimals, and protocol association on a specific chain.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_tokens_by_ids\",\n \"description\": \"Get information for multiple tokens at once by providing a list of token IDs on a specific chain.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_debank_token_price_history\",\n \"description\": \"Get historical price data for a token on a specific chain over a given time range.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_wallet_active_chains\",\n \"description\": \"Get list of chains where a wallet address has had activity or holds assets.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_wallet_token_approvals\",\n \"description\": \"Get list of token approvals (allowances) granted by a wallet address, useful for security auditing.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"simulate_transaction\",\n \"description\": \"Simulate a transaction before execution to preview balance changes, gas costs, and potential risks.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_debank_top_holders\",\n \"description\": \"Get top holders of a specific token including their balances and percentage of total supply.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_wallet_nft_approvals\",\n \"description\": \"Get list of NFT approvals granted by a wallet address, useful for security auditing of NFT permissions.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_wallet_chain_balance\",\n \"description\": \"Get wallet balance on a specific chain including USD value of all token holdings.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_portfolio_history\",\n \"description\": \"Get historical portfolio value curve across all chains for a wallet address over time.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_chain_portfolio_history\",\n \"description\": \"Get historical portfolio value curve for a specific chain for a wallet address over time.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_all_chain_history\",\n \"description\": \"Get transaction history across all chains for a wallet address with token transfer details.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_token_security\",\n \"description\": \"Get comprehensive token security analysis including: honeypot detection, ownership details, trading tax, slippage, holder distribution, liquidity status, contract verification, and other security metrics. Helps identify scams, rugpulls, and high-risk tokens.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"chainId\": {\n \"type\": \"string\",\n \"description\": \"The chain ID (1=Ethereum, 56=BSC, 137=Polygon, 42161=Arbitrum, 43114=Avalanche, 10=Optimism, 25=Cronos, 250=Fantom)\",\n \"example\": \"1\"\n },\n \"contract_addresses\": {\n \"type\": \"string\",\n \"description\": \"Token contract address (can be comma-separated for multiple)\",\n \"example\": \"0x3567aa22cd3ab9aEf23d7e18EE0D7cf16974d7e6\"\n }\n },\n \"required\": [\n \"chainId\",\n \"contract_addresses\"\n ]\n }\n },\n {\n \"name\": \"get_nft_security\",\n \"description\": \"Get NFT security and authenticity analysis including: malicious behavior detection, trading platform verification, metadata authenticity, contract risks (privileged_burn, transfer_without_approval, self_destruct), and collection clone detection. Helps identify fake NFTs and scam collections.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"chainId\": {\n \"type\": \"string\",\n \"description\": \"The chain ID (1=Ethereum, 56=BSC, 137=Polygon, 42161=Arbitrum, 43114=Avalanche)\",\n \"example\": \"1\"\n },\n \"contract_addresses\": {\n \"type\": \"string\",\n \"description\": \"NFT contract address (can be comma-separated for multiple)\",\n \"example\": \"0xBC4CA0EdA7647A8aB7C2061c2E118A18a936f13D\"\n }\n },\n \"required\": [\n \"chainId\",\n \"contract_addresses\"\n ]\n }\n },\n {\n \"name\": \"check_malicious_address\",\n \"description\": \"Check if an address is malicious or associated with: scams, phishing, exploits, mixers, sanctioned entities, or other malicious activities. Returns cybercrime labels, blacklist status, and risk scores.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"chainId\": {\n \"type\": \"string\",\n \"description\": \"The chain ID (1=Ethereum, 56=BSC, 137=Polygon, 42161=Arbitrum)\",\n \"example\": \"1\"\n },\n \"address\": {\n \"type\": \"string\",\n \"description\": \"The address to check for malicious activity\",\n \"example\": \"0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb\"\n }\n },\n \"required\": [\n \"chainId\",\n \"address\"\n ]\n }\n },\n {\n \"name\": \"check_approval_security\",\n \"description\": \"Check security risks of token/NFT approval contracts including: contract verification status, malicious history, approval abuse potential, and whether the spender is a known phishing address or malicious contract.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"chainId\": {\n \"type\": \"string\",\n \"description\": \"The chain ID (1=Ethereum, 56=BSC, 137=Polygon)\",\n \"example\": \"1\"\n },\n \"contract_addresses\": {\n \"type\": \"string\",\n \"description\": \"Spender contract address to check\",\n \"example\": \"0x68b3465833fb72A70ecDF485E0e4C7bD8665Fc45\"\n }\n },\n \"required\": [\n \"chainId\",\n \"contract_addresses\"\n ]\n }\n },\n {\n \"name\": \"get_wallet_approvals\",\n \"description\": \"Get comprehensive security analysis of all token and NFT approvals for a user address, showing which contracts have spending permissions. Helps identify risky approvals, potential approval exploits, and malicious spenders. Returns approved amounts, spender addresses, risk levels, and security recommendations.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"chainId\": {\n \"type\": \"string\",\n \"description\": \"The chain ID (1=Ethereum, 56=BSC, 137=Polygon)\",\n \"example\": \"1\"\n },\n \"address\": {\n \"type\": \"string\",\n \"description\": \"User address to check approvals for\",\n \"example\": \"0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb\"\n }\n },\n \"required\": [\n \"chainId\",\n \"address\"\n ]\n }\n },\n {\n \"name\": \"check_dapp_security\",\n \"description\": \"Check security risks of a dApp by URL including: phishing detection, malicious contract interactions, audit status, and trust score. Helps users avoid malicious dApps and phishing sites.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"url\": {\n \"type\": \"string\",\n \"description\": \"The dApp URL to check\",\n \"example\": \"https://app.uniswap.org\"\n }\n },\n \"required\": [\n \"url\"\n ]\n }\n },\n {\n \"name\": \"check_phishing_site\",\n \"description\": \"Detect if a URL is a phishing site by checking against comprehensive phishing databases. Returns phishing status, similar legitimate sites, and risk indicators.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"url\": {\n \"type\": \"string\",\n \"description\": \"The URL to check for phishing\",\n \"example\": \"https://example-site.com\"\n }\n },\n \"required\": [\n \"url\"\n ]\n }\n },\n {\n \"name\": \"decode_abi\",\n \"description\": \"Decode ABI data to understand smart contract interactions, function calls, and parameters. Helps identify malicious transactions, understand approval details, and detect anomalies in contract calls.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"chainId\": {\n \"type\": \"string\",\n \"description\": \"The chain ID\",\n \"example\": \"1\"\n },\n \"contract_address\": {\n \"type\": \"string\",\n \"description\": \"Contract address\",\n \"example\": \"0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D\"\n },\n \"abi_data\": {\n \"type\": \"string\",\n \"description\": \"The ABI encoded data to decode\",\n \"example\": \"0xa9059cbb000000000000000000000000...\"\n }\n },\n \"required\": [\n \"chainId\",\n \"contract_address\",\n \"abi_data\"\n ]\n }\n },\n {\n \"name\": \"simulate_evm_transaction\",\n \"description\": \"Simulate an EVM transaction to detect security risks before signing. Returns balance changes, approval changes, gas estimation, and risk assessment. Essential for preventing phishing, token draining, and malicious contract interactions.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"chain_id\": {\n \"type\": \"string\",\n \"description\": \"Chain ID: 1 (Ethereum), 56 (BSC), 137 (Polygon), 42161 (Arbitrum)\",\n \"example\": \"1\"\n },\n \"from\": {\n \"type\": \"string\",\n \"description\": \"Sender wallet address (0x format)\",\n \"example\": \"0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb\"\n },\n \"to\": {\n \"type\": \"string\",\n \"description\": \"Recipient/contract address (0x format)\",\n \"example\": \"0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D\"\n },\n \"data\": {\n \"type\": \"string\",\n \"description\": \"Transaction calldata hex string starting with 0x\",\n \"example\": \"0x38ed1739...\"\n },\n \"value\": {\n \"type\": \"string\",\n \"description\": \"ETH value in wei (optional, default: 0)\"\n }\n },\n \"required\": [\n \"chain_id\",\n \"from\",\n \"to\",\n \"data\"\n ]\n }\n },\n {\n \"name\": \"simulate_solana_transaction\",\n \"description\": \"Simulate a Solana transaction to detect security risks before signing. Analyzes balance changes, program interactions, and risk indicators for base64-encoded Solana transactions.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"transaction\": {\n \"type\": \"string\",\n \"description\": \"Base64-encoded Solana transaction data\"\n }\n },\n \"required\": [\n \"transaction\"\n ]\n }\n },\n {\n \"name\": \"detect_rugpull\",\n \"description\": \"Detect potential rug-pull schemes for a token contract. Analyzes liquidity removal risks, ownership concentration, backdoor functions, and historical rug-pull patterns.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"chain_id\": {\n \"type\": \"string\",\n \"description\": \"Chain ID: 1 (Ethereum), 56 (BSC), 137 (Polygon)\",\n \"example\": \"1\"\n },\n \"contract_address\": {\n \"type\": \"string\",\n \"description\": \"Token contract address (0x format)\"\n }\n },\n \"required\": [\n \"chain_id\",\n \"contract_address\"\n ]\n }\n },\n {\n \"name\": \"get_token_lock_info\",\n \"description\": \"Retrieve token and LP lock information including lock amounts, unlock dates, lock platforms, and lock percentages. Essential for assessing token credibility and liquidity safety.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"chain_id\": {\n \"type\": \"string\",\n \"description\": \"Chain ID: 1 (Ethereum), 56 (BSC), 137 (Polygon)\",\n \"example\": \"1\"\n },\n \"token_address\": {\n \"type\": \"string\",\n \"description\": \"Token contract address (0x format)\"\n }\n },\n \"required\": [\n \"chain_id\",\n \"token_address\"\n ]\n }\n },\n {\n \"name\": \"get_solana_token_security\",\n \"description\": \"Analyze Solana SPL token security risks including mint authority, freeze authority, supply analysis, and known risk indicators. Essential for verifying Solana token safety.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"contract_address\": {\n \"type\": \"string\",\n \"description\": \"Solana token mint address\",\n \"example\": \"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v\"\n }\n },\n \"required\": [\n \"contract_address\"\n ]\n }\n },\n {\n \"name\": \"get_sui_token_security\",\n \"description\": \"Analyze Sui token security risks including module authority, supply controls, and known risk indicators.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"contract_address\": {\n \"type\": \"string\",\n \"description\": \"Sui token type address (e.g., 0x2::sui::SUI)\",\n \"example\": \"0x2::sui::SUI\"\n }\n },\n \"required\": [\n \"contract_address\"\n ]\n }\n },\n {\n \"name\": \"check_approval_security_v2\",\n \"description\": \"Enhanced approval security analysis (v2) with support for ERC-20, ERC-721, and ERC-1155 tokens. More detailed risk analysis than v1 including NFT approval risks.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"chain_id\": {\n \"type\": \"string\",\n \"description\": \"Chain ID: 1 (Ethereum), 56 (BSC), 137 (Polygon), 42161 (Arbitrum)\",\n \"example\": \"1\"\n },\n \"contract_address\": {\n \"type\": \"string\",\n \"description\": \"Spender contract address (0x format)\",\n \"example\": \"0x68b3465833fb72A70ecDF485E0e4C7bD8665Fc45\"\n }\n },\n \"required\": [\n \"chain_id\",\n \"contract_address\"\n ]\n }\n },\n {\n \"name\": \"get_goplus_supported_chains\",\n \"description\": \"List all blockchain networks supported by GoPlus Security API. Returns chain IDs, names, and supported features. Useful for validating chain_id before calling other security tools.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_networks_list\",\n \"description\": \"Get a list of all blockchain networks supported by HIVE_DATASOURCE_TWO\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {},\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_network_status\",\n \"description\": \"Get the status of a specific blockchain network\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"The network ID to get status for\"\n }\n },\n \"required\": [\n \"networkId\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_network_stats\",\n \"description\": \"Get metadata and statistics for a given network\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"The network ID to get stats for\"\n }\n },\n \"required\": [\n \"networkId\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_token_details\",\n \"description\": \"Get detailed information about a specific token\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"The network ID the token is on\"\n },\n \"address\": {\n \"type\": \"string\",\n \"description\": \"The token contract address\"\n }\n },\n \"required\": [\n \"networkId\",\n \"address\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_tokens\",\n \"description\": \"Get detailed information about multiple tokens\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"ids\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"object\",\n \"properties\": {\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"The network ID the token is on\"\n },\n \"address\": {\n \"type\": \"string\",\n \"description\": \"The token contract address\"\n }\n },\n \"required\": [\n \"networkId\",\n \"address\"\n ],\n \"additionalProperties\": false,\n \"description\": \"A token identifier consisting of network ID and address\"\n }\n }\n },\n \"required\": [\n \"ids\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_token_price\",\n \"description\": \"Get real-time or historical prices for a list of tokens\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"inputs\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"object\",\n \"properties\": {\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"The network ID the token is on\"\n },\n \"address\": {\n \"type\": \"string\",\n \"description\": \"The token contract address\"\n },\n \"poolAddress\": {\n \"type\": \"string\",\n \"description\": \"The address of the pool, when omitted the top pool is used.\"\n },\n \"timestamp\": {\n \"type\": \"number\",\n \"description\": \"Unix timestamp\"\n }\n },\n \"required\": [\n \"networkId\",\n \"address\"\n ],\n \"additionalProperties\": false,\n \"description\": \"A token identifier consisting of network ID and address\"\n }\n }\n },\n \"required\": [\n \"inputs\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"filter_tokens\",\n \"description\": \"Filter tokens by various criteria with automatic pagination for large results. Supports limit (max 100) and offset parameters for efficient data retrieval.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"excludeTokens\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n },\n \"description\": \"A list of token IDs to exclude from results (address:networkId)\"\n },\n \"filters\": {\n \"type\": \"object\",\n \"properties\": {\n \"buyCount1\": {\n \"type\": \"object\",\n \"properties\": {\n \"gt\": {\n \"type\": \"number\",\n \"description\": \"Greater than\"\n },\n \"gte\": {\n \"type\": \"number\",\n \"description\": \"Greater than or equal to\"\n },\n \"lt\": {\n \"type\": \"number\",\n \"description\": \"Less than\"\n },\n \"lte\": {\n \"type\": \"number\",\n \"description\": \"Less than or equal to\"\n }\n },\n \"additionalProperties\": false,\n \"description\": \"Number of buy transactions in the last hour\"\n },\n \"buyCount4\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Number of buy transactions in the last 4 hours\"\n },\n \"buyCount5m\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Number of buy transactions in the last 5 minutes\"\n },\n \"buyCount12\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Number of buy transactions in the last 12 hours\"\n },\n \"buyCount24\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Number of buy transactions in the last 24 hours\"\n },\n \"change1\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Price change in the last hour\"\n },\n \"change4\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Price change in the last 4 hours\"\n },\n \"change5m\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Price change in the last 5 minutes\"\n },\n \"change12\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Price change in the last 12 hours\"\n },\n \"change24\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Price change in the last 24 hours\"\n },\n \"createdAt\": {\n \"type\": \"number\",\n \"description\": \"Token creation timestamp\"\n },\n \"creatorAddress\": {\n \"type\": \"string\",\n \"description\": \"Token creator's wallet address\"\n },\n \"exchangeAddress\": {\n \"type\": \"string\",\n \"description\": \"Exchange contract address\"\n },\n \"exchangeId\": {\n \"type\": \"string\",\n \"description\": \"Exchange identifier\"\n },\n \"fdv\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Fully diluted valuation\"\n },\n \"high1\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Highest price in the last hour\"\n },\n \"high4\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Highest price in the last 4 hours\"\n },\n \"high5m\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Highest price in the last 5 minutes\"\n },\n \"high12\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Highest price in the last 12 hours\"\n },\n \"high24\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Highest price in the last 24 hours\"\n },\n \"holders\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Number of token holders\"\n },\n \"includeScams\": {\n \"type\": \"boolean\",\n \"description\": \"Whether to include potential scam tokens\"\n },\n \"isVerified\": {\n \"$ref\": \"#/properties/filters/properties/includeScams\",\n \"description\": \"Whether the token is verified\"\n },\n \"lastTransaction\": {\n \"$ref\": \"#/properties/filters/properties/createdAt\",\n \"description\": \"Timestamp of the last transaction\"\n },\n \"liquidity\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Total liquidity\"\n },\n \"low1\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Lowest price in the last hour\"\n },\n \"low4\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Lowest price in the last 4 hours\"\n },\n \"low5m\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Lowest price in the last 5 minutes\"\n },\n \"low12\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Lowest price in the last 12 hours\"\n },\n \"low24\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Lowest price in the last 24 hours\"\n },\n \"marketCap\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Market capitalization\"\n },\n \"network\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"Network ID\"\n },\n \"notableHolderCount\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Number of notable holders\"\n },\n \"potentialScam\": {\n \"$ref\": \"#/properties/filters/properties/includeScams\",\n \"description\": \"Whether the token is potentially a scam\"\n },\n \"priceUSD\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Current price in USD\"\n },\n \"sellCount1\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Number of sell transactions in the last hour\"\n },\n \"sellCount4\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Number of sell transactions in the last 4 hours\"\n },\n \"sellCount5m\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Number of sell transactions in the last 5 minutes\"\n },\n \"sellCount12\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Number of sell transactions in the last 12 hours\"\n },\n \"sellCount24\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Number of sell transactions in the last 24 hours\"\n },\n \"trendingIgnored\": {\n \"$ref\": \"#/properties/filters/properties/includeScams\",\n \"description\": \"Whether the token is ignored in trending calculations\"\n },\n \"txnCount1\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Total transactions in the last hour\"\n },\n \"txnCount4\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Total transactions in the last 4 hours\"\n },\n \"txnCount5m\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Total transactions in the last 5 minutes\"\n },\n \"txnCount12\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Total transactions in the last 12 hours\"\n },\n \"txnCount24\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Total transactions in the last 24 hours\"\n },\n \"uniqueBuys1\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Unique buyers in the last hour\"\n },\n \"uniqueBuys4\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Unique buyers in the last 4 hours\"\n },\n \"uniqueBuys5m\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Unique buyers in the last 5 minutes\"\n },\n \"uniqueBuys12\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Unique buyers in the last 12 hours\"\n },\n \"uniqueBuys24\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Unique buyers in the last 24 hours\"\n },\n \"uniqueSells1\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Unique sellers in the last hour\"\n },\n \"uniqueSells4\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Unique sellers in the last 4 hours\"\n },\n \"uniqueSells5m\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Unique sellers in the last 5 minutes\"\n },\n \"uniqueSells12\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Unique sellers in the last 12 hours\"\n },\n \"uniqueSells24\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Unique sellers in the last 24 hours\"\n },\n \"uniqueTransactions1\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Unique transactions in the last hour\"\n },\n \"uniqueTransactions4\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Unique transactions in the last 4 hours\"\n },\n \"uniqueTransactions5m\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Unique transactions in the last 5 minutes\"\n },\n \"uniqueTransactions12\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Unique transactions in the last 12 hours\"\n },\n \"uniqueTransactions24\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Unique transactions in the last 24 hours\"\n },\n \"volume1\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Trading volume in the last hour\"\n },\n \"volume4\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Trading volume in the last 4 hours\"\n },\n \"volume5m\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Trading volume in the last 5 minutes\"\n },\n \"volume12\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Trading volume in the last 12 hours\"\n },\n \"volume24\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Trading volume in the last 24 hours\"\n },\n \"volumeChange1\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Volume change in the last hour\"\n },\n \"volumeChange4\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Volume change in the last 4 hours\"\n },\n \"volumeChange5m\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Volume change in the last 5 minutes\"\n },\n \"volumeChange12\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Volume change in the last 12 hours\"\n },\n \"volumeChange24\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Volume change in the last 24 hours\"\n }\n },\n \"additionalProperties\": false,\n \"description\": \"A set of filters to apply\"\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Maximum number of items to return\"\n },\n \"offset\": {\n \"type\": \"number\",\n \"description\": \"Number of items to skip\"\n },\n \"phrase\": {\n \"type\": \"string\",\n \"description\": \"A phrase to search for. Can match a token contract address or partially match a token's name or symbol\"\n },\n \"rankings\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"object\",\n \"properties\": {\n \"attribute\": {\n \"type\": \"string\",\n \"enum\": [\n \"age\",\n \"buyCount1\",\n \"buyCount4\",\n \"buyCount5m\",\n \"buyCount12\",\n \"buyCount24\",\n \"buyVolume1\",\n \"buyVolume4\",\n \"buyVolume5m\",\n \"buyVolume12\",\n \"buyVolume24\",\n \"change1\",\n \"change4\",\n \"change5m\",\n \"change12\",\n \"change24\",\n \"circulatingMarketCap\",\n \"createdAt\",\n \"graduationPercent\",\n \"high1\",\n \"high4\",\n \"high5m\",\n \"high12\",\n \"high24\",\n \"holders\",\n \"lastTransaction\",\n \"launchpadCompletedAt\",\n \"launchpadMigratedAt\",\n \"liquidity\",\n \"low1\",\n \"low4\",\n \"low5m\",\n \"low12\",\n \"low24\",\n \"marketCap\",\n \"notableHolderCount\",\n \"priceUSD\",\n \"sellCount1\",\n \"sellCount4\",\n \"sellCount5m\",\n \"sellCount12\",\n \"sellCount24\",\n \"sellVolume1\",\n \"sellVolume4\",\n \"sellVolume5m\",\n \"sellVolume12\",\n \"sellVolume24\",\n \"swapPct1dOldWallet\",\n \"swapPct7dOldWallet\",\n \"trendingScore\",\n \"trendingScore1\",\n \"trendingScore4\",\n \"trendingScore5m\",\n \"trendingScore12\",\n \"trendingScore24\",\n \"txnCount1\",\n \"txnCount4\",\n \"txnCount5m\",\n \"txnCount12\",\n \"txnCount24\",\n \"uniqueBuys1\",\n \"uniqueBuys4\",\n \"uniqueBuys5m\",\n \"uniqueBuys12\",\n \"uniqueBuys24\",\n \"uniqueSells1\",\n \"uniqueSells4\",\n \"uniqueSells5m\",\n \"uniqueSells12\",\n \"uniqueSells24\",\n \"uniqueTransactions1\",\n \"uniqueTransactions4\",\n \"uniqueTransactions5m\",\n \"uniqueTransactions12\",\n \"uniqueTransactions24\",\n \"volume1\",\n \"volume4\",\n \"volume5m\",\n \"volume12\",\n \"volume24\",\n \"volumeChange1\",\n \"volumeChange4\",\n \"volumeChange5m\",\n \"volumeChange12\",\n \"volumeChange24\",\n \"walletAgeAvg\",\n \"walletAgeStd\"\n ]\n },\n \"direction\": {\n \"type\": \"string\",\n \"enum\": [\n \"ASC\",\n \"DESC\"\n ]\n }\n },\n \"required\": [\n \"attribute\",\n \"direction\"\n ],\n \"additionalProperties\": false\n },\n \"description\": \"A list of ranking attributes to apply\"\n },\n \"statsType\": {\n \"type\": \"string\",\n \"enum\": [\n \"FILTERED\",\n \"UNFILTERED\"\n ],\n \"description\": \"The type of statistics returned. Can be FILTERED or UNFILTERED\"\n },\n \"tokens\": {\n \"$ref\": \"#/properties/excludeTokens\",\n \"description\": \"A list of token IDs (address:networkId) or addresses. Can be left blank to discover new tokens\"\n }\n },\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_token_holders\",\n \"description\": \"Returns list of wallets that hold a given token, ordered by holdings descending. Also has the unique count of holders for that token.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"The network ID the token is on\"\n },\n \"address\": {\n \"type\": \"string\",\n \"description\": \"The token contract address\"\n },\n \"cursor\": {\n \"type\": \"string\",\n \"description\": \"Cursor for pagination\"\n },\n \"sort\": {\n \"type\": \"object\",\n \"properties\": {\n \"attribute\": {\n \"type\": \"string\",\n \"enum\": [\n \"BALANCE\",\n \"DATE\"\n ]\n },\n \"direction\": {\n \"type\": \"string\",\n \"enum\": [\n \"ASC\",\n \"DESC\"\n ]\n }\n },\n \"additionalProperties\": false,\n \"description\": \"Sort options for the holders list\"\n }\n },\n \"required\": [\n \"networkId\",\n \"address\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_wallet_balances\",\n \"description\": \"Get token balances for a wallet\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"The network ID the wallet is on\"\n },\n \"walletAddress\": {\n \"type\": \"string\",\n \"description\": \"The wallet address to get balances for\"\n },\n \"cursor\": {\n \"type\": \"string\",\n \"description\": \"Cursor for pagination\"\n },\n \"filterToken\": {\n \"type\": \"string\",\n \"description\": \"Optional token to filter balances for\"\n },\n \"includeNative\": {\n \"type\": \"boolean\",\n \"description\": \"Include native token balances\"\n }\n },\n \"required\": [\n \"networkId\",\n \"walletAddress\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_top_holders_percentage\",\n \"description\": \"Get the percentage of tokens held by top 10 holders\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"The network ID the token is on\"\n },\n \"address\": {\n \"type\": \"string\",\n \"description\": \"The token contract address\"\n }\n },\n \"required\": [\n \"networkId\",\n \"address\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_token_chart_data\",\n \"description\": \"Returns bar chart data to track token price changes over time. Can be queried using either a pair address or token address.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"The network ID the pair or token is on\"\n },\n \"address\": {\n \"type\": \"string\",\n \"description\": \"The pair address or token address to get chart data for. If a token address is provided, the token's top pair will be used.\"\n },\n \"resolution\": {\n \"type\": \"string\",\n \"description\": \"The time frame for each candle. Available options are 1, 5, 15, 30, 60, 240, 720, 1D, 7D\"\n },\n \"from\": {\n \"type\": \"number\",\n \"description\": \"Unix timestamp\"\n },\n \"to\": {\n \"$ref\": \"#/properties/from\"\n },\n \"countback\": {\n \"type\": \"number\"\n },\n \"currencyCode\": {\n \"type\": \"string\"\n },\n \"quoteToken\": {\n \"type\": \"string\",\n \"enum\": [\n \"token0\",\n \"token1\"\n ],\n \"description\": \"The token of interest (token0 or token1)\"\n },\n \"removeEmptyBars\": {\n \"type\": \"boolean\"\n },\n \"removeLeadingNullValues\": {\n \"$ref\": \"#/properties/removeEmptyBars\"\n },\n \"statsType\": {\n \"type\": \"string\",\n \"enum\": [\n \"FILTERED\",\n \"UNFILTERED\"\n ],\n \"description\": \"The type of statistics returned. Can be FILTERED or UNFILTERED\"\n },\n \"symbolType\": {\n \"type\": \"string\",\n \"enum\": [\n \"POOL\",\n \"TOKEN\"\n ]\n }\n },\n \"required\": [\n \"networkId\",\n \"address\",\n \"resolution\",\n \"from\",\n \"to\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_token_chart_urls\",\n \"description\": \"Chart images for token pairs\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"The network ID the pair is on\"\n },\n \"pairAddress\": {\n \"type\": \"string\",\n \"description\": \"The pair contract address\"\n },\n \"quoteToken\": {\n \"type\": \"string\",\n \"enum\": [\n \"token0\",\n \"token1\"\n ],\n \"description\": \"The token of interest (token0 or token1)\"\n }\n },\n \"required\": [\n \"networkId\",\n \"pairAddress\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_new_tokens\",\n \"description\": \"Get a list of the latests token contracts deployed. Note: This endpoint is only available on Ethereum, Optimum, Base, and Arbitrum networks (network IDs 1, 10, 8453, and 42161).\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"networkFilter\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"The network ID\"\n }\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Maximum number of items to return\"\n },\n \"offset\": {\n \"type\": \"number\",\n \"description\": \"Number of items to skip\"\n }\n },\n \"required\": [\n \"networkFilter\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_token_sparklines\",\n \"description\": \"Get a list of token simple chart data (sparklines) for the given tokens\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"The network ID the tokens are on\"\n },\n \"addresses\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\",\n \"description\": \"The token contract address\"\n },\n \"description\": \"Array of token contract addresses\"\n }\n },\n \"required\": [\n \"networkId\",\n \"addresses\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_token_transactions\",\n \"description\": \"Get transactions for a token pair\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"cursor\": {\n \"type\": \"string\",\n \"description\": \"A cursor for use in pagination\"\n },\n \"direction\": {\n \"type\": \"string\",\n \"enum\": [\n \"ASC\",\n \"DESC\"\n ],\n \"description\": \"The direction to sort the events by\"\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"The maximum number of events to return\"\n },\n \"query\": {\n \"type\": \"object\",\n \"properties\": {\n \"address\": {\n \"type\": \"string\",\n \"description\": \"The pair contract address to filter by. If you pass a token address in here, it will instead find the top pair for that token and use that.\"\n },\n \"amountNonLiquidityToken\": {\n \"type\": \"object\",\n \"properties\": {\n \"gt\": {\n \"type\": \"number\",\n \"description\": \"Greater than\"\n },\n \"gte\": {\n \"type\": \"number\",\n \"description\": \"Greater than or equal to\"\n },\n \"lt\": {\n \"type\": \"number\",\n \"description\": \"Less than\"\n },\n \"lte\": {\n \"type\": \"number\",\n \"description\": \"Less than or equal to\"\n }\n },\n \"additionalProperties\": false,\n \"description\": \"Filter by amount of non-liquidity token\"\n },\n \"eventDisplayType\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\",\n \"enum\": [\n \"Burn\",\n \"Buy\",\n \"Collect\",\n \"CollectProtocol\",\n \"Mint\",\n \"Sell\",\n \"Sync\"\n ]\n },\n \"description\": \"Filter by event display type\"\n },\n \"eventType\": {\n \"type\": \"string\",\n \"enum\": [\n \"Burn\",\n \"Collect\",\n \"CollectProtocol\",\n \"Mint\",\n \"PoolBalanceChanged\",\n \"Swap\",\n \"Sync\"\n ],\n \"description\": \"Filter by event type\"\n },\n \"maker\": {\n \"type\": \"string\",\n \"description\": \"Filter by maker address\"\n },\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"The network ID to filter by\"\n },\n \"priceBaseToken\": {\n \"$ref\": \"#/properties/query/properties/amountNonLiquidityToken\",\n \"description\": \"Filter by price in base token\"\n },\n \"priceBaseTokenTotal\": {\n \"$ref\": \"#/properties/query/properties/amountNonLiquidityToken\",\n \"description\": \"Filter by total price in base token\"\n },\n \"priceUsd\": {\n \"$ref\": \"#/properties/query/properties/amountNonLiquidityToken\",\n \"description\": \"Filter by price in USD\"\n },\n \"priceUsdTotal\": {\n \"$ref\": \"#/properties/query/properties/amountNonLiquidityToken\",\n \"description\": \"Filter by total price in USD\"\n },\n \"quoteToken\": {\n \"type\": \"string\",\n \"enum\": [\n \"token0\",\n \"token1\"\n ],\n \"description\": \"Filter by quote token\"\n },\n \"timestamp\": {\n \"type\": \"object\",\n \"properties\": {\n \"from\": {\n \"type\": \"number\",\n \"description\": \"Start timestamp\"\n },\n \"to\": {\n \"type\": \"number\",\n \"description\": \"End timestamp\"\n }\n },\n \"required\": [\n \"from\",\n \"to\"\n ],\n \"additionalProperties\": false,\n \"description\": \"Filter by timestamp range\"\n }\n },\n \"required\": [\n \"address\",\n \"networkId\"\n ],\n \"additionalProperties\": false,\n \"description\": \"Query parameters for filtering token events\"\n }\n },\n \"required\": [\n \"query\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_wallet_token_events\",\n \"description\": \"Get a list of token events for a given wallet address\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"cursor\": {\n \"type\": \"string\",\n \"description\": \"A cursor for use in pagination\"\n },\n \"direction\": {\n \"type\": \"string\",\n \"enum\": [\n \"ASC\",\n \"DESC\"\n ],\n \"description\": \"The direction to sort the events by\"\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"The maximum number of events to return\"\n },\n \"query\": {\n \"type\": \"object\",\n \"properties\": {\n \"eventType\": {\n \"type\": \"string\",\n \"enum\": [\n \"Burn\",\n \"Collect\",\n \"CollectProtocol\",\n \"Mint\",\n \"PoolBalanceChanged\",\n \"Swap\",\n \"Sync\"\n ],\n \"description\": \"The specific event type to filter by\"\n },\n \"maker\": {\n \"type\": \"string\",\n \"description\": \"The specific wallet address to filter by\"\n },\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"The network ID to filter by\"\n },\n \"priceUsdTotal\": {\n \"type\": \"object\",\n \"properties\": {\n \"gt\": {\n \"type\": \"number\",\n \"description\": \"Greater than\"\n },\n \"gte\": {\n \"type\": \"number\",\n \"description\": \"Greater than or equal to\"\n },\n \"lt\": {\n \"type\": \"number\",\n \"description\": \"Less than\"\n },\n \"lte\": {\n \"type\": \"number\",\n \"description\": \"Less than or equal to\"\n }\n },\n \"additionalProperties\": false,\n \"description\": \"The total amount of quoteToken involved in the swap in USD\"\n },\n \"timestamp\": {\n \"type\": \"object\",\n \"properties\": {\n \"from\": {\n \"type\": \"number\",\n \"description\": \"Start timestamp\"\n },\n \"to\": {\n \"type\": \"number\",\n \"description\": \"End timestamp\"\n }\n },\n \"required\": [\n \"from\",\n \"to\"\n ],\n \"additionalProperties\": false,\n \"description\": \"The time range to filter by\"\n },\n \"tokenAddress\": {\n \"type\": \"string\",\n \"description\": \"The token involved in the event\"\n }\n },\n \"required\": [\n \"maker\"\n ],\n \"additionalProperties\": false,\n \"description\": \"Query parameters for filtering token events\"\n }\n },\n \"required\": [\n \"query\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_pair_stats\",\n \"description\": \"Get bucketed stats for a given token within a pair\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"The network ID the pair is on\"\n },\n \"address\": {\n \"type\": \"string\",\n \"description\": \"The pair contract address\"\n },\n \"duration\": {\n \"type\": \"string\",\n \"enum\": [\n \"day1\",\n \"day30\",\n \"hour1\",\n \"hour4\",\n \"hour12\",\n \"min5\",\n \"min15\",\n \"week1\"\n ],\n \"description\": \"The duration for stats\"\n },\n \"bucketCount\": {\n \"type\": \"number\",\n \"description\": \"The number of aggregated values to receive. Note: Each duration has predetermined bucket sizes. The first n-1 buckets are historical. The last bucket is a snapshot of current data.\"\n },\n \"timestamp\": {\n \"type\": \"number\"\n },\n \"tokenOfInterest\": {\n \"type\": \"string\",\n \"enum\": [\n \"token0\",\n \"token1\"\n ]\n },\n \"statsType\": {\n \"type\": \"string\",\n \"enum\": [\n \"FILTERED\",\n \"UNFILTERED\"\n ],\n \"description\": \"The type of statistics returned. Can be FILTERED or UNFILTERED\"\n }\n },\n \"required\": [\n \"networkId\",\n \"address\",\n \"duration\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_pairs_stats\",\n \"description\": \"Get bucketed stats for a given token within a list of pairs\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"The network ID the pairs are on\"\n },\n \"pairAddresses\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\",\n \"description\": \"The pair contract address\"\n },\n \"description\": \"Array of pair contract addresses\"\n },\n \"duration\": {\n \"type\": \"string\",\n \"enum\": [\n \"day1\",\n \"day30\",\n \"hour1\",\n \"hour4\",\n \"hour12\",\n \"min5\",\n \"min15\",\n \"week1\"\n ],\n \"description\": \"The duration for stats\"\n },\n \"bucketCount\": {\n \"type\": \"number\",\n \"description\": \"The number of aggregated values to receive. Note: Each duration has predetermined bucket sizes. The first n-1 buckets are historical. The last bucket is a snapshot of current data.\"\n }\n },\n \"required\": [\n \"networkId\",\n \"pairAddresses\",\n \"duration\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"filter_pairs\",\n \"description\": \"Get a list of pairs based on various filters like volume, price, liquidity, etc.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"filters\": {\n \"type\": \"object\",\n \"properties\": {\n \"buyCount1\": {\n \"type\": \"object\",\n \"properties\": {\n \"gt\": {\n \"type\": \"number\",\n \"description\": \"Greater than\"\n },\n \"gte\": {\n \"type\": \"number\",\n \"description\": \"Greater than or equal to\"\n },\n \"lt\": {\n \"type\": \"number\",\n \"description\": \"Less than\"\n },\n \"lte\": {\n \"type\": \"number\",\n \"description\": \"Less than or equal to\"\n }\n },\n \"additionalProperties\": false,\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"buyCount4\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"buyCount12\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"buyCount24\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"createdAt\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"exchangeAddress\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n }\n },\n \"highPrice1\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"highPrice4\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"highPrice12\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"highPrice24\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"lastTransaction\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"liquidity\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"lockedLiquidityPercentage\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"lowPrice1\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"lowPrice4\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"lowPrice12\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"lowPrice24\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"network\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"The network ID\"\n }\n },\n \"potentialScam\": {\n \"type\": \"boolean\"\n },\n \"price\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"priceChange1\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"priceChange4\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"priceChange12\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"priceChange24\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"sellCount1\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"sellCount4\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"sellCount12\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"sellCount24\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"tokenAddress\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\",\n \"description\": \"The token contract address\"\n },\n \"description\": \"Array of token contract addresses\"\n },\n \"trendingIgnored\": {\n \"$ref\": \"#/properties/filters/properties/potentialScam\"\n },\n \"txnCount1\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"txnCount4\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"txnCount12\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"txnCount24\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"uniqueBuys1\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"uniqueBuys4\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"uniqueBuys12\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"uniqueBuys24\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"uniqueSells1\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"uniqueSells4\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"uniqueSells12\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"uniqueSells24\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"uniqueTransactions1\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"uniqueTransactions4\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"uniqueTransactions12\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"uniqueTransactions24\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"volumeChange1\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"volumeChange4\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"volumeChange12\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"volumeChange24\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"volumeUSD1\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"volumeUSD4\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"volumeUSD12\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"volumeUSD24\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n }\n },\n \"additionalProperties\": false\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Maximum number of items to return\"\n },\n \"offset\": {\n \"type\": \"number\",\n \"description\": \"Number of items to skip\"\n },\n \"pairs\": {\n \"anyOf\": [\n {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n }\n },\n {\n \"type\": \"string\"\n }\n ]\n },\n \"phrase\": {\n \"type\": \"string\"\n },\n \"rankings\": {\n \"anyOf\": [\n {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"object\",\n \"properties\": {\n \"attribute\": {\n \"type\": \"string\",\n \"enum\": [\n \"buyCount1\",\n \"buyCount4\",\n \"buyCount12\",\n \"buyCount24\",\n \"buyVolumeUSD1\",\n \"buyVolumeUSD4\",\n \"buyVolumeUSD12\",\n \"buyVolumeUSD24\",\n \"createdAt\",\n \"highPrice1\",\n \"highPrice4\",\n \"highPrice12\",\n \"highPrice24\",\n \"lastTransaction\",\n \"liquidity\",\n \"lockedLiquidityPercentage\",\n \"lowPrice1\",\n \"lowPrice4\",\n \"lowPrice12\",\n \"lowPrice24\",\n \"marketCap\",\n \"price\",\n \"priceChange1\",\n \"priceChange4\",\n \"priceChange12\",\n \"priceChange24\",\n \"sellCount1\",\n \"sellCount4\",\n \"sellCount12\",\n \"sellCount24\",\n \"sellVolumeUSD1\",\n \"sellVolumeUSD4\",\n \"sellVolumeUSD12\",\n \"sellVolumeUSD24\",\n \"swapPct1dOldWallet\",\n \"swapPct7dOldWallet\",\n \"trendingScore\",\n \"trendingScore1\",\n \"trendingScore4\",\n \"trendingScore5m\",\n \"trendingScore12\",\n \"trendingScore24\",\n \"txnCount1\",\n \"txnCount4\",\n \"txnCount12\",\n \"txnCount24\",\n \"uniqueBuys1\",\n \"uniqueBuys4\",\n \"uniqueBuys12\",\n \"uniqueBuys24\",\n \"uniqueSells1\",\n \"uniqueSells4\",\n \"uniqueSells12\",\n \"uniqueSells24\",\n \"uniqueTransactions1\",\n \"uniqueTransactions4\",\n \"uniqueTransactions12\",\n \"uniqueTransactions24\",\n \"volumeChange1\",\n \"volumeChange4\",\n \"volumeChange12\",\n \"volumeChange24\",\n \"volumeUSD1\",\n \"volumeUSD4\",\n \"volumeUSD12\",\n \"volumeUSD24\",\n \"walletAgeAvg\",\n \"walletAgeStd\"\n ]\n },\n \"direction\": {\n \"type\": \"string\",\n \"enum\": [\n \"ASC\",\n \"DESC\"\n ]\n }\n },\n \"required\": [\n \"attribute\",\n \"direction\"\n ],\n \"additionalProperties\": false\n }\n },\n {\n \"type\": \"object\",\n \"properties\": {\n \"attribute\": {\n \"type\": \"string\",\n \"enum\": [\n \"buyCount1\",\n \"buyCount4\",\n \"buyCount12\",\n \"buyCount24\",\n \"buyVolumeUSD1\",\n \"buyVolumeUSD4\",\n \"buyVolumeUSD12\",\n \"buyVolumeUSD24\",\n \"createdAt\",\n \"highPrice1\",\n \"highPrice4\",\n \"highPrice12\",\n \"highPrice24\",\n \"lastTransaction\",\n \"liquidity\",\n \"lockedLiquidityPercentage\",\n \"lowPrice1\",\n \"lowPrice4\",\n \"lowPrice12\",\n \"lowPrice24\",\n \"marketCap\",\n \"price\",\n \"priceChange1\",\n \"priceChange4\",\n \"priceChange12\",\n \"priceChange24\",\n \"sellCount1\",\n \"sellCount4\",\n \"sellCount12\",\n \"sellCount24\",\n \"sellVolumeUSD1\",\n \"sellVolumeUSD4\",\n \"sellVolumeUSD12\",\n \"sellVolumeUSD24\",\n \"swapPct1dOldWallet\",\n \"swapPct7dOldWallet\",\n \"trendingScore\",\n \"trendingScore1\",\n \"trendingScore4\",\n \"trendingScore5m\",\n \"trendingScore12\",\n \"trendingScore24\",\n \"txnCount1\",\n \"txnCount4\",\n \"txnCount12\",\n \"txnCount24\",\n \"uniqueBuys1\",\n \"uniqueBuys4\",\n \"uniqueBuys12\",\n \"uniqueBuys24\",\n \"uniqueSells1\",\n \"uniqueSells4\",\n \"uniqueSells12\",\n \"uniqueSells24\",\n \"uniqueTransactions1\",\n \"uniqueTransactions4\",\n \"uniqueTransactions12\",\n \"uniqueTransactions24\",\n \"volumeChange1\",\n \"volumeChange4\",\n \"volumeChange12\",\n \"volumeChange24\",\n \"volumeUSD1\",\n \"volumeUSD4\",\n \"volumeUSD12\",\n \"volumeUSD24\",\n \"walletAgeAvg\",\n \"walletAgeStd\"\n ]\n },\n \"direction\": {\n \"type\": \"string\",\n \"enum\": [\n \"ASC\",\n \"DESC\"\n ]\n }\n },\n \"required\": [\n \"attribute\",\n \"direction\"\n ],\n \"additionalProperties\": false\n }\n ]\n },\n \"statsType\": {\n \"type\": \"string\",\n \"enum\": [\n \"FILTERED\",\n \"UNFILTERED\"\n ],\n \"description\": \"The type of statistics returned. Can be FILTERED or UNFILTERED\"\n }\n },\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_pair_info\",\n \"description\": \"Get metadata for a pair of tokens, including price, volume, and liquidity stats over various timeframes.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"The network ID the pair is on\"\n },\n \"address\": {\n \"type\": \"string\",\n \"description\": \"The pair contract address\"\n },\n \"quoteToken\": {\n \"type\": \"string\",\n \"enum\": [\n \"token0\",\n \"token1\"\n ],\n \"description\": \"The token of interest (token0 or token1)\"\n },\n \"statsType\": {\n \"type\": \"string\",\n \"enum\": [\n \"FILTERED\",\n \"UNFILTERED\"\n ],\n \"description\": \"The type of statistics returned. Can be FILTERED or UNFILTERED\"\n }\n },\n \"required\": [\n \"networkId\",\n \"address\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_token_pairs\",\n \"description\": \"Get a list of pairs for a token\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"The network ID the token is on\"\n },\n \"address\": {\n \"type\": \"string\",\n \"description\": \"The token contract address\"\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Maximum number of pairs to return (default: 10)\"\n }\n },\n \"required\": [\n \"networkId\",\n \"address\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_token_pairs_metadata\",\n \"description\": \"Get pairs with metadata for a specific token\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"The network ID the token is on\"\n },\n \"address\": {\n \"type\": \"string\",\n \"description\": \"The token contract address\"\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Maximum number of pairs to return (default: 10)\"\n }\n },\n \"required\": [\n \"networkId\",\n \"address\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_liquidity_info\",\n \"description\": \"Get liquidity metadata for a pair, including both unlocked and locked liquidity data\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"The network ID the pair is on\"\n },\n \"address\": {\n \"type\": \"string\",\n \"description\": \"The pair contract address\"\n }\n },\n \"required\": [\n \"networkId\",\n \"address\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_liquidity_locks\",\n \"description\": \"Get liquidity locks for a pair, including details about locked amounts, lock duration, and owner information\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"The network ID the pair is on\"\n },\n \"address\": {\n \"type\": \"string\",\n \"description\": \"The pair contract address\"\n },\n \"cursor\": {\n \"type\": \"string\",\n \"description\": \"Cursor for pagination\"\n }\n },\n \"required\": [\n \"networkId\",\n \"address\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"filter_exchanges\",\n \"description\": \"Get a list of exchanges based on various filters like volume, transactions, active users, etc.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"filters\": {\n \"type\": \"object\",\n \"properties\": {\n \"address\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n },\n \"description\": \"The list of exchange contract addresses to filter by\"\n },\n \"dailyActiveUsers\": {\n \"type\": \"object\",\n \"properties\": {\n \"gt\": {\n \"type\": \"number\",\n \"description\": \"Greater than\"\n },\n \"gte\": {\n \"type\": \"number\",\n \"description\": \"Greater than or equal to\"\n },\n \"lt\": {\n \"type\": \"number\",\n \"description\": \"Less than\"\n },\n \"lte\": {\n \"type\": \"number\",\n \"description\": \"Less than or equal to\"\n }\n },\n \"additionalProperties\": false,\n \"description\": \"The total unique daily active users\"\n },\n \"monthlyActiveUsers\": {\n \"$ref\": \"#/properties/filters/properties/dailyActiveUsers\",\n \"description\": \"The total unique monthly active users (30 days)\"\n },\n \"network\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"The network ID\"\n },\n \"description\": \"The list of network IDs to filter by\"\n },\n \"txnCount1\": {\n \"$ref\": \"#/properties/filters/properties/dailyActiveUsers\",\n \"description\": \"The number of transactions on the exchange in the past hour\"\n },\n \"txnCount4\": {\n \"$ref\": \"#/properties/filters/properties/dailyActiveUsers\",\n \"description\": \"The number of transactions on the exchange in the past 4 hours\"\n },\n \"txnCount12\": {\n \"$ref\": \"#/properties/filters/properties/dailyActiveUsers\",\n \"description\": \"The number of transactions on the exchange in the past 12 hours\"\n },\n \"txnCount24\": {\n \"$ref\": \"#/properties/filters/properties/dailyActiveUsers\",\n \"description\": \"The number of transactions on the exchange in the past 24 hours\"\n },\n \"volumeNBT1\": {\n \"$ref\": \"#/properties/filters/properties/dailyActiveUsers\",\n \"description\": \"The trade volume in the network's base token in the past hour\"\n },\n \"volumeNBT4\": {\n \"$ref\": \"#/properties/filters/properties/dailyActiveUsers\",\n \"description\": \"The trade volume in the network's base token in the past 4 hours\"\n },\n \"volumeNBT12\": {\n \"$ref\": \"#/properties/filters/properties/dailyActiveUsers\",\n \"description\": \"The trade volume in the network's base token in the past 12 hours\"\n },\n \"volumeNBT24\": {\n \"$ref\": \"#/properties/filters/properties/dailyActiveUsers\",\n \"description\": \"The trade volume in the network's base token in the past 24 hours\"\n },\n \"volumeUSD1\": {\n \"$ref\": \"#/properties/filters/properties/dailyActiveUsers\",\n \"description\": \"The trade volume in USD in the past hour\"\n },\n \"volumeUSD4\": {\n \"$ref\": \"#/properties/filters/properties/dailyActiveUsers\",\n \"description\": \"The trade volume in USD in the past 4 hours\"\n },\n \"volumeUSD12\": {\n \"$ref\": \"#/properties/filters/properties/dailyActiveUsers\",\n \"description\": \"The trade volume in USD in the past 12 hours\"\n },\n \"volumeUSD24\": {\n \"$ref\": \"#/properties/filters/properties/dailyActiveUsers\",\n \"description\": \"The trade volume in USD in the past 24 hours\"\n }\n },\n \"additionalProperties\": false\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Maximum number of items to return\"\n },\n \"offset\": {\n \"type\": \"number\",\n \"description\": \"Number of items to skip\"\n },\n \"phrase\": {\n \"type\": \"string\",\n \"description\": \"A phrase to search for. Can match an exchange address or ID (address:networkId), or partially match an exchange name\"\n },\n \"rankings\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"object\",\n \"properties\": {\n \"attribute\": {\n \"type\": \"string\",\n \"enum\": [\n \"dailyActiveUsers\",\n \"monthlyActiveUsers\",\n \"txnCount1\",\n \"txnCount4\",\n \"txnCount12\",\n \"txnCount24\",\n \"volumeNBT1\",\n \"volumeNBT4\",\n \"volumeNBT12\",\n \"volumeNBT24\",\n \"volumeUSD1\",\n \"volumeUSD4\",\n \"volumeUSD12\",\n \"volumeUSD24\"\n ]\n },\n \"direction\": {\n \"type\": \"string\",\n \"enum\": [\n \"ASC\",\n \"DESC\"\n ]\n }\n },\n \"required\": [\n \"attribute\",\n \"direction\"\n ],\n \"additionalProperties\": false\n },\n \"description\": \"A list of ranking attributes to apply\"\n }\n },\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_network_dexes\",\n \"description\": \"Get a list of exchanges on a specific network\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"The network ID to get exchanges for\"\n },\n \"phrase\": {\n \"type\": \"string\",\n \"description\": \"A phrase to search for exchange names or addresses\"\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Maximum number of items to return\"\n },\n \"offset\": {\n \"type\": \"number\",\n \"description\": \"Number of items to skip\"\n }\n },\n \"required\": [\n \"networkId\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_pair_chart_metadata\",\n \"description\": \"Returns charting metadata for a given pair. Used for implementing a Trading View datafeed.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"symbol\": {\n \"type\": \"string\",\n \"description\": \"The ID of the pair in format 'address:networkId' (e.g., '0xB4e16d0168e52d35CaCD2c6185b44281Ec28C9Dc:1')\"\n },\n \"currencyCode\": {\n \"type\": \"string\",\n \"description\": \"The currency to use for the response. Can be 'USD' (default) or 'TOKEN'\"\n }\n },\n \"required\": [\n \"symbol\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_event_labels\",\n \"description\": \"Get a list of event labels that can be used to categorize events\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"id\": {\n \"type\": \"string\",\n \"description\": \"The ID to get event labels for\"\n },\n \"cursor\": {\n \"type\": \"string\",\n \"description\": \"Cursor for pagination\"\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Maximum number of items to return\"\n }\n },\n \"required\": [\n \"id\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"filter_wallets\",\n \"description\": \"Search and filter blockchain wallets based on various criteria.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"excludeLabels\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n }\n },\n \"filters\": {},\n \"includeLabels\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n }\n },\n \"limit\": {\n \"type\": \"number\"\n },\n \"offset\": {\n \"type\": \"number\"\n },\n \"rankings\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"object\",\n \"properties\": {\n \"attribute\": {\n \"type\": \"string\",\n \"enum\": [\n \"averageProfitUsdPerTrade1d\",\n \"averageProfitUsdPerTrade1w\",\n \"averageProfitUsdPerTrade1y\",\n \"averageProfitUsdPerTrade30d\",\n \"averageSwapAmountUsd1d\",\n \"averageSwapAmountUsd1w\",\n \"averageSwapAmountUsd1y\",\n \"averageSwapAmountUsd30d\",\n \"botScore\",\n \"firstTransactionAt\",\n \"lastTransactionAt\",\n \"nativeTokenBalance\",\n \"realizedProfitPercentage1d\",\n \"realizedProfitPercentage1w\",\n \"realizedProfitPercentage1y\",\n \"realizedProfitPercentage30d\",\n \"realizedProfitUsd1d\",\n \"realizedProfitUsd1w\",\n \"realizedProfitUsd1y\",\n \"realizedProfitUsd30d\",\n \"scammerScore\",\n \"swaps1d\",\n \"swaps1w\",\n \"swaps1y\",\n \"swaps30d\",\n \"swapsAll1d\",\n \"swapsAll1w\",\n \"swapsAll1y\",\n \"swapsAll30d\",\n \"uniqueTokens1d\",\n \"uniqueTokens1w\",\n \"uniqueTokens1y\",\n \"uniqueTokens30d\",\n \"volumeUsd1d\",\n \"volumeUsd1w\",\n \"volumeUsd1y\",\n \"volumeUsd30d\",\n \"volumeUsdAll1d\",\n \"volumeUsdAll1w\",\n \"volumeUsdAll1y\",\n \"volumeUsdAll30d\",\n \"winRate1d\",\n \"winRate1w\",\n \"winRate1y\",\n \"winRate30d\"\n ]\n },\n \"direction\": {\n \"type\": \"string\",\n \"enum\": [\n \"ASC\",\n \"DESC\"\n ]\n }\n },\n \"required\": [\n \"attribute\",\n \"direction\"\n ],\n \"additionalProperties\": false\n }\n },\n \"wallets\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n }\n }\n },\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"filter_token_wallets\",\n \"description\": \"Filter wallets that hold or trade a specific token.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"excludeLabels\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n }\n },\n \"filters\": {},\n \"filtersV2\": {},\n \"includeLabels\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n }\n },\n \"limit\": {\n \"type\": \"number\"\n },\n \"networkId\": {\n \"type\": \"number\"\n },\n \"offset\": {\n \"type\": \"number\"\n },\n \"phrase\": {\n \"type\": \"string\"\n },\n \"rankings\": {\n \"type\": \"array\"\n },\n \"tokenId\": {\n \"type\": \"string\"\n },\n \"walletAddress\": {\n \"type\": \"string\"\n },\n \"wallets\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n }\n }\n },\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_wallet_stats\",\n \"description\": \"Get comprehensive statistics for a wallet.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"The network ID\"\n },\n \"walletAddress\": {\n \"type\": \"string\",\n \"description\": \"The wallet address\"\n },\n \"timestamp\": {\n \"type\": \"number\",\n \"description\": \"Unix timestamp\"\n },\n \"includeNetworkBreakdown\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"walletAddress\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_wallet_chart\",\n \"description\": \"Generate chart data for wallet.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"The network ID\"\n },\n \"range\": {\n \"type\": \"object\",\n \"properties\": {\n \"start\": {\n \"type\": \"number\",\n \"description\": \"Unix timestamp\"\n },\n \"end\": {\n \"$ref\": \"#/properties/range/properties/start\"\n }\n },\n \"required\": [\n \"start\",\n \"end\"\n ],\n \"additionalProperties\": false\n },\n \"resolution\": {\n \"type\": \"string\"\n },\n \"walletAddress\": {\n \"type\": \"string\",\n \"description\": \"The wallet address\"\n }\n },\n \"required\": [\n \"range\",\n \"resolution\",\n \"walletAddress\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_nft_pool\",\n \"description\": \"Get detailed information about a specific NFT pool including pool balance, spot price, NFT assets, fees, and trading statistics. Supports AMM NFT marketplaces like Sudoswap.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"address\": {\n \"type\": \"string\",\n \"description\": \"The NFT pool address\"\n },\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"The network ID where the pool exists\"\n }\n },\n \"required\": [\n \"address\",\n \"networkId\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_nft_pool_events\",\n \"description\": \"Get transaction events for NFT pools across all AMM NFT marketplaces. Returns detailed event data including swaps, deposits, withdrawals, price updates, and pool management activities.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"The network ID to get events for\"\n },\n \"collectionAddress\": {\n \"type\": \"string\",\n \"description\": \"Filter by NFT collection address\"\n },\n \"cursor\": {\n \"type\": \"string\",\n \"description\": \"Pagination cursor\"\n },\n \"eventTypes\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\",\n \"enum\": [\n \"ASSET_RECIPIENT_CHANGE\",\n \"DELTA_UPDATE\",\n \"FEE_UPDATE\",\n \"NEW_POOL\",\n \"NEW_POOL_V2\",\n \"NFT_DEPOSIT\",\n \"NFT_DEPOSIT_V2\",\n \"NFT_WITHDRAWAL\",\n \"NFT_WITHDRAWAL_V2\",\n \"OWNERSHIP_TRANSFERRED\",\n \"SPOT_PRICE_UPDATE\",\n \"SPOT_PRICE_UPDATE_V2\",\n \"SWAP_NFT_IN_POOL\",\n \"SWAP_NFT_IN_POOL_V2\",\n \"SWAP_NFT_OUT_POOL\",\n \"SWAP_NFT_OUT_POOL_V2\",\n \"TOKEN_DEPOSIT\",\n \"TOKEN_DEPOSIT_V2\",\n \"TOKEN_WITHDRAWAL\",\n \"TOKEN_WITHDRAWAL_V2\"\n ]\n },\n \"description\": \"Filter by event types\"\n },\n \"exchangeAddress\": {\n \"type\": \"string\",\n \"description\": \"Filter by exchange address\"\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Maximum number of events to return\"\n },\n \"poolAddress\": {\n \"type\": \"string\",\n \"description\": \"Filter by specific pool address\"\n },\n \"timestamp\": {\n \"type\": \"object\",\n \"properties\": {\n \"from\": {\n \"type\": \"number\",\n \"description\": \"Unix timestamp\"\n },\n \"to\": {\n \"$ref\": \"#/properties/timestamp/properties/from\",\n \"description\": \"Unix timestamp\"\n }\n },\n \"additionalProperties\": false,\n \"description\": \"Filter by timestamp range\"\n }\n },\n \"required\": [\n \"networkId\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_nft_pool_stats\",\n \"description\": \"Get aggregated pool statistics and metadata for a specific NFT collection on a given AMM NFT exchange. Returns collection-wide liquidity, volume, fees, and floor price data.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"collectionAddress\": {\n \"type\": \"string\",\n \"description\": \"The NFT collection address\"\n },\n \"exchangeAddress\": {\n \"type\": \"string\",\n \"description\": \"The exchange address\"\n },\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"The network ID\"\n }\n },\n \"required\": [\n \"collectionAddress\",\n \"exchangeAddress\",\n \"networkId\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_nft_collections_by_exchange\",\n \"description\": \"Get all NFT collections that have liquidity pools on a specific AMM NFT exchange. Returns collection metadata, liquidity statistics, and trading metrics for each collection.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"exchangeAddress\": {\n \"type\": \"string\",\n \"description\": \"The exchange address\"\n },\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"The network ID\"\n },\n \"cursor\": {\n \"type\": \"string\",\n \"description\": \"Pagination cursor\"\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Maximum number of collections to return\"\n }\n },\n \"required\": [\n \"exchangeAddress\",\n \"networkId\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_nft_pools_by_collection\",\n \"description\": \"Get all liquidity pools for a specific NFT collection on a given AMM NFT exchange. Returns detailed pool information including balances, pricing, assets, and trading statistics.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"collectionAddress\": {\n \"type\": \"string\",\n \"description\": \"The NFT collection address\"\n },\n \"exchangeAddress\": {\n \"type\": \"string\",\n \"description\": \"The exchange address\"\n },\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"The network ID\"\n },\n \"cursor\": {\n \"type\": \"string\",\n \"description\": \"Pagination cursor\"\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Maximum number of pools to return\"\n }\n },\n \"required\": [\n \"collectionAddress\",\n \"exchangeAddress\",\n \"networkId\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_nft_pools_by_owner\",\n \"description\": \"Get all NFT liquidity pools owned by a specific wallet address across AMM NFT marketplaces. Returns detailed pool information including assets, balances, and performance metrics.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"The network ID\"\n },\n \"ownerAddress\": {\n \"type\": \"string\",\n \"description\": \"The owner's wallet address\"\n },\n \"cursor\": {\n \"type\": \"string\",\n \"description\": \"Pagination cursor\"\n },\n \"exchangeAddress\": {\n \"type\": \"string\",\n \"description\": \"Filter by specific exchange address\"\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Maximum number of pools to return\"\n }\n },\n \"required\": [\n \"networkId\",\n \"ownerAddress\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"filter_nft_collections\",\n \"description\": \"Search and filter NFT collections based on various criteria including volume, floor price, trading activity, and metadata. All parameters are optional - use filters for advanced criteria.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"collections\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n },\n \"description\": \"List of collection addresses to filter by\"\n },\n \"filters\": {\n \"description\": \"NftCollectionFilters object for advanced filtering\"\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Maximum number of collections to return\"\n },\n \"offset\": {\n \"type\": \"number\",\n \"description\": \"Number of items to skip for pagination\"\n },\n \"phrase\": {\n \"type\": \"string\",\n \"description\": \"Search phrase to match collection names\"\n },\n \"rankings\": {\n \"type\": \"array\",\n \"description\": \"Ranking criteria for sorting results\"\n }\n },\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"filter_nft_pool_collections\",\n \"description\": \"Search and filter NFT collections that have liquidity pools on AMM NFT marketplaces. Returns collections with pool statistics and trading metrics. All parameters are optional.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"filters\": {\n \"description\": \"NftPoolCollectionFilters object for advanced filtering\"\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Maximum number of collections to return\"\n },\n \"offset\": {\n \"type\": \"number\",\n \"description\": \"Number of items to skip for pagination\"\n },\n \"phrase\": {\n \"type\": \"string\",\n \"description\": \"Search phrase to match collection names\"\n },\n \"rankings\": {\n \"type\": \"array\",\n \"description\": \"Ranking criteria for sorting results\"\n }\n },\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"search_nfts\",\n \"description\": \"Search for NFTs across collections and marketplaces with advanced filtering options. Returns comprehensive NFT data including metadata, pricing, and trading history. All parameters are optional.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"filterWashTrading\": {\n \"type\": \"boolean\",\n \"description\": \"Whether to filter out wash trading\"\n },\n \"include\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n },\n \"description\": \"Types of NFT data to include in search\"\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Maximum number of results to return\"\n },\n \"networkFilter\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"The network ID\"\n },\n \"description\": \"List of network IDs to search within\"\n },\n \"search\": {\n \"type\": \"string\",\n \"description\": \"Search query string\"\n }\n },\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"filter_nft_pools\",\n \"description\": \"Search and filter NFT liquidity pools based on various criteria including liquidity, volume, pool type, and performance metrics. All parameters are optional.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"filters\": {\n \"description\": \"NftPoolFilters object for advanced filtering\"\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Maximum number of pools to return\"\n },\n \"offset\": {\n \"type\": \"number\",\n \"description\": \"Number of items to skip for pagination\"\n },\n \"phrase\": {\n \"type\": \"string\",\n \"description\": \"Search phrase to match pool details\"\n },\n \"rankings\": {\n \"type\": \"array\",\n \"description\": \"Ranking criteria for sorting results\"\n }\n },\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_nft_collection_assets\",\n \"description\": \"Get individual NFT assets from a collection with detailed metadata including attributes, media, and token-specific information. Address and networkId are required.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"address\": {\n \"type\": \"string\",\n \"description\": \"Collection contract address (required)\"\n },\n \"cursor\": {\n \"type\": \"string\",\n \"description\": \"Pagination cursor\"\n },\n \"fetchMissingAssets\": {\n \"type\": \"boolean\",\n \"description\": \"Whether to fetch missing asset metadata\"\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Maximum number of assets to return\"\n },\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"Network ID (required)\"\n },\n \"tokenIds\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n },\n \"description\": \"Specific token IDs to fetch\"\n }\n },\n \"required\": [\n \"address\",\n \"networkId\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_nft_collection_stats\",\n \"description\": \"Get bucketed statistical data for NFT collections over time including volume, price movements, and trading metrics across specified time periods. CollectionAddress and networkId are required.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"bucketCount\": {\n \"type\": \"number\",\n \"description\": \"Number of time buckets for statistics\"\n },\n \"collectionAddress\": {\n \"type\": \"string\",\n \"description\": \"Collection contract address (required)\"\n },\n \"durations\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\",\n \"enum\": [\n \"HOUR\",\n \"DAY\",\n \"WEEK\",\n \"MONTH\",\n \"YEAR\"\n ]\n },\n \"description\": \"Time durations for statistics\"\n },\n \"grouping\": {\n \"type\": \"string\",\n \"description\": \"Grouping strategy for statistics\"\n },\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"Network ID (required)\"\n },\n \"timestamp\": {\n \"type\": \"number\",\n \"description\": \"Timestamp for historical data\"\n }\n },\n \"required\": [\n \"collectionAddress\",\n \"networkId\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_nft_collection_events\",\n \"description\": \"Get transaction events for NFT collections across marketplaces including sales, transfers, mints, and other activities. NetworkId is required, other filters are optional.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"address\": {\n \"type\": \"string\",\n \"description\": \"Collection contract address\"\n },\n \"cursor\": {\n \"type\": \"string\",\n \"description\": \"Pagination cursor\"\n },\n \"exchangeAddress\": {\n \"type\": \"string\",\n \"description\": \"Exchange address to filter by\"\n },\n \"includeTransfers\": {\n \"type\": \"boolean\",\n \"description\": \"Whether to include transfer events\"\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Maximum number of events to return\"\n },\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"Network ID (required)\"\n },\n \"poolAddress\": {\n \"type\": \"string\",\n \"description\": \"Pool address to filter by\"\n },\n \"timestamp\": {\n \"type\": \"object\",\n \"properties\": {\n \"from\": {\n \"type\": \"number\",\n \"description\": \"Unix timestamp\"\n },\n \"to\": {\n \"$ref\": \"#/properties/timestamp/properties/from\",\n \"description\": \"Unix timestamp\"\n }\n },\n \"additionalProperties\": false,\n \"description\": \"Timestamp range filter\"\n },\n \"tokenId\": {\n \"type\": \"string\",\n \"description\": \"Specific token ID to filter by\"\n }\n },\n \"required\": [\n \"networkId\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_nft_contracts\",\n \"description\": \"Get enhanced contract information for NFT collections including metadata, social links, and labels. Provide a list of contract addresses and network IDs.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"contracts\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"object\",\n \"properties\": {\n \"address\": {\n \"type\": \"string\"\n },\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"The network ID\"\n }\n },\n \"required\": [\n \"address\",\n \"networkId\"\n ],\n \"additionalProperties\": false\n },\n \"description\": \"List of contract addresses and network IDs\"\n }\n },\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"filter_parallel_assets\",\n \"description\": \"Search and filter Parallel trading card game assets with advanced filtering and matching criteria. Returns card metadata, game stats, and pricing information. All parameters are optional.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"filters\": {\n \"description\": \"ParallelAssetFilters object for advanced filtering\"\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Maximum number of assets to return\"\n },\n \"match\": {\n \"description\": \"ParallelAssetMatchers for matching criteria\"\n },\n \"offset\": {\n \"type\": \"number\",\n \"description\": \"Number of items to skip for pagination\"\n },\n \"phrase\": {\n \"type\": \"string\",\n \"description\": \"Search phrase for asset names\"\n },\n \"rankings\": {\n \"type\": \"array\",\n \"description\": \"Ranking criteria for sorting results\"\n }\n },\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_parallel_card_changes\",\n \"description\": \"Get changes made to Parallel trading card metadata over time including updates to stats, artwork, and game mechanics. All parameters are optional.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"cursor\": {\n \"type\": \"string\",\n \"description\": \"Pagination cursor\"\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Maximum number of changes to return\"\n },\n \"parallelId\": {\n \"type\": \"number\",\n \"description\": \"Specific Parallel card ID\"\n }\n },\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_prime_pool_assets\",\n \"description\": \"Get assets in Prime ecosystem pools including liquidity pool compositions and asset details. NetworkId is required, other parameters are optional.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"cursor\": {\n \"type\": \"string\",\n \"description\": \"Pagination cursor\"\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Maximum number of assets to return\"\n },\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"Network ID (required)\"\n },\n \"poolContractAddress\": {\n \"type\": \"string\",\n \"description\": \"Specific pool contract address to filter by\"\n },\n \"poolId\": {\n \"type\": \"string\",\n \"description\": \"Specific pool ID to filter by\"\n },\n \"walletAddress\": {\n \"type\": \"string\",\n \"description\": \"Specific wallet address to filter by\"\n }\n },\n \"required\": [\n \"networkId\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_prime_pool_events\",\n \"description\": \"Get transaction events for Prime ecosystem pools including liquidity changes, swaps, and pool management activities. NetworkId is required, other parameters are optional.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"cursor\": {\n \"type\": \"string\",\n \"description\": \"Pagination cursor\"\n },\n \"eventTypes\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n },\n \"description\": \"Types of events to include\"\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Maximum number of events to return\"\n },\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"Network ID (required)\"\n },\n \"poolContractAddress\": {\n \"type\": \"string\",\n \"description\": \"Specific pool contract address to filter by\"\n },\n \"poolId\": {\n \"type\": \"string\",\n \"description\": \"Specific pool ID to filter by\"\n },\n \"walletAddress\": {\n \"type\": \"string\",\n \"description\": \"Specific wallet address to filter by\"\n }\n },\n \"required\": [\n \"networkId\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_prime_pools\",\n \"description\": \"Get information about Prime ecosystem pools including pool statistics, liquidity, and performance metrics. Address and networkId are required.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"address\": {\n \"type\": \"string\",\n \"description\": \"Pool address (required)\"\n },\n \"cursor\": {\n \"type\": \"string\",\n \"description\": \"Pagination cursor\"\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Maximum number of pools to return\"\n },\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"Network ID (required)\"\n }\n },\n \"required\": [\n \"address\",\n \"networkId\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_nft_holders\",\n \"description\": \"Get holders of a specific NFT collection ordered by holdings with detailed balance information. CollectionAddress and networkId are required.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"collectionAddress\": {\n \"type\": \"string\",\n \"description\": \"Collection contract address (required)\"\n },\n \"cursor\": {\n \"type\": \"string\",\n \"description\": \"Pagination cursor\"\n },\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"Network ID (required)\"\n }\n },\n \"required\": [\n \"collectionAddress\",\n \"networkId\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_wallet_nft_collections\",\n \"description\": \"Get NFT collections held by a specific wallet including collection metadata and holding quantities. Input requires walletAddress.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"input\": {\n \"type\": \"object\",\n \"properties\": {\n \"cursor\": {\n \"type\": \"string\",\n \"description\": \"Pagination cursor\"\n },\n \"walletAddress\": {\n \"type\": \"string\",\n \"description\": \"Wallet address (required)\"\n }\n },\n \"required\": [\n \"walletAddress\"\n ],\n \"additionalProperties\": false,\n \"description\": \"WalletNftCollectionsInput object (required)\"\n }\n },\n \"required\": [\n \"input\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_wallet_nft_assets\",\n \"description\": \"Get specific NFT assets held by a wallet from a particular collection including token metadata and ownership details. Input requires collectionId in format 'collectionAddress:networkId' and walletAddress.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"input\": {\n \"type\": \"object\",\n \"properties\": {\n \"collectionId\": {\n \"type\": \"string\",\n \"description\": \"Collection ID in format collectionAddress:networkId (required)\"\n },\n \"cursor\": {\n \"type\": \"string\",\n \"description\": \"Pagination cursor\"\n },\n \"walletAddress\": {\n \"type\": \"string\",\n \"description\": \"Wallet address (required)\"\n }\n },\n \"required\": [\n \"collectionId\",\n \"walletAddress\"\n ],\n \"additionalProperties\": false,\n \"description\": \"WalletNftCollectionAssetsInput object (required)\"\n }\n },\n \"required\": [\n \"input\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_token_lifecycle_events\",\n \"description\": \"Get mint and burn events for a specific token including amounts, timestamps, and supply changes. Address and networkId are required.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"cursor\": {\n \"type\": \"string\",\n \"description\": \"Pagination cursor\"\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Maximum number of events to return\"\n },\n \"query\": {\n \"type\": \"object\",\n \"properties\": {\n \"address\": {\n \"type\": \"string\",\n \"description\": \"Token contract address (required)\"\n },\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"Network ID (required)\"\n }\n },\n \"required\": [\n \"address\",\n \"networkId\"\n ],\n \"additionalProperties\": false,\n \"description\": \"Query parameters for token lifecycle events\"\n }\n },\n \"required\": [\n \"query\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_token_top_traders\",\n \"description\": \"Get the top traders for a specific token over a specified time period including trading volumes, profits, and transaction counts. TokenAddress, networkId, and tradingPeriod are required.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"input\": {\n \"type\": \"object\",\n \"properties\": {\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Number of traders to return\"\n },\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"Network ID (required)\"\n },\n \"offset\": {\n \"type\": \"number\",\n \"description\": \"Offset for pagination\"\n },\n \"tokenAddress\": {\n \"type\": \"string\",\n \"description\": \"Token contract address (required)\"\n },\n \"tradingPeriod\": {\n \"type\": \"string\",\n \"enum\": [\n \"DAY\",\n \"MONTH\",\n \"WEEK\",\n \"YEAR\"\n ],\n \"description\": \"Trading period (DAY, WEEK, MONTH, YEAR)\"\n }\n },\n \"required\": [\n \"networkId\",\n \"tokenAddress\",\n \"tradingPeriod\"\n ],\n \"additionalProperties\": false,\n \"description\": \"Input parameters for token top traders query\"\n }\n },\n \"required\": [\n \"input\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_token_liquidity_metadata\",\n \"description\": \"Get liquidity metadata for all pairs of a given token\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"The network ID the token is on\"\n },\n \"address\": {\n \"type\": \"string\",\n \"description\": \"The token contract address\"\n }\n },\n \"required\": [\n \"networkId\",\n \"address\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_community_notes\",\n \"description\": \"Get community gathered notes and annotations. Returns community-contributed information and insights.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"cursor\": {\n \"type\": \"string\",\n \"description\": \"Cursor for pagination\"\n },\n \"filter\": {},\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Maximum number of items to return\"\n }\n },\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_prime_holders\",\n \"description\": \"Get holders of Prime tokens with detailed balance information, USD values, and token metadata. All parameters are optional.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"cursor\": {\n \"type\": \"string\",\n \"description\": \"Pagination cursor\"\n }\n },\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"search_tokens\",\n \"description\": \"Search for tokens by name, symbol, or contract address on HIVE_DATASOURCE_TWO. Returns matching tokens with price, volume, and market cap data. Uses filterTokens API with phrase search.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"phrase\": {\n \"type\": \"string\",\n \"description\": \"The search query to match against token name, symbol, or address\"\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Maximum number of results to return (default: 20)\"\n },\n \"offset\": {\n \"type\": \"number\",\n \"description\": \"Pagination offset for results\"\n },\n \"networkFilter\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"number\"\n },\n \"description\": \"Filter results to specific network IDs (e.g., [1] for Ethereum, [56] for BSC)\"\n }\n },\n \"required\": [\n \"phrase\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"list_top_tokens\",\n \"description\": \"Get a ranked list of top tokens by volume, market cap, or other metrics on HIVE_DATASOURCE_TWO. Returns tokens sorted by the specified ranking attribute.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Maximum number of tokens to return (default: 100)\"\n },\n \"offset\": {\n \"type\": \"number\",\n \"description\": \"Pagination offset for results\"\n },\n \"rankingAttribute\": {\n \"type\": \"string\",\n \"description\": \"Attribute to rank tokens by (e.g., volume24, marketCap, change24)\"\n },\n \"rankingDirection\": {\n \"type\": \"string\",\n \"enum\": [\n \"ASC\",\n \"DESC\"\n ],\n \"description\": \"Sort direction ASC or DESC (default: DESC)\"\n }\n },\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_latest_pairs\",\n \"description\": \"Get the most recently created trading pairs across DEXs on HIVE_DATASOURCE_TWO. Ideal for discovering new token launches and monitoring launchpad activity. Pairs are sorted by creation time.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Maximum number of pairs to return (default: 20)\"\n },\n \"offset\": {\n \"type\": \"number\",\n \"description\": \"Pagination offset for results\"\n },\n \"minLiquidity\": {\n \"type\": \"number\",\n \"description\": \"Minimum liquidity in USD to include\"\n }\n },\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"filter_network_wallets\",\n \"description\": \"Filter and rank wallets by realized profit, trading activity, or other metrics on HIVE_DATASOURCE_TWO. Useful for finding top traders or analyzing wallet behavior. (Requires Growth or Enterprise plan)\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Maximum number of wallets to return (default: 20)\"\n },\n \"offset\": {\n \"type\": \"number\",\n \"description\": \"Pagination offset for results\"\n },\n \"rankingAttribute\": {\n \"type\": \"string\",\n \"description\": \"Attribute to rank wallets by (e.g., realizedProfitUsd30d, swaps1d)\"\n },\n \"rankingDirection\": {\n \"type\": \"string\",\n \"enum\": [\n \"ASC\",\n \"DESC\"\n ],\n \"description\": \"Sort direction ASC or DESC (default: DESC)\"\n },\n \"wallets\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n },\n \"description\": \"Filter to specific wallet addresses\"\n },\n \"includeLabels\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n },\n \"description\": \"Include only wallets with these labels\"\n },\n \"excludeLabels\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n },\n \"description\": \"Exclude wallets with these labels\"\n }\n },\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_detailed_stats\",\n \"description\": \"Get comprehensive statistics for a specific trading pair on HIVE_DATASOURCE_TWO including volume, price changes, buy/sell counts, and liquidity metrics over multiple timeframes.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"networkId\": {\n \"type\": \"number\",\n \"description\": \"The network ID (e.g., 1 for Ethereum, 56 for BSC)\"\n },\n \"pairAddress\": {\n \"type\": \"string\",\n \"description\": \"The trading pair contract address\"\n },\n \"durations\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n },\n \"description\": \"Time durations for stats (e.g., day1, hour12, hour4, hour1, min5)\"\n },\n \"bucketCount\": {\n \"type\": \"number\",\n \"description\": \"Number of time buckets for historical data\"\n },\n \"statsType\": {\n \"type\": \"string\",\n \"description\": \"Statistics type (filtered or unfiltered)\"\n },\n \"tokenOfInterest\": {\n \"type\": \"string\",\n \"description\": \"Which token in the pair to focus on (token0 or token1)\"\n },\n \"timestamp\": {\n \"type\": \"number\",\n \"description\": \"Historical timestamp for stats (Unix seconds)\"\n }\n },\n \"required\": [\n \"networkId\",\n \"pairAddress\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_topic_creators\",\n \"description\": \"Get the top creators for a social topic\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"topic\": {\n \"type\": \"string\",\n \"description\": \"The cryptocurrency symbol or topic to get creators for (e.g., BTC, ETH, DOGE)\",\n \"example\": \"BTC\"\n }\n },\n \"required\": [\n \"topic\"\n ]\n }\n },\n {\n \"name\": \"get_topic_news\",\n \"description\": \"Get the top news posts for a social topic. Top news is determined by the metrics related to the social posts that mention the news posts.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"topic\": {\n \"type\": \"string\",\n \"description\": \"The cryptocurrency symbol or topic to get news for (e.g., BTC, ETH, DOGE)\",\n \"example\": \"BTC\"\n }\n },\n \"required\": [\n \"topic\"\n ]\n }\n },\n {\n \"name\": \"get_topic_posts\",\n \"description\": \"Get the top posts for a social topic. If start time is provided the result will be the top posts by interactions for the time range. If start is not provided it will be the most recent top posts by interactions from the last 24 hours.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"topic\": {\n \"type\": \"string\",\n \"description\": \"The cryptocurrency symbol or topic to get posts for (e.g., BTC, ETH, DOGE)\",\n \"example\": \"BTC\"\n },\n \"start\": {\n \"type\": \"string\",\n \"description\": \"Start timestamp (Unix timestamp in seconds)\",\n \"example\": \"1640995200\"\n },\n \"end\": {\n \"type\": \"string\",\n \"description\": \"End timestamp (Unix timestamp in seconds)\",\n \"example\": \"1641081600\"\n }\n },\n \"required\": [\n \"topic\"\n ]\n }\n },\n {\n \"name\": \"get_topic_metrics\",\n \"description\": \"Get summary information for a social topic. The output is a 24 hour aggregation social activity with metrics comparing the latest 24 hours to the previous 24 hours.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"topic\": {\n \"type\": \"string\",\n \"description\": \"The cryptocurrency symbol or topic to get information for (e.g., BTC, ETH, DOGE)\",\n \"example\": \"BTC\"\n }\n },\n \"required\": [\n \"topic\"\n ]\n }\n },\n {\n \"name\": \"get_trending_topics\",\n \"description\": \"Get a list of trending social topics.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_category_info\",\n \"description\": \"Get summary information for a social category\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"category\": {\n \"type\": \"string\",\n \"description\": \"The category to get information for\",\n \"example\": \"DeFi\"\n }\n },\n \"required\": [\n \"category\"\n ]\n }\n },\n {\n \"name\": \"get_category_topics\",\n \"description\": \"Get the top topics for a social category\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"category\": {\n \"type\": \"string\",\n \"description\": \"The category to get topics for\",\n \"example\": \"DeFi\"\n }\n },\n \"required\": [\n \"category\"\n ]\n }\n },\n {\n \"name\": \"get_category_posts\",\n \"description\": \"Get the top posts for a social topic. If start time is provided the result will be the top posts by interactions for the time range. If start is not provided it will be the most recent top posts by interactions from the last 24 hours.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"category\": {\n \"type\": \"string\",\n \"description\": \"The category to get posts for\",\n \"example\": \"DeFi\"\n },\n \"start\": {\n \"type\": \"string\",\n \"description\": \"Start timestamp (Unix timestamp in seconds)\",\n \"example\": \"1640995200\"\n },\n \"end\": {\n \"type\": \"string\",\n \"description\": \"End timestamp (Unix timestamp in seconds)\",\n \"example\": \"1641081600\"\n }\n },\n \"required\": [\n \"category\"\n ]\n }\n },\n {\n \"name\": \"get_category_news\",\n \"description\": \"Get the top news posts for a category. Top news is determined by the metrics related to the social posts that mention the news posts.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"category\": {\n \"type\": \"string\",\n \"description\": \"The category to get news for\",\n \"example\": \"DeFi\"\n }\n },\n \"required\": [\n \"category\"\n ]\n }\n },\n {\n \"name\": \"get_category_creators\",\n \"description\": \"Get the top creators for a social category\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"category\": {\n \"type\": \"string\",\n \"description\": \"The category to get creators for\",\n \"example\": \"DeFi\"\n }\n },\n \"required\": [\n \"category\"\n ]\n }\n },\n {\n \"name\": \"get_categories_list\",\n \"description\": \"Get a list of trending social categories.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_creators_list\",\n \"description\": \"Get a list of trending social creators over all of social based on interactions. To get lists of creators by category or topic see the topics and categories endpoints.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_creator_profile\",\n \"description\": \"Get detail information on a specific creator\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"network\": {\n \"type\": \"string\",\n \"description\": \"The social network (e.g., twitter, youtube)\",\n \"example\": \"twitter\"\n },\n \"id\": {\n \"type\": \"string\",\n \"description\": \"The creator ID on the network\",\n \"example\": \"elonmusk\"\n }\n },\n \"required\": [\n \"network\",\n \"id\"\n ]\n }\n },\n {\n \"name\": \"get_creator_metrics\",\n \"description\": \"Get time series data on a creator.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"network\": {\n \"type\": \"string\",\n \"description\": \"The social network (e.g., twitter, youtube)\",\n \"example\": \"twitter\"\n },\n \"id\": {\n \"type\": \"string\",\n \"description\": \"The creator ID on the network\",\n \"example\": \"elonmusk\"\n },\n \"bucket\": {\n \"type\": \"string\",\n \"description\": \"Time bucket for data aggregation\"\n },\n \"interval\": {\n \"type\": \"string\",\n \"description\": \"Time interval for the data points\"\n },\n \"start\": {\n \"type\": \"string\",\n \"description\": \"Start timestamp (Unix timestamp in seconds)\",\n \"example\": \"1640995200\"\n },\n \"end\": {\n \"type\": \"string\",\n \"description\": \"End timestamp (Unix timestamp in seconds)\",\n \"example\": \"1641081600\"\n }\n },\n \"required\": [\n \"network\",\n \"id\"\n ]\n }\n },\n {\n \"name\": \"get_creator_posts\",\n \"description\": \"Get the top posts for a specific creator.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"network\": {\n \"type\": \"string\",\n \"description\": \"The social network (e.g., twitter, youtube)\",\n \"example\": \"twitter\"\n },\n \"id\": {\n \"type\": \"string\",\n \"description\": \"The creator ID on the network\",\n \"example\": \"elonmusk\"\n },\n \"start\": {\n \"type\": \"string\",\n \"description\": \"Start timestamp (Unix timestamp in seconds)\",\n \"example\": \"1640995200\"\n },\n \"end\": {\n \"type\": \"string\",\n \"description\": \"End timestamp (Unix timestamp in seconds)\",\n \"example\": \"1641081600\"\n }\n },\n \"required\": [\n \"network\",\n \"id\"\n ]\n }\n },\n {\n \"name\": \"get_post_details\",\n \"description\": \"Get details of a post\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"post_type\": {\n \"type\": \"string\",\n \"description\": \"The type of post (e.g., twitter, youtube)\",\n \"example\": \"twitter\"\n },\n \"post_id\": {\n \"type\": \"string\",\n \"description\": \"The ID of the post\",\n \"example\": \"1234567890\"\n }\n },\n \"required\": [\n \"post_type\",\n \"post_id\"\n ]\n }\n },\n {\n \"name\": \"get_post_metrics\",\n \"description\": \"Get interactions over time for a post. If a post is older than 365 days the time series will be returned as daily interactions, otherwise it hourly interactions\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"post_type\": {\n \"type\": \"string\",\n \"description\": \"The type of post (e.g., twitter, youtube)\",\n \"example\": \"twitter\"\n },\n \"post_id\": {\n \"type\": \"string\",\n \"description\": \"The ID of the post\",\n \"example\": \"1234567890\"\n }\n },\n \"required\": [\n \"post_type\",\n \"post_id\"\n ]\n }\n },\n {\n \"name\": \"get_crypto_market_metrics\",\n \"description\": \"Get a general snapshot of HIVE_DATASOURCE_THREE metrics on the entire list of tracked coins. This version is heavily cached and up to 1 hour behind. It is designed as a lightweight mechanism for monitoring the universe of available assets, either in aggregate or relative to each other. Metrics include Galaxy Score™, AltRank™, price, volatility, 24h percent change, market cap, social mentions, social interactions, social contributors, social dominance, and categories. Use the coins/list/v2 endpoint for data updated every few seconds.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"sort\": {\n \"type\": \"string\",\n \"description\": \"Sort field for the results\"\n },\n \"filter\": {\n \"type\": \"string\",\n \"description\": \"Filter criteria for the results\"\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Number of results to return\"\n },\n \"desc\": {\n \"type\": \"boolean\",\n \"description\": \"Sort in descending order\"\n },\n \"page\": {\n \"type\": \"string\",\n \"description\": \"Page number for pagination\"\n }\n }\n }\n },\n {\n \"name\": \"get_coin_performance\",\n \"description\": \"Get market data on a coin or token. Specify the coin to be queried by providing the numeric ID or the symbol of the coin in the input parameter, which can be found by calling the /coins/list endpoint.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"coin\": {\n \"type\": \"string\",\n \"description\": \"The coin symbol or ID to get details for (e.g., BTC, ETH)\",\n \"example\": \"BTC\"\n }\n },\n \"required\": [\n \"coin\"\n ]\n }\n },\n {\n \"name\": \"get_coin_metadata\",\n \"description\": \"Get meta information for a cryptocurrency project. This includes information such as the website, social media links, and other information.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"coin\": {\n \"type\": \"string\",\n \"description\": \"The coin symbol or ID to get meta information for (e.g., BTC, ETH)\",\n \"example\": \"BTC\"\n }\n },\n \"required\": [\n \"coin\"\n ]\n }\n },\n {\n \"name\": \"get_supported_stocks\",\n \"description\": \"Lists all stocks supported by HIVE_DATASOURCE_THREE. Includes the \\\"topic\\\" endpoint to use to get social data from this asset as a social topic.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_stock_analytics\",\n \"description\": \"Get market data on a stock. Specify the coin to be queried by providing the numeric ID or the symbol of the coin in the input parameter, which can be found by calling the /coins/list endpoint.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"stock\": {\n \"type\": \"string\",\n \"description\": \"The stock symbol or ID to get details for (e.g., AAPL, TSLA)\",\n \"example\": \"AAPL\"\n }\n },\n \"required\": [\n \"stock\"\n ]\n }\n },\n {\n \"name\": \"get_nft_collections\",\n \"description\": \"Lists all nft collections supported by HIVE_DATASOURCE_THREE. Includes the \\\"topic\\\" endpoint to use to get social data from this nft collection as a social topic.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_nft_collection_analysis\",\n \"description\": \"Get market data on an nft collection. Specify the nft to be queried by providing the numeric ID or the slug of the nft in the input parameter, which can be found by calling the /public/nfts/list endpoint.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"nft\": {\n \"type\": \"string\",\n \"description\": \"The NFT collection slug or ID to get details for\",\n \"example\": \"cryptopunks\"\n }\n },\n \"required\": [\n \"nft\"\n ]\n }\n },\n {\n \"name\": \"get_nft_market_trends\",\n \"description\": \"Get market time series data on an nft collection. Specify the nft to be queried by providing the numeric ID or slug of the nft collection in the input parameter, which can be found by calling the /public/nfts/list endpoint.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"nft\": {\n \"type\": \"string\",\n \"description\": \"The NFT collection slug or ID to get time series data for\",\n \"example\": \"cryptopunks\"\n }\n },\n \"required\": [\n \"nft\"\n ]\n }\n },\n {\n \"name\": \"get_system_changes\",\n \"description\": \"Updates to potential changes to historical time series data. Search term changes only impact the most recent 72 hours (hourly) or 3 days (daily) data. \\\"full historical\\\" is a change that may impact the full history of data. Each change provides a description of what is impacted and why.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_exchange_markets\",\n \"description\": \"Fetch all available markets/trading pairs from an exchange\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"exchange\": {\n \"type\": \"string\",\n \"description\": \"Exchange ID (e.g., binance, coinbase, kraken)\",\n \"example\": \"binance\"\n }\n },\n \"required\": [\n \"exchange\"\n ]\n }\n },\n {\n \"name\": \"get_exchange_currencies\",\n \"description\": \"Fetch all available currencies from an exchange\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"exchange\": {\n \"type\": \"string\",\n \"description\": \"Exchange ID (e.g., binance, coinbase, kraken)\",\n \"example\": \"binance\"\n }\n },\n \"required\": [\n \"exchange\"\n ]\n }\n },\n {\n \"name\": \"get_ticker\",\n \"description\": \"Fetch ticker data (price, volume, etc.) for a specific trading pair\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"exchange\": {\n \"type\": \"string\",\n \"description\": \"Exchange ID (e.g., binance, coinbase, kraken)\",\n \"example\": \"binance\"\n },\n \"symbol\": {\n \"type\": \"string\",\n \"description\": \"Trading pair symbol (e.g., BTC/USDT, ETH/USD)\",\n \"example\": \"BTC/USDT\"\n }\n },\n \"required\": [\n \"exchange\",\n \"symbol\"\n ]\n }\n },\n {\n \"name\": \"get_tickers\",\n \"description\": \"Fetch ticker data for multiple trading pairs\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"exchange\": {\n \"type\": \"string\",\n \"description\": \"Exchange ID (e.g., binance, coinbase, kraken)\",\n \"example\": \"binance\"\n },\n \"symbols\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n },\n \"description\": \"Array of trading pair symbols (optional, fetches all if not provided)\",\n \"example\": [\n \"BTC/USDT\",\n \"ETH/USDT\"\n ]\n }\n },\n \"required\": [\n \"exchange\"\n ]\n }\n },\n {\n \"name\": \"get_orderbook\",\n \"description\": \"Fetch order book (bids and asks) for a trading pair\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"exchange\": {\n \"type\": \"string\",\n \"description\": \"Exchange ID (e.g., binance, coinbase, kraken)\",\n \"example\": \"binance\"\n },\n \"symbol\": {\n \"type\": \"string\",\n \"description\": \"Trading pair symbol (e.g., BTC/USDT, ETH/USD)\",\n \"example\": \"BTC/USDT\"\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Number of order book entries to return\",\n \"example\": 10\n }\n },\n \"required\": [\n \"exchange\",\n \"symbol\"\n ]\n }\n },\n {\n \"name\": \"get_recent_trades\",\n \"description\": \"Fetch recent trades for a trading pair\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"exchange\": {\n \"type\": \"string\",\n \"description\": \"Exchange ID (e.g., binance, coinbase, kraken)\",\n \"example\": \"binance\"\n },\n \"symbol\": {\n \"type\": \"string\",\n \"description\": \"Trading pair symbol (e.g., BTC/USDT, ETH/USD)\",\n \"example\": \"BTC/USDT\"\n },\n \"since\": {\n \"type\": \"number\",\n \"description\": \"Timestamp in milliseconds to fetch trades since\",\n \"example\": 1693958400000\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Number of trades to return\",\n \"example\": 100\n }\n },\n \"required\": [\n \"exchange\",\n \"symbol\"\n ]\n }\n },\n {\n \"name\": \"get_ohlcv\",\n \"description\": \"Fetch OHLCV (candlestick) data for a trading pair\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"exchange\": {\n \"type\": \"string\",\n \"description\": \"Exchange ID (e.g., binance, coinbase, kraken)\",\n \"example\": \"binance\"\n },\n \"symbol\": {\n \"type\": \"string\",\n \"description\": \"Trading pair symbol (e.g., BTC/USDT, ETH/USD)\",\n \"example\": \"BTC/USDT\"\n },\n \"timeframe\": {\n \"type\": \"string\",\n \"description\": \"Timeframe (e.g., 1m, 5m, 15m, 1h, 4h, 1d)\",\n \"example\": \"1h\",\n \"default\": \"1m\"\n },\n \"since\": {\n \"type\": \"number\",\n \"description\": \"Timestamp in milliseconds to fetch candles since\",\n \"example\": 1693958400000\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Number of candles to return\",\n \"example\": 100\n }\n },\n \"required\": [\n \"exchange\",\n \"symbol\"\n ]\n }\n },\n {\n \"name\": \"get_funding_rate\",\n \"description\": \"Fetch current funding rate for a perpetual futures contract\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"exchange\": {\n \"type\": \"string\",\n \"description\": \"Exchange ID (e.g., binance, bybit, okx)\",\n \"example\": \"binance\"\n },\n \"symbol\": {\n \"type\": \"string\",\n \"description\": \"Trading pair symbol (e.g., BTC/USDT:USDT)\",\n \"example\": \"BTC/USDT:USDT\"\n }\n },\n \"required\": [\n \"exchange\",\n \"symbol\"\n ]\n }\n },\n {\n \"name\": \"get_funding_rate_history\",\n \"description\": \"Fetch funding rate history for perpetual futures contracts\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"exchange\": {\n \"type\": \"string\",\n \"description\": \"Exchange ID (e.g., binance, bybit, okx)\",\n \"example\": \"binance\"\n },\n \"symbol\": {\n \"type\": \"string\",\n \"description\": \"Trading pair symbol (optional, fetches all if not provided)\",\n \"example\": \"BTC/USDT:USDT\"\n },\n \"since\": {\n \"type\": \"number\",\n \"description\": \"Timestamp in milliseconds to fetch history since\",\n \"example\": 1693958400000\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Number of funding rate entries to return\",\n \"example\": 100\n }\n },\n \"required\": [\n \"exchange\"\n ]\n }\n },\n {\n \"name\": \"get_best_bid_ask\",\n \"description\": \"Fetch best bid/ask prices for multiple trading pairs\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"exchange\": {\n \"type\": \"string\",\n \"description\": \"Exchange ID (e.g., binance, coinbase, kraken)\",\n \"example\": \"binance\"\n },\n \"symbols\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n },\n \"description\": \"Array of trading pair symbols (optional, fetches all if not provided)\",\n \"example\": [\n \"BTC/USDT\",\n \"ETH/USDT\"\n ]\n }\n },\n \"required\": [\n \"exchange\"\n ]\n }\n },\n {\n \"name\": \"get_exchange_status\",\n \"description\": \"Fetch the exchange system status to check if it is operating normally\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"exchange\": {\n \"type\": \"string\",\n \"description\": \"Exchange ID (e.g., binance, coinbase, kraken)\",\n \"example\": \"binance\"\n }\n },\n \"required\": [\n \"exchange\"\n ]\n }\n },\n {\n \"name\": \"get_exchange_time\",\n \"description\": \"Fetch the current exchange server time\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"exchange\": {\n \"type\": \"string\",\n \"description\": \"Exchange ID (e.g., binance, coinbase, kraken)\",\n \"example\": \"binance\"\n }\n },\n \"required\": [\n \"exchange\"\n ]\n }\n },\n {\n \"name\": \"get_l2_orderbook\",\n \"description\": \"Fetch level 2 (aggregated) order book for faster performance\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"exchange\": {\n \"type\": \"string\",\n \"description\": \"Exchange ID (e.g., binance, coinbase, kraken)\",\n \"example\": \"binance\"\n },\n \"symbol\": {\n \"type\": \"string\",\n \"description\": \"Trading pair symbol (e.g., BTC/USDT, ETH/USD)\",\n \"example\": \"BTC/USDT\"\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Number of order book entries to return\",\n \"example\": 10\n }\n },\n \"required\": [\n \"exchange\",\n \"symbol\"\n ]\n }\n },\n {\n \"name\": \"get_funding_rates\",\n \"description\": \"Fetch funding rates for multiple or all perpetual futures contracts\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"exchange\": {\n \"type\": \"string\",\n \"description\": \"Exchange ID (e.g., binance, bybit, okx)\",\n \"example\": \"binance\"\n },\n \"symbols\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n },\n \"description\": \"Array of trading pair symbols (optional, fetches all if not provided)\",\n \"example\": [\n \"BTC/USDT:USDT\",\n \"ETH/USDT:USDT\"\n ]\n }\n },\n \"required\": [\n \"exchange\"\n ]\n }\n },\n {\n \"name\": \"get_index_ohlcv\",\n \"description\": \"Fetch index price OHLCV data for derivatives\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"exchange\": {\n \"type\": \"string\",\n \"description\": \"Exchange ID (e.g., binance, bybit, okx)\",\n \"example\": \"binance\"\n },\n \"symbol\": {\n \"type\": \"string\",\n \"description\": \"Index symbol (e.g., BTC/USDT)\",\n \"example\": \"BTC/USDT\"\n },\n \"timeframe\": {\n \"type\": \"string\",\n \"description\": \"Timeframe (e.g., 1m, 5m, 15m, 1h, 4h, 1d)\",\n \"example\": \"1h\",\n \"default\": \"1m\"\n },\n \"since\": {\n \"type\": \"number\",\n \"description\": \"Timestamp in milliseconds to fetch candles since\",\n \"example\": 1693958400000\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Number of candles to return\",\n \"example\": 100\n }\n },\n \"required\": [\n \"exchange\",\n \"symbol\"\n ]\n }\n },\n {\n \"name\": \"get_mark_ohlcv\",\n \"description\": \"Fetch mark price OHLCV data for derivatives\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"exchange\": {\n \"type\": \"string\",\n \"description\": \"Exchange ID (e.g., binance, bybit, okx)\",\n \"example\": \"binance\"\n },\n \"symbol\": {\n \"type\": \"string\",\n \"description\": \"Trading pair symbol (e.g., BTC/USDT:USDT)\",\n \"example\": \"BTC/USDT:USDT\"\n },\n \"timeframe\": {\n \"type\": \"string\",\n \"description\": \"Timeframe (e.g., 1m, 5m, 15m, 1h, 4h, 1d)\",\n \"example\": \"1h\",\n \"default\": \"1m\"\n },\n \"since\": {\n \"type\": \"number\",\n \"description\": \"Timestamp in milliseconds to fetch candles since\",\n \"example\": 1693958400000\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Number of candles to return\",\n \"example\": 100\n }\n },\n \"required\": [\n \"exchange\",\n \"symbol\"\n ]\n }\n },\n {\n \"name\": \"get_premium_index_ohlcv\",\n \"description\": \"Fetch premium index OHLCV data for perpetual contracts\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"exchange\": {\n \"type\": \"string\",\n \"description\": \"Exchange ID (e.g., binance, bybit, okx)\",\n \"example\": \"binance\"\n },\n \"symbol\": {\n \"type\": \"string\",\n \"description\": \"Trading pair symbol (e.g., BTC/USDT:USDT)\",\n \"example\": \"BTC/USDT:USDT\"\n },\n \"timeframe\": {\n \"type\": \"string\",\n \"description\": \"Timeframe (e.g., 1m, 5m, 15m, 1h, 4h, 1d)\",\n \"example\": \"1h\",\n \"default\": \"1m\"\n },\n \"since\": {\n \"type\": \"number\",\n \"description\": \"Timestamp in milliseconds to fetch candles since\",\n \"example\": 1693958400000\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Number of candles to return\",\n \"example\": 100\n }\n },\n \"required\": [\n \"exchange\",\n \"symbol\"\n ]\n }\n },\n {\n \"name\": \"get_trading_fees\",\n \"description\": \"Fetch trading fee structure (maker/taker fees) for an exchange\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"exchange\": {\n \"type\": \"string\",\n \"description\": \"Exchange ID (e.g., binance, coinbase, kraken)\",\n \"example\": \"binance\"\n }\n },\n \"required\": [\n \"exchange\"\n ]\n }\n },\n {\n \"name\": \"get_open_interest\",\n \"description\": \"Fetch current open interest for a derivatives contract\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"exchange\": {\n \"type\": \"string\",\n \"description\": \"Exchange ID (e.g., binance, bybit, okx)\",\n \"example\": \"binance\"\n },\n \"symbol\": {\n \"type\": \"string\",\n \"description\": \"Derivatives contract symbol (e.g., BTC/USDT:USDT)\",\n \"example\": \"BTC/USDT:USDT\"\n }\n },\n \"required\": [\n \"exchange\",\n \"symbol\"\n ]\n }\n },\n {\n \"name\": \"get_open_interest_history\",\n \"description\": \"Fetch historical open interest data for a derivatives contract\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"exchange\": {\n \"type\": \"string\",\n \"description\": \"Exchange ID (e.g., binance, bybit, okx)\",\n \"example\": \"binance\"\n },\n \"symbol\": {\n \"type\": \"string\",\n \"description\": \"Derivatives contract symbol (e.g., BTC/USDT:USDT)\",\n \"example\": \"BTC/USDT:USDT\"\n },\n \"timeframe\": {\n \"type\": \"string\",\n \"description\": \"Data interval (e.g., 5m, 15m, 1h, 4h, 1d)\",\n \"example\": \"1h\",\n \"default\": \"1h\"\n },\n \"since\": {\n \"type\": \"number\",\n \"description\": \"Timestamp in milliseconds to fetch data since\",\n \"example\": 1693958400000\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Number of data points to return\",\n \"example\": 100\n }\n },\n \"required\": [\n \"exchange\",\n \"symbol\"\n ]\n }\n },\n {\n \"name\": \"get_long_short_ratio\",\n \"description\": \"Fetch long/short ratio for a derivatives contract (market sentiment)\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"exchange\": {\n \"type\": \"string\",\n \"description\": \"Exchange ID (e.g., binance, bybit, okx)\",\n \"example\": \"binance\"\n },\n \"symbol\": {\n \"type\": \"string\",\n \"description\": \"Derivatives contract symbol (e.g., BTC/USDT:USDT)\",\n \"example\": \"BTC/USDT:USDT\"\n },\n \"timeframe\": {\n \"type\": \"string\",\n \"description\": \"Data interval (e.g., 5m, 15m, 1h, 4h, 1d)\",\n \"example\": \"1h\",\n \"default\": \"1h\"\n },\n \"since\": {\n \"type\": \"number\",\n \"description\": \"Timestamp in milliseconds to fetch data since\",\n \"example\": 1693958400000\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Number of data points to return\",\n \"example\": 24\n }\n },\n \"required\": [\n \"exchange\",\n \"symbol\"\n ]\n }\n },\n {\n \"name\": \"get_liquidations\",\n \"description\": \"Fetch recent liquidation events for a derivatives contract\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"exchange\": {\n \"type\": \"string\",\n \"description\": \"Exchange ID (e.g., binance, bybit, okx)\",\n \"example\": \"binance\"\n },\n \"symbol\": {\n \"type\": \"string\",\n \"description\": \"Derivatives contract symbol (e.g., BTC/USDT:USDT)\",\n \"example\": \"BTC/USDT:USDT\"\n },\n \"since\": {\n \"type\": \"number\",\n \"description\": \"Timestamp in milliseconds to fetch liquidations since\",\n \"example\": 1693958400000\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Number of liquidation events to return\",\n \"example\": 50\n }\n },\n \"required\": [\n \"exchange\",\n \"symbol\"\n ]\n }\n },\n {\n \"name\": \"get_borrow_rates\",\n \"description\": \"Fetch cross-margin borrow rates for all currencies on an exchange\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"exchange\": {\n \"type\": \"string\",\n \"description\": \"Exchange ID (e.g., binance, bybit, okx)\",\n \"example\": \"binance\"\n }\n },\n \"required\": [\n \"exchange\"\n ]\n }\n },\n {\n \"name\": \"get_leverage_tiers\",\n \"description\": \"Fetch leverage tier information for trading pairs showing max leverage, maintenance margin rates, and notional value brackets\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"exchange\": {\n \"type\": \"string\",\n \"description\": \"Exchange ID (e.g., binance, bybit, okx)\",\n \"example\": \"binance\"\n },\n \"symbol\": {\n \"type\": \"string\",\n \"description\": \"Trading pair symbol (e.g., BTC/USDT:USDT). Omit for all.\",\n \"example\": \"BTC/USDT:USDT\"\n }\n },\n \"required\": [\n \"exchange\"\n ]\n }\n },\n {\n \"name\": \"goldrush_get_cross_chain_activity\",\n \"description\": \"Execute the goldrush_get_cross_chain_activity tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_multichain_balances\",\n \"description\": \"Execute the goldrush_get_multichain_balances tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_multichain_transactions\",\n \"description\": \"Execute the goldrush_get_multichain_transactions tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_token_balances\",\n \"description\": \"Execute the goldrush_get_token_balances tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_historical_balances\",\n \"description\": \"Execute the goldrush_get_historical_balances tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_native_balance\",\n \"description\": \"Execute the goldrush_get_native_balance tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_erc20_transfers\",\n \"description\": \"Execute the goldrush_get_erc20_transfers tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_portfolio_history\",\n \"description\": \"Execute the goldrush_get_portfolio_history tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_token_holders\",\n \"description\": \"Execute the goldrush_get_token_holders tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_transaction\",\n \"description\": \"Execute the goldrush_get_transaction tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_transaction_summary\",\n \"description\": \"Execute the goldrush_get_transaction_summary tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_transactions_earliest\",\n \"description\": \"Execute the goldrush_get_transactions_earliest tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_transactions_latest\",\n \"description\": \"Execute the goldrush_get_transactions_latest tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_transactions_paginated\",\n \"description\": \"Execute the goldrush_get_transactions_paginated tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_transactions_time_buckets\",\n \"description\": \"Execute the goldrush_get_transactions_time_buckets tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_block_transactions\",\n \"description\": \"Execute the goldrush_get_block_transactions tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_block_transactions_paginated\",\n \"description\": \"Execute the goldrush_get_block_transactions_paginated tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_nft_balances\",\n \"description\": \"Execute the goldrush_get_nft_balances tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_check_nft_ownership\",\n \"description\": \"Execute the goldrush_check_nft_ownership tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_check_nft_token_ownership\",\n \"description\": \"Execute the goldrush_check_nft_token_ownership tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_token_approvals\",\n \"description\": \"Execute the goldrush_get_token_approvals tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_bitcoin_hd_balances\",\n \"description\": \"Execute the goldrush_get_bitcoin_hd_balances tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_bitcoin_balance\",\n \"description\": \"Execute the goldrush_get_bitcoin_balance tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_bitcoin_balance_history\",\n \"description\": \"Execute the goldrush_get_bitcoin_balance_history tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_bitcoin_transactions\",\n \"description\": \"Execute the goldrush_get_bitcoin_transactions tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_historical_token_prices\",\n \"description\": \"Execute the goldrush_get_historical_token_prices tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_pool_spot_prices\",\n \"description\": \"Execute the goldrush_get_pool_spot_prices tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_gas_prices\",\n \"description\": \"Execute the goldrush_get_gas_prices tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_logs\",\n \"description\": \"Execute the goldrush_get_logs tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_logs_by_topic\",\n \"description\": \"Execute the goldrush_get_logs_by_topic tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_logs_by_contract\",\n \"description\": \"Execute the goldrush_get_logs_by_contract tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_block\",\n \"description\": \"Execute the goldrush_get_block tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_block_heights\",\n \"description\": \"Execute the goldrush_get_block_heights tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_chains\",\n \"description\": \"Execute the goldrush_get_chains tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_chain_statuses\",\n \"description\": \"Execute the goldrush_get_chain_statuses tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_resolve_address\",\n \"description\": \"Execute the goldrush_resolve_address tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"finnhub_get_stock_quote\",\n \"description\": \"Execute the finnhub_get_stock_quote tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"finnhub_get_stock_candles\",\n \"description\": \"Execute the finnhub_get_stock_candles tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"finnhub_get_company_profile\",\n \"description\": \"Execute the finnhub_get_company_profile tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"finnhub_get_basic_financials\",\n \"description\": \"Execute the finnhub_get_basic_financials tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"finnhub_get_stock_recommendations\",\n \"description\": \"Execute the finnhub_get_stock_recommendations tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"finnhub_get_price_target\",\n \"description\": \"Execute the finnhub_get_price_target tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"finnhub_search_symbol\",\n \"description\": \"Execute the finnhub_search_symbol tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"finnhub_get_market_news\",\n \"description\": \"Execute the finnhub_get_market_news tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"finnhub_get_forex_candles\",\n \"description\": \"Execute the finnhub_get_forex_candles tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"finnhub_get_forex_symbols\",\n \"description\": \"Execute the finnhub_get_forex_symbols tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"finnhub_get_forex_rates\",\n \"description\": \"Execute the finnhub_get_forex_rates tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"finnhub_get_commodity_candles\",\n \"description\": \"Execute the finnhub_get_commodity_candles tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"finnhub_get_insider_transactions\",\n \"description\": \"Execute the finnhub_get_insider_transactions tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"finnhub_get_insider_sentiment\",\n \"description\": \"Execute the finnhub_get_insider_sentiment tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"finnhub_get_company_news\",\n \"description\": \"Execute the finnhub_get_company_news tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"finnhub_get_earnings_calendar\",\n \"description\": \"Execute the finnhub_get_earnings_calendar tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"finnhub_get_ipo_calendar\",\n \"description\": \"Execute the finnhub_get_ipo_calendar tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"finnhub_get_economic_calendar\",\n \"description\": \"Execute the finnhub_get_economic_calendar tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"finnhub_get_market_status\",\n \"description\": \"Execute the finnhub_get_market_status tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"finnhub_get_country_list\",\n \"description\": \"Execute the finnhub_get_country_list tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"fred_get_series_observations\",\n \"description\": \"Execute the fred_get_series_observations tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"fred_search_series\",\n \"description\": \"Execute the fred_search_series tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"fred_get_series_info\",\n \"description\": \"Execute the fred_get_series_info tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"fred_get_releases\",\n \"description\": \"Execute the fred_get_releases tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"fred_get_gdp\",\n \"description\": \"Execute the fred_get_gdp tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"fred_get_inflation\",\n \"description\": \"Execute the fred_get_inflation tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"fred_get_fed_rate\",\n \"description\": \"Execute the fred_get_fed_rate tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"fred_get_treasury_10y\",\n \"description\": \"Execute the fred_get_treasury_10y tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"fred_get_unemployment\",\n \"description\": \"Execute the fred_get_unemployment tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"fred_get_sp500\",\n \"description\": \"Execute the fred_get_sp500 tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n }\n]\n","import {supportedTools} from './mcp/allToolList'\n\nexport let ToolRegistry = [\n {\n \"category\": \"Market Data and Price\",\n \"name\": \"get_market_and_price_endpoints\",\n \"description\": \"Endpoints to retrieve real-time and historical cryptocurrency prices, market caps, trading volumes, OHLC data, global market statistics, supported currencies, basic market performance metrics across different timeframes and asset platforms, stablecoin market analytics, stablecoin price tracking, comprehensive stablecoin market cap data across multiple chains, social sentiment-enhanced market metrics including Galaxy Score™ and AltRank™ rankings, centralized exchange (CEX) trading data including real-time tickers, order books, recent trades, candlestick charts, best bid/ask prices, CEX exchange metadata and volume charts, derivatives pricing (index, mark, and premium), perpetual futures funding rates, leverage tiers, options trading analytics, and available trading markets/currencies across major exchanges. Provider guide: Use coingecko/lunarcrush tools for market-wide price data and sentiment. Use ccxt_ tools for CEX trading data. Use goldrush_ tools for on-chain token price history and gas prices across 100+ chains.\",\n \"tools\": [\n \"get_coins_index\",\n \"get_coins_market_data\",\n \"get_coin_history\",\n \"get_coin_market_chart_range\",\n \"get_coin_ohlc_range\",\n \"get_price\",\n \"get_gainers_losers\",\n \"get_contract_coin\",\n \"get_contract_market_chart\",\n \"get_contract_market_chart_range\",\n \"get_token_price_by_contract\",\n \"get_global_stats\",\n \"get_supported_currencies\",\n \"get_token_price\",\n \"get_price_chart\",\n \"get_token_sparklines\",\n \"get_token_chart_urls\",\n \"get_coin_tickers\",\n \"get_coin_historical_chart\",\n \"get_btc_exchange_rates\",\n \"get_global_market_cap_chart\",\n \"get_coin_ohlc\",\n \"get_circulating_supply_chart\",\n \"get_circulating_supply_chart_range\",\n \"get_total_supply_chart\",\n \"get_total_supply_chart_range\",\n \"get_stablecoins\",\n \"get_stablecoin_chains\",\n \"get_stablecoin_charts_global\",\n \"get_stablecoin_charts_by_chain\",\n \"get_stablecoin_prices\",\n \"stablecoin_data_by_id\",\n \"get_current_prices\",\n \"get_historical_prices\",\n \"get_batch_historical_prices\",\n \"get_price_percentage_change\",\n \"get_first_prices\",\n \"get_crypto_market_metrics\",\n \"get_coin_performance\",\n \"get_supported_stocks\",\n \"get_stock_analytics\",\n \"get_ticker\",\n \"get_tickers\",\n \"get_orderbook\",\n \"get_recent_trades\",\n \"get_ohlcv\",\n \"get_best_bid_ask\",\n \"get_l2_orderbook\",\n \"get_index_ohlcv\",\n \"get_mark_ohlcv\",\n \"get_premium_index_ohlcv\",\n \"get_funding_rate\",\n \"get_funding_rate_history\",\n \"get_funding_rates\",\n \"get_trading_fees\",\n \"get_open_interest\",\n \"get_open_interest_history\",\n \"get_long_short_ratio\",\n \"get_liquidations\",\n \"get_borrow_rates\",\n \"get_debank_token_price_history\",\n \"get_stablecoin_dominance\",\n \"get_leverage_tiers\",\n // GoldRush market/price tools\n \"goldrush_get_historical_token_prices\",\n \"goldrush_get_gas_prices\",\n \"goldrush_get_pool_spot_prices\",\n // CEX exchange data (moved from On-Chain DEX — these are centralized exchange tools)\n \"get_exchanges\",\n \"get_exchange\",\n \"get_exchange_tickers\",\n \"get_exchange_volume_chart\",\n \"get_exchange_volume_chart_range\",\n \"get_derivatives_tickers\",\n \"get_derivatives_exchanges\",\n \"get_derivatives_exchange\",\n \"filter_exchanges\",\n // Options/derivatives market data (moved from On-Chain DEX)\n \"get_options_overview\",\n \"get_options_by_chain\",\n \"get_options_protocol\",\n // CEX infrastructure (moved from Network & Infrastructure — these return market/trading data)\n \"get_exchange_markets\",\n \"get_exchange_currencies\"\n ]\n },\n {\n \"category\": \"On-Chain DEX & Pool Analytics\",\n \"name\": \"get_onchain_dex_pool_endpoints\",\n \"description\": \"Endpoints for analyzing on-chain decentralized exchange pools, liquidity data, trading pairs, DEX rankings, pool filtering, trending pools, OHLCV data for pools/tokens, trading volume analysis, comprehensive on-chain trading metrics across multiple networks and DEXs, real-time DEX trading analytics, advanced token trading intelligence with DEXScreener-style metrics, trader statistics (makers, buyers, sellers), aggregated trading data by tokens, volume breakdowns, trading activity analysis, DEX volume analytics across protocols and chains, and cross-chain bridge analytics.\",\n \"tools\": [\n \"get_onchain_categories\",\n \"get_pools_by_category\",\n \"get_new_pools\",\n \"get_new_pools_by_network\",\n \"get_trending_pools\",\n \"get_trending_pools_by_network\",\n \"get_dexes\",\n \"get_pools_by_dex\",\n \"get_pools\",\n \"get_pools_by_address\",\n \"get_pool_info\",\n \"get_pool_ohlcv\",\n \"get_pool_trades\",\n \"get_token_ohlcv\",\n \"get_token_pools\",\n \"get_token_trades\",\n \"get_onchain_token_top_traders\",\n \"filter_pools\",\n \"search_trending_pools\",\n \"search_pools\",\n \"get_onchain_token_price\",\n \"get_token_transactions\",\n \"get_pair_stats\",\n \"get_pairs_stats\",\n \"filter_pairs\",\n \"get_pair_info\",\n \"get_token_pairs\",\n \"get_token_pairs_metadata\",\n \"get_liquidity_info\",\n \"get_liquidity_locks\",\n \"get_network_trending_pools\",\n \"get_multi_pools\",\n \"get_network_dexes\",\n \"get_pair_chart_metadata\",\n \"get_token_liquidity_metadata\",\n \"get_latest_pairs\",\n \"get_detailed_stats\",\n \"get_token_chart_data\",\n \"get_dex_volumes\",\n \"get_dex_volume\",\n \"get_dex_volumes_by_chain\",\n \"defillama_get_bridges\",\n \"defillama_get_bridge_by_id\",\n \"defillama_get_bridge_volume\"\n ]\n },\n {\n \"category\": \"Portfolio & Wallet\",\n \"name\": \"get_portfolio_wallet_endpoints\",\n \"description\": \"Endpoints for tracking user wallet balances, transaction history, portfolio positions across protocols and chains, net asset calculations, token holdings analysis, comprehensive wallet activity monitoring, real-time balance tracking, balance update history over time, multi-token portfolio analysis, balance changes with transaction context, financial auditing capabilities for individual users and addresses, wallet filtering and discovery, and NFT holdings tracking. Provider guide: Use debank_ tools for EVM wallet portfolios, DeFi positions, and protocol-level analytics. Use goldrush_ tools for Bitcoin wallets, historical balance snapshots at specific blocks, 100+ chain coverage, and decoded transaction logs.\",\n \"tools\": [\n \"get_wallet_history\",\n \"get_wallet_balance\",\n \"get_wallet_token_balances\",\n \"get_wallet_protocol_positions\",\n \"get_wallet_defi_positions\",\n \"get_wallet_defi_positions_all_chains\",\n \"get_wallet_balances\",\n \"get_wallet_token_events\",\n \"filter_wallets\",\n \"filter_token_wallets\",\n \"get_wallet_stats\",\n \"get_wallet_chart\",\n \"get_wallet_nft_collections\",\n \"get_wallet_nft_assets\",\n \"filter_network_wallets\",\n \"get_wallet_active_chains\",\n \"get_wallet_chain_balance\",\n \"get_portfolio_history\",\n \"get_chain_portfolio_history\",\n \"get_all_chain_history\",\n // GoldRush wallet/portfolio tools\n \"goldrush_get_token_balances\",\n \"goldrush_get_historical_balances\",\n \"goldrush_get_native_balance\",\n \"goldrush_get_erc20_transfers\",\n \"goldrush_get_portfolio_history\",\n \"goldrush_get_multichain_balances\",\n \"goldrush_get_multichain_transactions\",\n \"goldrush_get_cross_chain_activity\",\n \"goldrush_get_bitcoin_balance\",\n \"goldrush_get_bitcoin_hd_balances\",\n \"goldrush_get_bitcoin_balance_history\",\n \"goldrush_get_bitcoin_transactions\",\n \"goldrush_get_transaction\",\n \"goldrush_get_transaction_summary\",\n \"goldrush_get_transactions_earliest\",\n \"goldrush_get_transactions_latest\",\n \"goldrush_get_transactions_paginated\",\n \"goldrush_get_transactions_time_buckets\"\n ]\n },\n {\n \"category\": \"Token & Contract data\",\n \"name\": \"get_token_contract_endpoints\",\n \"description\": \"Endpoints for detailed token and contract analysis including token metadata, holder distributions, contract information, token filtering and discovery, holder rankings, comprehensive token intelligence across multiple networks, advanced transaction analysis and forensics, detailed transaction data (hash, sender, recipient, value, gas costs), internal transactions with signatures, transaction status validation, address tracking capabilities for security analysis and investigation, token lifecycle events, trader analytics, and project metadata including websites and social media links. Provider guide: Use codex_ tools for on-chain DEX token analytics and pair data. Use coingecko tools for market metadata. Use goldrush_ tools for token holder lists across 100+ chains.\",\n \"tools\": [\n \"get_tokens_by_address\",\n \"get_token_info\",\n \"get_token_top_holders\",\n \"get_token_holders_chart\",\n \"get_token_details\",\n \"get_tokens\",\n \"filter_tokens\",\n \"get_token_holders\",\n \"get_top_holders_percentage\",\n \"get_new_tokens\",\n \"get_multi_tokens\",\n \"get_recently_updated_tokens\",\n \"get_token_lifecycle_events\",\n \"get_token_top_traders\",\n \"get_coin_metadata\",\n \"list_top_tokens\",\n \"get_debank_token_info\",\n \"get_tokens_by_ids\",\n \"get_debank_top_holders\",\n \"get_companies_treasury\",\n \"get_entities_list\",\n \"get_treasury_by_entity\",\n \"get_treasury_holding_chart\",\n \"get_treasury_transaction_history\",\n \"get_token_lists\",\n \"explain_transaction\",\n // GoldRush token tools\n \"goldrush_get_token_holders\"\n ]\n },\n {\n \"category\": \"DeFi Protocol Analytics\",\n \"name\": \"get_defi_protocol_endpoints\",\n \"description\": \"Endpoints for comprehensive DeFi protocol analysis including Total Value Locked (TVL) data, protocol listings, chain-specific TVL metrics, historical TVL tracking across all chains, protocol fee analysis, yield farming analytics with APY data, detailed protocol information, comprehensive DeFi ecosystem statistics, blockchain network TVL tracking, yield pool management and historical charts, and protocol fee structures across different DeFi platforms.\",\n \"tools\": [\n \"get_protocol_info\",\n \"get_protocols\",\n \"get_global_defi\",\n \"get_defi_protocols\",\n \"get_defi_protocol\",\n \"get_protocol_tvl\",\n \"get_protocol_fees\",\n \"get_chains\",\n \"get_chain_tvl_history\",\n \"get_chains_tvl_history\",\n \"get_yield_pools\",\n \"get_yield_pool_chart\",\n \"get_fees_overview\",\n \"get_chain_fees\",\n \"get_protocol_fee_summary\",\n \"defillama_get_treasuries\",\n \"defillama_get_treasury\",\n \"defillama_get_raises\",\n \"defillama_get_emissions\",\n \"get_defi_oracles\",\n \"get_defi_forks\",\n \"get_defi_categories\",\n \"get_defi_entities\"\n ]\n },\n {\n \"category\": \"NFT Analytics\",\n \"name\": \"get_nft_analytics_endpoints\",\n \"description\": \"Endpoints for comprehensive NFT ecosystem analysis including collection data, market analytics, user NFT holdings, collection floor prices, trading volumes, historical NFT market data, NFT liquidity pools and AMM marketplaces (like Sudoswap), NFT DeFi analytics, Prime ecosystem pools, Parallel trading card game assets, NFT pool management, collection holder analysis, advanced NFT search and filtering, contract metadata, cross-chain NFT analytics, social sentiment tracking for NFT collections, and time series market trend analysis. Provider guide: Use codex_ tools for NFT collection analytics, pools, and trading. Use goldrush_ tools for NFT balance lookups and ownership verification across 100+ chains.\",\n \"tools\": [\n \"get_nft\",\n \"get_nfts\",\n \"get_nft_market_chart\",\n \"get_nft_tickers\",\n \"get_nft_by_contract\",\n \"get_nft_markets\",\n \"get_nft_contract_market_chart\",\n \"get_wallet_nfts\",\n \"get_wallet_all_nfts\",\n \"get_nft_collection\",\n \"get_nft_pool\",\n \"get_nft_pool_events\",\n \"get_nft_pool_stats\",\n \"get_nft_collections_by_exchange\",\n \"get_nft_pools_by_collection\",\n \"get_nft_pools_by_owner\",\n \"filter_nft_collections\",\n \"filter_nft_pool_collections\",\n \"search_nfts\",\n \"filter_nft_pools\",\n \"get_nft_collection_assets\",\n \"get_nft_collection_stats\",\n \"get_nft_collection_events\",\n \"get_nft_contracts\",\n \"filter_parallel_assets\",\n \"get_parallel_card_changes\",\n \"get_prime_pool_assets\",\n \"get_prime_pool_events\",\n \"get_prime_pools\",\n \"get_nft_holders\",\n \"get_prime_holders\",\n \"get_nft_collections\",\n \"get_nft_collection_analysis\",\n \"get_nft_market_trends\",\n // GoldRush NFT tools\n \"goldrush_get_nft_balances\",\n \"goldrush_check_nft_ownership\",\n \"goldrush_check_nft_token_ownership\"\n ]\n },\n {\n \"category\": \"Security & Risk Analysis\",\n \"name\": \"get_security_risk_endpoints\",\n \"description\": \"Comprehensive security endpoints for token security analysis, NFT authenticity verification, honeypot detection, malicious address identification, phishing site detection, contract approval risks, dApp security assessment, ABI data decoding, and comprehensive security metrics to protect users from scams, rugpulls, and malicious contracts. Provider guide: Use goplus_ tools for threat detection (honeypots, scams, phishing, rugpulls). Use goldrush_ tools for token approval auditing across 100+ chains.\",\n \"tools\": [\n \"get_token_security\",\n \"get_nft_security\",\n \"check_malicious_address\",\n \"check_approval_security\",\n \"get_wallet_approvals\",\n \"check_dapp_security\",\n \"check_phishing_site\",\n \"decode_abi\",\n \"defillama_get_hacks\",\n \"get_wallet_token_approvals\",\n \"simulate_transaction\",\n \"get_wallet_nft_approvals\",\n \"simulate_evm_transaction\",\n \"simulate_solana_transaction\",\n \"detect_rugpull\",\n \"get_token_lock_info\",\n \"get_solana_token_security\",\n \"get_sui_token_security\",\n \"check_approval_security_v2\",\n // GoldRush security tools\n \"goldrush_get_token_approvals\"\n ]\n },\n {\n \"category\": \"Network & Infrastructure\",\n \"name\": \"get_network_infrastructure_endpoints\",\n \"description\": \"Endpoints for blockchain network information, network health monitoring, gas price tracking, network statistics, asset platform data, infrastructure metrics across different blockchain networks, real-time mempool monitoring, pending transaction analysis, transaction status simulation, MEV detection and protection, gas fee optimization, arbitrage opportunity identification, comprehensive blockchain activity monitoring, community-contributed insights and annotations, data platform system updates monitoring, centralized exchange (CEX) infrastructure including system status monitoring, server time synchronization, available trading markets/pairs browsing, and supported currencies listing across major exchanges. Provider guide: Use codex/coingecko tools for network lists and stats. Use goldrush_ tools for block data, decoded event logs, chain statuses, and address resolution across 100+ chains.\",\n \"tools\": [\n \"get_networks\",\n \"get_networks_list\",\n \"get_network_status\",\n \"get_network_stats\",\n \"get_gas_prices\",\n \"get_asset_platforms\",\n \"get_community_notes\",\n \"get_system_changes\",\n \"get_exchange_status\",\n \"get_exchange_time\",\n \"get_supported_chains\",\n \"get_chain_details\",\n \"get_block_by_timestamp\",\n \"get_goplus_supported_chains\",\n // GoldRush network tools\n \"goldrush_get_chains\",\n \"goldrush_get_chain_statuses\",\n \"goldrush_get_block\",\n \"goldrush_get_block_heights\",\n \"goldrush_get_logs\",\n \"goldrush_get_logs_by_topic\",\n \"goldrush_get_logs_by_contract\",\n \"goldrush_resolve_address\",\n \"goldrush_get_block_transactions\",\n \"goldrush_get_block_transactions_paginated\"\n ]\n },\n {\n \"category\": \"Search & Discovery\",\n \"name\": \"get_search_discovery_endpoints\",\n \"description\": \"Endpoints for cryptocurrency search functionality, trending analysis, coin categorization, token discovery, new coin listings, comprehensive search capabilities across coins, categories, and markets, event categorization and labeling systems.\",\n \"tools\": [\n \"search_all\",\n \"get_trending\",\n \"get_categories\",\n \"get_coins_list\",\n \"get_new_coins\",\n \"get_categories_market_data\",\n \"get_exchanges_list\",\n \"get_derivatives_exchanges_list\",\n \"get_event_labels\",\n \"search_tokens\"\n ]\n },\n {\n \"category\": \"Social Media & Sentiment Analytics\",\n \"name\": \"get_social_sentiment_endpoints\",\n \"description\": \"Endpoints for social media analytics, sentiment analysis, influencer tracking, social engagement metrics, trending topics analysis, news aggregation, creator analytics, post engagement tracking, social dominance metrics, Galaxy Score™, AltRank™, and comprehensive social sentiment indicators across crypto assets, stocks, and NFTs. Includes real-time social monitoring, influencer identification, content virality analysis, and social trend detection.\",\n \"tools\": [\n \"get_topic_creators\",\n \"get_topic_news\",\n \"get_topic_posts\",\n \"get_topic_metrics\",\n \"get_trending_topics\",\n \"get_category_info\",\n \"get_category_topics\",\n \"get_category_posts\",\n \"get_category_news\",\n \"get_category_creators\",\n \"get_categories_list\",\n \"get_creators_list\",\n \"get_creator_profile\",\n \"get_creator_metrics\",\n \"get_creator_posts\",\n \"get_post_details\",\n \"get_post_metrics\"\n ]\n },\n {\n \"category\": \"Stocks & Equities\",\n \"name\": \"get_stocks_equities_endpoints\",\n \"description\": \"Endpoints for stock market data including real-time quotes, historical OHLCV candles, company profiles, basic financial metrics (P/E, EPS, market cap), analyst recommendations and price targets, symbol search, and market news. Provider guide: Use finnhub_ tools for real-time US stock quotes, historical price data, analyst consensus, company profiles, and financial news.\",\n \"tools\": [\n \"finnhub_get_stock_quote\",\n \"finnhub_get_stock_candles\",\n \"finnhub_get_company_profile\",\n \"finnhub_get_basic_financials\",\n \"finnhub_get_stock_recommendations\",\n \"finnhub_get_price_target\",\n \"finnhub_search_symbol\",\n \"finnhub_get_market_news\"\n ]\n },\n {\n \"category\": \"Forex & Commodities\",\n \"name\": \"get_forex_commodities_endpoints\",\n \"description\": \"Endpoints for foreign exchange rates, currency pair historical candles, available forex symbols, and commodity price data (gold, silver, platinum). Provider guide: Use finnhub_ tools for real-time forex rates, currency pair OHLCV data, and commodity prices via XAU/XAG/XPT pairs.\",\n \"tools\": [\n \"finnhub_get_forex_candles\",\n \"finnhub_get_forex_symbols\",\n \"finnhub_get_forex_rates\",\n \"finnhub_get_commodity_candles\"\n ]\n },\n {\n \"category\": \"Economic Indicators\",\n \"name\": \"get_economic_indicators_endpoints\",\n \"description\": \"Endpoints for US macroeconomic data including GDP, CPI inflation, federal funds rate, treasury yields, unemployment rate, S&P 500 index, economic event calendar, and 800,000+ FRED time series. Provider guide: Use fred_ tools for economic time series data (GDP, CPI, rates, yields, unemployment). Use finnhub_ tools for economic event calendars, market open/close status, and country data.\",\n \"tools\": [\n \"fred_get_series_observations\",\n \"fred_search_series\",\n \"fred_get_series_info\",\n \"fred_get_releases\",\n \"fred_get_gdp\",\n \"fred_get_inflation\",\n \"fred_get_fed_rate\",\n \"fred_get_treasury_10y\",\n \"fred_get_unemployment\",\n \"fred_get_sp500\",\n \"finnhub_get_economic_calendar\",\n \"finnhub_get_market_status\",\n \"finnhub_get_country_list\"\n ]\n },\n {\n \"category\": \"Alternative Data\",\n \"name\": \"get_alternative_data_endpoints\",\n \"description\": \"Endpoints for alternative financial data including insider (executive) trading transactions, insider sentiment scores, company-specific news, earnings calendar, and IPO calendar. Provider guide: Use finnhub_ tools for SEC-filed insider buy/sell data, insider sentiment (MSPR), upcoming earnings reports, IPO schedules, and company news.\",\n \"tools\": [\n \"finnhub_get_insider_transactions\",\n \"finnhub_get_insider_sentiment\",\n \"finnhub_get_company_news\",\n \"finnhub_get_earnings_calendar\",\n \"finnhub_get_ipo_calendar\"\n ]\n },\n]\n\n// function that takes category name, and returns list of tools in that category return {}\n\nexport function getAllToolsInCategory(category: string){\n let categoryUsed = ToolRegistry.find(tool => tool.category === category);\n if(!categoryUsed){\n return []\n }\n const allWrappedTools = supportedTools\n // return all the tools from wrapped tools that are in the category (name match)\n let toolsInCategory = [];\n for (const tool of categoryUsed.tools){\n const wrappedTool = allWrappedTools.find(wrappedTool => wrappedTool.name === tool);\n if(wrappedTool){\n toolsInCategory.push(wrappedTool);\n }\n else console.log(`Tool ${tool} not found in wrapped tools`);\n }\n return toolsInCategory;\n}\n\n// get total tools in tool registry\nfunction getTotalToolsInToolRegistry(){\n let totalTools = 0;\n for(const category of ToolRegistry){\n totalTools += category.tools.length;\n }\n return totalTools;\n}\n\n// Dictionary mapping category index to endpoint paths\nexport const CategoryEndpoints: { [key: number]: string } = {\n 0: \"/hive_market_data/mcp\", // Market Data and Price\n 1: \"/hive_onchain_dex/mcp\", // On-Chain DEX & Pool Analytics\n 2: \"/hive_portfolio_wallet/mcp\", // Portfolio & Wallet\n 3: \"/hive_token_contract/mcp\", // Token & Contract data\n 4: \"/hive_defi_protocol/mcp\", // DeFi Protocol Analytics\n 5: \"/hive_nft_analytics/mcp\", // NFT Analytics\n 6: \"/hive_security_risk/mcp\", // Security & Risk Analysis\n 7: \"/hive_network_infrastructure/mcp\", // Network & Infrastructure\n 8: \"/hive_search_discovery/mcp\", // Search & Discovery\n 9: \"/hive_social_sentiment/mcp\", // Social Media & Sentiment Analytics\n 10: \"/hive_stocks_equities/mcp\", // Stocks & Equities\n 11: \"/hive_forex_commodities/mcp\", // Forex & Commodities\n 12: \"/hive_economic_indicators/mcp\", // Economic Indicators\n 13: \"/hive_alternative_data/mcp\", // Alternative Data\n};\n\nexport function getToolByCategory(category:number){\n // return list tools and call tool\n const toolNameList = ToolRegistry[category].tools\n\n const tools = [];\n for(const toolName of toolNameList){\n const tool = supportedTools.find(tool => tool.name === toolName);\n if(tool){\n tools.push({tool});\n }\n }\n return tools;\n}\n","import { zodToJsonSchema } from 'zod-to-json-schema';\nimport { z } from 'zod';\nimport { ToolRegistry, getAllToolsInCategory } from './toolRegistry';\nimport { Tool } from '@modelcontextprotocol/sdk/types';\n\nexport function asTextContentResult(result: Object): any {\n // return {data: result}\n // Estimate token count (roughly 4 chars per token)\n const MAX_TOKENS = 25000;\n const CHARS_PER_TOKEN = 4;\n const maxChar = MAX_TOKENS * CHARS_PER_TOKEN; // ~100,000 chars for 25k tokens\n \n const jsonString = JSON.stringify(result, null, 2);\n \n if (jsonString.length > maxChar) {\n // Try to intelligently truncate if it's an array\n if (Array.isArray(result)) {\n const truncatedArray = result.slice(0, Math.floor(result.length * maxChar / jsonString.length));\n const truncatedJson = JSON.stringify({\n results: truncatedArray,\n truncated: true,\n originalLength: result.length,\n returnedLength: truncatedArray.length,\n message: \"Response truncated due to size limits. Consider using pagination.\"\n }, null, 2);\n \n return {\n content: [\n {\n type: 'text',\n text: truncatedJson,\n },\n ],\n };\n }\n \n // For objects with results array\n if (typeof result === 'object' && result !== null && 'results' in result && Array.isArray((result as any).results)) {\n const originalResults = (result as any).results;\n const estimatedItemSize = jsonString.length / originalResults.length;\n const maxItems = Math.floor(maxChar / estimatedItemSize);\n \n const truncatedResult = {\n ...result,\n results: originalResults.slice(0, maxItems),\n truncated: true,\n originalCount: originalResults.length,\n returnedCount: maxItems,\n message: \"Response truncated due to size limits. Use pagination parameters (limit/offset) for more results.\"\n };\n \n return {\n content: [\n {\n type: 'text',\n text: JSON.stringify(truncatedResult, null, 2),\n },\n ],\n };\n }\n \n // Fallback to simple truncation\n const truncated = jsonString.substring(0, maxChar) + '\\n... [TRUNCATED DUE TO SIZE LIMITS]';\n return {\n content: [\n {\n type: 'text',\n text: truncated,\n },\n ],\n };\n }\n \n return {\n content: [\n {\n type: 'text',\n text: jsonString,\n },\n ],\n };\n}\n\nfunction zodToInputSchema(schema: z.ZodSchema) {\n return {\n type: 'object' as const,\n ...(zodToJsonSchema(schema) as any),\n };\n}\n\nexport function dynamicTools(endpoints) {\n const getEndpointSchema = z.object({\n endpoint: z.string().describe('The name of the endpoint to get the schema for.'),\n });\n \n const getEndpointTool = {\n metadata: {\n resource: 'dynamic_tools',\n operation: 'read' as const,\n tags: [],\n },\n tool: {\n name: 'get_api_endpoint_schema',\n description:\n 'Get the schema for an endpoint in the HIVE API. You can use the schema returned by this tool to call an endpoint with the `call_api_endpoint` tool.',\n inputSchema: zodToInputSchema(getEndpointSchema),\n },\n handler: async (args: Record<string, unknown> | undefined) => {\n if (!args) {\n throw new Error('No endpoint provided');\n }\n const endpointName = getEndpointSchema.parse(args).endpoint;\n\n // First, look in the original endpoints array\n let endpoint = endpoints.find((e) => e.name === endpointName);\n \n if (!endpoint) {\n throw new Error(`Endpoint ${endpointName} not found`);\n }\n return asTextContentResult(endpoint);\n },\n };\n\n const callEndpointSchema = z.object({\n endpoint_name: z.string().describe('The name of the endpoint to call.'),\n args: z\n .record(z.string(), z.any())\n .describe(\n 'The arguments to pass to the endpoint. This must match the schema returned by the `get_api_endpoint_schema` tool.',\n ),\n });\n\n const callEndpointTool = {\n metadata: {\n resource: 'dynamic_tools',\n operation: 'write' as const,\n tags: [],\n },\n tool: {\n name: 'call_api_endpoint',\n description:\n 'call an endpoint in the HIVE API. Note: use the category endpoints to get the list of endpoints and `get_api_endpoint_schema` tool to get the schema for an endpoint.',\n inputSchema: zodToInputSchema(callEndpointSchema),\n },\n handler: null\n };\n\n // Create category-specific endpoints that act as list functionality\n const categoryTools = ToolRegistry.map(category => {\n const categorySchema = z.object({});\n \n const categoryEndpointName = category.name;\n \n return {\n metadata: {\n resource: 'dynamic_tools',\n operation: 'read' as const,\n tags: ['category'],\n },\n tool: {\n name: categoryEndpointName,\n description: `Get all endpoints in the \"${category.category}\" category. ${category.description}`,\n inputSchema: zodToInputSchema(categorySchema),\n },\n handler: async (\n args: Record<string, unknown> | undefined,\n ): Promise<any> => {\n const toolsInCategory = getAllToolsInCategory(category.category);\n \n return asTextContentResult({\n category: category.category,\n description: category.description,\n tools: toolsInCategory.map((tool ) => ({\n name: tool.name,\n description: tool.description\n })),\n });\n },\n };\n });\n\n return [getEndpointTool, callEndpointTool, ...categoryTools];\n}\n\n\n"],"mappings":"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","names":["util","objectUtil","errorUtil","errorMap","ctx","result","issues","elements","processed","result","r","ZodFirstPartyTypeKind","emojiRegex","types","x","base","name","schema","main","wrappedTool","tool"]}
|
|
1
|
+
{"version":3,"sources":["../src/server.ts","../node_modules/zod-to-json-schema/dist/esm/Options.js","../node_modules/zod-to-json-schema/dist/esm/Refs.js","../node_modules/zod-to-json-schema/dist/esm/errorMessages.js","../node_modules/zod-to-json-schema/dist/esm/getRelativePath.js","../node_modules/zod/v3/external.js","../node_modules/zod/v3/helpers/util.js","../node_modules/zod/v3/ZodError.js","../node_modules/zod/v3/locales/en.js","../node_modules/zod/v3/errors.js","../node_modules/zod/v3/helpers/parseUtil.js","../node_modules/zod/v3/helpers/errorUtil.js","../node_modules/zod/v3/types.js","../node_modules/zod-to-json-schema/dist/esm/parsers/any.js","../node_modules/zod-to-json-schema/dist/esm/parsers/array.js","../node_modules/zod-to-json-schema/dist/esm/parsers/bigint.js","../node_modules/zod-to-json-schema/dist/esm/parsers/boolean.js","../node_modules/zod-to-json-schema/dist/esm/parsers/branded.js","../node_modules/zod-to-json-schema/dist/esm/parsers/catch.js","../node_modules/zod-to-json-schema/dist/esm/parsers/date.js","../node_modules/zod-to-json-schema/dist/esm/parsers/default.js","../node_modules/zod-to-json-schema/dist/esm/parsers/effects.js","../node_modules/zod-to-json-schema/dist/esm/parsers/enum.js","../node_modules/zod-to-json-schema/dist/esm/parsers/intersection.js","../node_modules/zod-to-json-schema/dist/esm/parsers/literal.js","../node_modules/zod-to-json-schema/dist/esm/parsers/string.js","../node_modules/zod-to-json-schema/dist/esm/parsers/record.js","../node_modules/zod-to-json-schema/dist/esm/parsers/map.js","../node_modules/zod-to-json-schema/dist/esm/parsers/nativeEnum.js","../node_modules/zod-to-json-schema/dist/esm/parsers/never.js","../node_modules/zod-to-json-schema/dist/esm/parsers/null.js","../node_modules/zod-to-json-schema/dist/esm/parsers/union.js","../node_modules/zod-to-json-schema/dist/esm/parsers/nullable.js","../node_modules/zod-to-json-schema/dist/esm/parsers/number.js","../node_modules/zod-to-json-schema/dist/esm/parsers/object.js","../node_modules/zod-to-json-schema/dist/esm/parsers/optional.js","../node_modules/zod-to-json-schema/dist/esm/parsers/pipeline.js","../node_modules/zod-to-json-schema/dist/esm/parsers/promise.js","../node_modules/zod-to-json-schema/dist/esm/parsers/set.js","../node_modules/zod-to-json-schema/dist/esm/parsers/tuple.js","../node_modules/zod-to-json-schema/dist/esm/parsers/undefined.js","../node_modules/zod-to-json-schema/dist/esm/parsers/unknown.js","../node_modules/zod-to-json-schema/dist/esm/parsers/readonly.js","../node_modules/zod-to-json-schema/dist/esm/selectParser.js","../node_modules/zod-to-json-schema/dist/esm/parseDef.js","../node_modules/zod-to-json-schema/dist/esm/zodToJsonSchema.js","../src/mcp/allToolList.ts","../src/toolRegistry.ts","../src/dynamic-tools.ts"],"sourcesContent":["#!/usr/bin/env node\nimport express from 'express';\nimport cors from 'cors';\nimport { Server } from \"@modelcontextprotocol/sdk/server/index.js\";\nimport { StreamableHTTPServerTransport } from '@modelcontextprotocol/sdk/server/streamableHttp.js';\nimport { StdioServerTransport } from \"@modelcontextprotocol/sdk/server/stdio.js\";\nimport {\n CallToolRequestSchema,\n ListToolsRequestSchema,\n} from \"@modelcontextprotocol/sdk/types.js\";\nimport dotenv from 'dotenv';\nimport { Tool } from '@modelcontextprotocol/sdk/types.js';\nimport { dynamicTools } from \"./dynamic-tools\";\nimport { supportedTools } from './mcp/allToolList.js';\nimport {getToolByCategory} from './toolRegistry'\nimport { CategoryEndpoints } from './toolRegistry';\ndotenv.config();\n\nconst API_EXECUTE_ENDPOINT = process.env.API_EXECUTE_ENDPOINT || 'https://mcp.hiveintelligence.xyz/api/execute';\nconst HIVE_API_KEY = process.env.HIVE_API_KEY || '';\n\nfunction getApiHeaders(): Record<string, string> {\n const headers: Record<string, string> = {\n 'Content-Type': 'application/json',\n };\n if (HIVE_API_KEY) {\n headers['Authorization'] = `Bearer ${HIVE_API_KEY}`;\n }\n return headers;\n}\n\nfunction getDynamicTools(){\n const allToolEndpoints = supportedTools\n \n const allTools = dynamicTools(allToolEndpoints)\n // const tools = [\n // ...allTools.map(endpoint => (\n // endpoint.tool\n // ))\n // ]\n\n const tools = [\n ...allTools.map(endpoint => {\n const tool = endpoint.tool;\n // Ensure the tool has the required MCP structure\n if (!tool || typeof tool !== 'object') {\n console.error('Invalid tool structure:', tool);\n return null;\n }\n \n // Validate required fields\n if (!tool.name || typeof tool.name !== 'string') {\n console.error('Tool missing name:', tool);\n return null;\n }\n \n if (!tool.inputSchema || typeof tool.inputSchema !== 'object') {\n console.error('Tool missing inputSchema:', tool);\n return null;\n }\n \n return tool;\n }).filter(Boolean) // Remove null entries\n ]\n\n return {\n allTools,\n tools\n }\n}\n\n\nfunction staticTools(category:number){\n const allToolEndpoints = getToolByCategory(category)\n return {\n allTools:[],\n tools: allToolEndpoints\n }\n}\n\n\nexport class HiveMCPServer {\n private server: Server;\n private allTools:any;\n private tools: any;\n \n private isDynamicTools: boolean; // currently dynamic tools include all categories\n private category: number; // category of tool (refer tool registry) it will be null for dynamic tools\n \n constructor(_isDynamicTools:boolean, _category:number) {\n this.isDynamicTools = _isDynamicTools\n this.category = _category\n\n this.server = new Server(\n {\n name: \"hive-mcp-server\",\n version: \"0.1.0\",\n },\n {\n capabilities: {\n tools: {},\n },\n }\n );\n\n if(this.isDynamicTools){\n\n const { allTools, tools } = getDynamicTools();\n this.allTools = allTools;\n this.tools = tools;\n }\n else{\n const { allTools, tools } = staticTools(this.category);\n this.allTools = allTools;\n this.tools = tools;\n }\n\n this.setupToolHandlers();\n }\n\n\n\n private async dynamicToolsHandler(request:any){\n\n const highLevelToolUsed = this.allTools.find(\n // @ts-ignore\n tool => tool.tool.name === request.params.name\n );\n\n if(request.params.name == \"call_api_endpoint\"){\n const toolName:any= request.params.arguments?.endpoint_name\n \n try {\n // Call the API server's /execute endpoint\n const response = await fetch(API_EXECUTE_ENDPOINT, {\n method: 'POST',\n headers: getApiHeaders(),\n body: JSON.stringify({\n toolName: toolName,\n arguments: request.params.arguments?.args\n })\n });\n\n const result = await response.json();\n \n if (!response.ok) {\n \n return {\n content: [\n {\n type: \"text\",\n text: `Error executing hive tool: ${result.error || 'Request failed'}`,\n },\n ],\n };\n }\n\n return {\n content: [\n {\n type: \"text\",\n text: JSON.stringify(result, null, 2),\n },\n ],\n };\n \n } catch (error) {\n \n return {\n content: [\n {\n type: \"text\",\n text: `Error executing hive tool: ${error}`,\n },\n ],\n };\n }\n } else {\n try {\n // @ts-ignore\n const result = await highLevelToolUsed?.handler(\n request.params.arguments\n );\n \n return result || {\n content: [\n {\n type: \"text\",\n text: \"No result returned from tool handler\",\n },\n ],\n };\n } catch (error) {\n // Track failed tool usage\n \n return {\n content: [\n {\n type: \"text\",\n text: `Error executing hive tool: ${error}`,\n },\n ],\n };\n }\n }\n }\n\n private async staticToolsHandler(request:any){\n \n const toolName:any= request.params.name\n console.log(\"toolName \", toolName)\n \n try {\n // Call the API server's /execute endpoint\n const response = await fetch(API_EXECUTE_ENDPOINT, {\n method: 'POST',\n headers: getApiHeaders(),\n body: JSON.stringify({\n toolName: toolName,\n arguments: request.params.arguments\n })\n });\n\n const result = await response.json();\n \n if (!response.ok) {\n \n return {\n content: [\n {\n type: \"text\",\n text: `Error executing hive tool: ${result.error || 'Request failed'}`,\n },\n ],\n };\n }\n\n return {\n content: [\n {\n type: \"text\",\n text: JSON.stringify(result, null, 2),\n },\n ],\n };\n \n } catch (error) {\n \n return {\n content: [\n {\n type: \"text\",\n text: `Error executing hive tool: ${error}`,\n },\n ],\n };\n }\n }\n\n private setupToolHandlers() {\n this.server.setRequestHandler(ListToolsRequestSchema, async () => {\n return {\n tools: this.tools as Tool\n };\n });\n\n this.server.setRequestHandler(CallToolRequestSchema, \n this.isDynamicTools ? this.dynamicToolsHandler.bind(this) : this.staticToolsHandler.bind(this)\n );\n }\n\n getServer() {\n return this.server;\n }\n\n}\nasync function main() {\n\n console.error(\"Starting MCP server in stdio mode...\");\n const isDynamicTools = true;\n const category = 0;\n \n const transport = new StdioServerTransport();\n const server = new HiveMCPServer(isDynamicTools, category);\n \n await server.getServer().connect(transport);\n console.error(\"MCP server is running in stdio mode...\");\n}\n\nmain().catch((error) => {\n console.error(\"Server error:\", error);\n process.exit(1);\n});\n\n// // Factory function to create server instances - following doc pattern\n// const getServer = (isDynamicTools:boolean, category:number) => {\n// return new HiveMCPServer(isDynamicTools, category);\n// };\n\n// // Create Express app\n// const app = express();\n// const port = process.env.PORT || 8080;\n\n// // Add CORS middleware before your MCP routes - as per doc\n// app.use(cors({\n// origin: '*', // Or your specific frontend origins in prod\n// exposedHeaders: ['Mcp-Session-Id'],\n// allowedHeaders: ['Content-Type', 'mcp-session-id', 'Authorization'],\n// }));\n\n// // Parse JSON bodies - Don't use globally as mcpAuthRouter handles its own parsing\n// // app.use(express.json());\n\n// // Health check endpoint (accessible at /mcp/ping)\n// app.get('/ping', (req, res) => {\n// res.json({ \n// status: 'ok', \n// message: 'Hive MCP Server is running',\n// version: '0.1.0',\n// endpoints: {\n// health: '/mcp/ping',\n// mcp: '/mcp'\n// }\n// });\n// });\n\n// // POST: Stateless handler - Following exact doc pattern (accessible at /mcp)\n// // Apply rate limiting after auth: 20 requests per minute per user (based on sub claim)\n// const mcpMiddlewares = [\n// express.json({\n// limit: '10mb', // Prevent large payload DoS attacks\n// type: 'application/json'\n// }),\n// ];\n\n// app.post('/mcp/', ...mcpMiddlewares, async (req: express.Request, res: express.Response) => {\n// try {\n// const serverInstance = getServer(true, 0);\n// const server = serverInstance.getServer(); \n// const transport: StreamableHTTPServerTransport = new StreamableHTTPServerTransport({\n// sessionIdGenerator: undefined,\n// });\n\n// res.on('close', () => {\n// console.log('Request closed');\n// transport.close();\n// server.close();\n// });\n// await server.connect(transport);\n// await transport.handleRequest(req, res, req.body);\n// } catch (error) {\n// console.error('Error handling MCP request:', error);\n// if (!res.headersSent) {\n// res.status(500).json({\n// jsonrpc: '2.0',\n// error: {\n// code: -32603,\n// message: 'Internal server error',\n// },\n// id: null,\n// });\n// }\n// }\n// });\n\n// // Dynamically create category-specific endpoints\n// Object.entries(CategoryEndpoints).forEach(([categoryIndex, endpointPath]) => {\n// const index = parseInt(categoryIndex);\n \n// app.post(endpointPath, ...mcpMiddlewares, async (req: express.Request, res: express.Response) => {\n// try {\n// const serverInstance = getServer(false, index);\n// const server = serverInstance.getServer(); \n// const transport: StreamableHTTPServerTransport = new StreamableHTTPServerTransport({\n// sessionIdGenerator: undefined,\n// });\n\n// res.on('close', () => {\n// console.log(`Request closed for ${endpointPath}`);\n// transport.close();\n// server.close();\n// // Ensure analytics are flushed when request closes\n// });\n \n// await server.connect(transport);\n// await transport.handleRequest(req, res, req.body);\n// } catch (error) {\n// console.error(`Error handling MCP request for ${endpointPath}:`, error);\n// if (!res.headersSent) {\n// res.status(500).json({\n// jsonrpc: '2.0',\n// error: {\n// code: -32603,\n// message: 'Internal server error',\n// },\n// id: null,\n// });\n// }\n// }\n// });\n// });\n\n\n// app.get('/mcp/', async (req: express.Request, res: express.Response) => {\n// console.log('Received GET MCP request');\n// res.writeHead(405).end(JSON.stringify({\n// jsonrpc: \"2.0\",\n// error: {\n// code: -32000,\n// message: \"Method not allowed.\"\n// },\n// id: null\n// }));\n// });\n\n\n// app.delete('/mcp/', async (req: express.Request, res: express.Response) => {\n// console.log('Received DELETE MCP request');\n// res.writeHead(405).end(JSON.stringify({\n// jsonrpc: \"2.0\",\n// error: {\n// code: -32000,\n// message: \"Method not allowed.\"\n// },\n// id: null\n// }));\n// });\n\n// // Root health check for the service itself (optional, for container health checks)\n// app.get('/', (req, res) => {\n// res.json({ \n// status: 'ok', \n// message: 'Hive MCP Service is running',\n// version: '0.1.0',\n// note: 'Main service available at /mcp/'\n// });\n// });\n\n// // Setup and start server - Following doc pattern\n// const setupServer = async () => {\n// // Any setup logic here\n// console.log('Setting up Hive MCP server...');\n// };\n\n// // Start the server - Following exact doc pattern\n// // const PORT = port;\n// // setupServer().then(() => {\n// // app.listen(PORT, (error?: any) => {\n// // if (error) {\n// // console.error('Failed to start server:', error);\n// // process.exit(1);\n// // }\n// // console.log(`MCP Stateless Streamable HTTP Server listening on port ${PORT}`);\n// // });\n// // }).catch(error => {\n// // console.error('Failed to set up the server:', error);\n// // process.exit(1);\n// // });\n\n// // export default app;","export const ignoreOverride = Symbol(\"Let zodToJsonSchema decide on which parser to use\");\nexport const jsonDescription = (jsonSchema, def) => {\n if (def.description) {\n try {\n return {\n ...jsonSchema,\n ...JSON.parse(def.description),\n };\n }\n catch { }\n }\n return jsonSchema;\n};\nexport const defaultOptions = {\n name: undefined,\n $refStrategy: \"root\",\n basePath: [\"#\"],\n effectStrategy: \"input\",\n pipeStrategy: \"all\",\n dateStrategy: \"format:date-time\",\n mapStrategy: \"entries\",\n removeAdditionalStrategy: \"passthrough\",\n allowedAdditionalProperties: true,\n rejectedAdditionalProperties: false,\n definitionPath: \"definitions\",\n target: \"jsonSchema7\",\n strictUnions: false,\n definitions: {},\n errorMessages: false,\n markdownDescription: false,\n patternStrategy: \"escape\",\n applyRegexFlags: false,\n emailStrategy: \"format:email\",\n base64Strategy: \"contentEncoding:base64\",\n nameStrategy: \"ref\",\n openAiAnyTypeName: \"OpenAiAnyType\"\n};\nexport const getDefaultOptions = (options) => (typeof options === \"string\"\n ? {\n ...defaultOptions,\n name: options,\n }\n : {\n ...defaultOptions,\n ...options,\n });\n","import { getDefaultOptions } from \"./Options.js\";\nexport const getRefs = (options) => {\n const _options = getDefaultOptions(options);\n const currentPath = _options.name !== undefined\n ? [..._options.basePath, _options.definitionPath, _options.name]\n : _options.basePath;\n return {\n ..._options,\n flags: { hasReferencedOpenAiAnyType: false },\n currentPath: currentPath,\n propertyPath: undefined,\n seen: new Map(Object.entries(_options.definitions).map(([name, def]) => [\n def._def,\n {\n def: def._def,\n path: [..._options.basePath, _options.definitionPath, name],\n // Resolution of references will be forced even though seen, so it's ok that the schema is undefined here for now.\n jsonSchema: undefined,\n },\n ])),\n };\n};\n","export function addErrorMessage(res, key, errorMessage, refs) {\n if (!refs?.errorMessages)\n return;\n if (errorMessage) {\n res.errorMessage = {\n ...res.errorMessage,\n [key]: errorMessage,\n };\n }\n}\nexport function setResponseValueAndErrors(res, key, value, errorMessage, refs) {\n res[key] = value;\n addErrorMessage(res, key, errorMessage, refs);\n}\n","export const getRelativePath = (pathA, pathB) => {\n let i = 0;\n for (; i < pathA.length && i < pathB.length; i++) {\n if (pathA[i] !== pathB[i])\n break;\n }\n return [(pathA.length - i).toString(), ...pathB.slice(i)].join(\"/\");\n};\n","export * from \"./errors.js\";\nexport * from \"./helpers/parseUtil.js\";\nexport * from \"./helpers/typeAliases.js\";\nexport * from \"./helpers/util.js\";\nexport * from \"./types.js\";\nexport * from \"./ZodError.js\";\n","export var util;\n(function (util) {\n util.assertEqual = (_) => { };\n function assertIs(_arg) { }\n util.assertIs = assertIs;\n function assertNever(_x) {\n throw new Error();\n }\n util.assertNever = assertNever;\n util.arrayToEnum = (items) => {\n const obj = {};\n for (const item of items) {\n obj[item] = item;\n }\n return obj;\n };\n util.getValidEnumValues = (obj) => {\n const validKeys = util.objectKeys(obj).filter((k) => typeof obj[obj[k]] !== \"number\");\n const filtered = {};\n for (const k of validKeys) {\n filtered[k] = obj[k];\n }\n return util.objectValues(filtered);\n };\n util.objectValues = (obj) => {\n return util.objectKeys(obj).map(function (e) {\n return obj[e];\n });\n };\n util.objectKeys = typeof Object.keys === \"function\" // eslint-disable-line ban/ban\n ? (obj) => Object.keys(obj) // eslint-disable-line ban/ban\n : (object) => {\n const keys = [];\n for (const key in object) {\n if (Object.prototype.hasOwnProperty.call(object, key)) {\n keys.push(key);\n }\n }\n return keys;\n };\n util.find = (arr, checker) => {\n for (const item of arr) {\n if (checker(item))\n return item;\n }\n return undefined;\n };\n util.isInteger = typeof Number.isInteger === \"function\"\n ? (val) => Number.isInteger(val) // eslint-disable-line ban/ban\n : (val) => typeof val === \"number\" && Number.isFinite(val) && Math.floor(val) === val;\n function joinValues(array, separator = \" | \") {\n return array.map((val) => (typeof val === \"string\" ? `'${val}'` : val)).join(separator);\n }\n util.joinValues = joinValues;\n util.jsonStringifyReplacer = (_, value) => {\n if (typeof value === \"bigint\") {\n return value.toString();\n }\n return value;\n };\n})(util || (util = {}));\nexport var objectUtil;\n(function (objectUtil) {\n objectUtil.mergeShapes = (first, second) => {\n return {\n ...first,\n ...second, // second overwrites first\n };\n };\n})(objectUtil || (objectUtil = {}));\nexport const ZodParsedType = util.arrayToEnum([\n \"string\",\n \"nan\",\n \"number\",\n \"integer\",\n \"float\",\n \"boolean\",\n \"date\",\n \"bigint\",\n \"symbol\",\n \"function\",\n \"undefined\",\n \"null\",\n \"array\",\n \"object\",\n \"unknown\",\n \"promise\",\n \"void\",\n \"never\",\n \"map\",\n \"set\",\n]);\nexport const getParsedType = (data) => {\n const t = typeof data;\n switch (t) {\n case \"undefined\":\n return ZodParsedType.undefined;\n case \"string\":\n return ZodParsedType.string;\n case \"number\":\n return Number.isNaN(data) ? ZodParsedType.nan : ZodParsedType.number;\n case \"boolean\":\n return ZodParsedType.boolean;\n case \"function\":\n return ZodParsedType.function;\n case \"bigint\":\n return ZodParsedType.bigint;\n case \"symbol\":\n return ZodParsedType.symbol;\n case \"object\":\n if (Array.isArray(data)) {\n return ZodParsedType.array;\n }\n if (data === null) {\n return ZodParsedType.null;\n }\n if (data.then && typeof data.then === \"function\" && data.catch && typeof data.catch === \"function\") {\n return ZodParsedType.promise;\n }\n if (typeof Map !== \"undefined\" && data instanceof Map) {\n return ZodParsedType.map;\n }\n if (typeof Set !== \"undefined\" && data instanceof Set) {\n return ZodParsedType.set;\n }\n if (typeof Date !== \"undefined\" && data instanceof Date) {\n return ZodParsedType.date;\n }\n return ZodParsedType.object;\n default:\n return ZodParsedType.unknown;\n }\n};\n","import { util } from \"./helpers/util.js\";\nexport const ZodIssueCode = util.arrayToEnum([\n \"invalid_type\",\n \"invalid_literal\",\n \"custom\",\n \"invalid_union\",\n \"invalid_union_discriminator\",\n \"invalid_enum_value\",\n \"unrecognized_keys\",\n \"invalid_arguments\",\n \"invalid_return_type\",\n \"invalid_date\",\n \"invalid_string\",\n \"too_small\",\n \"too_big\",\n \"invalid_intersection_types\",\n \"not_multiple_of\",\n \"not_finite\",\n]);\nexport const quotelessJson = (obj) => {\n const json = JSON.stringify(obj, null, 2);\n return json.replace(/\"([^\"]+)\":/g, \"$1:\");\n};\nexport class ZodError extends Error {\n get errors() {\n return this.issues;\n }\n constructor(issues) {\n super();\n this.issues = [];\n this.addIssue = (sub) => {\n this.issues = [...this.issues, sub];\n };\n this.addIssues = (subs = []) => {\n this.issues = [...this.issues, ...subs];\n };\n const actualProto = new.target.prototype;\n if (Object.setPrototypeOf) {\n // eslint-disable-next-line ban/ban\n Object.setPrototypeOf(this, actualProto);\n }\n else {\n this.__proto__ = actualProto;\n }\n this.name = \"ZodError\";\n this.issues = issues;\n }\n format(_mapper) {\n const mapper = _mapper ||\n function (issue) {\n return issue.message;\n };\n const fieldErrors = { _errors: [] };\n const processError = (error) => {\n for (const issue of error.issues) {\n if (issue.code === \"invalid_union\") {\n issue.unionErrors.map(processError);\n }\n else if (issue.code === \"invalid_return_type\") {\n processError(issue.returnTypeError);\n }\n else if (issue.code === \"invalid_arguments\") {\n processError(issue.argumentsError);\n }\n else if (issue.path.length === 0) {\n fieldErrors._errors.push(mapper(issue));\n }\n else {\n let curr = fieldErrors;\n let i = 0;\n while (i < issue.path.length) {\n const el = issue.path[i];\n const terminal = i === issue.path.length - 1;\n if (!terminal) {\n curr[el] = curr[el] || { _errors: [] };\n // if (typeof el === \"string\") {\n // curr[el] = curr[el] || { _errors: [] };\n // } else if (typeof el === \"number\") {\n // const errorArray: any = [];\n // errorArray._errors = [];\n // curr[el] = curr[el] || errorArray;\n // }\n }\n else {\n curr[el] = curr[el] || { _errors: [] };\n curr[el]._errors.push(mapper(issue));\n }\n curr = curr[el];\n i++;\n }\n }\n }\n };\n processError(this);\n return fieldErrors;\n }\n static assert(value) {\n if (!(value instanceof ZodError)) {\n throw new Error(`Not a ZodError: ${value}`);\n }\n }\n toString() {\n return this.message;\n }\n get message() {\n return JSON.stringify(this.issues, util.jsonStringifyReplacer, 2);\n }\n get isEmpty() {\n return this.issues.length === 0;\n }\n flatten(mapper = (issue) => issue.message) {\n const fieldErrors = {};\n const formErrors = [];\n for (const sub of this.issues) {\n if (sub.path.length > 0) {\n const firstEl = sub.path[0];\n fieldErrors[firstEl] = fieldErrors[firstEl] || [];\n fieldErrors[firstEl].push(mapper(sub));\n }\n else {\n formErrors.push(mapper(sub));\n }\n }\n return { formErrors, fieldErrors };\n }\n get formErrors() {\n return this.flatten();\n }\n}\nZodError.create = (issues) => {\n const error = new ZodError(issues);\n return error;\n};\n","import { ZodIssueCode } from \"../ZodError.js\";\nimport { util, ZodParsedType } from \"../helpers/util.js\";\nconst errorMap = (issue, _ctx) => {\n let message;\n switch (issue.code) {\n case ZodIssueCode.invalid_type:\n if (issue.received === ZodParsedType.undefined) {\n message = \"Required\";\n }\n else {\n message = `Expected ${issue.expected}, received ${issue.received}`;\n }\n break;\n case ZodIssueCode.invalid_literal:\n message = `Invalid literal value, expected ${JSON.stringify(issue.expected, util.jsonStringifyReplacer)}`;\n break;\n case ZodIssueCode.unrecognized_keys:\n message = `Unrecognized key(s) in object: ${util.joinValues(issue.keys, \", \")}`;\n break;\n case ZodIssueCode.invalid_union:\n message = `Invalid input`;\n break;\n case ZodIssueCode.invalid_union_discriminator:\n message = `Invalid discriminator value. Expected ${util.joinValues(issue.options)}`;\n break;\n case ZodIssueCode.invalid_enum_value:\n message = `Invalid enum value. Expected ${util.joinValues(issue.options)}, received '${issue.received}'`;\n break;\n case ZodIssueCode.invalid_arguments:\n message = `Invalid function arguments`;\n break;\n case ZodIssueCode.invalid_return_type:\n message = `Invalid function return type`;\n break;\n case ZodIssueCode.invalid_date:\n message = `Invalid date`;\n break;\n case ZodIssueCode.invalid_string:\n if (typeof issue.validation === \"object\") {\n if (\"includes\" in issue.validation) {\n message = `Invalid input: must include \"${issue.validation.includes}\"`;\n if (typeof issue.validation.position === \"number\") {\n message = `${message} at one or more positions greater than or equal to ${issue.validation.position}`;\n }\n }\n else if (\"startsWith\" in issue.validation) {\n message = `Invalid input: must start with \"${issue.validation.startsWith}\"`;\n }\n else if (\"endsWith\" in issue.validation) {\n message = `Invalid input: must end with \"${issue.validation.endsWith}\"`;\n }\n else {\n util.assertNever(issue.validation);\n }\n }\n else if (issue.validation !== \"regex\") {\n message = `Invalid ${issue.validation}`;\n }\n else {\n message = \"Invalid\";\n }\n break;\n case ZodIssueCode.too_small:\n if (issue.type === \"array\")\n message = `Array must contain ${issue.exact ? \"exactly\" : issue.inclusive ? `at least` : `more than`} ${issue.minimum} element(s)`;\n else if (issue.type === \"string\")\n message = `String must contain ${issue.exact ? \"exactly\" : issue.inclusive ? `at least` : `over`} ${issue.minimum} character(s)`;\n else if (issue.type === \"number\")\n message = `Number must be ${issue.exact ? `exactly equal to ` : issue.inclusive ? `greater than or equal to ` : `greater than `}${issue.minimum}`;\n else if (issue.type === \"bigint\")\n message = `Number must be ${issue.exact ? `exactly equal to ` : issue.inclusive ? `greater than or equal to ` : `greater than `}${issue.minimum}`;\n else if (issue.type === \"date\")\n message = `Date must be ${issue.exact ? `exactly equal to ` : issue.inclusive ? `greater than or equal to ` : `greater than `}${new Date(Number(issue.minimum))}`;\n else\n message = \"Invalid input\";\n break;\n case ZodIssueCode.too_big:\n if (issue.type === \"array\")\n message = `Array must contain ${issue.exact ? `exactly` : issue.inclusive ? `at most` : `less than`} ${issue.maximum} element(s)`;\n else if (issue.type === \"string\")\n message = `String must contain ${issue.exact ? `exactly` : issue.inclusive ? `at most` : `under`} ${issue.maximum} character(s)`;\n else if (issue.type === \"number\")\n message = `Number must be ${issue.exact ? `exactly` : issue.inclusive ? `less than or equal to` : `less than`} ${issue.maximum}`;\n else if (issue.type === \"bigint\")\n message = `BigInt must be ${issue.exact ? `exactly` : issue.inclusive ? `less than or equal to` : `less than`} ${issue.maximum}`;\n else if (issue.type === \"date\")\n message = `Date must be ${issue.exact ? `exactly` : issue.inclusive ? `smaller than or equal to` : `smaller than`} ${new Date(Number(issue.maximum))}`;\n else\n message = \"Invalid input\";\n break;\n case ZodIssueCode.custom:\n message = `Invalid input`;\n break;\n case ZodIssueCode.invalid_intersection_types:\n message = `Intersection results could not be merged`;\n break;\n case ZodIssueCode.not_multiple_of:\n message = `Number must be a multiple of ${issue.multipleOf}`;\n break;\n case ZodIssueCode.not_finite:\n message = \"Number must be finite\";\n break;\n default:\n message = _ctx.defaultError;\n util.assertNever(issue);\n }\n return { message };\n};\nexport default errorMap;\n","import defaultErrorMap from \"./locales/en.js\";\nlet overrideErrorMap = defaultErrorMap;\nexport { defaultErrorMap };\nexport function setErrorMap(map) {\n overrideErrorMap = map;\n}\nexport function getErrorMap() {\n return overrideErrorMap;\n}\n","import { getErrorMap } from \"../errors.js\";\nimport defaultErrorMap from \"../locales/en.js\";\nexport const makeIssue = (params) => {\n const { data, path, errorMaps, issueData } = params;\n const fullPath = [...path, ...(issueData.path || [])];\n const fullIssue = {\n ...issueData,\n path: fullPath,\n };\n if (issueData.message !== undefined) {\n return {\n ...issueData,\n path: fullPath,\n message: issueData.message,\n };\n }\n let errorMessage = \"\";\n const maps = errorMaps\n .filter((m) => !!m)\n .slice()\n .reverse();\n for (const map of maps) {\n errorMessage = map(fullIssue, { data, defaultError: errorMessage }).message;\n }\n return {\n ...issueData,\n path: fullPath,\n message: errorMessage,\n };\n};\nexport const EMPTY_PATH = [];\nexport function addIssueToContext(ctx, issueData) {\n const overrideMap = getErrorMap();\n const issue = makeIssue({\n issueData: issueData,\n data: ctx.data,\n path: ctx.path,\n errorMaps: [\n ctx.common.contextualErrorMap, // contextual error map is first priority\n ctx.schemaErrorMap, // then schema-bound map if available\n overrideMap, // then global override map\n overrideMap === defaultErrorMap ? undefined : defaultErrorMap, // then global default map\n ].filter((x) => !!x),\n });\n ctx.common.issues.push(issue);\n}\nexport class ParseStatus {\n constructor() {\n this.value = \"valid\";\n }\n dirty() {\n if (this.value === \"valid\")\n this.value = \"dirty\";\n }\n abort() {\n if (this.value !== \"aborted\")\n this.value = \"aborted\";\n }\n static mergeArray(status, results) {\n const arrayValue = [];\n for (const s of results) {\n if (s.status === \"aborted\")\n return INVALID;\n if (s.status === \"dirty\")\n status.dirty();\n arrayValue.push(s.value);\n }\n return { status: status.value, value: arrayValue };\n }\n static async mergeObjectAsync(status, pairs) {\n const syncPairs = [];\n for (const pair of pairs) {\n const key = await pair.key;\n const value = await pair.value;\n syncPairs.push({\n key,\n value,\n });\n }\n return ParseStatus.mergeObjectSync(status, syncPairs);\n }\n static mergeObjectSync(status, pairs) {\n const finalObject = {};\n for (const pair of pairs) {\n const { key, value } = pair;\n if (key.status === \"aborted\")\n return INVALID;\n if (value.status === \"aborted\")\n return INVALID;\n if (key.status === \"dirty\")\n status.dirty();\n if (value.status === \"dirty\")\n status.dirty();\n if (key.value !== \"__proto__\" && (typeof value.value !== \"undefined\" || pair.alwaysSet)) {\n finalObject[key.value] = value.value;\n }\n }\n return { status: status.value, value: finalObject };\n }\n}\nexport const INVALID = Object.freeze({\n status: \"aborted\",\n});\nexport const DIRTY = (value) => ({ status: \"dirty\", value });\nexport const OK = (value) => ({ status: \"valid\", value });\nexport const isAborted = (x) => x.status === \"aborted\";\nexport const isDirty = (x) => x.status === \"dirty\";\nexport const isValid = (x) => x.status === \"valid\";\nexport const isAsync = (x) => typeof Promise !== \"undefined\" && x instanceof Promise;\n","export var errorUtil;\n(function (errorUtil) {\n errorUtil.errToObj = (message) => typeof message === \"string\" ? { message } : message || {};\n // biome-ignore lint:\n errorUtil.toString = (message) => typeof message === \"string\" ? message : message?.message;\n})(errorUtil || (errorUtil = {}));\n","import { ZodError, ZodIssueCode, } from \"./ZodError.js\";\nimport { defaultErrorMap, getErrorMap } from \"./errors.js\";\nimport { errorUtil } from \"./helpers/errorUtil.js\";\nimport { DIRTY, INVALID, OK, ParseStatus, addIssueToContext, isAborted, isAsync, isDirty, isValid, makeIssue, } from \"./helpers/parseUtil.js\";\nimport { util, ZodParsedType, getParsedType } from \"./helpers/util.js\";\nclass ParseInputLazyPath {\n constructor(parent, value, path, key) {\n this._cachedPath = [];\n this.parent = parent;\n this.data = value;\n this._path = path;\n this._key = key;\n }\n get path() {\n if (!this._cachedPath.length) {\n if (Array.isArray(this._key)) {\n this._cachedPath.push(...this._path, ...this._key);\n }\n else {\n this._cachedPath.push(...this._path, this._key);\n }\n }\n return this._cachedPath;\n }\n}\nconst handleResult = (ctx, result) => {\n if (isValid(result)) {\n return { success: true, data: result.value };\n }\n else {\n if (!ctx.common.issues.length) {\n throw new Error(\"Validation failed but no issues detected.\");\n }\n return {\n success: false,\n get error() {\n if (this._error)\n return this._error;\n const error = new ZodError(ctx.common.issues);\n this._error = error;\n return this._error;\n },\n };\n }\n};\nfunction processCreateParams(params) {\n if (!params)\n return {};\n const { errorMap, invalid_type_error, required_error, description } = params;\n if (errorMap && (invalid_type_error || required_error)) {\n throw new Error(`Can't use \"invalid_type_error\" or \"required_error\" in conjunction with custom error map.`);\n }\n if (errorMap)\n return { errorMap: errorMap, description };\n const customMap = (iss, ctx) => {\n const { message } = params;\n if (iss.code === \"invalid_enum_value\") {\n return { message: message ?? ctx.defaultError };\n }\n if (typeof ctx.data === \"undefined\") {\n return { message: message ?? required_error ?? ctx.defaultError };\n }\n if (iss.code !== \"invalid_type\")\n return { message: ctx.defaultError };\n return { message: message ?? invalid_type_error ?? ctx.defaultError };\n };\n return { errorMap: customMap, description };\n}\nexport class ZodType {\n get description() {\n return this._def.description;\n }\n _getType(input) {\n return getParsedType(input.data);\n }\n _getOrReturnCtx(input, ctx) {\n return (ctx || {\n common: input.parent.common,\n data: input.data,\n parsedType: getParsedType(input.data),\n schemaErrorMap: this._def.errorMap,\n path: input.path,\n parent: input.parent,\n });\n }\n _processInputParams(input) {\n return {\n status: new ParseStatus(),\n ctx: {\n common: input.parent.common,\n data: input.data,\n parsedType: getParsedType(input.data),\n schemaErrorMap: this._def.errorMap,\n path: input.path,\n parent: input.parent,\n },\n };\n }\n _parseSync(input) {\n const result = this._parse(input);\n if (isAsync(result)) {\n throw new Error(\"Synchronous parse encountered promise.\");\n }\n return result;\n }\n _parseAsync(input) {\n const result = this._parse(input);\n return Promise.resolve(result);\n }\n parse(data, params) {\n const result = this.safeParse(data, params);\n if (result.success)\n return result.data;\n throw result.error;\n }\n safeParse(data, params) {\n const ctx = {\n common: {\n issues: [],\n async: params?.async ?? false,\n contextualErrorMap: params?.errorMap,\n },\n path: params?.path || [],\n schemaErrorMap: this._def.errorMap,\n parent: null,\n data,\n parsedType: getParsedType(data),\n };\n const result = this._parseSync({ data, path: ctx.path, parent: ctx });\n return handleResult(ctx, result);\n }\n \"~validate\"(data) {\n const ctx = {\n common: {\n issues: [],\n async: !!this[\"~standard\"].async,\n },\n path: [],\n schemaErrorMap: this._def.errorMap,\n parent: null,\n data,\n parsedType: getParsedType(data),\n };\n if (!this[\"~standard\"].async) {\n try {\n const result = this._parseSync({ data, path: [], parent: ctx });\n return isValid(result)\n ? {\n value: result.value,\n }\n : {\n issues: ctx.common.issues,\n };\n }\n catch (err) {\n if (err?.message?.toLowerCase()?.includes(\"encountered\")) {\n this[\"~standard\"].async = true;\n }\n ctx.common = {\n issues: [],\n async: true,\n };\n }\n }\n return this._parseAsync({ data, path: [], parent: ctx }).then((result) => isValid(result)\n ? {\n value: result.value,\n }\n : {\n issues: ctx.common.issues,\n });\n }\n async parseAsync(data, params) {\n const result = await this.safeParseAsync(data, params);\n if (result.success)\n return result.data;\n throw result.error;\n }\n async safeParseAsync(data, params) {\n const ctx = {\n common: {\n issues: [],\n contextualErrorMap: params?.errorMap,\n async: true,\n },\n path: params?.path || [],\n schemaErrorMap: this._def.errorMap,\n parent: null,\n data,\n parsedType: getParsedType(data),\n };\n const maybeAsyncResult = this._parse({ data, path: ctx.path, parent: ctx });\n const result = await (isAsync(maybeAsyncResult) ? maybeAsyncResult : Promise.resolve(maybeAsyncResult));\n return handleResult(ctx, result);\n }\n refine(check, message) {\n const getIssueProperties = (val) => {\n if (typeof message === \"string\" || typeof message === \"undefined\") {\n return { message };\n }\n else if (typeof message === \"function\") {\n return message(val);\n }\n else {\n return message;\n }\n };\n return this._refinement((val, ctx) => {\n const result = check(val);\n const setError = () => ctx.addIssue({\n code: ZodIssueCode.custom,\n ...getIssueProperties(val),\n });\n if (typeof Promise !== \"undefined\" && result instanceof Promise) {\n return result.then((data) => {\n if (!data) {\n setError();\n return false;\n }\n else {\n return true;\n }\n });\n }\n if (!result) {\n setError();\n return false;\n }\n else {\n return true;\n }\n });\n }\n refinement(check, refinementData) {\n return this._refinement((val, ctx) => {\n if (!check(val)) {\n ctx.addIssue(typeof refinementData === \"function\" ? refinementData(val, ctx) : refinementData);\n return false;\n }\n else {\n return true;\n }\n });\n }\n _refinement(refinement) {\n return new ZodEffects({\n schema: this,\n typeName: ZodFirstPartyTypeKind.ZodEffects,\n effect: { type: \"refinement\", refinement },\n });\n }\n superRefine(refinement) {\n return this._refinement(refinement);\n }\n constructor(def) {\n /** Alias of safeParseAsync */\n this.spa = this.safeParseAsync;\n this._def = def;\n this.parse = this.parse.bind(this);\n this.safeParse = this.safeParse.bind(this);\n this.parseAsync = this.parseAsync.bind(this);\n this.safeParseAsync = this.safeParseAsync.bind(this);\n this.spa = this.spa.bind(this);\n this.refine = this.refine.bind(this);\n this.refinement = this.refinement.bind(this);\n this.superRefine = this.superRefine.bind(this);\n this.optional = this.optional.bind(this);\n this.nullable = this.nullable.bind(this);\n this.nullish = this.nullish.bind(this);\n this.array = this.array.bind(this);\n this.promise = this.promise.bind(this);\n this.or = this.or.bind(this);\n this.and = this.and.bind(this);\n this.transform = this.transform.bind(this);\n this.brand = this.brand.bind(this);\n this.default = this.default.bind(this);\n this.catch = this.catch.bind(this);\n this.describe = this.describe.bind(this);\n this.pipe = this.pipe.bind(this);\n this.readonly = this.readonly.bind(this);\n this.isNullable = this.isNullable.bind(this);\n this.isOptional = this.isOptional.bind(this);\n this[\"~standard\"] = {\n version: 1,\n vendor: \"zod\",\n validate: (data) => this[\"~validate\"](data),\n };\n }\n optional() {\n return ZodOptional.create(this, this._def);\n }\n nullable() {\n return ZodNullable.create(this, this._def);\n }\n nullish() {\n return this.nullable().optional();\n }\n array() {\n return ZodArray.create(this);\n }\n promise() {\n return ZodPromise.create(this, this._def);\n }\n or(option) {\n return ZodUnion.create([this, option], this._def);\n }\n and(incoming) {\n return ZodIntersection.create(this, incoming, this._def);\n }\n transform(transform) {\n return new ZodEffects({\n ...processCreateParams(this._def),\n schema: this,\n typeName: ZodFirstPartyTypeKind.ZodEffects,\n effect: { type: \"transform\", transform },\n });\n }\n default(def) {\n const defaultValueFunc = typeof def === \"function\" ? def : () => def;\n return new ZodDefault({\n ...processCreateParams(this._def),\n innerType: this,\n defaultValue: defaultValueFunc,\n typeName: ZodFirstPartyTypeKind.ZodDefault,\n });\n }\n brand() {\n return new ZodBranded({\n typeName: ZodFirstPartyTypeKind.ZodBranded,\n type: this,\n ...processCreateParams(this._def),\n });\n }\n catch(def) {\n const catchValueFunc = typeof def === \"function\" ? def : () => def;\n return new ZodCatch({\n ...processCreateParams(this._def),\n innerType: this,\n catchValue: catchValueFunc,\n typeName: ZodFirstPartyTypeKind.ZodCatch,\n });\n }\n describe(description) {\n const This = this.constructor;\n return new This({\n ...this._def,\n description,\n });\n }\n pipe(target) {\n return ZodPipeline.create(this, target);\n }\n readonly() {\n return ZodReadonly.create(this);\n }\n isOptional() {\n return this.safeParse(undefined).success;\n }\n isNullable() {\n return this.safeParse(null).success;\n }\n}\nconst cuidRegex = /^c[^\\s-]{8,}$/i;\nconst cuid2Regex = /^[0-9a-z]+$/;\nconst ulidRegex = /^[0-9A-HJKMNP-TV-Z]{26}$/i;\n// const uuidRegex =\n// /^([a-f0-9]{8}-[a-f0-9]{4}-[1-5][a-f0-9]{3}-[a-f0-9]{4}-[a-f0-9]{12}|00000000-0000-0000-0000-000000000000)$/i;\nconst uuidRegex = /^[0-9a-fA-F]{8}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{12}$/i;\nconst nanoidRegex = /^[a-z0-9_-]{21}$/i;\nconst jwtRegex = /^[A-Za-z0-9-_]+\\.[A-Za-z0-9-_]+\\.[A-Za-z0-9-_]*$/;\nconst durationRegex = /^[-+]?P(?!$)(?:(?:[-+]?\\d+Y)|(?:[-+]?\\d+[.,]\\d+Y$))?(?:(?:[-+]?\\d+M)|(?:[-+]?\\d+[.,]\\d+M$))?(?:(?:[-+]?\\d+W)|(?:[-+]?\\d+[.,]\\d+W$))?(?:(?:[-+]?\\d+D)|(?:[-+]?\\d+[.,]\\d+D$))?(?:T(?=[\\d+-])(?:(?:[-+]?\\d+H)|(?:[-+]?\\d+[.,]\\d+H$))?(?:(?:[-+]?\\d+M)|(?:[-+]?\\d+[.,]\\d+M$))?(?:[-+]?\\d+(?:[.,]\\d+)?S)?)??$/;\n// from https://stackoverflow.com/a/46181/1550155\n// old version: too slow, didn't support unicode\n// const emailRegex = /^((([a-z]|\\d|[!#\\$%&'\\*\\+\\-\\/=\\?\\^_`{\\|}~]|[\\u00A0-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF])+(\\.([a-z]|\\d|[!#\\$%&'\\*\\+\\-\\/=\\?\\^_`{\\|}~]|[\\u00A0-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF])+)*)|((\\x22)((((\\x20|\\x09)*(\\x0d\\x0a))?(\\x20|\\x09)+)?(([\\x01-\\x08\\x0b\\x0c\\x0e-\\x1f\\x7f]|\\x21|[\\x23-\\x5b]|[\\x5d-\\x7e]|[\\u00A0-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF])|(\\\\([\\x01-\\x09\\x0b\\x0c\\x0d-\\x7f]|[\\u00A0-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF]))))*(((\\x20|\\x09)*(\\x0d\\x0a))?(\\x20|\\x09)+)?(\\x22)))@((([a-z]|\\d|[\\u00A0-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF])|(([a-z]|\\d|[\\u00A0-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF])([a-z]|\\d|-|\\.|_|~|[\\u00A0-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF])*([a-z]|\\d|[\\u00A0-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF])))\\.)+(([a-z]|[\\u00A0-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF])|(([a-z]|[\\u00A0-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF])([a-z]|\\d|-|\\.|_|~|[\\u00A0-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF])*([a-z]|[\\u00A0-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF])))$/i;\n//old email regex\n// const emailRegex = /^(([^<>()[\\].,;:\\s@\"]+(\\.[^<>()[\\].,;:\\s@\"]+)*)|(\".+\"))@((?!-)([^<>()[\\].,;:\\s@\"]+\\.)+[^<>()[\\].,;:\\s@\"]{1,})[^-<>()[\\].,;:\\s@\"]$/i;\n// eslint-disable-next-line\n// const emailRegex =\n// /^(([^<>()[\\]\\\\.,;:\\s@\\\"]+(\\.[^<>()[\\]\\\\.,;:\\s@\\\"]+)*)|(\\\".+\\\"))@((\\[(((25[0-5])|(2[0-4][0-9])|(1[0-9]{2})|([0-9]{1,2}))\\.){3}((25[0-5])|(2[0-4][0-9])|(1[0-9]{2})|([0-9]{1,2}))\\])|(\\[IPv6:(([a-f0-9]{1,4}:){7}|::([a-f0-9]{1,4}:){0,6}|([a-f0-9]{1,4}:){1}:([a-f0-9]{1,4}:){0,5}|([a-f0-9]{1,4}:){2}:([a-f0-9]{1,4}:){0,4}|([a-f0-9]{1,4}:){3}:([a-f0-9]{1,4}:){0,3}|([a-f0-9]{1,4}:){4}:([a-f0-9]{1,4}:){0,2}|([a-f0-9]{1,4}:){5}:([a-f0-9]{1,4}:){0,1})([a-f0-9]{1,4}|(((25[0-5])|(2[0-4][0-9])|(1[0-9]{2})|([0-9]{1,2}))\\.){3}((25[0-5])|(2[0-4][0-9])|(1[0-9]{2})|([0-9]{1,2})))\\])|([A-Za-z0-9]([A-Za-z0-9-]*[A-Za-z0-9])*(\\.[A-Za-z]{2,})+))$/;\n// const emailRegex =\n// /^[a-zA-Z0-9\\.\\!\\#\\$\\%\\&\\'\\*\\+\\/\\=\\?\\^\\_\\`\\{\\|\\}\\~\\-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$/;\n// const emailRegex =\n// /^(?:[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*|\"(?:[\\x01-\\x08\\x0b\\x0c\\x0e-\\x1f\\x21\\x23-\\x5b\\x5d-\\x7f]|\\\\[\\x01-\\x09\\x0b\\x0c\\x0e-\\x7f])*\")@(?:(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?|\\[(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?|[a-z0-9-]*[a-z0-9]:(?:[\\x01-\\x08\\x0b\\x0c\\x0e-\\x1f\\x21-\\x5a\\x53-\\x7f]|\\\\[\\x01-\\x09\\x0b\\x0c\\x0e-\\x7f])+)\\])$/i;\nconst emailRegex = /^(?!\\.)(?!.*\\.\\.)([A-Z0-9_'+\\-\\.]*)[A-Z0-9_+-]@([A-Z0-9][A-Z0-9\\-]*\\.)+[A-Z]{2,}$/i;\n// const emailRegex =\n// /^[a-z0-9.!#$%&’*+/=?^_`{|}~-]+@[a-z0-9-]+(?:\\.[a-z0-9\\-]+)*$/i;\n// from https://thekevinscott.com/emojis-in-javascript/#writing-a-regular-expression\nconst _emojiRegex = `^(\\\\p{Extended_Pictographic}|\\\\p{Emoji_Component})+$`;\nlet emojiRegex;\n// faster, simpler, safer\nconst ipv4Regex = /^(?:(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\\.){3}(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])$/;\nconst ipv4CidrRegex = /^(?:(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\\.){3}(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\\/(3[0-2]|[12]?[0-9])$/;\n// const ipv6Regex =\n// /^(([a-f0-9]{1,4}:){7}|::([a-f0-9]{1,4}:){0,6}|([a-f0-9]{1,4}:){1}:([a-f0-9]{1,4}:){0,5}|([a-f0-9]{1,4}:){2}:([a-f0-9]{1,4}:){0,4}|([a-f0-9]{1,4}:){3}:([a-f0-9]{1,4}:){0,3}|([a-f0-9]{1,4}:){4}:([a-f0-9]{1,4}:){0,2}|([a-f0-9]{1,4}:){5}:([a-f0-9]{1,4}:){0,1})([a-f0-9]{1,4}|(((25[0-5])|(2[0-4][0-9])|(1[0-9]{2})|([0-9]{1,2}))\\.){3}((25[0-5])|(2[0-4][0-9])|(1[0-9]{2})|([0-9]{1,2})))$/;\nconst ipv6Regex = /^(([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]))$/;\nconst ipv6CidrRegex = /^(([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]))\\/(12[0-8]|1[01][0-9]|[1-9]?[0-9])$/;\n// https://stackoverflow.com/questions/7860392/determine-if-string-is-in-base64-using-javascript\nconst base64Regex = /^([0-9a-zA-Z+/]{4})*(([0-9a-zA-Z+/]{2}==)|([0-9a-zA-Z+/]{3}=))?$/;\n// https://base64.guru/standards/base64url\nconst base64urlRegex = /^([0-9a-zA-Z-_]{4})*(([0-9a-zA-Z-_]{2}(==)?)|([0-9a-zA-Z-_]{3}(=)?))?$/;\n// simple\n// const dateRegexSource = `\\\\d{4}-\\\\d{2}-\\\\d{2}`;\n// no leap year validation\n// const dateRegexSource = `\\\\d{4}-((0[13578]|10|12)-31|(0[13-9]|1[0-2])-30|(0[1-9]|1[0-2])-(0[1-9]|1\\\\d|2\\\\d))`;\n// with leap year validation\nconst dateRegexSource = `((\\\\d\\\\d[2468][048]|\\\\d\\\\d[13579][26]|\\\\d\\\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\\\d{4}-((0[13578]|1[02])-(0[1-9]|[12]\\\\d|3[01])|(0[469]|11)-(0[1-9]|[12]\\\\d|30)|(02)-(0[1-9]|1\\\\d|2[0-8])))`;\nconst dateRegex = new RegExp(`^${dateRegexSource}$`);\nfunction timeRegexSource(args) {\n let secondsRegexSource = `[0-5]\\\\d`;\n if (args.precision) {\n secondsRegexSource = `${secondsRegexSource}\\\\.\\\\d{${args.precision}}`;\n }\n else if (args.precision == null) {\n secondsRegexSource = `${secondsRegexSource}(\\\\.\\\\d+)?`;\n }\n const secondsQuantifier = args.precision ? \"+\" : \"?\"; // require seconds if precision is nonzero\n return `([01]\\\\d|2[0-3]):[0-5]\\\\d(:${secondsRegexSource})${secondsQuantifier}`;\n}\nfunction timeRegex(args) {\n return new RegExp(`^${timeRegexSource(args)}$`);\n}\n// Adapted from https://stackoverflow.com/a/3143231\nexport function datetimeRegex(args) {\n let regex = `${dateRegexSource}T${timeRegexSource(args)}`;\n const opts = [];\n opts.push(args.local ? `Z?` : `Z`);\n if (args.offset)\n opts.push(`([+-]\\\\d{2}:?\\\\d{2})`);\n regex = `${regex}(${opts.join(\"|\")})`;\n return new RegExp(`^${regex}$`);\n}\nfunction isValidIP(ip, version) {\n if ((version === \"v4\" || !version) && ipv4Regex.test(ip)) {\n return true;\n }\n if ((version === \"v6\" || !version) && ipv6Regex.test(ip)) {\n return true;\n }\n return false;\n}\nfunction isValidJWT(jwt, alg) {\n if (!jwtRegex.test(jwt))\n return false;\n try {\n const [header] = jwt.split(\".\");\n if (!header)\n return false;\n // Convert base64url to base64\n const base64 = header\n .replace(/-/g, \"+\")\n .replace(/_/g, \"/\")\n .padEnd(header.length + ((4 - (header.length % 4)) % 4), \"=\");\n const decoded = JSON.parse(atob(base64));\n if (typeof decoded !== \"object\" || decoded === null)\n return false;\n if (\"typ\" in decoded && decoded?.typ !== \"JWT\")\n return false;\n if (!decoded.alg)\n return false;\n if (alg && decoded.alg !== alg)\n return false;\n return true;\n }\n catch {\n return false;\n }\n}\nfunction isValidCidr(ip, version) {\n if ((version === \"v4\" || !version) && ipv4CidrRegex.test(ip)) {\n return true;\n }\n if ((version === \"v6\" || !version) && ipv6CidrRegex.test(ip)) {\n return true;\n }\n return false;\n}\nexport class ZodString extends ZodType {\n _parse(input) {\n if (this._def.coerce) {\n input.data = String(input.data);\n }\n const parsedType = this._getType(input);\n if (parsedType !== ZodParsedType.string) {\n const ctx = this._getOrReturnCtx(input);\n addIssueToContext(ctx, {\n code: ZodIssueCode.invalid_type,\n expected: ZodParsedType.string,\n received: ctx.parsedType,\n });\n return INVALID;\n }\n const status = new ParseStatus();\n let ctx = undefined;\n for (const check of this._def.checks) {\n if (check.kind === \"min\") {\n if (input.data.length < check.value) {\n ctx = this._getOrReturnCtx(input, ctx);\n addIssueToContext(ctx, {\n code: ZodIssueCode.too_small,\n minimum: check.value,\n type: \"string\",\n inclusive: true,\n exact: false,\n message: check.message,\n });\n status.dirty();\n }\n }\n else if (check.kind === \"max\") {\n if (input.data.length > check.value) {\n ctx = this._getOrReturnCtx(input, ctx);\n addIssueToContext(ctx, {\n code: ZodIssueCode.too_big,\n maximum: check.value,\n type: \"string\",\n inclusive: true,\n exact: false,\n message: check.message,\n });\n status.dirty();\n }\n }\n else if (check.kind === \"length\") {\n const tooBig = input.data.length > check.value;\n const tooSmall = input.data.length < check.value;\n if (tooBig || tooSmall) {\n ctx = this._getOrReturnCtx(input, ctx);\n if (tooBig) {\n addIssueToContext(ctx, {\n code: ZodIssueCode.too_big,\n maximum: check.value,\n type: \"string\",\n inclusive: true,\n exact: true,\n message: check.message,\n });\n }\n else if (tooSmall) {\n addIssueToContext(ctx, {\n code: ZodIssueCode.too_small,\n minimum: check.value,\n type: \"string\",\n inclusive: true,\n exact: true,\n message: check.message,\n });\n }\n status.dirty();\n }\n }\n else if (check.kind === \"email\") {\n if (!emailRegex.test(input.data)) {\n ctx = this._getOrReturnCtx(input, ctx);\n addIssueToContext(ctx, {\n validation: \"email\",\n code: ZodIssueCode.invalid_string,\n message: check.message,\n });\n status.dirty();\n }\n }\n else if (check.kind === \"emoji\") {\n if (!emojiRegex) {\n emojiRegex = new RegExp(_emojiRegex, \"u\");\n }\n if (!emojiRegex.test(input.data)) {\n ctx = this._getOrReturnCtx(input, ctx);\n addIssueToContext(ctx, {\n validation: \"emoji\",\n code: ZodIssueCode.invalid_string,\n message: check.message,\n });\n status.dirty();\n }\n }\n else if (check.kind === \"uuid\") {\n if (!uuidRegex.test(input.data)) {\n ctx = this._getOrReturnCtx(input, ctx);\n addIssueToContext(ctx, {\n validation: \"uuid\",\n code: ZodIssueCode.invalid_string,\n message: check.message,\n });\n status.dirty();\n }\n }\n else if (check.kind === \"nanoid\") {\n if (!nanoidRegex.test(input.data)) {\n ctx = this._getOrReturnCtx(input, ctx);\n addIssueToContext(ctx, {\n validation: \"nanoid\",\n code: ZodIssueCode.invalid_string,\n message: check.message,\n });\n status.dirty();\n }\n }\n else if (check.kind === \"cuid\") {\n if (!cuidRegex.test(input.data)) {\n ctx = this._getOrReturnCtx(input, ctx);\n addIssueToContext(ctx, {\n validation: \"cuid\",\n code: ZodIssueCode.invalid_string,\n message: check.message,\n });\n status.dirty();\n }\n }\n else if (check.kind === \"cuid2\") {\n if (!cuid2Regex.test(input.data)) {\n ctx = this._getOrReturnCtx(input, ctx);\n addIssueToContext(ctx, {\n validation: \"cuid2\",\n code: ZodIssueCode.invalid_string,\n message: check.message,\n });\n status.dirty();\n }\n }\n else if (check.kind === \"ulid\") {\n if (!ulidRegex.test(input.data)) {\n ctx = this._getOrReturnCtx(input, ctx);\n addIssueToContext(ctx, {\n validation: \"ulid\",\n code: ZodIssueCode.invalid_string,\n message: check.message,\n });\n status.dirty();\n }\n }\n else if (check.kind === \"url\") {\n try {\n new URL(input.data);\n }\n catch {\n ctx = this._getOrReturnCtx(input, ctx);\n addIssueToContext(ctx, {\n validation: \"url\",\n code: ZodIssueCode.invalid_string,\n message: check.message,\n });\n status.dirty();\n }\n }\n else if (check.kind === \"regex\") {\n check.regex.lastIndex = 0;\n const testResult = check.regex.test(input.data);\n if (!testResult) {\n ctx = this._getOrReturnCtx(input, ctx);\n addIssueToContext(ctx, {\n validation: \"regex\",\n code: ZodIssueCode.invalid_string,\n message: check.message,\n });\n status.dirty();\n }\n }\n else if (check.kind === \"trim\") {\n input.data = input.data.trim();\n }\n else if (check.kind === \"includes\") {\n if (!input.data.includes(check.value, check.position)) {\n ctx = this._getOrReturnCtx(input, ctx);\n addIssueToContext(ctx, {\n code: ZodIssueCode.invalid_string,\n validation: { includes: check.value, position: check.position },\n message: check.message,\n });\n status.dirty();\n }\n }\n else if (check.kind === \"toLowerCase\") {\n input.data = input.data.toLowerCase();\n }\n else if (check.kind === \"toUpperCase\") {\n input.data = input.data.toUpperCase();\n }\n else if (check.kind === \"startsWith\") {\n if (!input.data.startsWith(check.value)) {\n ctx = this._getOrReturnCtx(input, ctx);\n addIssueToContext(ctx, {\n code: ZodIssueCode.invalid_string,\n validation: { startsWith: check.value },\n message: check.message,\n });\n status.dirty();\n }\n }\n else if (check.kind === \"endsWith\") {\n if (!input.data.endsWith(check.value)) {\n ctx = this._getOrReturnCtx(input, ctx);\n addIssueToContext(ctx, {\n code: ZodIssueCode.invalid_string,\n validation: { endsWith: check.value },\n message: check.message,\n });\n status.dirty();\n }\n }\n else if (check.kind === \"datetime\") {\n const regex = datetimeRegex(check);\n if (!regex.test(input.data)) {\n ctx = this._getOrReturnCtx(input, ctx);\n addIssueToContext(ctx, {\n code: ZodIssueCode.invalid_string,\n validation: \"datetime\",\n message: check.message,\n });\n status.dirty();\n }\n }\n else if (check.kind === \"date\") {\n const regex = dateRegex;\n if (!regex.test(input.data)) {\n ctx = this._getOrReturnCtx(input, ctx);\n addIssueToContext(ctx, {\n code: ZodIssueCode.invalid_string,\n validation: \"date\",\n message: check.message,\n });\n status.dirty();\n }\n }\n else if (check.kind === \"time\") {\n const regex = timeRegex(check);\n if (!regex.test(input.data)) {\n ctx = this._getOrReturnCtx(input, ctx);\n addIssueToContext(ctx, {\n code: ZodIssueCode.invalid_string,\n validation: \"time\",\n message: check.message,\n });\n status.dirty();\n }\n }\n else if (check.kind === \"duration\") {\n if (!durationRegex.test(input.data)) {\n ctx = this._getOrReturnCtx(input, ctx);\n addIssueToContext(ctx, {\n validation: \"duration\",\n code: ZodIssueCode.invalid_string,\n message: check.message,\n });\n status.dirty();\n }\n }\n else if (check.kind === \"ip\") {\n if (!isValidIP(input.data, check.version)) {\n ctx = this._getOrReturnCtx(input, ctx);\n addIssueToContext(ctx, {\n validation: \"ip\",\n code: ZodIssueCode.invalid_string,\n message: check.message,\n });\n status.dirty();\n }\n }\n else if (check.kind === \"jwt\") {\n if (!isValidJWT(input.data, check.alg)) {\n ctx = this._getOrReturnCtx(input, ctx);\n addIssueToContext(ctx, {\n validation: \"jwt\",\n code: ZodIssueCode.invalid_string,\n message: check.message,\n });\n status.dirty();\n }\n }\n else if (check.kind === \"cidr\") {\n if (!isValidCidr(input.data, check.version)) {\n ctx = this._getOrReturnCtx(input, ctx);\n addIssueToContext(ctx, {\n validation: \"cidr\",\n code: ZodIssueCode.invalid_string,\n message: check.message,\n });\n status.dirty();\n }\n }\n else if (check.kind === \"base64\") {\n if (!base64Regex.test(input.data)) {\n ctx = this._getOrReturnCtx(input, ctx);\n addIssueToContext(ctx, {\n validation: \"base64\",\n code: ZodIssueCode.invalid_string,\n message: check.message,\n });\n status.dirty();\n }\n }\n else if (check.kind === \"base64url\") {\n if (!base64urlRegex.test(input.data)) {\n ctx = this._getOrReturnCtx(input, ctx);\n addIssueToContext(ctx, {\n validation: \"base64url\",\n code: ZodIssueCode.invalid_string,\n message: check.message,\n });\n status.dirty();\n }\n }\n else {\n util.assertNever(check);\n }\n }\n return { status: status.value, value: input.data };\n }\n _regex(regex, validation, message) {\n return this.refinement((data) => regex.test(data), {\n validation,\n code: ZodIssueCode.invalid_string,\n ...errorUtil.errToObj(message),\n });\n }\n _addCheck(check) {\n return new ZodString({\n ...this._def,\n checks: [...this._def.checks, check],\n });\n }\n email(message) {\n return this._addCheck({ kind: \"email\", ...errorUtil.errToObj(message) });\n }\n url(message) {\n return this._addCheck({ kind: \"url\", ...errorUtil.errToObj(message) });\n }\n emoji(message) {\n return this._addCheck({ kind: \"emoji\", ...errorUtil.errToObj(message) });\n }\n uuid(message) {\n return this._addCheck({ kind: \"uuid\", ...errorUtil.errToObj(message) });\n }\n nanoid(message) {\n return this._addCheck({ kind: \"nanoid\", ...errorUtil.errToObj(message) });\n }\n cuid(message) {\n return this._addCheck({ kind: \"cuid\", ...errorUtil.errToObj(message) });\n }\n cuid2(message) {\n return this._addCheck({ kind: \"cuid2\", ...errorUtil.errToObj(message) });\n }\n ulid(message) {\n return this._addCheck({ kind: \"ulid\", ...errorUtil.errToObj(message) });\n }\n base64(message) {\n return this._addCheck({ kind: \"base64\", ...errorUtil.errToObj(message) });\n }\n base64url(message) {\n // base64url encoding is a modification of base64 that can safely be used in URLs and filenames\n return this._addCheck({\n kind: \"base64url\",\n ...errorUtil.errToObj(message),\n });\n }\n jwt(options) {\n return this._addCheck({ kind: \"jwt\", ...errorUtil.errToObj(options) });\n }\n ip(options) {\n return this._addCheck({ kind: \"ip\", ...errorUtil.errToObj(options) });\n }\n cidr(options) {\n return this._addCheck({ kind: \"cidr\", ...errorUtil.errToObj(options) });\n }\n datetime(options) {\n if (typeof options === \"string\") {\n return this._addCheck({\n kind: \"datetime\",\n precision: null,\n offset: false,\n local: false,\n message: options,\n });\n }\n return this._addCheck({\n kind: \"datetime\",\n precision: typeof options?.precision === \"undefined\" ? null : options?.precision,\n offset: options?.offset ?? false,\n local: options?.local ?? false,\n ...errorUtil.errToObj(options?.message),\n });\n }\n date(message) {\n return this._addCheck({ kind: \"date\", message });\n }\n time(options) {\n if (typeof options === \"string\") {\n return this._addCheck({\n kind: \"time\",\n precision: null,\n message: options,\n });\n }\n return this._addCheck({\n kind: \"time\",\n precision: typeof options?.precision === \"undefined\" ? null : options?.precision,\n ...errorUtil.errToObj(options?.message),\n });\n }\n duration(message) {\n return this._addCheck({ kind: \"duration\", ...errorUtil.errToObj(message) });\n }\n regex(regex, message) {\n return this._addCheck({\n kind: \"regex\",\n regex: regex,\n ...errorUtil.errToObj(message),\n });\n }\n includes(value, options) {\n return this._addCheck({\n kind: \"includes\",\n value: value,\n position: options?.position,\n ...errorUtil.errToObj(options?.message),\n });\n }\n startsWith(value, message) {\n return this._addCheck({\n kind: \"startsWith\",\n value: value,\n ...errorUtil.errToObj(message),\n });\n }\n endsWith(value, message) {\n return this._addCheck({\n kind: \"endsWith\",\n value: value,\n ...errorUtil.errToObj(message),\n });\n }\n min(minLength, message) {\n return this._addCheck({\n kind: \"min\",\n value: minLength,\n ...errorUtil.errToObj(message),\n });\n }\n max(maxLength, message) {\n return this._addCheck({\n kind: \"max\",\n value: maxLength,\n ...errorUtil.errToObj(message),\n });\n }\n length(len, message) {\n return this._addCheck({\n kind: \"length\",\n value: len,\n ...errorUtil.errToObj(message),\n });\n }\n /**\n * Equivalent to `.min(1)`\n */\n nonempty(message) {\n return this.min(1, errorUtil.errToObj(message));\n }\n trim() {\n return new ZodString({\n ...this._def,\n checks: [...this._def.checks, { kind: \"trim\" }],\n });\n }\n toLowerCase() {\n return new ZodString({\n ...this._def,\n checks: [...this._def.checks, { kind: \"toLowerCase\" }],\n });\n }\n toUpperCase() {\n return new ZodString({\n ...this._def,\n checks: [...this._def.checks, { kind: \"toUpperCase\" }],\n });\n }\n get isDatetime() {\n return !!this._def.checks.find((ch) => ch.kind === \"datetime\");\n }\n get isDate() {\n return !!this._def.checks.find((ch) => ch.kind === \"date\");\n }\n get isTime() {\n return !!this._def.checks.find((ch) => ch.kind === \"time\");\n }\n get isDuration() {\n return !!this._def.checks.find((ch) => ch.kind === \"duration\");\n }\n get isEmail() {\n return !!this._def.checks.find((ch) => ch.kind === \"email\");\n }\n get isURL() {\n return !!this._def.checks.find((ch) => ch.kind === \"url\");\n }\n get isEmoji() {\n return !!this._def.checks.find((ch) => ch.kind === \"emoji\");\n }\n get isUUID() {\n return !!this._def.checks.find((ch) => ch.kind === \"uuid\");\n }\n get isNANOID() {\n return !!this._def.checks.find((ch) => ch.kind === \"nanoid\");\n }\n get isCUID() {\n return !!this._def.checks.find((ch) => ch.kind === \"cuid\");\n }\n get isCUID2() {\n return !!this._def.checks.find((ch) => ch.kind === \"cuid2\");\n }\n get isULID() {\n return !!this._def.checks.find((ch) => ch.kind === \"ulid\");\n }\n get isIP() {\n return !!this._def.checks.find((ch) => ch.kind === \"ip\");\n }\n get isCIDR() {\n return !!this._def.checks.find((ch) => ch.kind === \"cidr\");\n }\n get isBase64() {\n return !!this._def.checks.find((ch) => ch.kind === \"base64\");\n }\n get isBase64url() {\n // base64url encoding is a modification of base64 that can safely be used in URLs and filenames\n return !!this._def.checks.find((ch) => ch.kind === \"base64url\");\n }\n get minLength() {\n let min = null;\n for (const ch of this._def.checks) {\n if (ch.kind === \"min\") {\n if (min === null || ch.value > min)\n min = ch.value;\n }\n }\n return min;\n }\n get maxLength() {\n let max = null;\n for (const ch of this._def.checks) {\n if (ch.kind === \"max\") {\n if (max === null || ch.value < max)\n max = ch.value;\n }\n }\n return max;\n }\n}\nZodString.create = (params) => {\n return new ZodString({\n checks: [],\n typeName: ZodFirstPartyTypeKind.ZodString,\n coerce: params?.coerce ?? false,\n ...processCreateParams(params),\n });\n};\n// https://stackoverflow.com/questions/3966484/why-does-modulus-operator-return-fractional-number-in-javascript/31711034#31711034\nfunction floatSafeRemainder(val, step) {\n const valDecCount = (val.toString().split(\".\")[1] || \"\").length;\n const stepDecCount = (step.toString().split(\".\")[1] || \"\").length;\n const decCount = valDecCount > stepDecCount ? valDecCount : stepDecCount;\n const valInt = Number.parseInt(val.toFixed(decCount).replace(\".\", \"\"));\n const stepInt = Number.parseInt(step.toFixed(decCount).replace(\".\", \"\"));\n return (valInt % stepInt) / 10 ** decCount;\n}\nexport class ZodNumber extends ZodType {\n constructor() {\n super(...arguments);\n this.min = this.gte;\n this.max = this.lte;\n this.step = this.multipleOf;\n }\n _parse(input) {\n if (this._def.coerce) {\n input.data = Number(input.data);\n }\n const parsedType = this._getType(input);\n if (parsedType !== ZodParsedType.number) {\n const ctx = this._getOrReturnCtx(input);\n addIssueToContext(ctx, {\n code: ZodIssueCode.invalid_type,\n expected: ZodParsedType.number,\n received: ctx.parsedType,\n });\n return INVALID;\n }\n let ctx = undefined;\n const status = new ParseStatus();\n for (const check of this._def.checks) {\n if (check.kind === \"int\") {\n if (!util.isInteger(input.data)) {\n ctx = this._getOrReturnCtx(input, ctx);\n addIssueToContext(ctx, {\n code: ZodIssueCode.invalid_type,\n expected: \"integer\",\n received: \"float\",\n message: check.message,\n });\n status.dirty();\n }\n }\n else if (check.kind === \"min\") {\n const tooSmall = check.inclusive ? input.data < check.value : input.data <= check.value;\n if (tooSmall) {\n ctx = this._getOrReturnCtx(input, ctx);\n addIssueToContext(ctx, {\n code: ZodIssueCode.too_small,\n minimum: check.value,\n type: \"number\",\n inclusive: check.inclusive,\n exact: false,\n message: check.message,\n });\n status.dirty();\n }\n }\n else if (check.kind === \"max\") {\n const tooBig = check.inclusive ? input.data > check.value : input.data >= check.value;\n if (tooBig) {\n ctx = this._getOrReturnCtx(input, ctx);\n addIssueToContext(ctx, {\n code: ZodIssueCode.too_big,\n maximum: check.value,\n type: \"number\",\n inclusive: check.inclusive,\n exact: false,\n message: check.message,\n });\n status.dirty();\n }\n }\n else if (check.kind === \"multipleOf\") {\n if (floatSafeRemainder(input.data, check.value) !== 0) {\n ctx = this._getOrReturnCtx(input, ctx);\n addIssueToContext(ctx, {\n code: ZodIssueCode.not_multiple_of,\n multipleOf: check.value,\n message: check.message,\n });\n status.dirty();\n }\n }\n else if (check.kind === \"finite\") {\n if (!Number.isFinite(input.data)) {\n ctx = this._getOrReturnCtx(input, ctx);\n addIssueToContext(ctx, {\n code: ZodIssueCode.not_finite,\n message: check.message,\n });\n status.dirty();\n }\n }\n else {\n util.assertNever(check);\n }\n }\n return { status: status.value, value: input.data };\n }\n gte(value, message) {\n return this.setLimit(\"min\", value, true, errorUtil.toString(message));\n }\n gt(value, message) {\n return this.setLimit(\"min\", value, false, errorUtil.toString(message));\n }\n lte(value, message) {\n return this.setLimit(\"max\", value, true, errorUtil.toString(message));\n }\n lt(value, message) {\n return this.setLimit(\"max\", value, false, errorUtil.toString(message));\n }\n setLimit(kind, value, inclusive, message) {\n return new ZodNumber({\n ...this._def,\n checks: [\n ...this._def.checks,\n {\n kind,\n value,\n inclusive,\n message: errorUtil.toString(message),\n },\n ],\n });\n }\n _addCheck(check) {\n return new ZodNumber({\n ...this._def,\n checks: [...this._def.checks, check],\n });\n }\n int(message) {\n return this._addCheck({\n kind: \"int\",\n message: errorUtil.toString(message),\n });\n }\n positive(message) {\n return this._addCheck({\n kind: \"min\",\n value: 0,\n inclusive: false,\n message: errorUtil.toString(message),\n });\n }\n negative(message) {\n return this._addCheck({\n kind: \"max\",\n value: 0,\n inclusive: false,\n message: errorUtil.toString(message),\n });\n }\n nonpositive(message) {\n return this._addCheck({\n kind: \"max\",\n value: 0,\n inclusive: true,\n message: errorUtil.toString(message),\n });\n }\n nonnegative(message) {\n return this._addCheck({\n kind: \"min\",\n value: 0,\n inclusive: true,\n message: errorUtil.toString(message),\n });\n }\n multipleOf(value, message) {\n return this._addCheck({\n kind: \"multipleOf\",\n value: value,\n message: errorUtil.toString(message),\n });\n }\n finite(message) {\n return this._addCheck({\n kind: \"finite\",\n message: errorUtil.toString(message),\n });\n }\n safe(message) {\n return this._addCheck({\n kind: \"min\",\n inclusive: true,\n value: Number.MIN_SAFE_INTEGER,\n message: errorUtil.toString(message),\n })._addCheck({\n kind: \"max\",\n inclusive: true,\n value: Number.MAX_SAFE_INTEGER,\n message: errorUtil.toString(message),\n });\n }\n get minValue() {\n let min = null;\n for (const ch of this._def.checks) {\n if (ch.kind === \"min\") {\n if (min === null || ch.value > min)\n min = ch.value;\n }\n }\n return min;\n }\n get maxValue() {\n let max = null;\n for (const ch of this._def.checks) {\n if (ch.kind === \"max\") {\n if (max === null || ch.value < max)\n max = ch.value;\n }\n }\n return max;\n }\n get isInt() {\n return !!this._def.checks.find((ch) => ch.kind === \"int\" || (ch.kind === \"multipleOf\" && util.isInteger(ch.value)));\n }\n get isFinite() {\n let max = null;\n let min = null;\n for (const ch of this._def.checks) {\n if (ch.kind === \"finite\" || ch.kind === \"int\" || ch.kind === \"multipleOf\") {\n return true;\n }\n else if (ch.kind === \"min\") {\n if (min === null || ch.value > min)\n min = ch.value;\n }\n else if (ch.kind === \"max\") {\n if (max === null || ch.value < max)\n max = ch.value;\n }\n }\n return Number.isFinite(min) && Number.isFinite(max);\n }\n}\nZodNumber.create = (params) => {\n return new ZodNumber({\n checks: [],\n typeName: ZodFirstPartyTypeKind.ZodNumber,\n coerce: params?.coerce || false,\n ...processCreateParams(params),\n });\n};\nexport class ZodBigInt extends ZodType {\n constructor() {\n super(...arguments);\n this.min = this.gte;\n this.max = this.lte;\n }\n _parse(input) {\n if (this._def.coerce) {\n try {\n input.data = BigInt(input.data);\n }\n catch {\n return this._getInvalidInput(input);\n }\n }\n const parsedType = this._getType(input);\n if (parsedType !== ZodParsedType.bigint) {\n return this._getInvalidInput(input);\n }\n let ctx = undefined;\n const status = new ParseStatus();\n for (const check of this._def.checks) {\n if (check.kind === \"min\") {\n const tooSmall = check.inclusive ? input.data < check.value : input.data <= check.value;\n if (tooSmall) {\n ctx = this._getOrReturnCtx(input, ctx);\n addIssueToContext(ctx, {\n code: ZodIssueCode.too_small,\n type: \"bigint\",\n minimum: check.value,\n inclusive: check.inclusive,\n message: check.message,\n });\n status.dirty();\n }\n }\n else if (check.kind === \"max\") {\n const tooBig = check.inclusive ? input.data > check.value : input.data >= check.value;\n if (tooBig) {\n ctx = this._getOrReturnCtx(input, ctx);\n addIssueToContext(ctx, {\n code: ZodIssueCode.too_big,\n type: \"bigint\",\n maximum: check.value,\n inclusive: check.inclusive,\n message: check.message,\n });\n status.dirty();\n }\n }\n else if (check.kind === \"multipleOf\") {\n if (input.data % check.value !== BigInt(0)) {\n ctx = this._getOrReturnCtx(input, ctx);\n addIssueToContext(ctx, {\n code: ZodIssueCode.not_multiple_of,\n multipleOf: check.value,\n message: check.message,\n });\n status.dirty();\n }\n }\n else {\n util.assertNever(check);\n }\n }\n return { status: status.value, value: input.data };\n }\n _getInvalidInput(input) {\n const ctx = this._getOrReturnCtx(input);\n addIssueToContext(ctx, {\n code: ZodIssueCode.invalid_type,\n expected: ZodParsedType.bigint,\n received: ctx.parsedType,\n });\n return INVALID;\n }\n gte(value, message) {\n return this.setLimit(\"min\", value, true, errorUtil.toString(message));\n }\n gt(value, message) {\n return this.setLimit(\"min\", value, false, errorUtil.toString(message));\n }\n lte(value, message) {\n return this.setLimit(\"max\", value, true, errorUtil.toString(message));\n }\n lt(value, message) {\n return this.setLimit(\"max\", value, false, errorUtil.toString(message));\n }\n setLimit(kind, value, inclusive, message) {\n return new ZodBigInt({\n ...this._def,\n checks: [\n ...this._def.checks,\n {\n kind,\n value,\n inclusive,\n message: errorUtil.toString(message),\n },\n ],\n });\n }\n _addCheck(check) {\n return new ZodBigInt({\n ...this._def,\n checks: [...this._def.checks, check],\n });\n }\n positive(message) {\n return this._addCheck({\n kind: \"min\",\n value: BigInt(0),\n inclusive: false,\n message: errorUtil.toString(message),\n });\n }\n negative(message) {\n return this._addCheck({\n kind: \"max\",\n value: BigInt(0),\n inclusive: false,\n message: errorUtil.toString(message),\n });\n }\n nonpositive(message) {\n return this._addCheck({\n kind: \"max\",\n value: BigInt(0),\n inclusive: true,\n message: errorUtil.toString(message),\n });\n }\n nonnegative(message) {\n return this._addCheck({\n kind: \"min\",\n value: BigInt(0),\n inclusive: true,\n message: errorUtil.toString(message),\n });\n }\n multipleOf(value, message) {\n return this._addCheck({\n kind: \"multipleOf\",\n value,\n message: errorUtil.toString(message),\n });\n }\n get minValue() {\n let min = null;\n for (const ch of this._def.checks) {\n if (ch.kind === \"min\") {\n if (min === null || ch.value > min)\n min = ch.value;\n }\n }\n return min;\n }\n get maxValue() {\n let max = null;\n for (const ch of this._def.checks) {\n if (ch.kind === \"max\") {\n if (max === null || ch.value < max)\n max = ch.value;\n }\n }\n return max;\n }\n}\nZodBigInt.create = (params) => {\n return new ZodBigInt({\n checks: [],\n typeName: ZodFirstPartyTypeKind.ZodBigInt,\n coerce: params?.coerce ?? false,\n ...processCreateParams(params),\n });\n};\nexport class ZodBoolean extends ZodType {\n _parse(input) {\n if (this._def.coerce) {\n input.data = Boolean(input.data);\n }\n const parsedType = this._getType(input);\n if (parsedType !== ZodParsedType.boolean) {\n const ctx = this._getOrReturnCtx(input);\n addIssueToContext(ctx, {\n code: ZodIssueCode.invalid_type,\n expected: ZodParsedType.boolean,\n received: ctx.parsedType,\n });\n return INVALID;\n }\n return OK(input.data);\n }\n}\nZodBoolean.create = (params) => {\n return new ZodBoolean({\n typeName: ZodFirstPartyTypeKind.ZodBoolean,\n coerce: params?.coerce || false,\n ...processCreateParams(params),\n });\n};\nexport class ZodDate extends ZodType {\n _parse(input) {\n if (this._def.coerce) {\n input.data = new Date(input.data);\n }\n const parsedType = this._getType(input);\n if (parsedType !== ZodParsedType.date) {\n const ctx = this._getOrReturnCtx(input);\n addIssueToContext(ctx, {\n code: ZodIssueCode.invalid_type,\n expected: ZodParsedType.date,\n received: ctx.parsedType,\n });\n return INVALID;\n }\n if (Number.isNaN(input.data.getTime())) {\n const ctx = this._getOrReturnCtx(input);\n addIssueToContext(ctx, {\n code: ZodIssueCode.invalid_date,\n });\n return INVALID;\n }\n const status = new ParseStatus();\n let ctx = undefined;\n for (const check of this._def.checks) {\n if (check.kind === \"min\") {\n if (input.data.getTime() < check.value) {\n ctx = this._getOrReturnCtx(input, ctx);\n addIssueToContext(ctx, {\n code: ZodIssueCode.too_small,\n message: check.message,\n inclusive: true,\n exact: false,\n minimum: check.value,\n type: \"date\",\n });\n status.dirty();\n }\n }\n else if (check.kind === \"max\") {\n if (input.data.getTime() > check.value) {\n ctx = this._getOrReturnCtx(input, ctx);\n addIssueToContext(ctx, {\n code: ZodIssueCode.too_big,\n message: check.message,\n inclusive: true,\n exact: false,\n maximum: check.value,\n type: \"date\",\n });\n status.dirty();\n }\n }\n else {\n util.assertNever(check);\n }\n }\n return {\n status: status.value,\n value: new Date(input.data.getTime()),\n };\n }\n _addCheck(check) {\n return new ZodDate({\n ...this._def,\n checks: [...this._def.checks, check],\n });\n }\n min(minDate, message) {\n return this._addCheck({\n kind: \"min\",\n value: minDate.getTime(),\n message: errorUtil.toString(message),\n });\n }\n max(maxDate, message) {\n return this._addCheck({\n kind: \"max\",\n value: maxDate.getTime(),\n message: errorUtil.toString(message),\n });\n }\n get minDate() {\n let min = null;\n for (const ch of this._def.checks) {\n if (ch.kind === \"min\") {\n if (min === null || ch.value > min)\n min = ch.value;\n }\n }\n return min != null ? new Date(min) : null;\n }\n get maxDate() {\n let max = null;\n for (const ch of this._def.checks) {\n if (ch.kind === \"max\") {\n if (max === null || ch.value < max)\n max = ch.value;\n }\n }\n return max != null ? new Date(max) : null;\n }\n}\nZodDate.create = (params) => {\n return new ZodDate({\n checks: [],\n coerce: params?.coerce || false,\n typeName: ZodFirstPartyTypeKind.ZodDate,\n ...processCreateParams(params),\n });\n};\nexport class ZodSymbol extends ZodType {\n _parse(input) {\n const parsedType = this._getType(input);\n if (parsedType !== ZodParsedType.symbol) {\n const ctx = this._getOrReturnCtx(input);\n addIssueToContext(ctx, {\n code: ZodIssueCode.invalid_type,\n expected: ZodParsedType.symbol,\n received: ctx.parsedType,\n });\n return INVALID;\n }\n return OK(input.data);\n }\n}\nZodSymbol.create = (params) => {\n return new ZodSymbol({\n typeName: ZodFirstPartyTypeKind.ZodSymbol,\n ...processCreateParams(params),\n });\n};\nexport class ZodUndefined extends ZodType {\n _parse(input) {\n const parsedType = this._getType(input);\n if (parsedType !== ZodParsedType.undefined) {\n const ctx = this._getOrReturnCtx(input);\n addIssueToContext(ctx, {\n code: ZodIssueCode.invalid_type,\n expected: ZodParsedType.undefined,\n received: ctx.parsedType,\n });\n return INVALID;\n }\n return OK(input.data);\n }\n}\nZodUndefined.create = (params) => {\n return new ZodUndefined({\n typeName: ZodFirstPartyTypeKind.ZodUndefined,\n ...processCreateParams(params),\n });\n};\nexport class ZodNull extends ZodType {\n _parse(input) {\n const parsedType = this._getType(input);\n if (parsedType !== ZodParsedType.null) {\n const ctx = this._getOrReturnCtx(input);\n addIssueToContext(ctx, {\n code: ZodIssueCode.invalid_type,\n expected: ZodParsedType.null,\n received: ctx.parsedType,\n });\n return INVALID;\n }\n return OK(input.data);\n }\n}\nZodNull.create = (params) => {\n return new ZodNull({\n typeName: ZodFirstPartyTypeKind.ZodNull,\n ...processCreateParams(params),\n });\n};\nexport class ZodAny extends ZodType {\n constructor() {\n super(...arguments);\n // to prevent instances of other classes from extending ZodAny. this causes issues with catchall in ZodObject.\n this._any = true;\n }\n _parse(input) {\n return OK(input.data);\n }\n}\nZodAny.create = (params) => {\n return new ZodAny({\n typeName: ZodFirstPartyTypeKind.ZodAny,\n ...processCreateParams(params),\n });\n};\nexport class ZodUnknown extends ZodType {\n constructor() {\n super(...arguments);\n // required\n this._unknown = true;\n }\n _parse(input) {\n return OK(input.data);\n }\n}\nZodUnknown.create = (params) => {\n return new ZodUnknown({\n typeName: ZodFirstPartyTypeKind.ZodUnknown,\n ...processCreateParams(params),\n });\n};\nexport class ZodNever extends ZodType {\n _parse(input) {\n const ctx = this._getOrReturnCtx(input);\n addIssueToContext(ctx, {\n code: ZodIssueCode.invalid_type,\n expected: ZodParsedType.never,\n received: ctx.parsedType,\n });\n return INVALID;\n }\n}\nZodNever.create = (params) => {\n return new ZodNever({\n typeName: ZodFirstPartyTypeKind.ZodNever,\n ...processCreateParams(params),\n });\n};\nexport class ZodVoid extends ZodType {\n _parse(input) {\n const parsedType = this._getType(input);\n if (parsedType !== ZodParsedType.undefined) {\n const ctx = this._getOrReturnCtx(input);\n addIssueToContext(ctx, {\n code: ZodIssueCode.invalid_type,\n expected: ZodParsedType.void,\n received: ctx.parsedType,\n });\n return INVALID;\n }\n return OK(input.data);\n }\n}\nZodVoid.create = (params) => {\n return new ZodVoid({\n typeName: ZodFirstPartyTypeKind.ZodVoid,\n ...processCreateParams(params),\n });\n};\nexport class ZodArray extends ZodType {\n _parse(input) {\n const { ctx, status } = this._processInputParams(input);\n const def = this._def;\n if (ctx.parsedType !== ZodParsedType.array) {\n addIssueToContext(ctx, {\n code: ZodIssueCode.invalid_type,\n expected: ZodParsedType.array,\n received: ctx.parsedType,\n });\n return INVALID;\n }\n if (def.exactLength !== null) {\n const tooBig = ctx.data.length > def.exactLength.value;\n const tooSmall = ctx.data.length < def.exactLength.value;\n if (tooBig || tooSmall) {\n addIssueToContext(ctx, {\n code: tooBig ? ZodIssueCode.too_big : ZodIssueCode.too_small,\n minimum: (tooSmall ? def.exactLength.value : undefined),\n maximum: (tooBig ? def.exactLength.value : undefined),\n type: \"array\",\n inclusive: true,\n exact: true,\n message: def.exactLength.message,\n });\n status.dirty();\n }\n }\n if (def.minLength !== null) {\n if (ctx.data.length < def.minLength.value) {\n addIssueToContext(ctx, {\n code: ZodIssueCode.too_small,\n minimum: def.minLength.value,\n type: \"array\",\n inclusive: true,\n exact: false,\n message: def.minLength.message,\n });\n status.dirty();\n }\n }\n if (def.maxLength !== null) {\n if (ctx.data.length > def.maxLength.value) {\n addIssueToContext(ctx, {\n code: ZodIssueCode.too_big,\n maximum: def.maxLength.value,\n type: \"array\",\n inclusive: true,\n exact: false,\n message: def.maxLength.message,\n });\n status.dirty();\n }\n }\n if (ctx.common.async) {\n return Promise.all([...ctx.data].map((item, i) => {\n return def.type._parseAsync(new ParseInputLazyPath(ctx, item, ctx.path, i));\n })).then((result) => {\n return ParseStatus.mergeArray(status, result);\n });\n }\n const result = [...ctx.data].map((item, i) => {\n return def.type._parseSync(new ParseInputLazyPath(ctx, item, ctx.path, i));\n });\n return ParseStatus.mergeArray(status, result);\n }\n get element() {\n return this._def.type;\n }\n min(minLength, message) {\n return new ZodArray({\n ...this._def,\n minLength: { value: minLength, message: errorUtil.toString(message) },\n });\n }\n max(maxLength, message) {\n return new ZodArray({\n ...this._def,\n maxLength: { value: maxLength, message: errorUtil.toString(message) },\n });\n }\n length(len, message) {\n return new ZodArray({\n ...this._def,\n exactLength: { value: len, message: errorUtil.toString(message) },\n });\n }\n nonempty(message) {\n return this.min(1, message);\n }\n}\nZodArray.create = (schema, params) => {\n return new ZodArray({\n type: schema,\n minLength: null,\n maxLength: null,\n exactLength: null,\n typeName: ZodFirstPartyTypeKind.ZodArray,\n ...processCreateParams(params),\n });\n};\nfunction deepPartialify(schema) {\n if (schema instanceof ZodObject) {\n const newShape = {};\n for (const key in schema.shape) {\n const fieldSchema = schema.shape[key];\n newShape[key] = ZodOptional.create(deepPartialify(fieldSchema));\n }\n return new ZodObject({\n ...schema._def,\n shape: () => newShape,\n });\n }\n else if (schema instanceof ZodArray) {\n return new ZodArray({\n ...schema._def,\n type: deepPartialify(schema.element),\n });\n }\n else if (schema instanceof ZodOptional) {\n return ZodOptional.create(deepPartialify(schema.unwrap()));\n }\n else if (schema instanceof ZodNullable) {\n return ZodNullable.create(deepPartialify(schema.unwrap()));\n }\n else if (schema instanceof ZodTuple) {\n return ZodTuple.create(schema.items.map((item) => deepPartialify(item)));\n }\n else {\n return schema;\n }\n}\nexport class ZodObject extends ZodType {\n constructor() {\n super(...arguments);\n this._cached = null;\n /**\n * @deprecated In most cases, this is no longer needed - unknown properties are now silently stripped.\n * If you want to pass through unknown properties, use `.passthrough()` instead.\n */\n this.nonstrict = this.passthrough;\n // extend<\n // Augmentation extends ZodRawShape,\n // NewOutput extends util.flatten<{\n // [k in keyof Augmentation | keyof Output]: k extends keyof Augmentation\n // ? Augmentation[k][\"_output\"]\n // : k extends keyof Output\n // ? Output[k]\n // : never;\n // }>,\n // NewInput extends util.flatten<{\n // [k in keyof Augmentation | keyof Input]: k extends keyof Augmentation\n // ? Augmentation[k][\"_input\"]\n // : k extends keyof Input\n // ? Input[k]\n // : never;\n // }>\n // >(\n // augmentation: Augmentation\n // ): ZodObject<\n // extendShape<T, Augmentation>,\n // UnknownKeys,\n // Catchall,\n // NewOutput,\n // NewInput\n // > {\n // return new ZodObject({\n // ...this._def,\n // shape: () => ({\n // ...this._def.shape(),\n // ...augmentation,\n // }),\n // }) as any;\n // }\n /**\n * @deprecated Use `.extend` instead\n * */\n this.augment = this.extend;\n }\n _getCached() {\n if (this._cached !== null)\n return this._cached;\n const shape = this._def.shape();\n const keys = util.objectKeys(shape);\n this._cached = { shape, keys };\n return this._cached;\n }\n _parse(input) {\n const parsedType = this._getType(input);\n if (parsedType !== ZodParsedType.object) {\n const ctx = this._getOrReturnCtx(input);\n addIssueToContext(ctx, {\n code: ZodIssueCode.invalid_type,\n expected: ZodParsedType.object,\n received: ctx.parsedType,\n });\n return INVALID;\n }\n const { status, ctx } = this._processInputParams(input);\n const { shape, keys: shapeKeys } = this._getCached();\n const extraKeys = [];\n if (!(this._def.catchall instanceof ZodNever && this._def.unknownKeys === \"strip\")) {\n for (const key in ctx.data) {\n if (!shapeKeys.includes(key)) {\n extraKeys.push(key);\n }\n }\n }\n const pairs = [];\n for (const key of shapeKeys) {\n const keyValidator = shape[key];\n const value = ctx.data[key];\n pairs.push({\n key: { status: \"valid\", value: key },\n value: keyValidator._parse(new ParseInputLazyPath(ctx, value, ctx.path, key)),\n alwaysSet: key in ctx.data,\n });\n }\n if (this._def.catchall instanceof ZodNever) {\n const unknownKeys = this._def.unknownKeys;\n if (unknownKeys === \"passthrough\") {\n for (const key of extraKeys) {\n pairs.push({\n key: { status: \"valid\", value: key },\n value: { status: \"valid\", value: ctx.data[key] },\n });\n }\n }\n else if (unknownKeys === \"strict\") {\n if (extraKeys.length > 0) {\n addIssueToContext(ctx, {\n code: ZodIssueCode.unrecognized_keys,\n keys: extraKeys,\n });\n status.dirty();\n }\n }\n else if (unknownKeys === \"strip\") {\n }\n else {\n throw new Error(`Internal ZodObject error: invalid unknownKeys value.`);\n }\n }\n else {\n // run catchall validation\n const catchall = this._def.catchall;\n for (const key of extraKeys) {\n const value = ctx.data[key];\n pairs.push({\n key: { status: \"valid\", value: key },\n value: catchall._parse(new ParseInputLazyPath(ctx, value, ctx.path, key) //, ctx.child(key), value, getParsedType(value)\n ),\n alwaysSet: key in ctx.data,\n });\n }\n }\n if (ctx.common.async) {\n return Promise.resolve()\n .then(async () => {\n const syncPairs = [];\n for (const pair of pairs) {\n const key = await pair.key;\n const value = await pair.value;\n syncPairs.push({\n key,\n value,\n alwaysSet: pair.alwaysSet,\n });\n }\n return syncPairs;\n })\n .then((syncPairs) => {\n return ParseStatus.mergeObjectSync(status, syncPairs);\n });\n }\n else {\n return ParseStatus.mergeObjectSync(status, pairs);\n }\n }\n get shape() {\n return this._def.shape();\n }\n strict(message) {\n errorUtil.errToObj;\n return new ZodObject({\n ...this._def,\n unknownKeys: \"strict\",\n ...(message !== undefined\n ? {\n errorMap: (issue, ctx) => {\n const defaultError = this._def.errorMap?.(issue, ctx).message ?? ctx.defaultError;\n if (issue.code === \"unrecognized_keys\")\n return {\n message: errorUtil.errToObj(message).message ?? defaultError,\n };\n return {\n message: defaultError,\n };\n },\n }\n : {}),\n });\n }\n strip() {\n return new ZodObject({\n ...this._def,\n unknownKeys: \"strip\",\n });\n }\n passthrough() {\n return new ZodObject({\n ...this._def,\n unknownKeys: \"passthrough\",\n });\n }\n // const AugmentFactory =\n // <Def extends ZodObjectDef>(def: Def) =>\n // <Augmentation extends ZodRawShape>(\n // augmentation: Augmentation\n // ): ZodObject<\n // extendShape<ReturnType<Def[\"shape\"]>, Augmentation>,\n // Def[\"unknownKeys\"],\n // Def[\"catchall\"]\n // > => {\n // return new ZodObject({\n // ...def,\n // shape: () => ({\n // ...def.shape(),\n // ...augmentation,\n // }),\n // }) as any;\n // };\n extend(augmentation) {\n return new ZodObject({\n ...this._def,\n shape: () => ({\n ...this._def.shape(),\n ...augmentation,\n }),\n });\n }\n /**\n * Prior to zod@1.0.12 there was a bug in the\n * inferred type of merged objects. Please\n * upgrade if you are experiencing issues.\n */\n merge(merging) {\n const merged = new ZodObject({\n unknownKeys: merging._def.unknownKeys,\n catchall: merging._def.catchall,\n shape: () => ({\n ...this._def.shape(),\n ...merging._def.shape(),\n }),\n typeName: ZodFirstPartyTypeKind.ZodObject,\n });\n return merged;\n }\n // merge<\n // Incoming extends AnyZodObject,\n // Augmentation extends Incoming[\"shape\"],\n // NewOutput extends {\n // [k in keyof Augmentation | keyof Output]: k extends keyof Augmentation\n // ? Augmentation[k][\"_output\"]\n // : k extends keyof Output\n // ? Output[k]\n // : never;\n // },\n // NewInput extends {\n // [k in keyof Augmentation | keyof Input]: k extends keyof Augmentation\n // ? Augmentation[k][\"_input\"]\n // : k extends keyof Input\n // ? Input[k]\n // : never;\n // }\n // >(\n // merging: Incoming\n // ): ZodObject<\n // extendShape<T, ReturnType<Incoming[\"_def\"][\"shape\"]>>,\n // Incoming[\"_def\"][\"unknownKeys\"],\n // Incoming[\"_def\"][\"catchall\"],\n // NewOutput,\n // NewInput\n // > {\n // const merged: any = new ZodObject({\n // unknownKeys: merging._def.unknownKeys,\n // catchall: merging._def.catchall,\n // shape: () =>\n // objectUtil.mergeShapes(this._def.shape(), merging._def.shape()),\n // typeName: ZodFirstPartyTypeKind.ZodObject,\n // }) as any;\n // return merged;\n // }\n setKey(key, schema) {\n return this.augment({ [key]: schema });\n }\n // merge<Incoming extends AnyZodObject>(\n // merging: Incoming\n // ): //ZodObject<T & Incoming[\"_shape\"], UnknownKeys, Catchall> = (merging) => {\n // ZodObject<\n // extendShape<T, ReturnType<Incoming[\"_def\"][\"shape\"]>>,\n // Incoming[\"_def\"][\"unknownKeys\"],\n // Incoming[\"_def\"][\"catchall\"]\n // > {\n // // const mergedShape = objectUtil.mergeShapes(\n // // this._def.shape(),\n // // merging._def.shape()\n // // );\n // const merged: any = new ZodObject({\n // unknownKeys: merging._def.unknownKeys,\n // catchall: merging._def.catchall,\n // shape: () =>\n // objectUtil.mergeShapes(this._def.shape(), merging._def.shape()),\n // typeName: ZodFirstPartyTypeKind.ZodObject,\n // }) as any;\n // return merged;\n // }\n catchall(index) {\n return new ZodObject({\n ...this._def,\n catchall: index,\n });\n }\n pick(mask) {\n const shape = {};\n for (const key of util.objectKeys(mask)) {\n if (mask[key] && this.shape[key]) {\n shape[key] = this.shape[key];\n }\n }\n return new ZodObject({\n ...this._def,\n shape: () => shape,\n });\n }\n omit(mask) {\n const shape = {};\n for (const key of util.objectKeys(this.shape)) {\n if (!mask[key]) {\n shape[key] = this.shape[key];\n }\n }\n return new ZodObject({\n ...this._def,\n shape: () => shape,\n });\n }\n /**\n * @deprecated\n */\n deepPartial() {\n return deepPartialify(this);\n }\n partial(mask) {\n const newShape = {};\n for (const key of util.objectKeys(this.shape)) {\n const fieldSchema = this.shape[key];\n if (mask && !mask[key]) {\n newShape[key] = fieldSchema;\n }\n else {\n newShape[key] = fieldSchema.optional();\n }\n }\n return new ZodObject({\n ...this._def,\n shape: () => newShape,\n });\n }\n required(mask) {\n const newShape = {};\n for (const key of util.objectKeys(this.shape)) {\n if (mask && !mask[key]) {\n newShape[key] = this.shape[key];\n }\n else {\n const fieldSchema = this.shape[key];\n let newField = fieldSchema;\n while (newField instanceof ZodOptional) {\n newField = newField._def.innerType;\n }\n newShape[key] = newField;\n }\n }\n return new ZodObject({\n ...this._def,\n shape: () => newShape,\n });\n }\n keyof() {\n return createZodEnum(util.objectKeys(this.shape));\n }\n}\nZodObject.create = (shape, params) => {\n return new ZodObject({\n shape: () => shape,\n unknownKeys: \"strip\",\n catchall: ZodNever.create(),\n typeName: ZodFirstPartyTypeKind.ZodObject,\n ...processCreateParams(params),\n });\n};\nZodObject.strictCreate = (shape, params) => {\n return new ZodObject({\n shape: () => shape,\n unknownKeys: \"strict\",\n catchall: ZodNever.create(),\n typeName: ZodFirstPartyTypeKind.ZodObject,\n ...processCreateParams(params),\n });\n};\nZodObject.lazycreate = (shape, params) => {\n return new ZodObject({\n shape,\n unknownKeys: \"strip\",\n catchall: ZodNever.create(),\n typeName: ZodFirstPartyTypeKind.ZodObject,\n ...processCreateParams(params),\n });\n};\nexport class ZodUnion extends ZodType {\n _parse(input) {\n const { ctx } = this._processInputParams(input);\n const options = this._def.options;\n function handleResults(results) {\n // return first issue-free validation if it exists\n for (const result of results) {\n if (result.result.status === \"valid\") {\n return result.result;\n }\n }\n for (const result of results) {\n if (result.result.status === \"dirty\") {\n // add issues from dirty option\n ctx.common.issues.push(...result.ctx.common.issues);\n return result.result;\n }\n }\n // return invalid\n const unionErrors = results.map((result) => new ZodError(result.ctx.common.issues));\n addIssueToContext(ctx, {\n code: ZodIssueCode.invalid_union,\n unionErrors,\n });\n return INVALID;\n }\n if (ctx.common.async) {\n return Promise.all(options.map(async (option) => {\n const childCtx = {\n ...ctx,\n common: {\n ...ctx.common,\n issues: [],\n },\n parent: null,\n };\n return {\n result: await option._parseAsync({\n data: ctx.data,\n path: ctx.path,\n parent: childCtx,\n }),\n ctx: childCtx,\n };\n })).then(handleResults);\n }\n else {\n let dirty = undefined;\n const issues = [];\n for (const option of options) {\n const childCtx = {\n ...ctx,\n common: {\n ...ctx.common,\n issues: [],\n },\n parent: null,\n };\n const result = option._parseSync({\n data: ctx.data,\n path: ctx.path,\n parent: childCtx,\n });\n if (result.status === \"valid\") {\n return result;\n }\n else if (result.status === \"dirty\" && !dirty) {\n dirty = { result, ctx: childCtx };\n }\n if (childCtx.common.issues.length) {\n issues.push(childCtx.common.issues);\n }\n }\n if (dirty) {\n ctx.common.issues.push(...dirty.ctx.common.issues);\n return dirty.result;\n }\n const unionErrors = issues.map((issues) => new ZodError(issues));\n addIssueToContext(ctx, {\n code: ZodIssueCode.invalid_union,\n unionErrors,\n });\n return INVALID;\n }\n }\n get options() {\n return this._def.options;\n }\n}\nZodUnion.create = (types, params) => {\n return new ZodUnion({\n options: types,\n typeName: ZodFirstPartyTypeKind.ZodUnion,\n ...processCreateParams(params),\n });\n};\n/////////////////////////////////////////////////////\n/////////////////////////////////////////////////////\n////////// //////////\n////////// ZodDiscriminatedUnion //////////\n////////// //////////\n/////////////////////////////////////////////////////\n/////////////////////////////////////////////////////\nconst getDiscriminator = (type) => {\n if (type instanceof ZodLazy) {\n return getDiscriminator(type.schema);\n }\n else if (type instanceof ZodEffects) {\n return getDiscriminator(type.innerType());\n }\n else if (type instanceof ZodLiteral) {\n return [type.value];\n }\n else if (type instanceof ZodEnum) {\n return type.options;\n }\n else if (type instanceof ZodNativeEnum) {\n // eslint-disable-next-line ban/ban\n return util.objectValues(type.enum);\n }\n else if (type instanceof ZodDefault) {\n return getDiscriminator(type._def.innerType);\n }\n else if (type instanceof ZodUndefined) {\n return [undefined];\n }\n else if (type instanceof ZodNull) {\n return [null];\n }\n else if (type instanceof ZodOptional) {\n return [undefined, ...getDiscriminator(type.unwrap())];\n }\n else if (type instanceof ZodNullable) {\n return [null, ...getDiscriminator(type.unwrap())];\n }\n else if (type instanceof ZodBranded) {\n return getDiscriminator(type.unwrap());\n }\n else if (type instanceof ZodReadonly) {\n return getDiscriminator(type.unwrap());\n }\n else if (type instanceof ZodCatch) {\n return getDiscriminator(type._def.innerType);\n }\n else {\n return [];\n }\n};\nexport class ZodDiscriminatedUnion extends ZodType {\n _parse(input) {\n const { ctx } = this._processInputParams(input);\n if (ctx.parsedType !== ZodParsedType.object) {\n addIssueToContext(ctx, {\n code: ZodIssueCode.invalid_type,\n expected: ZodParsedType.object,\n received: ctx.parsedType,\n });\n return INVALID;\n }\n const discriminator = this.discriminator;\n const discriminatorValue = ctx.data[discriminator];\n const option = this.optionsMap.get(discriminatorValue);\n if (!option) {\n addIssueToContext(ctx, {\n code: ZodIssueCode.invalid_union_discriminator,\n options: Array.from(this.optionsMap.keys()),\n path: [discriminator],\n });\n return INVALID;\n }\n if (ctx.common.async) {\n return option._parseAsync({\n data: ctx.data,\n path: ctx.path,\n parent: ctx,\n });\n }\n else {\n return option._parseSync({\n data: ctx.data,\n path: ctx.path,\n parent: ctx,\n });\n }\n }\n get discriminator() {\n return this._def.discriminator;\n }\n get options() {\n return this._def.options;\n }\n get optionsMap() {\n return this._def.optionsMap;\n }\n /**\n * The constructor of the discriminated union schema. Its behaviour is very similar to that of the normal z.union() constructor.\n * However, it only allows a union of objects, all of which need to share a discriminator property. This property must\n * have a different value for each object in the union.\n * @param discriminator the name of the discriminator property\n * @param types an array of object schemas\n * @param params\n */\n static create(discriminator, options, params) {\n // Get all the valid discriminator values\n const optionsMap = new Map();\n // try {\n for (const type of options) {\n const discriminatorValues = getDiscriminator(type.shape[discriminator]);\n if (!discriminatorValues.length) {\n throw new Error(`A discriminator value for key \\`${discriminator}\\` could not be extracted from all schema options`);\n }\n for (const value of discriminatorValues) {\n if (optionsMap.has(value)) {\n throw new Error(`Discriminator property ${String(discriminator)} has duplicate value ${String(value)}`);\n }\n optionsMap.set(value, type);\n }\n }\n return new ZodDiscriminatedUnion({\n typeName: ZodFirstPartyTypeKind.ZodDiscriminatedUnion,\n discriminator,\n options,\n optionsMap,\n ...processCreateParams(params),\n });\n }\n}\nfunction mergeValues(a, b) {\n const aType = getParsedType(a);\n const bType = getParsedType(b);\n if (a === b) {\n return { valid: true, data: a };\n }\n else if (aType === ZodParsedType.object && bType === ZodParsedType.object) {\n const bKeys = util.objectKeys(b);\n const sharedKeys = util.objectKeys(a).filter((key) => bKeys.indexOf(key) !== -1);\n const newObj = { ...a, ...b };\n for (const key of sharedKeys) {\n const sharedValue = mergeValues(a[key], b[key]);\n if (!sharedValue.valid) {\n return { valid: false };\n }\n newObj[key] = sharedValue.data;\n }\n return { valid: true, data: newObj };\n }\n else if (aType === ZodParsedType.array && bType === ZodParsedType.array) {\n if (a.length !== b.length) {\n return { valid: false };\n }\n const newArray = [];\n for (let index = 0; index < a.length; index++) {\n const itemA = a[index];\n const itemB = b[index];\n const sharedValue = mergeValues(itemA, itemB);\n if (!sharedValue.valid) {\n return { valid: false };\n }\n newArray.push(sharedValue.data);\n }\n return { valid: true, data: newArray };\n }\n else if (aType === ZodParsedType.date && bType === ZodParsedType.date && +a === +b) {\n return { valid: true, data: a };\n }\n else {\n return { valid: false };\n }\n}\nexport class ZodIntersection extends ZodType {\n _parse(input) {\n const { status, ctx } = this._processInputParams(input);\n const handleParsed = (parsedLeft, parsedRight) => {\n if (isAborted(parsedLeft) || isAborted(parsedRight)) {\n return INVALID;\n }\n const merged = mergeValues(parsedLeft.value, parsedRight.value);\n if (!merged.valid) {\n addIssueToContext(ctx, {\n code: ZodIssueCode.invalid_intersection_types,\n });\n return INVALID;\n }\n if (isDirty(parsedLeft) || isDirty(parsedRight)) {\n status.dirty();\n }\n return { status: status.value, value: merged.data };\n };\n if (ctx.common.async) {\n return Promise.all([\n this._def.left._parseAsync({\n data: ctx.data,\n path: ctx.path,\n parent: ctx,\n }),\n this._def.right._parseAsync({\n data: ctx.data,\n path: ctx.path,\n parent: ctx,\n }),\n ]).then(([left, right]) => handleParsed(left, right));\n }\n else {\n return handleParsed(this._def.left._parseSync({\n data: ctx.data,\n path: ctx.path,\n parent: ctx,\n }), this._def.right._parseSync({\n data: ctx.data,\n path: ctx.path,\n parent: ctx,\n }));\n }\n }\n}\nZodIntersection.create = (left, right, params) => {\n return new ZodIntersection({\n left: left,\n right: right,\n typeName: ZodFirstPartyTypeKind.ZodIntersection,\n ...processCreateParams(params),\n });\n};\n// type ZodTupleItems = [ZodTypeAny, ...ZodTypeAny[]];\nexport class ZodTuple extends ZodType {\n _parse(input) {\n const { status, ctx } = this._processInputParams(input);\n if (ctx.parsedType !== ZodParsedType.array) {\n addIssueToContext(ctx, {\n code: ZodIssueCode.invalid_type,\n expected: ZodParsedType.array,\n received: ctx.parsedType,\n });\n return INVALID;\n }\n if (ctx.data.length < this._def.items.length) {\n addIssueToContext(ctx, {\n code: ZodIssueCode.too_small,\n minimum: this._def.items.length,\n inclusive: true,\n exact: false,\n type: \"array\",\n });\n return INVALID;\n }\n const rest = this._def.rest;\n if (!rest && ctx.data.length > this._def.items.length) {\n addIssueToContext(ctx, {\n code: ZodIssueCode.too_big,\n maximum: this._def.items.length,\n inclusive: true,\n exact: false,\n type: \"array\",\n });\n status.dirty();\n }\n const items = [...ctx.data]\n .map((item, itemIndex) => {\n const schema = this._def.items[itemIndex] || this._def.rest;\n if (!schema)\n return null;\n return schema._parse(new ParseInputLazyPath(ctx, item, ctx.path, itemIndex));\n })\n .filter((x) => !!x); // filter nulls\n if (ctx.common.async) {\n return Promise.all(items).then((results) => {\n return ParseStatus.mergeArray(status, results);\n });\n }\n else {\n return ParseStatus.mergeArray(status, items);\n }\n }\n get items() {\n return this._def.items;\n }\n rest(rest) {\n return new ZodTuple({\n ...this._def,\n rest,\n });\n }\n}\nZodTuple.create = (schemas, params) => {\n if (!Array.isArray(schemas)) {\n throw new Error(\"You must pass an array of schemas to z.tuple([ ... ])\");\n }\n return new ZodTuple({\n items: schemas,\n typeName: ZodFirstPartyTypeKind.ZodTuple,\n rest: null,\n ...processCreateParams(params),\n });\n};\nexport class ZodRecord extends ZodType {\n get keySchema() {\n return this._def.keyType;\n }\n get valueSchema() {\n return this._def.valueType;\n }\n _parse(input) {\n const { status, ctx } = this._processInputParams(input);\n if (ctx.parsedType !== ZodParsedType.object) {\n addIssueToContext(ctx, {\n code: ZodIssueCode.invalid_type,\n expected: ZodParsedType.object,\n received: ctx.parsedType,\n });\n return INVALID;\n }\n const pairs = [];\n const keyType = this._def.keyType;\n const valueType = this._def.valueType;\n for (const key in ctx.data) {\n pairs.push({\n key: keyType._parse(new ParseInputLazyPath(ctx, key, ctx.path, key)),\n value: valueType._parse(new ParseInputLazyPath(ctx, ctx.data[key], ctx.path, key)),\n alwaysSet: key in ctx.data,\n });\n }\n if (ctx.common.async) {\n return ParseStatus.mergeObjectAsync(status, pairs);\n }\n else {\n return ParseStatus.mergeObjectSync(status, pairs);\n }\n }\n get element() {\n return this._def.valueType;\n }\n static create(first, second, third) {\n if (second instanceof ZodType) {\n return new ZodRecord({\n keyType: first,\n valueType: second,\n typeName: ZodFirstPartyTypeKind.ZodRecord,\n ...processCreateParams(third),\n });\n }\n return new ZodRecord({\n keyType: ZodString.create(),\n valueType: first,\n typeName: ZodFirstPartyTypeKind.ZodRecord,\n ...processCreateParams(second),\n });\n }\n}\nexport class ZodMap extends ZodType {\n get keySchema() {\n return this._def.keyType;\n }\n get valueSchema() {\n return this._def.valueType;\n }\n _parse(input) {\n const { status, ctx } = this._processInputParams(input);\n if (ctx.parsedType !== ZodParsedType.map) {\n addIssueToContext(ctx, {\n code: ZodIssueCode.invalid_type,\n expected: ZodParsedType.map,\n received: ctx.parsedType,\n });\n return INVALID;\n }\n const keyType = this._def.keyType;\n const valueType = this._def.valueType;\n const pairs = [...ctx.data.entries()].map(([key, value], index) => {\n return {\n key: keyType._parse(new ParseInputLazyPath(ctx, key, ctx.path, [index, \"key\"])),\n value: valueType._parse(new ParseInputLazyPath(ctx, value, ctx.path, [index, \"value\"])),\n };\n });\n if (ctx.common.async) {\n const finalMap = new Map();\n return Promise.resolve().then(async () => {\n for (const pair of pairs) {\n const key = await pair.key;\n const value = await pair.value;\n if (key.status === \"aborted\" || value.status === \"aborted\") {\n return INVALID;\n }\n if (key.status === \"dirty\" || value.status === \"dirty\") {\n status.dirty();\n }\n finalMap.set(key.value, value.value);\n }\n return { status: status.value, value: finalMap };\n });\n }\n else {\n const finalMap = new Map();\n for (const pair of pairs) {\n const key = pair.key;\n const value = pair.value;\n if (key.status === \"aborted\" || value.status === \"aborted\") {\n return INVALID;\n }\n if (key.status === \"dirty\" || value.status === \"dirty\") {\n status.dirty();\n }\n finalMap.set(key.value, value.value);\n }\n return { status: status.value, value: finalMap };\n }\n }\n}\nZodMap.create = (keyType, valueType, params) => {\n return new ZodMap({\n valueType,\n keyType,\n typeName: ZodFirstPartyTypeKind.ZodMap,\n ...processCreateParams(params),\n });\n};\nexport class ZodSet extends ZodType {\n _parse(input) {\n const { status, ctx } = this._processInputParams(input);\n if (ctx.parsedType !== ZodParsedType.set) {\n addIssueToContext(ctx, {\n code: ZodIssueCode.invalid_type,\n expected: ZodParsedType.set,\n received: ctx.parsedType,\n });\n return INVALID;\n }\n const def = this._def;\n if (def.minSize !== null) {\n if (ctx.data.size < def.minSize.value) {\n addIssueToContext(ctx, {\n code: ZodIssueCode.too_small,\n minimum: def.minSize.value,\n type: \"set\",\n inclusive: true,\n exact: false,\n message: def.minSize.message,\n });\n status.dirty();\n }\n }\n if (def.maxSize !== null) {\n if (ctx.data.size > def.maxSize.value) {\n addIssueToContext(ctx, {\n code: ZodIssueCode.too_big,\n maximum: def.maxSize.value,\n type: \"set\",\n inclusive: true,\n exact: false,\n message: def.maxSize.message,\n });\n status.dirty();\n }\n }\n const valueType = this._def.valueType;\n function finalizeSet(elements) {\n const parsedSet = new Set();\n for (const element of elements) {\n if (element.status === \"aborted\")\n return INVALID;\n if (element.status === \"dirty\")\n status.dirty();\n parsedSet.add(element.value);\n }\n return { status: status.value, value: parsedSet };\n }\n const elements = [...ctx.data.values()].map((item, i) => valueType._parse(new ParseInputLazyPath(ctx, item, ctx.path, i)));\n if (ctx.common.async) {\n return Promise.all(elements).then((elements) => finalizeSet(elements));\n }\n else {\n return finalizeSet(elements);\n }\n }\n min(minSize, message) {\n return new ZodSet({\n ...this._def,\n minSize: { value: minSize, message: errorUtil.toString(message) },\n });\n }\n max(maxSize, message) {\n return new ZodSet({\n ...this._def,\n maxSize: { value: maxSize, message: errorUtil.toString(message) },\n });\n }\n size(size, message) {\n return this.min(size, message).max(size, message);\n }\n nonempty(message) {\n return this.min(1, message);\n }\n}\nZodSet.create = (valueType, params) => {\n return new ZodSet({\n valueType,\n minSize: null,\n maxSize: null,\n typeName: ZodFirstPartyTypeKind.ZodSet,\n ...processCreateParams(params),\n });\n};\nexport class ZodFunction extends ZodType {\n constructor() {\n super(...arguments);\n this.validate = this.implement;\n }\n _parse(input) {\n const { ctx } = this._processInputParams(input);\n if (ctx.parsedType !== ZodParsedType.function) {\n addIssueToContext(ctx, {\n code: ZodIssueCode.invalid_type,\n expected: ZodParsedType.function,\n received: ctx.parsedType,\n });\n return INVALID;\n }\n function makeArgsIssue(args, error) {\n return makeIssue({\n data: args,\n path: ctx.path,\n errorMaps: [ctx.common.contextualErrorMap, ctx.schemaErrorMap, getErrorMap(), defaultErrorMap].filter((x) => !!x),\n issueData: {\n code: ZodIssueCode.invalid_arguments,\n argumentsError: error,\n },\n });\n }\n function makeReturnsIssue(returns, error) {\n return makeIssue({\n data: returns,\n path: ctx.path,\n errorMaps: [ctx.common.contextualErrorMap, ctx.schemaErrorMap, getErrorMap(), defaultErrorMap].filter((x) => !!x),\n issueData: {\n code: ZodIssueCode.invalid_return_type,\n returnTypeError: error,\n },\n });\n }\n const params = { errorMap: ctx.common.contextualErrorMap };\n const fn = ctx.data;\n if (this._def.returns instanceof ZodPromise) {\n // Would love a way to avoid disabling this rule, but we need\n // an alias (using an arrow function was what caused 2651).\n // eslint-disable-next-line @typescript-eslint/no-this-alias\n const me = this;\n return OK(async function (...args) {\n const error = new ZodError([]);\n const parsedArgs = await me._def.args.parseAsync(args, params).catch((e) => {\n error.addIssue(makeArgsIssue(args, e));\n throw error;\n });\n const result = await Reflect.apply(fn, this, parsedArgs);\n const parsedReturns = await me._def.returns._def.type\n .parseAsync(result, params)\n .catch((e) => {\n error.addIssue(makeReturnsIssue(result, e));\n throw error;\n });\n return parsedReturns;\n });\n }\n else {\n // Would love a way to avoid disabling this rule, but we need\n // an alias (using an arrow function was what caused 2651).\n // eslint-disable-next-line @typescript-eslint/no-this-alias\n const me = this;\n return OK(function (...args) {\n const parsedArgs = me._def.args.safeParse(args, params);\n if (!parsedArgs.success) {\n throw new ZodError([makeArgsIssue(args, parsedArgs.error)]);\n }\n const result = Reflect.apply(fn, this, parsedArgs.data);\n const parsedReturns = me._def.returns.safeParse(result, params);\n if (!parsedReturns.success) {\n throw new ZodError([makeReturnsIssue(result, parsedReturns.error)]);\n }\n return parsedReturns.data;\n });\n }\n }\n parameters() {\n return this._def.args;\n }\n returnType() {\n return this._def.returns;\n }\n args(...items) {\n return new ZodFunction({\n ...this._def,\n args: ZodTuple.create(items).rest(ZodUnknown.create()),\n });\n }\n returns(returnType) {\n return new ZodFunction({\n ...this._def,\n returns: returnType,\n });\n }\n implement(func) {\n const validatedFunc = this.parse(func);\n return validatedFunc;\n }\n strictImplement(func) {\n const validatedFunc = this.parse(func);\n return validatedFunc;\n }\n static create(args, returns, params) {\n return new ZodFunction({\n args: (args ? args : ZodTuple.create([]).rest(ZodUnknown.create())),\n returns: returns || ZodUnknown.create(),\n typeName: ZodFirstPartyTypeKind.ZodFunction,\n ...processCreateParams(params),\n });\n }\n}\nexport class ZodLazy extends ZodType {\n get schema() {\n return this._def.getter();\n }\n _parse(input) {\n const { ctx } = this._processInputParams(input);\n const lazySchema = this._def.getter();\n return lazySchema._parse({ data: ctx.data, path: ctx.path, parent: ctx });\n }\n}\nZodLazy.create = (getter, params) => {\n return new ZodLazy({\n getter: getter,\n typeName: ZodFirstPartyTypeKind.ZodLazy,\n ...processCreateParams(params),\n });\n};\nexport class ZodLiteral extends ZodType {\n _parse(input) {\n if (input.data !== this._def.value) {\n const ctx = this._getOrReturnCtx(input);\n addIssueToContext(ctx, {\n received: ctx.data,\n code: ZodIssueCode.invalid_literal,\n expected: this._def.value,\n });\n return INVALID;\n }\n return { status: \"valid\", value: input.data };\n }\n get value() {\n return this._def.value;\n }\n}\nZodLiteral.create = (value, params) => {\n return new ZodLiteral({\n value: value,\n typeName: ZodFirstPartyTypeKind.ZodLiteral,\n ...processCreateParams(params),\n });\n};\nfunction createZodEnum(values, params) {\n return new ZodEnum({\n values,\n typeName: ZodFirstPartyTypeKind.ZodEnum,\n ...processCreateParams(params),\n });\n}\nexport class ZodEnum extends ZodType {\n _parse(input) {\n if (typeof input.data !== \"string\") {\n const ctx = this._getOrReturnCtx(input);\n const expectedValues = this._def.values;\n addIssueToContext(ctx, {\n expected: util.joinValues(expectedValues),\n received: ctx.parsedType,\n code: ZodIssueCode.invalid_type,\n });\n return INVALID;\n }\n if (!this._cache) {\n this._cache = new Set(this._def.values);\n }\n if (!this._cache.has(input.data)) {\n const ctx = this._getOrReturnCtx(input);\n const expectedValues = this._def.values;\n addIssueToContext(ctx, {\n received: ctx.data,\n code: ZodIssueCode.invalid_enum_value,\n options: expectedValues,\n });\n return INVALID;\n }\n return OK(input.data);\n }\n get options() {\n return this._def.values;\n }\n get enum() {\n const enumValues = {};\n for (const val of this._def.values) {\n enumValues[val] = val;\n }\n return enumValues;\n }\n get Values() {\n const enumValues = {};\n for (const val of this._def.values) {\n enumValues[val] = val;\n }\n return enumValues;\n }\n get Enum() {\n const enumValues = {};\n for (const val of this._def.values) {\n enumValues[val] = val;\n }\n return enumValues;\n }\n extract(values, newDef = this._def) {\n return ZodEnum.create(values, {\n ...this._def,\n ...newDef,\n });\n }\n exclude(values, newDef = this._def) {\n return ZodEnum.create(this.options.filter((opt) => !values.includes(opt)), {\n ...this._def,\n ...newDef,\n });\n }\n}\nZodEnum.create = createZodEnum;\nexport class ZodNativeEnum extends ZodType {\n _parse(input) {\n const nativeEnumValues = util.getValidEnumValues(this._def.values);\n const ctx = this._getOrReturnCtx(input);\n if (ctx.parsedType !== ZodParsedType.string && ctx.parsedType !== ZodParsedType.number) {\n const expectedValues = util.objectValues(nativeEnumValues);\n addIssueToContext(ctx, {\n expected: util.joinValues(expectedValues),\n received: ctx.parsedType,\n code: ZodIssueCode.invalid_type,\n });\n return INVALID;\n }\n if (!this._cache) {\n this._cache = new Set(util.getValidEnumValues(this._def.values));\n }\n if (!this._cache.has(input.data)) {\n const expectedValues = util.objectValues(nativeEnumValues);\n addIssueToContext(ctx, {\n received: ctx.data,\n code: ZodIssueCode.invalid_enum_value,\n options: expectedValues,\n });\n return INVALID;\n }\n return OK(input.data);\n }\n get enum() {\n return this._def.values;\n }\n}\nZodNativeEnum.create = (values, params) => {\n return new ZodNativeEnum({\n values: values,\n typeName: ZodFirstPartyTypeKind.ZodNativeEnum,\n ...processCreateParams(params),\n });\n};\nexport class ZodPromise extends ZodType {\n unwrap() {\n return this._def.type;\n }\n _parse(input) {\n const { ctx } = this._processInputParams(input);\n if (ctx.parsedType !== ZodParsedType.promise && ctx.common.async === false) {\n addIssueToContext(ctx, {\n code: ZodIssueCode.invalid_type,\n expected: ZodParsedType.promise,\n received: ctx.parsedType,\n });\n return INVALID;\n }\n const promisified = ctx.parsedType === ZodParsedType.promise ? ctx.data : Promise.resolve(ctx.data);\n return OK(promisified.then((data) => {\n return this._def.type.parseAsync(data, {\n path: ctx.path,\n errorMap: ctx.common.contextualErrorMap,\n });\n }));\n }\n}\nZodPromise.create = (schema, params) => {\n return new ZodPromise({\n type: schema,\n typeName: ZodFirstPartyTypeKind.ZodPromise,\n ...processCreateParams(params),\n });\n};\nexport class ZodEffects extends ZodType {\n innerType() {\n return this._def.schema;\n }\n sourceType() {\n return this._def.schema._def.typeName === ZodFirstPartyTypeKind.ZodEffects\n ? this._def.schema.sourceType()\n : this._def.schema;\n }\n _parse(input) {\n const { status, ctx } = this._processInputParams(input);\n const effect = this._def.effect || null;\n const checkCtx = {\n addIssue: (arg) => {\n addIssueToContext(ctx, arg);\n if (arg.fatal) {\n status.abort();\n }\n else {\n status.dirty();\n }\n },\n get path() {\n return ctx.path;\n },\n };\n checkCtx.addIssue = checkCtx.addIssue.bind(checkCtx);\n if (effect.type === \"preprocess\") {\n const processed = effect.transform(ctx.data, checkCtx);\n if (ctx.common.async) {\n return Promise.resolve(processed).then(async (processed) => {\n if (status.value === \"aborted\")\n return INVALID;\n const result = await this._def.schema._parseAsync({\n data: processed,\n path: ctx.path,\n parent: ctx,\n });\n if (result.status === \"aborted\")\n return INVALID;\n if (result.status === \"dirty\")\n return DIRTY(result.value);\n if (status.value === \"dirty\")\n return DIRTY(result.value);\n return result;\n });\n }\n else {\n if (status.value === \"aborted\")\n return INVALID;\n const result = this._def.schema._parseSync({\n data: processed,\n path: ctx.path,\n parent: ctx,\n });\n if (result.status === \"aborted\")\n return INVALID;\n if (result.status === \"dirty\")\n return DIRTY(result.value);\n if (status.value === \"dirty\")\n return DIRTY(result.value);\n return result;\n }\n }\n if (effect.type === \"refinement\") {\n const executeRefinement = (acc) => {\n const result = effect.refinement(acc, checkCtx);\n if (ctx.common.async) {\n return Promise.resolve(result);\n }\n if (result instanceof Promise) {\n throw new Error(\"Async refinement encountered during synchronous parse operation. Use .parseAsync instead.\");\n }\n return acc;\n };\n if (ctx.common.async === false) {\n const inner = this._def.schema._parseSync({\n data: ctx.data,\n path: ctx.path,\n parent: ctx,\n });\n if (inner.status === \"aborted\")\n return INVALID;\n if (inner.status === \"dirty\")\n status.dirty();\n // return value is ignored\n executeRefinement(inner.value);\n return { status: status.value, value: inner.value };\n }\n else {\n return this._def.schema._parseAsync({ data: ctx.data, path: ctx.path, parent: ctx }).then((inner) => {\n if (inner.status === \"aborted\")\n return INVALID;\n if (inner.status === \"dirty\")\n status.dirty();\n return executeRefinement(inner.value).then(() => {\n return { status: status.value, value: inner.value };\n });\n });\n }\n }\n if (effect.type === \"transform\") {\n if (ctx.common.async === false) {\n const base = this._def.schema._parseSync({\n data: ctx.data,\n path: ctx.path,\n parent: ctx,\n });\n if (!isValid(base))\n return INVALID;\n const result = effect.transform(base.value, checkCtx);\n if (result instanceof Promise) {\n throw new Error(`Asynchronous transform encountered during synchronous parse operation. Use .parseAsync instead.`);\n }\n return { status: status.value, value: result };\n }\n else {\n return this._def.schema._parseAsync({ data: ctx.data, path: ctx.path, parent: ctx }).then((base) => {\n if (!isValid(base))\n return INVALID;\n return Promise.resolve(effect.transform(base.value, checkCtx)).then((result) => ({\n status: status.value,\n value: result,\n }));\n });\n }\n }\n util.assertNever(effect);\n }\n}\nZodEffects.create = (schema, effect, params) => {\n return new ZodEffects({\n schema,\n typeName: ZodFirstPartyTypeKind.ZodEffects,\n effect,\n ...processCreateParams(params),\n });\n};\nZodEffects.createWithPreprocess = (preprocess, schema, params) => {\n return new ZodEffects({\n schema,\n effect: { type: \"preprocess\", transform: preprocess },\n typeName: ZodFirstPartyTypeKind.ZodEffects,\n ...processCreateParams(params),\n });\n};\nexport { ZodEffects as ZodTransformer };\nexport class ZodOptional extends ZodType {\n _parse(input) {\n const parsedType = this._getType(input);\n if (parsedType === ZodParsedType.undefined) {\n return OK(undefined);\n }\n return this._def.innerType._parse(input);\n }\n unwrap() {\n return this._def.innerType;\n }\n}\nZodOptional.create = (type, params) => {\n return new ZodOptional({\n innerType: type,\n typeName: ZodFirstPartyTypeKind.ZodOptional,\n ...processCreateParams(params),\n });\n};\nexport class ZodNullable extends ZodType {\n _parse(input) {\n const parsedType = this._getType(input);\n if (parsedType === ZodParsedType.null) {\n return OK(null);\n }\n return this._def.innerType._parse(input);\n }\n unwrap() {\n return this._def.innerType;\n }\n}\nZodNullable.create = (type, params) => {\n return new ZodNullable({\n innerType: type,\n typeName: ZodFirstPartyTypeKind.ZodNullable,\n ...processCreateParams(params),\n });\n};\nexport class ZodDefault extends ZodType {\n _parse(input) {\n const { ctx } = this._processInputParams(input);\n let data = ctx.data;\n if (ctx.parsedType === ZodParsedType.undefined) {\n data = this._def.defaultValue();\n }\n return this._def.innerType._parse({\n data,\n path: ctx.path,\n parent: ctx,\n });\n }\n removeDefault() {\n return this._def.innerType;\n }\n}\nZodDefault.create = (type, params) => {\n return new ZodDefault({\n innerType: type,\n typeName: ZodFirstPartyTypeKind.ZodDefault,\n defaultValue: typeof params.default === \"function\" ? params.default : () => params.default,\n ...processCreateParams(params),\n });\n};\nexport class ZodCatch extends ZodType {\n _parse(input) {\n const { ctx } = this._processInputParams(input);\n // newCtx is used to not collect issues from inner types in ctx\n const newCtx = {\n ...ctx,\n common: {\n ...ctx.common,\n issues: [],\n },\n };\n const result = this._def.innerType._parse({\n data: newCtx.data,\n path: newCtx.path,\n parent: {\n ...newCtx,\n },\n });\n if (isAsync(result)) {\n return result.then((result) => {\n return {\n status: \"valid\",\n value: result.status === \"valid\"\n ? result.value\n : this._def.catchValue({\n get error() {\n return new ZodError(newCtx.common.issues);\n },\n input: newCtx.data,\n }),\n };\n });\n }\n else {\n return {\n status: \"valid\",\n value: result.status === \"valid\"\n ? result.value\n : this._def.catchValue({\n get error() {\n return new ZodError(newCtx.common.issues);\n },\n input: newCtx.data,\n }),\n };\n }\n }\n removeCatch() {\n return this._def.innerType;\n }\n}\nZodCatch.create = (type, params) => {\n return new ZodCatch({\n innerType: type,\n typeName: ZodFirstPartyTypeKind.ZodCatch,\n catchValue: typeof params.catch === \"function\" ? params.catch : () => params.catch,\n ...processCreateParams(params),\n });\n};\nexport class ZodNaN extends ZodType {\n _parse(input) {\n const parsedType = this._getType(input);\n if (parsedType !== ZodParsedType.nan) {\n const ctx = this._getOrReturnCtx(input);\n addIssueToContext(ctx, {\n code: ZodIssueCode.invalid_type,\n expected: ZodParsedType.nan,\n received: ctx.parsedType,\n });\n return INVALID;\n }\n return { status: \"valid\", value: input.data };\n }\n}\nZodNaN.create = (params) => {\n return new ZodNaN({\n typeName: ZodFirstPartyTypeKind.ZodNaN,\n ...processCreateParams(params),\n });\n};\nexport const BRAND = Symbol(\"zod_brand\");\nexport class ZodBranded extends ZodType {\n _parse(input) {\n const { ctx } = this._processInputParams(input);\n const data = ctx.data;\n return this._def.type._parse({\n data,\n path: ctx.path,\n parent: ctx,\n });\n }\n unwrap() {\n return this._def.type;\n }\n}\nexport class ZodPipeline extends ZodType {\n _parse(input) {\n const { status, ctx } = this._processInputParams(input);\n if (ctx.common.async) {\n const handleAsync = async () => {\n const inResult = await this._def.in._parseAsync({\n data: ctx.data,\n path: ctx.path,\n parent: ctx,\n });\n if (inResult.status === \"aborted\")\n return INVALID;\n if (inResult.status === \"dirty\") {\n status.dirty();\n return DIRTY(inResult.value);\n }\n else {\n return this._def.out._parseAsync({\n data: inResult.value,\n path: ctx.path,\n parent: ctx,\n });\n }\n };\n return handleAsync();\n }\n else {\n const inResult = this._def.in._parseSync({\n data: ctx.data,\n path: ctx.path,\n parent: ctx,\n });\n if (inResult.status === \"aborted\")\n return INVALID;\n if (inResult.status === \"dirty\") {\n status.dirty();\n return {\n status: \"dirty\",\n value: inResult.value,\n };\n }\n else {\n return this._def.out._parseSync({\n data: inResult.value,\n path: ctx.path,\n parent: ctx,\n });\n }\n }\n }\n static create(a, b) {\n return new ZodPipeline({\n in: a,\n out: b,\n typeName: ZodFirstPartyTypeKind.ZodPipeline,\n });\n }\n}\nexport class ZodReadonly extends ZodType {\n _parse(input) {\n const result = this._def.innerType._parse(input);\n const freeze = (data) => {\n if (isValid(data)) {\n data.value = Object.freeze(data.value);\n }\n return data;\n };\n return isAsync(result) ? result.then((data) => freeze(data)) : freeze(result);\n }\n unwrap() {\n return this._def.innerType;\n }\n}\nZodReadonly.create = (type, params) => {\n return new ZodReadonly({\n innerType: type,\n typeName: ZodFirstPartyTypeKind.ZodReadonly,\n ...processCreateParams(params),\n });\n};\n////////////////////////////////////////\n////////////////////////////////////////\n////////// //////////\n////////// z.custom //////////\n////////// //////////\n////////////////////////////////////////\n////////////////////////////////////////\nfunction cleanParams(params, data) {\n const p = typeof params === \"function\" ? params(data) : typeof params === \"string\" ? { message: params } : params;\n const p2 = typeof p === \"string\" ? { message: p } : p;\n return p2;\n}\nexport function custom(check, _params = {}, \n/**\n * @deprecated\n *\n * Pass `fatal` into the params object instead:\n *\n * ```ts\n * z.string().custom((val) => val.length > 5, { fatal: false })\n * ```\n *\n */\nfatal) {\n if (check)\n return ZodAny.create().superRefine((data, ctx) => {\n const r = check(data);\n if (r instanceof Promise) {\n return r.then((r) => {\n if (!r) {\n const params = cleanParams(_params, data);\n const _fatal = params.fatal ?? fatal ?? true;\n ctx.addIssue({ code: \"custom\", ...params, fatal: _fatal });\n }\n });\n }\n if (!r) {\n const params = cleanParams(_params, data);\n const _fatal = params.fatal ?? fatal ?? true;\n ctx.addIssue({ code: \"custom\", ...params, fatal: _fatal });\n }\n return;\n });\n return ZodAny.create();\n}\nexport { ZodType as Schema, ZodType as ZodSchema };\nexport const late = {\n object: ZodObject.lazycreate,\n};\nexport var ZodFirstPartyTypeKind;\n(function (ZodFirstPartyTypeKind) {\n ZodFirstPartyTypeKind[\"ZodString\"] = \"ZodString\";\n ZodFirstPartyTypeKind[\"ZodNumber\"] = \"ZodNumber\";\n ZodFirstPartyTypeKind[\"ZodNaN\"] = \"ZodNaN\";\n ZodFirstPartyTypeKind[\"ZodBigInt\"] = \"ZodBigInt\";\n ZodFirstPartyTypeKind[\"ZodBoolean\"] = \"ZodBoolean\";\n ZodFirstPartyTypeKind[\"ZodDate\"] = \"ZodDate\";\n ZodFirstPartyTypeKind[\"ZodSymbol\"] = \"ZodSymbol\";\n ZodFirstPartyTypeKind[\"ZodUndefined\"] = \"ZodUndefined\";\n ZodFirstPartyTypeKind[\"ZodNull\"] = \"ZodNull\";\n ZodFirstPartyTypeKind[\"ZodAny\"] = \"ZodAny\";\n ZodFirstPartyTypeKind[\"ZodUnknown\"] = \"ZodUnknown\";\n ZodFirstPartyTypeKind[\"ZodNever\"] = \"ZodNever\";\n ZodFirstPartyTypeKind[\"ZodVoid\"] = \"ZodVoid\";\n ZodFirstPartyTypeKind[\"ZodArray\"] = \"ZodArray\";\n ZodFirstPartyTypeKind[\"ZodObject\"] = \"ZodObject\";\n ZodFirstPartyTypeKind[\"ZodUnion\"] = \"ZodUnion\";\n ZodFirstPartyTypeKind[\"ZodDiscriminatedUnion\"] = \"ZodDiscriminatedUnion\";\n ZodFirstPartyTypeKind[\"ZodIntersection\"] = \"ZodIntersection\";\n ZodFirstPartyTypeKind[\"ZodTuple\"] = \"ZodTuple\";\n ZodFirstPartyTypeKind[\"ZodRecord\"] = \"ZodRecord\";\n ZodFirstPartyTypeKind[\"ZodMap\"] = \"ZodMap\";\n ZodFirstPartyTypeKind[\"ZodSet\"] = \"ZodSet\";\n ZodFirstPartyTypeKind[\"ZodFunction\"] = \"ZodFunction\";\n ZodFirstPartyTypeKind[\"ZodLazy\"] = \"ZodLazy\";\n ZodFirstPartyTypeKind[\"ZodLiteral\"] = \"ZodLiteral\";\n ZodFirstPartyTypeKind[\"ZodEnum\"] = \"ZodEnum\";\n ZodFirstPartyTypeKind[\"ZodEffects\"] = \"ZodEffects\";\n ZodFirstPartyTypeKind[\"ZodNativeEnum\"] = \"ZodNativeEnum\";\n ZodFirstPartyTypeKind[\"ZodOptional\"] = \"ZodOptional\";\n ZodFirstPartyTypeKind[\"ZodNullable\"] = \"ZodNullable\";\n ZodFirstPartyTypeKind[\"ZodDefault\"] = \"ZodDefault\";\n ZodFirstPartyTypeKind[\"ZodCatch\"] = \"ZodCatch\";\n ZodFirstPartyTypeKind[\"ZodPromise\"] = \"ZodPromise\";\n ZodFirstPartyTypeKind[\"ZodBranded\"] = \"ZodBranded\";\n ZodFirstPartyTypeKind[\"ZodPipeline\"] = \"ZodPipeline\";\n ZodFirstPartyTypeKind[\"ZodReadonly\"] = \"ZodReadonly\";\n})(ZodFirstPartyTypeKind || (ZodFirstPartyTypeKind = {}));\n// requires TS 4.4+\nclass Class {\n constructor(..._) { }\n}\nconst instanceOfType = (\n// const instanceOfType = <T extends new (...args: any[]) => any>(\ncls, params = {\n message: `Input not instance of ${cls.name}`,\n}) => custom((data) => data instanceof cls, params);\nconst stringType = ZodString.create;\nconst numberType = ZodNumber.create;\nconst nanType = ZodNaN.create;\nconst bigIntType = ZodBigInt.create;\nconst booleanType = ZodBoolean.create;\nconst dateType = ZodDate.create;\nconst symbolType = ZodSymbol.create;\nconst undefinedType = ZodUndefined.create;\nconst nullType = ZodNull.create;\nconst anyType = ZodAny.create;\nconst unknownType = ZodUnknown.create;\nconst neverType = ZodNever.create;\nconst voidType = ZodVoid.create;\nconst arrayType = ZodArray.create;\nconst objectType = ZodObject.create;\nconst strictObjectType = ZodObject.strictCreate;\nconst unionType = ZodUnion.create;\nconst discriminatedUnionType = ZodDiscriminatedUnion.create;\nconst intersectionType = ZodIntersection.create;\nconst tupleType = ZodTuple.create;\nconst recordType = ZodRecord.create;\nconst mapType = ZodMap.create;\nconst setType = ZodSet.create;\nconst functionType = ZodFunction.create;\nconst lazyType = ZodLazy.create;\nconst literalType = ZodLiteral.create;\nconst enumType = ZodEnum.create;\nconst nativeEnumType = ZodNativeEnum.create;\nconst promiseType = ZodPromise.create;\nconst effectsType = ZodEffects.create;\nconst optionalType = ZodOptional.create;\nconst nullableType = ZodNullable.create;\nconst preprocessType = ZodEffects.createWithPreprocess;\nconst pipelineType = ZodPipeline.create;\nconst ostring = () => stringType().optional();\nconst onumber = () => numberType().optional();\nconst oboolean = () => booleanType().optional();\nexport const coerce = {\n string: ((arg) => ZodString.create({ ...arg, coerce: true })),\n number: ((arg) => ZodNumber.create({ ...arg, coerce: true })),\n boolean: ((arg) => ZodBoolean.create({\n ...arg,\n coerce: true,\n })),\n bigint: ((arg) => ZodBigInt.create({ ...arg, coerce: true })),\n date: ((arg) => ZodDate.create({ ...arg, coerce: true })),\n};\nexport { anyType as any, arrayType as array, bigIntType as bigint, booleanType as boolean, dateType as date, discriminatedUnionType as discriminatedUnion, effectsType as effect, enumType as enum, functionType as function, instanceOfType as instanceof, intersectionType as intersection, lazyType as lazy, literalType as literal, mapType as map, nanType as nan, nativeEnumType as nativeEnum, neverType as never, nullType as null, nullableType as nullable, numberType as number, objectType as object, oboolean, onumber, optionalType as optional, ostring, pipelineType as pipeline, preprocessType as preprocess, promiseType as promise, recordType as record, setType as set, strictObjectType as strictObject, stringType as string, symbolType as symbol, effectsType as transformer, tupleType as tuple, undefinedType as undefined, unionType as union, unknownType as unknown, voidType as void, };\nexport const NEVER = INVALID;\n","import { getRelativePath } from \"../getRelativePath.js\";\nexport function parseAnyDef(refs) {\n if (refs.target !== \"openAi\") {\n return {};\n }\n const anyDefinitionPath = [\n ...refs.basePath,\n refs.definitionPath,\n refs.openAiAnyTypeName,\n ];\n refs.flags.hasReferencedOpenAiAnyType = true;\n return {\n $ref: refs.$refStrategy === \"relative\"\n ? getRelativePath(anyDefinitionPath, refs.currentPath)\n : anyDefinitionPath.join(\"/\"),\n };\n}\n","import { ZodFirstPartyTypeKind } from \"zod\";\nimport { setResponseValueAndErrors } from \"../errorMessages.js\";\nimport { parseDef } from \"../parseDef.js\";\nexport function parseArrayDef(def, refs) {\n const res = {\n type: \"array\",\n };\n if (def.type?._def &&\n def.type?._def?.typeName !== ZodFirstPartyTypeKind.ZodAny) {\n res.items = parseDef(def.type._def, {\n ...refs,\n currentPath: [...refs.currentPath, \"items\"],\n });\n }\n if (def.minLength) {\n setResponseValueAndErrors(res, \"minItems\", def.minLength.value, def.minLength.message, refs);\n }\n if (def.maxLength) {\n setResponseValueAndErrors(res, \"maxItems\", def.maxLength.value, def.maxLength.message, refs);\n }\n if (def.exactLength) {\n setResponseValueAndErrors(res, \"minItems\", def.exactLength.value, def.exactLength.message, refs);\n setResponseValueAndErrors(res, \"maxItems\", def.exactLength.value, def.exactLength.message, refs);\n }\n return res;\n}\n","import { setResponseValueAndErrors } from \"../errorMessages.js\";\nexport function parseBigintDef(def, refs) {\n const res = {\n type: \"integer\",\n format: \"int64\",\n };\n if (!def.checks)\n return res;\n for (const check of def.checks) {\n switch (check.kind) {\n case \"min\":\n if (refs.target === \"jsonSchema7\") {\n if (check.inclusive) {\n setResponseValueAndErrors(res, \"minimum\", check.value, check.message, refs);\n }\n else {\n setResponseValueAndErrors(res, \"exclusiveMinimum\", check.value, check.message, refs);\n }\n }\n else {\n if (!check.inclusive) {\n res.exclusiveMinimum = true;\n }\n setResponseValueAndErrors(res, \"minimum\", check.value, check.message, refs);\n }\n break;\n case \"max\":\n if (refs.target === \"jsonSchema7\") {\n if (check.inclusive) {\n setResponseValueAndErrors(res, \"maximum\", check.value, check.message, refs);\n }\n else {\n setResponseValueAndErrors(res, \"exclusiveMaximum\", check.value, check.message, refs);\n }\n }\n else {\n if (!check.inclusive) {\n res.exclusiveMaximum = true;\n }\n setResponseValueAndErrors(res, \"maximum\", check.value, check.message, refs);\n }\n break;\n case \"multipleOf\":\n setResponseValueAndErrors(res, \"multipleOf\", check.value, check.message, refs);\n break;\n }\n }\n return res;\n}\n","export function parseBooleanDef() {\n return {\n type: \"boolean\",\n };\n}\n","import { parseDef } from \"../parseDef.js\";\nexport function parseBrandedDef(_def, refs) {\n return parseDef(_def.type._def, refs);\n}\n","import { parseDef } from \"../parseDef.js\";\nexport const parseCatchDef = (def, refs) => {\n return parseDef(def.innerType._def, refs);\n};\n","import { setResponseValueAndErrors } from \"../errorMessages.js\";\nexport function parseDateDef(def, refs, overrideDateStrategy) {\n const strategy = overrideDateStrategy ?? refs.dateStrategy;\n if (Array.isArray(strategy)) {\n return {\n anyOf: strategy.map((item, i) => parseDateDef(def, refs, item)),\n };\n }\n switch (strategy) {\n case \"string\":\n case \"format:date-time\":\n return {\n type: \"string\",\n format: \"date-time\",\n };\n case \"format:date\":\n return {\n type: \"string\",\n format: \"date\",\n };\n case \"integer\":\n return integerDateParser(def, refs);\n }\n}\nconst integerDateParser = (def, refs) => {\n const res = {\n type: \"integer\",\n format: \"unix-time\",\n };\n if (refs.target === \"openApi3\") {\n return res;\n }\n for (const check of def.checks) {\n switch (check.kind) {\n case \"min\":\n setResponseValueAndErrors(res, \"minimum\", check.value, // This is in milliseconds\n check.message, refs);\n break;\n case \"max\":\n setResponseValueAndErrors(res, \"maximum\", check.value, // This is in milliseconds\n check.message, refs);\n break;\n }\n }\n return res;\n};\n","import { parseDef } from \"../parseDef.js\";\nexport function parseDefaultDef(_def, refs) {\n return {\n ...parseDef(_def.innerType._def, refs),\n default: _def.defaultValue(),\n };\n}\n","import { parseDef } from \"../parseDef.js\";\nimport { parseAnyDef } from \"./any.js\";\nexport function parseEffectsDef(_def, refs) {\n return refs.effectStrategy === \"input\"\n ? parseDef(_def.schema._def, refs)\n : parseAnyDef(refs);\n}\n","export function parseEnumDef(def) {\n return {\n type: \"string\",\n enum: Array.from(def.values),\n };\n}\n","import { parseDef } from \"../parseDef.js\";\nconst isJsonSchema7AllOfType = (type) => {\n if (\"type\" in type && type.type === \"string\")\n return false;\n return \"allOf\" in type;\n};\nexport function parseIntersectionDef(def, refs) {\n const allOf = [\n parseDef(def.left._def, {\n ...refs,\n currentPath: [...refs.currentPath, \"allOf\", \"0\"],\n }),\n parseDef(def.right._def, {\n ...refs,\n currentPath: [...refs.currentPath, \"allOf\", \"1\"],\n }),\n ].filter((x) => !!x);\n let unevaluatedProperties = refs.target === \"jsonSchema2019-09\"\n ? { unevaluatedProperties: false }\n : undefined;\n const mergedAllOf = [];\n // If either of the schemas is an allOf, merge them into a single allOf\n allOf.forEach((schema) => {\n if (isJsonSchema7AllOfType(schema)) {\n mergedAllOf.push(...schema.allOf);\n if (schema.unevaluatedProperties === undefined) {\n // If one of the schemas has no unevaluatedProperties set,\n // the merged schema should also have no unevaluatedProperties set\n unevaluatedProperties = undefined;\n }\n }\n else {\n let nestedSchema = schema;\n if (\"additionalProperties\" in schema &&\n schema.additionalProperties === false) {\n const { additionalProperties, ...rest } = schema;\n nestedSchema = rest;\n }\n else {\n // As soon as one of the schemas has additionalProperties set not to false, we allow unevaluatedProperties\n unevaluatedProperties = undefined;\n }\n mergedAllOf.push(nestedSchema);\n }\n });\n return mergedAllOf.length\n ? {\n allOf: mergedAllOf,\n ...unevaluatedProperties,\n }\n : undefined;\n}\n","export function parseLiteralDef(def, refs) {\n const parsedType = typeof def.value;\n if (parsedType !== \"bigint\" &&\n parsedType !== \"number\" &&\n parsedType !== \"boolean\" &&\n parsedType !== \"string\") {\n return {\n type: Array.isArray(def.value) ? \"array\" : \"object\",\n };\n }\n if (refs.target === \"openApi3\") {\n return {\n type: parsedType === \"bigint\" ? \"integer\" : parsedType,\n enum: [def.value],\n };\n }\n return {\n type: parsedType === \"bigint\" ? \"integer\" : parsedType,\n const: def.value,\n };\n}\n","import { setResponseValueAndErrors } from \"../errorMessages.js\";\nlet emojiRegex = undefined;\n/**\n * Generated from the regular expressions found here as of 2024-05-22:\n * https://github.com/colinhacks/zod/blob/master/src/types.ts.\n *\n * Expressions with /i flag have been changed accordingly.\n */\nexport const zodPatterns = {\n /**\n * `c` was changed to `[cC]` to replicate /i flag\n */\n cuid: /^[cC][^\\s-]{8,}$/,\n cuid2: /^[0-9a-z]+$/,\n ulid: /^[0-9A-HJKMNP-TV-Z]{26}$/,\n /**\n * `a-z` was added to replicate /i flag\n */\n email: /^(?!\\.)(?!.*\\.\\.)([a-zA-Z0-9_'+\\-\\.]*)[a-zA-Z0-9_+-]@([a-zA-Z0-9][a-zA-Z0-9\\-]*\\.)+[a-zA-Z]{2,}$/,\n /**\n * Constructed a valid Unicode RegExp\n *\n * Lazily instantiate since this type of regex isn't supported\n * in all envs (e.g. React Native).\n *\n * See:\n * https://github.com/colinhacks/zod/issues/2433\n * Fix in Zod:\n * https://github.com/colinhacks/zod/commit/9340fd51e48576a75adc919bff65dbc4a5d4c99b\n */\n emoji: () => {\n if (emojiRegex === undefined) {\n emojiRegex = RegExp(\"^(\\\\p{Extended_Pictographic}|\\\\p{Emoji_Component})+$\", \"u\");\n }\n return emojiRegex;\n },\n /**\n * Unused\n */\n uuid: /^[0-9a-fA-F]{8}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{12}$/,\n /**\n * Unused\n */\n ipv4: /^(?:(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\\.){3}(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])$/,\n ipv4Cidr: /^(?:(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\\.){3}(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\\/(3[0-2]|[12]?[0-9])$/,\n /**\n * Unused\n */\n ipv6: /^(([a-f0-9]{1,4}:){7}|::([a-f0-9]{1,4}:){0,6}|([a-f0-9]{1,4}:){1}:([a-f0-9]{1,4}:){0,5}|([a-f0-9]{1,4}:){2}:([a-f0-9]{1,4}:){0,4}|([a-f0-9]{1,4}:){3}:([a-f0-9]{1,4}:){0,3}|([a-f0-9]{1,4}:){4}:([a-f0-9]{1,4}:){0,2}|([a-f0-9]{1,4}:){5}:([a-f0-9]{1,4}:){0,1})([a-f0-9]{1,4}|(((25[0-5])|(2[0-4][0-9])|(1[0-9]{2})|([0-9]{1,2}))\\.){3}((25[0-5])|(2[0-4][0-9])|(1[0-9]{2})|([0-9]{1,2})))$/,\n ipv6Cidr: /^(([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]))\\/(12[0-8]|1[01][0-9]|[1-9]?[0-9])$/,\n base64: /^([0-9a-zA-Z+/]{4})*(([0-9a-zA-Z+/]{2}==)|([0-9a-zA-Z+/]{3}=))?$/,\n base64url: /^([0-9a-zA-Z-_]{4})*(([0-9a-zA-Z-_]{2}(==)?)|([0-9a-zA-Z-_]{3}(=)?))?$/,\n nanoid: /^[a-zA-Z0-9_-]{21}$/,\n jwt: /^[A-Za-z0-9-_]+\\.[A-Za-z0-9-_]+\\.[A-Za-z0-9-_]*$/,\n};\nexport function parseStringDef(def, refs) {\n const res = {\n type: \"string\",\n };\n if (def.checks) {\n for (const check of def.checks) {\n switch (check.kind) {\n case \"min\":\n setResponseValueAndErrors(res, \"minLength\", typeof res.minLength === \"number\"\n ? Math.max(res.minLength, check.value)\n : check.value, check.message, refs);\n break;\n case \"max\":\n setResponseValueAndErrors(res, \"maxLength\", typeof res.maxLength === \"number\"\n ? Math.min(res.maxLength, check.value)\n : check.value, check.message, refs);\n break;\n case \"email\":\n switch (refs.emailStrategy) {\n case \"format:email\":\n addFormat(res, \"email\", check.message, refs);\n break;\n case \"format:idn-email\":\n addFormat(res, \"idn-email\", check.message, refs);\n break;\n case \"pattern:zod\":\n addPattern(res, zodPatterns.email, check.message, refs);\n break;\n }\n break;\n case \"url\":\n addFormat(res, \"uri\", check.message, refs);\n break;\n case \"uuid\":\n addFormat(res, \"uuid\", check.message, refs);\n break;\n case \"regex\":\n addPattern(res, check.regex, check.message, refs);\n break;\n case \"cuid\":\n addPattern(res, zodPatterns.cuid, check.message, refs);\n break;\n case \"cuid2\":\n addPattern(res, zodPatterns.cuid2, check.message, refs);\n break;\n case \"startsWith\":\n addPattern(res, RegExp(`^${escapeLiteralCheckValue(check.value, refs)}`), check.message, refs);\n break;\n case \"endsWith\":\n addPattern(res, RegExp(`${escapeLiteralCheckValue(check.value, refs)}$`), check.message, refs);\n break;\n case \"datetime\":\n addFormat(res, \"date-time\", check.message, refs);\n break;\n case \"date\":\n addFormat(res, \"date\", check.message, refs);\n break;\n case \"time\":\n addFormat(res, \"time\", check.message, refs);\n break;\n case \"duration\":\n addFormat(res, \"duration\", check.message, refs);\n break;\n case \"length\":\n setResponseValueAndErrors(res, \"minLength\", typeof res.minLength === \"number\"\n ? Math.max(res.minLength, check.value)\n : check.value, check.message, refs);\n setResponseValueAndErrors(res, \"maxLength\", typeof res.maxLength === \"number\"\n ? Math.min(res.maxLength, check.value)\n : check.value, check.message, refs);\n break;\n case \"includes\": {\n addPattern(res, RegExp(escapeLiteralCheckValue(check.value, refs)), check.message, refs);\n break;\n }\n case \"ip\": {\n if (check.version !== \"v6\") {\n addFormat(res, \"ipv4\", check.message, refs);\n }\n if (check.version !== \"v4\") {\n addFormat(res, \"ipv6\", check.message, refs);\n }\n break;\n }\n case \"base64url\":\n addPattern(res, zodPatterns.base64url, check.message, refs);\n break;\n case \"jwt\":\n addPattern(res, zodPatterns.jwt, check.message, refs);\n break;\n case \"cidr\": {\n if (check.version !== \"v6\") {\n addPattern(res, zodPatterns.ipv4Cidr, check.message, refs);\n }\n if (check.version !== \"v4\") {\n addPattern(res, zodPatterns.ipv6Cidr, check.message, refs);\n }\n break;\n }\n case \"emoji\":\n addPattern(res, zodPatterns.emoji(), check.message, refs);\n break;\n case \"ulid\": {\n addPattern(res, zodPatterns.ulid, check.message, refs);\n break;\n }\n case \"base64\": {\n switch (refs.base64Strategy) {\n case \"format:binary\": {\n addFormat(res, \"binary\", check.message, refs);\n break;\n }\n case \"contentEncoding:base64\": {\n setResponseValueAndErrors(res, \"contentEncoding\", \"base64\", check.message, refs);\n break;\n }\n case \"pattern:zod\": {\n addPattern(res, zodPatterns.base64, check.message, refs);\n break;\n }\n }\n break;\n }\n case \"nanoid\": {\n addPattern(res, zodPatterns.nanoid, check.message, refs);\n }\n case \"toLowerCase\":\n case \"toUpperCase\":\n case \"trim\":\n break;\n default:\n /* c8 ignore next */\n ((_) => { })(check);\n }\n }\n }\n return res;\n}\nfunction escapeLiteralCheckValue(literal, refs) {\n return refs.patternStrategy === \"escape\"\n ? escapeNonAlphaNumeric(literal)\n : literal;\n}\nconst ALPHA_NUMERIC = new Set(\"ABCDEFGHIJKLMNOPQRSTUVXYZabcdefghijklmnopqrstuvxyz0123456789\");\nfunction escapeNonAlphaNumeric(source) {\n let result = \"\";\n for (let i = 0; i < source.length; i++) {\n if (!ALPHA_NUMERIC.has(source[i])) {\n result += \"\\\\\";\n }\n result += source[i];\n }\n return result;\n}\n// Adds a \"format\" keyword to the schema. If a format exists, both formats will be joined in an allOf-node, along with subsequent ones.\nfunction addFormat(schema, value, message, refs) {\n if (schema.format || schema.anyOf?.some((x) => x.format)) {\n if (!schema.anyOf) {\n schema.anyOf = [];\n }\n if (schema.format) {\n schema.anyOf.push({\n format: schema.format,\n ...(schema.errorMessage &&\n refs.errorMessages && {\n errorMessage: { format: schema.errorMessage.format },\n }),\n });\n delete schema.format;\n if (schema.errorMessage) {\n delete schema.errorMessage.format;\n if (Object.keys(schema.errorMessage).length === 0) {\n delete schema.errorMessage;\n }\n }\n }\n schema.anyOf.push({\n format: value,\n ...(message &&\n refs.errorMessages && { errorMessage: { format: message } }),\n });\n }\n else {\n setResponseValueAndErrors(schema, \"format\", value, message, refs);\n }\n}\n// Adds a \"pattern\" keyword to the schema. If a pattern exists, both patterns will be joined in an allOf-node, along with subsequent ones.\nfunction addPattern(schema, regex, message, refs) {\n if (schema.pattern || schema.allOf?.some((x) => x.pattern)) {\n if (!schema.allOf) {\n schema.allOf = [];\n }\n if (schema.pattern) {\n schema.allOf.push({\n pattern: schema.pattern,\n ...(schema.errorMessage &&\n refs.errorMessages && {\n errorMessage: { pattern: schema.errorMessage.pattern },\n }),\n });\n delete schema.pattern;\n if (schema.errorMessage) {\n delete schema.errorMessage.pattern;\n if (Object.keys(schema.errorMessage).length === 0) {\n delete schema.errorMessage;\n }\n }\n }\n schema.allOf.push({\n pattern: stringifyRegExpWithFlags(regex, refs),\n ...(message &&\n refs.errorMessages && { errorMessage: { pattern: message } }),\n });\n }\n else {\n setResponseValueAndErrors(schema, \"pattern\", stringifyRegExpWithFlags(regex, refs), message, refs);\n }\n}\n// Mutate z.string.regex() in a best attempt to accommodate for regex flags when applyRegexFlags is true\nfunction stringifyRegExpWithFlags(regex, refs) {\n if (!refs.applyRegexFlags || !regex.flags) {\n return regex.source;\n }\n // Currently handled flags\n const flags = {\n i: regex.flags.includes(\"i\"),\n m: regex.flags.includes(\"m\"),\n s: regex.flags.includes(\"s\"), // `.` matches newlines\n };\n // The general principle here is to step through each character, one at a time, applying mutations as flags require. We keep track when the current character is escaped, and when it's inside a group /like [this]/ or (also) a range like /[a-z]/. The following is fairly brittle imperative code; edit at your peril!\n const source = flags.i ? regex.source.toLowerCase() : regex.source;\n let pattern = \"\";\n let isEscaped = false;\n let inCharGroup = false;\n let inCharRange = false;\n for (let i = 0; i < source.length; i++) {\n if (isEscaped) {\n pattern += source[i];\n isEscaped = false;\n continue;\n }\n if (flags.i) {\n if (inCharGroup) {\n if (source[i].match(/[a-z]/)) {\n if (inCharRange) {\n pattern += source[i];\n pattern += `${source[i - 2]}-${source[i]}`.toUpperCase();\n inCharRange = false;\n }\n else if (source[i + 1] === \"-\" && source[i + 2]?.match(/[a-z]/)) {\n pattern += source[i];\n inCharRange = true;\n }\n else {\n pattern += `${source[i]}${source[i].toUpperCase()}`;\n }\n continue;\n }\n }\n else if (source[i].match(/[a-z]/)) {\n pattern += `[${source[i]}${source[i].toUpperCase()}]`;\n continue;\n }\n }\n if (flags.m) {\n if (source[i] === \"^\") {\n pattern += `(^|(?<=[\\r\\n]))`;\n continue;\n }\n else if (source[i] === \"$\") {\n pattern += `($|(?=[\\r\\n]))`;\n continue;\n }\n }\n if (flags.s && source[i] === \".\") {\n pattern += inCharGroup ? `${source[i]}\\r\\n` : `[${source[i]}\\r\\n]`;\n continue;\n }\n pattern += source[i];\n if (source[i] === \"\\\\\") {\n isEscaped = true;\n }\n else if (inCharGroup && source[i] === \"]\") {\n inCharGroup = false;\n }\n else if (!inCharGroup && source[i] === \"[\") {\n inCharGroup = true;\n }\n }\n try {\n new RegExp(pattern);\n }\n catch {\n console.warn(`Could not convert regex pattern at ${refs.currentPath.join(\"/\")} to a flag-independent form! Falling back to the flag-ignorant source`);\n return regex.source;\n }\n return pattern;\n}\n","import { ZodFirstPartyTypeKind, } from \"zod\";\nimport { parseDef } from \"../parseDef.js\";\nimport { parseStringDef } from \"./string.js\";\nimport { parseBrandedDef } from \"./branded.js\";\nimport { parseAnyDef } from \"./any.js\";\nexport function parseRecordDef(def, refs) {\n if (refs.target === \"openAi\") {\n console.warn(\"Warning: OpenAI may not support records in schemas! Try an array of key-value pairs instead.\");\n }\n if (refs.target === \"openApi3\" &&\n def.keyType?._def.typeName === ZodFirstPartyTypeKind.ZodEnum) {\n return {\n type: \"object\",\n required: def.keyType._def.values,\n properties: def.keyType._def.values.reduce((acc, key) => ({\n ...acc,\n [key]: parseDef(def.valueType._def, {\n ...refs,\n currentPath: [...refs.currentPath, \"properties\", key],\n }) ?? parseAnyDef(refs),\n }), {}),\n additionalProperties: refs.rejectedAdditionalProperties,\n };\n }\n const schema = {\n type: \"object\",\n additionalProperties: parseDef(def.valueType._def, {\n ...refs,\n currentPath: [...refs.currentPath, \"additionalProperties\"],\n }) ?? refs.allowedAdditionalProperties,\n };\n if (refs.target === \"openApi3\") {\n return schema;\n }\n if (def.keyType?._def.typeName === ZodFirstPartyTypeKind.ZodString &&\n def.keyType._def.checks?.length) {\n const { type, ...keyType } = parseStringDef(def.keyType._def, refs);\n return {\n ...schema,\n propertyNames: keyType,\n };\n }\n else if (def.keyType?._def.typeName === ZodFirstPartyTypeKind.ZodEnum) {\n return {\n ...schema,\n propertyNames: {\n enum: def.keyType._def.values,\n },\n };\n }\n else if (def.keyType?._def.typeName === ZodFirstPartyTypeKind.ZodBranded &&\n def.keyType._def.type._def.typeName === ZodFirstPartyTypeKind.ZodString &&\n def.keyType._def.type._def.checks?.length) {\n const { type, ...keyType } = parseBrandedDef(def.keyType._def, refs);\n return {\n ...schema,\n propertyNames: keyType,\n };\n }\n return schema;\n}\n","import { parseDef } from \"../parseDef.js\";\nimport { parseRecordDef } from \"./record.js\";\nimport { parseAnyDef } from \"./any.js\";\nexport function parseMapDef(def, refs) {\n if (refs.mapStrategy === \"record\") {\n return parseRecordDef(def, refs);\n }\n const keys = parseDef(def.keyType._def, {\n ...refs,\n currentPath: [...refs.currentPath, \"items\", \"items\", \"0\"],\n }) || parseAnyDef(refs);\n const values = parseDef(def.valueType._def, {\n ...refs,\n currentPath: [...refs.currentPath, \"items\", \"items\", \"1\"],\n }) || parseAnyDef(refs);\n return {\n type: \"array\",\n maxItems: 125,\n items: {\n type: \"array\",\n items: [keys, values],\n minItems: 2,\n maxItems: 2,\n },\n };\n}\n","export function parseNativeEnumDef(def) {\n const object = def.values;\n const actualKeys = Object.keys(def.values).filter((key) => {\n return typeof object[object[key]] !== \"number\";\n });\n const actualValues = actualKeys.map((key) => object[key]);\n const parsedTypes = Array.from(new Set(actualValues.map((values) => typeof values)));\n return {\n type: parsedTypes.length === 1\n ? parsedTypes[0] === \"string\"\n ? \"string\"\n : \"number\"\n : [\"string\", \"number\"],\n enum: actualValues,\n };\n}\n","import { parseAnyDef } from \"./any.js\";\nexport function parseNeverDef(refs) {\n return refs.target === \"openAi\"\n ? undefined\n : {\n not: parseAnyDef({\n ...refs,\n currentPath: [...refs.currentPath, \"not\"],\n }),\n };\n}\n","export function parseNullDef(refs) {\n return refs.target === \"openApi3\"\n ? {\n enum: [\"null\"],\n nullable: true,\n }\n : {\n type: \"null\",\n };\n}\n","import { parseDef } from \"../parseDef.js\";\nexport const primitiveMappings = {\n ZodString: \"string\",\n ZodNumber: \"number\",\n ZodBigInt: \"integer\",\n ZodBoolean: \"boolean\",\n ZodNull: \"null\",\n};\nexport function parseUnionDef(def, refs) {\n if (refs.target === \"openApi3\")\n return asAnyOf(def, refs);\n const options = def.options instanceof Map ? Array.from(def.options.values()) : def.options;\n // This blocks tries to look ahead a bit to produce nicer looking schemas with type array instead of anyOf.\n if (options.every((x) => x._def.typeName in primitiveMappings &&\n (!x._def.checks || !x._def.checks.length))) {\n // all types in union are primitive and lack checks, so might as well squash into {type: [...]}\n const types = options.reduce((types, x) => {\n const type = primitiveMappings[x._def.typeName]; //Can be safely casted due to row 43\n return type && !types.includes(type) ? [...types, type] : types;\n }, []);\n return {\n type: types.length > 1 ? types : types[0],\n };\n }\n else if (options.every((x) => x._def.typeName === \"ZodLiteral\" && !x.description)) {\n // all options literals\n const types = options.reduce((acc, x) => {\n const type = typeof x._def.value;\n switch (type) {\n case \"string\":\n case \"number\":\n case \"boolean\":\n return [...acc, type];\n case \"bigint\":\n return [...acc, \"integer\"];\n case \"object\":\n if (x._def.value === null)\n return [...acc, \"null\"];\n case \"symbol\":\n case \"undefined\":\n case \"function\":\n default:\n return acc;\n }\n }, []);\n if (types.length === options.length) {\n // all the literals are primitive, as far as null can be considered primitive\n const uniqueTypes = types.filter((x, i, a) => a.indexOf(x) === i);\n return {\n type: uniqueTypes.length > 1 ? uniqueTypes : uniqueTypes[0],\n enum: options.reduce((acc, x) => {\n return acc.includes(x._def.value) ? acc : [...acc, x._def.value];\n }, []),\n };\n }\n }\n else if (options.every((x) => x._def.typeName === \"ZodEnum\")) {\n return {\n type: \"string\",\n enum: options.reduce((acc, x) => [\n ...acc,\n ...x._def.values.filter((x) => !acc.includes(x)),\n ], []),\n };\n }\n return asAnyOf(def, refs);\n}\nconst asAnyOf = (def, refs) => {\n const anyOf = (def.options instanceof Map\n ? Array.from(def.options.values())\n : def.options)\n .map((x, i) => parseDef(x._def, {\n ...refs,\n currentPath: [...refs.currentPath, \"anyOf\", `${i}`],\n }))\n .filter((x) => !!x &&\n (!refs.strictUnions ||\n (typeof x === \"object\" && Object.keys(x).length > 0)));\n return anyOf.length ? { anyOf } : undefined;\n};\n","import { parseDef } from \"../parseDef.js\";\nimport { primitiveMappings } from \"./union.js\";\nexport function parseNullableDef(def, refs) {\n if ([\"ZodString\", \"ZodNumber\", \"ZodBigInt\", \"ZodBoolean\", \"ZodNull\"].includes(def.innerType._def.typeName) &&\n (!def.innerType._def.checks || !def.innerType._def.checks.length)) {\n if (refs.target === \"openApi3\") {\n return {\n type: primitiveMappings[def.innerType._def.typeName],\n nullable: true,\n };\n }\n return {\n type: [\n primitiveMappings[def.innerType._def.typeName],\n \"null\",\n ],\n };\n }\n if (refs.target === \"openApi3\") {\n const base = parseDef(def.innerType._def, {\n ...refs,\n currentPath: [...refs.currentPath],\n });\n if (base && \"$ref\" in base)\n return { allOf: [base], nullable: true };\n return base && { ...base, nullable: true };\n }\n const base = parseDef(def.innerType._def, {\n ...refs,\n currentPath: [...refs.currentPath, \"anyOf\", \"0\"],\n });\n return base && { anyOf: [base, { type: \"null\" }] };\n}\n","import { addErrorMessage, setResponseValueAndErrors, } from \"../errorMessages.js\";\nexport function parseNumberDef(def, refs) {\n const res = {\n type: \"number\",\n };\n if (!def.checks)\n return res;\n for (const check of def.checks) {\n switch (check.kind) {\n case \"int\":\n res.type = \"integer\";\n addErrorMessage(res, \"type\", check.message, refs);\n break;\n case \"min\":\n if (refs.target === \"jsonSchema7\") {\n if (check.inclusive) {\n setResponseValueAndErrors(res, \"minimum\", check.value, check.message, refs);\n }\n else {\n setResponseValueAndErrors(res, \"exclusiveMinimum\", check.value, check.message, refs);\n }\n }\n else {\n if (!check.inclusive) {\n res.exclusiveMinimum = true;\n }\n setResponseValueAndErrors(res, \"minimum\", check.value, check.message, refs);\n }\n break;\n case \"max\":\n if (refs.target === \"jsonSchema7\") {\n if (check.inclusive) {\n setResponseValueAndErrors(res, \"maximum\", check.value, check.message, refs);\n }\n else {\n setResponseValueAndErrors(res, \"exclusiveMaximum\", check.value, check.message, refs);\n }\n }\n else {\n if (!check.inclusive) {\n res.exclusiveMaximum = true;\n }\n setResponseValueAndErrors(res, \"maximum\", check.value, check.message, refs);\n }\n break;\n case \"multipleOf\":\n setResponseValueAndErrors(res, \"multipleOf\", check.value, check.message, refs);\n break;\n }\n }\n return res;\n}\n","import { parseDef } from \"../parseDef.js\";\nexport function parseObjectDef(def, refs) {\n const forceOptionalIntoNullable = refs.target === \"openAi\";\n const result = {\n type: \"object\",\n properties: {},\n };\n const required = [];\n const shape = def.shape();\n for (const propName in shape) {\n let propDef = shape[propName];\n if (propDef === undefined || propDef._def === undefined) {\n continue;\n }\n let propOptional = safeIsOptional(propDef);\n if (propOptional && forceOptionalIntoNullable) {\n if (propDef._def.typeName === \"ZodOptional\") {\n propDef = propDef._def.innerType;\n }\n if (!propDef.isNullable()) {\n propDef = propDef.nullable();\n }\n propOptional = false;\n }\n const parsedDef = parseDef(propDef._def, {\n ...refs,\n currentPath: [...refs.currentPath, \"properties\", propName],\n propertyPath: [...refs.currentPath, \"properties\", propName],\n });\n if (parsedDef === undefined) {\n continue;\n }\n result.properties[propName] = parsedDef;\n if (!propOptional) {\n required.push(propName);\n }\n }\n if (required.length) {\n result.required = required;\n }\n const additionalProperties = decideAdditionalProperties(def, refs);\n if (additionalProperties !== undefined) {\n result.additionalProperties = additionalProperties;\n }\n return result;\n}\nfunction decideAdditionalProperties(def, refs) {\n if (def.catchall._def.typeName !== \"ZodNever\") {\n return parseDef(def.catchall._def, {\n ...refs,\n currentPath: [...refs.currentPath, \"additionalProperties\"],\n });\n }\n switch (def.unknownKeys) {\n case \"passthrough\":\n return refs.allowedAdditionalProperties;\n case \"strict\":\n return refs.rejectedAdditionalProperties;\n case \"strip\":\n return refs.removeAdditionalStrategy === \"strict\"\n ? refs.allowedAdditionalProperties\n : refs.rejectedAdditionalProperties;\n }\n}\nfunction safeIsOptional(schema) {\n try {\n return schema.isOptional();\n }\n catch {\n return true;\n }\n}\n","import { parseDef } from \"../parseDef.js\";\nimport { parseAnyDef } from \"./any.js\";\nexport const parseOptionalDef = (def, refs) => {\n if (refs.currentPath.toString() === refs.propertyPath?.toString()) {\n return parseDef(def.innerType._def, refs);\n }\n const innerSchema = parseDef(def.innerType._def, {\n ...refs,\n currentPath: [...refs.currentPath, \"anyOf\", \"1\"],\n });\n return innerSchema\n ? {\n anyOf: [\n {\n not: parseAnyDef(refs),\n },\n innerSchema,\n ],\n }\n : parseAnyDef(refs);\n};\n","import { parseDef } from \"../parseDef.js\";\nexport const parsePipelineDef = (def, refs) => {\n if (refs.pipeStrategy === \"input\") {\n return parseDef(def.in._def, refs);\n }\n else if (refs.pipeStrategy === \"output\") {\n return parseDef(def.out._def, refs);\n }\n const a = parseDef(def.in._def, {\n ...refs,\n currentPath: [...refs.currentPath, \"allOf\", \"0\"],\n });\n const b = parseDef(def.out._def, {\n ...refs,\n currentPath: [...refs.currentPath, \"allOf\", a ? \"1\" : \"0\"],\n });\n return {\n allOf: [a, b].filter((x) => x !== undefined),\n };\n};\n","import { parseDef } from \"../parseDef.js\";\nexport function parsePromiseDef(def, refs) {\n return parseDef(def.type._def, refs);\n}\n","import { setResponseValueAndErrors } from \"../errorMessages.js\";\nimport { parseDef } from \"../parseDef.js\";\nexport function parseSetDef(def, refs) {\n const items = parseDef(def.valueType._def, {\n ...refs,\n currentPath: [...refs.currentPath, \"items\"],\n });\n const schema = {\n type: \"array\",\n uniqueItems: true,\n items,\n };\n if (def.minSize) {\n setResponseValueAndErrors(schema, \"minItems\", def.minSize.value, def.minSize.message, refs);\n }\n if (def.maxSize) {\n setResponseValueAndErrors(schema, \"maxItems\", def.maxSize.value, def.maxSize.message, refs);\n }\n return schema;\n}\n","import { parseDef } from \"../parseDef.js\";\nexport function parseTupleDef(def, refs) {\n if (def.rest) {\n return {\n type: \"array\",\n minItems: def.items.length,\n items: def.items\n .map((x, i) => parseDef(x._def, {\n ...refs,\n currentPath: [...refs.currentPath, \"items\", `${i}`],\n }))\n .reduce((acc, x) => (x === undefined ? acc : [...acc, x]), []),\n additionalItems: parseDef(def.rest._def, {\n ...refs,\n currentPath: [...refs.currentPath, \"additionalItems\"],\n }),\n };\n }\n else {\n return {\n type: \"array\",\n minItems: def.items.length,\n maxItems: def.items.length,\n items: def.items\n .map((x, i) => parseDef(x._def, {\n ...refs,\n currentPath: [...refs.currentPath, \"items\", `${i}`],\n }))\n .reduce((acc, x) => (x === undefined ? acc : [...acc, x]), []),\n };\n }\n}\n","import { parseAnyDef } from \"./any.js\";\nexport function parseUndefinedDef(refs) {\n return {\n not: parseAnyDef(refs),\n };\n}\n","import { parseAnyDef } from \"./any.js\";\nexport function parseUnknownDef(refs) {\n return parseAnyDef(refs);\n}\n","import { parseDef } from \"../parseDef.js\";\nexport const parseReadonlyDef = (def, refs) => {\n return parseDef(def.innerType._def, refs);\n};\n","import { ZodFirstPartyTypeKind } from \"zod\";\nimport { parseAnyDef } from \"./parsers/any.js\";\nimport { parseArrayDef } from \"./parsers/array.js\";\nimport { parseBigintDef } from \"./parsers/bigint.js\";\nimport { parseBooleanDef } from \"./parsers/boolean.js\";\nimport { parseBrandedDef } from \"./parsers/branded.js\";\nimport { parseCatchDef } from \"./parsers/catch.js\";\nimport { parseDateDef } from \"./parsers/date.js\";\nimport { parseDefaultDef } from \"./parsers/default.js\";\nimport { parseEffectsDef } from \"./parsers/effects.js\";\nimport { parseEnumDef } from \"./parsers/enum.js\";\nimport { parseIntersectionDef } from \"./parsers/intersection.js\";\nimport { parseLiteralDef } from \"./parsers/literal.js\";\nimport { parseMapDef } from \"./parsers/map.js\";\nimport { parseNativeEnumDef } from \"./parsers/nativeEnum.js\";\nimport { parseNeverDef } from \"./parsers/never.js\";\nimport { parseNullDef } from \"./parsers/null.js\";\nimport { parseNullableDef } from \"./parsers/nullable.js\";\nimport { parseNumberDef } from \"./parsers/number.js\";\nimport { parseObjectDef } from \"./parsers/object.js\";\nimport { parseOptionalDef } from \"./parsers/optional.js\";\nimport { parsePipelineDef } from \"./parsers/pipeline.js\";\nimport { parsePromiseDef } from \"./parsers/promise.js\";\nimport { parseRecordDef } from \"./parsers/record.js\";\nimport { parseSetDef } from \"./parsers/set.js\";\nimport { parseStringDef } from \"./parsers/string.js\";\nimport { parseTupleDef } from \"./parsers/tuple.js\";\nimport { parseUndefinedDef } from \"./parsers/undefined.js\";\nimport { parseUnionDef } from \"./parsers/union.js\";\nimport { parseUnknownDef } from \"./parsers/unknown.js\";\nimport { parseReadonlyDef } from \"./parsers/readonly.js\";\nexport const selectParser = (def, typeName, refs) => {\n switch (typeName) {\n case ZodFirstPartyTypeKind.ZodString:\n return parseStringDef(def, refs);\n case ZodFirstPartyTypeKind.ZodNumber:\n return parseNumberDef(def, refs);\n case ZodFirstPartyTypeKind.ZodObject:\n return parseObjectDef(def, refs);\n case ZodFirstPartyTypeKind.ZodBigInt:\n return parseBigintDef(def, refs);\n case ZodFirstPartyTypeKind.ZodBoolean:\n return parseBooleanDef();\n case ZodFirstPartyTypeKind.ZodDate:\n return parseDateDef(def, refs);\n case ZodFirstPartyTypeKind.ZodUndefined:\n return parseUndefinedDef(refs);\n case ZodFirstPartyTypeKind.ZodNull:\n return parseNullDef(refs);\n case ZodFirstPartyTypeKind.ZodArray:\n return parseArrayDef(def, refs);\n case ZodFirstPartyTypeKind.ZodUnion:\n case ZodFirstPartyTypeKind.ZodDiscriminatedUnion:\n return parseUnionDef(def, refs);\n case ZodFirstPartyTypeKind.ZodIntersection:\n return parseIntersectionDef(def, refs);\n case ZodFirstPartyTypeKind.ZodTuple:\n return parseTupleDef(def, refs);\n case ZodFirstPartyTypeKind.ZodRecord:\n return parseRecordDef(def, refs);\n case ZodFirstPartyTypeKind.ZodLiteral:\n return parseLiteralDef(def, refs);\n case ZodFirstPartyTypeKind.ZodEnum:\n return parseEnumDef(def);\n case ZodFirstPartyTypeKind.ZodNativeEnum:\n return parseNativeEnumDef(def);\n case ZodFirstPartyTypeKind.ZodNullable:\n return parseNullableDef(def, refs);\n case ZodFirstPartyTypeKind.ZodOptional:\n return parseOptionalDef(def, refs);\n case ZodFirstPartyTypeKind.ZodMap:\n return parseMapDef(def, refs);\n case ZodFirstPartyTypeKind.ZodSet:\n return parseSetDef(def, refs);\n case ZodFirstPartyTypeKind.ZodLazy:\n return () => def.getter()._def;\n case ZodFirstPartyTypeKind.ZodPromise:\n return parsePromiseDef(def, refs);\n case ZodFirstPartyTypeKind.ZodNaN:\n case ZodFirstPartyTypeKind.ZodNever:\n return parseNeverDef(refs);\n case ZodFirstPartyTypeKind.ZodEffects:\n return parseEffectsDef(def, refs);\n case ZodFirstPartyTypeKind.ZodAny:\n return parseAnyDef(refs);\n case ZodFirstPartyTypeKind.ZodUnknown:\n return parseUnknownDef(refs);\n case ZodFirstPartyTypeKind.ZodDefault:\n return parseDefaultDef(def, refs);\n case ZodFirstPartyTypeKind.ZodBranded:\n return parseBrandedDef(def, refs);\n case ZodFirstPartyTypeKind.ZodReadonly:\n return parseReadonlyDef(def, refs);\n case ZodFirstPartyTypeKind.ZodCatch:\n return parseCatchDef(def, refs);\n case ZodFirstPartyTypeKind.ZodPipeline:\n return parsePipelineDef(def, refs);\n case ZodFirstPartyTypeKind.ZodFunction:\n case ZodFirstPartyTypeKind.ZodVoid:\n case ZodFirstPartyTypeKind.ZodSymbol:\n return undefined;\n default:\n /* c8 ignore next */\n return ((_) => undefined)(typeName);\n }\n};\n","import { ignoreOverride } from \"./Options.js\";\nimport { selectParser } from \"./selectParser.js\";\nimport { getRelativePath } from \"./getRelativePath.js\";\nimport { parseAnyDef } from \"./parsers/any.js\";\nexport function parseDef(def, refs, forceResolution = false) {\n const seenItem = refs.seen.get(def);\n if (refs.override) {\n const overrideResult = refs.override?.(def, refs, seenItem, forceResolution);\n if (overrideResult !== ignoreOverride) {\n return overrideResult;\n }\n }\n if (seenItem && !forceResolution) {\n const seenSchema = get$ref(seenItem, refs);\n if (seenSchema !== undefined) {\n return seenSchema;\n }\n }\n const newItem = { def, path: refs.currentPath, jsonSchema: undefined };\n refs.seen.set(def, newItem);\n const jsonSchemaOrGetter = selectParser(def, def.typeName, refs);\n // If the return was a function, then the inner definition needs to be extracted before a call to parseDef (recursive)\n const jsonSchema = typeof jsonSchemaOrGetter === \"function\"\n ? parseDef(jsonSchemaOrGetter(), refs)\n : jsonSchemaOrGetter;\n if (jsonSchema) {\n addMeta(def, refs, jsonSchema);\n }\n if (refs.postProcess) {\n const postProcessResult = refs.postProcess(jsonSchema, def, refs);\n newItem.jsonSchema = jsonSchema;\n return postProcessResult;\n }\n newItem.jsonSchema = jsonSchema;\n return jsonSchema;\n}\nconst get$ref = (item, refs) => {\n switch (refs.$refStrategy) {\n case \"root\":\n return { $ref: item.path.join(\"/\") };\n case \"relative\":\n return { $ref: getRelativePath(refs.currentPath, item.path) };\n case \"none\":\n case \"seen\": {\n if (item.path.length < refs.currentPath.length &&\n item.path.every((value, index) => refs.currentPath[index] === value)) {\n console.warn(`Recursive reference detected at ${refs.currentPath.join(\"/\")}! Defaulting to any`);\n return parseAnyDef(refs);\n }\n return refs.$refStrategy === \"seen\" ? parseAnyDef(refs) : undefined;\n }\n }\n};\nconst addMeta = (def, refs, jsonSchema) => {\n if (def.description) {\n jsonSchema.description = def.description;\n if (refs.markdownDescription) {\n jsonSchema.markdownDescription = def.description;\n }\n }\n return jsonSchema;\n};\n","import { parseDef } from \"./parseDef.js\";\nimport { getRefs } from \"./Refs.js\";\nimport { parseAnyDef } from \"./parsers/any.js\";\nconst zodToJsonSchema = (schema, options) => {\n const refs = getRefs(options);\n let definitions = typeof options === \"object\" && options.definitions\n ? Object.entries(options.definitions).reduce((acc, [name, schema]) => ({\n ...acc,\n [name]: parseDef(schema._def, {\n ...refs,\n currentPath: [...refs.basePath, refs.definitionPath, name],\n }, true) ?? parseAnyDef(refs),\n }), {})\n : undefined;\n const name = typeof options === \"string\"\n ? options\n : options?.nameStrategy === \"title\"\n ? undefined\n : options?.name;\n const main = parseDef(schema._def, name === undefined\n ? refs\n : {\n ...refs,\n currentPath: [...refs.basePath, refs.definitionPath, name],\n }, false) ?? parseAnyDef(refs);\n const title = typeof options === \"object\" &&\n options.name !== undefined &&\n options.nameStrategy === \"title\"\n ? options.name\n : undefined;\n if (title !== undefined) {\n main.title = title;\n }\n if (refs.flags.hasReferencedOpenAiAnyType) {\n if (!definitions) {\n definitions = {};\n }\n if (!definitions[refs.openAiAnyTypeName]) {\n definitions[refs.openAiAnyTypeName] = {\n // Skipping \"object\" as no properties can be defined and additionalProperties must be \"false\"\n type: [\"string\", \"number\", \"integer\", \"boolean\", \"array\", \"null\"],\n items: {\n $ref: refs.$refStrategy === \"relative\"\n ? \"1\"\n : [\n ...refs.basePath,\n refs.definitionPath,\n refs.openAiAnyTypeName,\n ].join(\"/\"),\n },\n };\n }\n }\n const combined = name === undefined\n ? definitions\n ? {\n ...main,\n [refs.definitionPath]: definitions,\n }\n : main\n : {\n $ref: [\n ...(refs.$refStrategy === \"relative\" ? [] : refs.basePath),\n refs.definitionPath,\n name,\n ].join(\"/\"),\n [refs.definitionPath]: {\n ...definitions,\n [name]: main,\n },\n };\n if (refs.target === \"jsonSchema7\") {\n combined.$schema = \"http://json-schema.org/draft-07/schema#\";\n }\n else if (refs.target === \"jsonSchema2019-09\" || refs.target === \"openAi\") {\n combined.$schema = \"https://json-schema.org/draft/2019-09/schema#\";\n }\n if (refs.target === \"openAi\" &&\n (\"anyOf\" in combined ||\n \"oneOf\" in combined ||\n \"allOf\" in combined ||\n (\"type\" in combined && Array.isArray(combined.type)))) {\n console.warn(\"Warning: OpenAI may not support schemas with unions as roots! Try wrapping it in an object property.\");\n }\n return combined;\n};\nexport { zodToJsonSchema };\n","import { Tool } from \"@modelcontextprotocol/sdk/types\"\n\nexport const supportedTools :Tool[]= [\n {\n \"name\": \"get_asset_platforms\",\n \"description\": \"This endpoint allows you to **query all the asset platforms on HIVE_DATASOURCE_ONE**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"filter\": {\n \"type\": \"string\",\n \"description\": \"apply relevant filters to results\",\n \"enum\": [\n \"nft\"\n ]\n }\n }\n }\n },\n {\n \"name\": \"get_coins_index\",\n \"description\": \"This endpoint allows you to **query all the metadata (image, websites, socials, description, contract address, etc.) and market data (price, ATH, exchange tickers, etc.) of a coin from the HIVE_DATASOURCE_ONE coin page based on a particular coin ID**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"id\": {\n \"type\": \"string\"\n },\n \"community_data\": {\n \"type\": \"boolean\",\n \"description\": \"include community data, default: true\"\n },\n \"developer_data\": {\n \"type\": \"boolean\",\n \"description\": \"include developer data, default: true\"\n },\n \"dex_pair_format\": {\n \"type\": \"string\",\n \"description\": \"set to `symbol` to display DEX pair base and target as symbols, default: `contract_address`\",\n \"enum\": [\n \"contract_address\",\n \"symbol\"\n ]\n },\n \"localization\": {\n \"type\": \"boolean\",\n \"description\": \"include all the localized languages in the response, default: true\"\n },\n \"market_data\": {\n \"type\": \"boolean\",\n \"description\": \"include market data, default: true\"\n },\n \"sparkline\": {\n \"type\": \"boolean\",\n \"description\": \"include sparkline 7 days data, default: false\"\n },\n \"tickers\": {\n \"type\": \"boolean\",\n \"description\": \"include tickers data, default: true\"\n }\n }\n }\n },\n {\n \"name\": \"get_categories\",\n \"description\": \"This endpoint allows you to **query all the coins categories on HIVE_DATASOURCE_ONE**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_coins_list\",\n \"description\": \"This endpoint allows you to **query all the supported coins on HIVE_DATASOURCE_ONE with coins ID, name and symbol**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"include_platform\": {\n \"type\": \"boolean\",\n \"description\": \"include platform and token's contract addresses, default: false\"\n },\n \"status\": {\n \"type\": \"string\",\n \"description\": \"filter by status of coins, default: active\",\n \"enum\": [\n \"active\",\n \"inactive\"\n ]\n }\n }\n }\n },\n {\n \"name\": \"get_new_coins\",\n \"description\": \"This endpoint allows you to **query the latest 200 coins that recently listed on HIVE_DATASOURCE_ONE**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_coins_market_data\",\n \"description\": \"This endpoint allows you to **query all the supported coins with price, market cap, volume and market related data**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"vs_currency\": {\n \"type\": \"string\",\n \"description\": \"target currency of coins and market data <br> *refers to [`/simple/supported_vs_currencies`](/reference/simple-supported-currencies).\"\n },\n \"category\": {\n \"type\": \"string\",\n \"description\": \"filter based on coins' category <br> *refers to [`/coins/categories/list`](/reference/coins-categories-list).\"\n },\n \"ids\": {\n \"type\": \"string\",\n \"description\": \"coins' IDs, comma-separated if querying more than 1 coin. <br> *refers to [`/coins/list`](/reference/coins-list).\"\n },\n \"include_tokens\": {\n \"type\": \"string\",\n \"description\": \"for `symbols` lookups, specify `all` to include all matching tokens <br> Default `top` returns top-ranked tokens (by market cap or volume)\",\n \"enum\": [\n \"top\",\n \"all\"\n ]\n },\n \"locale\": {\n \"type\": \"string\",\n \"description\": \"language background, default: en\",\n \"enum\": [\n \"ar\",\n \"bg\",\n \"cs\",\n \"da\",\n \"de\",\n \"el\",\n \"en\",\n \"es\",\n \"fi\",\n \"fr\",\n \"he\",\n \"hi\",\n \"hr\",\n \"hu\",\n \"id\",\n \"it\",\n \"ja\",\n \"ko\",\n \"lt\",\n \"nl\",\n \"no\",\n \"pl\",\n \"pt\",\n \"ro\",\n \"ru\",\n \"sk\",\n \"sl\",\n \"sv\",\n \"th\",\n \"tr\",\n \"uk\",\n \"vi\",\n \"zh\",\n \"zh-tw\"\n ]\n },\n \"names\": {\n \"type\": \"string\",\n \"description\": \"coins' names, comma-separated if querying more than 1 coin.\"\n },\n \"order\": {\n \"type\": \"string\",\n \"description\": \"sort result by field, default: market_cap_desc\",\n \"enum\": [\n \"market_cap_asc\",\n \"market_cap_desc\",\n \"volume_asc\",\n \"volume_desc\",\n \"id_asc\",\n \"id_desc\"\n ]\n },\n \"page\": {\n \"type\": \"number\",\n \"description\": \"page through results, default: 1\"\n },\n \"per_page\": {\n \"type\": \"number\",\n \"description\": \"total results per page, default: 100 <br> Valid values: 1...250\"\n },\n \"precision\": {\n \"type\": \"string\",\n \"description\": \"decimal place for currency price value\",\n \"enum\": [\n \"full\",\n \"0\",\n \"1\",\n \"2\",\n \"3\",\n \"4\",\n \"5\",\n \"6\",\n \"7\",\n \"8\",\n \"9\",\n \"10\",\n \"11\",\n \"12\",\n \"13\",\n \"14\",\n \"15\",\n \"16\",\n \"17\",\n \"18\"\n ]\n },\n \"price_change_percentage\": {\n \"type\": \"string\",\n \"description\": \"include price change percentage timeframe, comma-separated if query more than 1 price change percentage timeframe <br> Valid values: 1h, 24h, 7d, 14d, 30d, 200d, 1y\"\n },\n \"sparkline\": {\n \"type\": \"boolean\",\n \"description\": \"include sparkline 7 days data, default: false\"\n },\n \"symbols\": {\n \"type\": \"string\",\n \"description\": \"coins' symbols, comma-separated if querying more than 1 coin.\"\n }\n }\n }\n },\n {\n \"name\": \"get_gainers_losers\",\n \"description\": \"This endpoint allows you to **query the top 30 coins with largest price gain and loss by a specific time duration**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"vs_currency\": {\n \"type\": \"string\",\n \"description\": \"target currency of coins <br> *refers to [`/simple/supported_vs_currencies`](/reference/simple-supported-currencies).\"\n },\n \"duration\": {\n \"type\": \"string\",\n \"description\": \"filter result by time range <br> Default value: `24h`\",\n \"enum\": [\n \"1h\",\n \"24h\",\n \"7d\",\n \"14d\",\n \"30d\",\n \"60d\",\n \"1y\"\n ]\n },\n \"top_coins\": {\n \"type\": \"string\",\n \"description\": \"filter result by market cap ranking (top 300 to 1000) or all coins (including coins that do not have market cap) <br> Default value: `1000`\",\n \"enum\": [\n \"300\",\n \"500\",\n \"1000\",\n \"all\"\n ]\n }\n }\n }\n },\n {\n \"name\": \"get_contract_coin\",\n \"description\": \"This endpoint allows you to **query all the metadata (image, websites, socials, description, contract address, etc.) and market data (price, ATH, exchange tickers, etc.) of a coin from the HIVE_DATASOURCE_ONE coin page based on an asset platform and a particular token contract address**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"id\": {\n \"type\": \"string\"\n },\n \"contract_address\": {\n \"type\": \"string\"\n }\n }\n }\n },\n {\n \"name\": \"get_contract_market_chart_range\",\n \"description\": \"This endpoint allows you to **get the historical chart data within certain time range in UNIX along with price, market cap and 24hr volume based on asset platform and particular token contract address**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"id\": {\n \"type\": \"string\"\n },\n \"contract_address\": {\n \"type\": \"string\"\n },\n \"from\": {\n \"type\": \"number\",\n \"description\": \"starting date in UNIX timestamp\"\n },\n \"to\": {\n \"type\": \"number\",\n \"description\": \"ending date in UNIX timestamp\"\n },\n \"vs_currency\": {\n \"type\": \"string\",\n \"description\": \"target currency of market data <br> *refers to [`/simple/supported_vs_currencies`](/reference/simple-supported-currencies).\"\n },\n \"interval\": {\n \"type\": \"string\",\n \"description\": \"data interval, leave empty for auto granularity\",\n \"enum\": [\n \"5m\",\n \"hourly\",\n \"daily\"\n ]\n },\n \"precision\": {\n \"type\": \"string\",\n \"description\": \"decimal place for currency price value\",\n \"enum\": [\n \"full\",\n \"0\",\n \"1\",\n \"2\",\n \"3\",\n \"4\",\n \"5\",\n \"6\",\n \"7\",\n \"8\",\n \"9\",\n \"10\",\n \"11\",\n \"12\",\n \"13\",\n \"14\",\n \"15\",\n \"16\",\n \"17\",\n \"18\"\n ]\n }\n }\n }\n },\n {\n \"name\": \"get_coin_history\",\n \"description\": \"This endpoint allows you to **query the historical data (price, market cap, 24hrs volume, ...) at a given date for a coin based on a particular coin ID**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"id\": {\n \"type\": \"string\"\n },\n \"date\": {\n \"type\": \"string\",\n \"description\": \"the date of data snapshot <br> Format: `dd-mm-yyyy`\"\n },\n \"localization\": {\n \"type\": \"boolean\",\n \"description\": \"include all the localized languages in response, default: true\"\n }\n }\n }\n },\n {\n \"name\": \"get_coin_market_chart_range\",\n \"description\": \"This endpoint allows you to **get the historical chart data of a coin within certain time range in UNIX along with price, market cap and 24hr volume based on particular coin ID**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"id\": {\n \"type\": \"string\"\n },\n \"from\": {\n \"type\": \"number\",\n \"description\": \"starting date in UNIX timestamp \"\n },\n \"to\": {\n \"type\": \"number\",\n \"description\": \"ending date in UNIX timestamp\"\n },\n \"vs_currency\": {\n \"type\": \"string\",\n \"description\": \"target currency of market data <br> *refers to [`/simple/supported_vs_currencies`](/reference/simple-supported-currencies).\"\n },\n \"interval\": {\n \"type\": \"string\",\n \"description\": \"data interval, leave empty for auto granularity\",\n \"enum\": [\n \"5m\",\n \"hourly\",\n \"daily\"\n ]\n },\n \"precision\": {\n \"type\": \"string\",\n \"description\": \"decimal place for currency price value\",\n \"enum\": [\n \"full\",\n \"0\",\n \"1\",\n \"2\",\n \"3\",\n \"4\",\n \"5\",\n \"6\",\n \"7\",\n \"8\",\n \"9\",\n \"10\",\n \"11\",\n \"12\",\n \"13\",\n \"14\",\n \"15\",\n \"16\",\n \"17\",\n \"18\"\n ]\n }\n }\n }\n },\n {\n \"name\": \"get_global_stats\",\n \"description\": \"This endpoint allows you **query cryptocurrency global data including active cryptocurrencies, markets, total crypto market cap and etc**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_nft\",\n \"description\": \"This endpoint allows you to **query all the NFT data (name, floor price, 24hr volume ...) based on the NFT collection ID**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"id\": {\n \"type\": \"string\"\n }\n }\n }\n },\n {\n \"name\": \"get_nfts\",\n \"description\": \"This endpoint allows you to **query all supported NFTs with ID, contract address, name, asset platform ID and symbol on HIVE_DATASOURCE_ONE**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"order\": {\n \"type\": \"string\",\n \"description\": \"use this to sort the order of responses\",\n \"enum\": [\n \"h24_volume_usd_asc\",\n \"h24_volume_usd_desc\",\n \"h24_volume_native_asc\",\n \"h24_volume_native_desc\",\n \"floor_price_native_asc\",\n \"floor_price_native_desc\",\n \"market_cap_native_asc\",\n \"market_cap_native_desc\",\n \"market_cap_usd_asc\",\n \"market_cap_usd_desc\"\n ]\n },\n \"page\": {\n \"type\": \"number\",\n \"description\": \"page through results\"\n },\n \"per_page\": {\n \"type\": \"number\",\n \"description\": \"total results per page <br> Valid values: 1...250\"\n }\n }\n }\n },\n {\n \"name\": \"get_nft_market_chart\",\n \"description\": \"This endpoint allows you **query historical market data of a NFT collection, including floor price, market cap, and 24hr volume, by number of days away from now**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"id\": {\n \"type\": \"string\"\n },\n \"days\": {\n \"type\": \"string\",\n \"description\": \"data up to number of days <br> Valid values: any integer or max\"\n }\n }\n }\n },\n {\n \"name\": \"get_onchain_categories\",\n \"description\": \"This endpoint allows you to **query all the supported categories on HIVE_DATASOURCE_ONE_CONSOLE**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"page\": {\n \"type\": \"integer\",\n \"description\": \"page through results <br> Default value: `1`\"\n },\n \"sort\": {\n \"type\": \"string\",\n \"description\": \"sort the categories by field <br> Default value: `h6_volume_percentage_desc`\",\n \"enum\": [\n \"h1_volume_percentage_desc\",\n \"h6_volume_percentage_desc\",\n \"h12_volume_percentage_desc\",\n \"h24_tx_count_desc\",\n \"h24_volume_usd_desc\",\n \"fdv_usd_desc\",\n \"reserve_in_usd_desc\"\n ]\n }\n }\n }\n },\n {\n \"name\": \"get_pools_by_category\",\n \"description\": \"This endpoint allows you to **query all the pools based on the provided category ID**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"category_id\": {\n \"type\": \"string\"\n },\n \"include\": {\n \"type\": \"string\",\n \"description\": \"attributes to include, comma-separated if more than one to include <br> Available values: `base_token`, `quote_token`, `dex`, `network`. <br> Example: `base_token` or `base_token,dex`\"\n },\n \"page\": {\n \"type\": \"integer\",\n \"description\": \"page through results <br> Default value: `1`\"\n },\n \"sort\": {\n \"type\": \"string\",\n \"description\": \"sort the pools by field <br> Default value: `pool_created_at_desc`\",\n \"enum\": [\n \"m5_trending\",\n \"h1_trending\",\n \"h6_trending\",\n \"h24_trending\",\n \"h24_tx_count_desc\",\n \"h24_volume_usd_desc\",\n \"pool_created_at_desc\",\n \"h24_price_change_percentage_desc\"\n ]\n }\n }\n }\n },\n {\n \"name\": \"get_networks\",\n \"description\": \"This endpoint allows you to **query all the supported networks on HIVE_DATASOURCE_ONE_CONSOLE**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"page\": {\n \"type\": \"integer\",\n \"description\": \"page through results <br> Default value: 1\"\n }\n }\n }\n },\n {\n \"name\": \"get_new_pools\",\n \"description\": \"This endpoint allows you to **query all the latest pools across all networks on HIVE_DATASOURCE_ONE_CONSOLE**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"include\": {\n \"type\": \"string\",\n \"description\": \"attributes to include, comma-separated if more than one to include <br> Available values: `base_token`, `quote_token`, `dex`, `network`\"\n },\n \"page\": {\n \"type\": \"integer\",\n \"description\": \"page through results <br> Default value: 1\"\n }\n }\n }\n },\n {\n \"name\": \"get_new_pools_by_network\",\n \"description\": \"This endpoint allows you to **query all the latest pools based on provided network**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"network\": {\n \"type\": \"string\"\n },\n \"include\": {\n \"type\": \"string\",\n \"description\": \"attributes to include, comma-separated if more than one to include <br> Available values: `base_token`, `quote_token`, `dex`\"\n },\n \"page\": {\n \"type\": \"integer\",\n \"description\": \"page through results <br> Default value: 1\"\n }\n }\n }\n },\n {\n \"name\": \"get_trending_pools\",\n \"description\": \"This endpoint allows you to **query all the trending pools across all networks on HIVE_DATASOURCE_ONE_CONSOLE**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"duration\": {\n \"type\": \"string\",\n \"description\": \"duration to sort trending list by <br> Default value: 24h\",\n \"enum\": [\n \"5m\",\n \"1h\",\n \"6h\",\n \"24h\"\n ]\n },\n \"include\": {\n \"type\": \"string\",\n \"description\": \"attributes to include, comma-separated if more than one to include <br> Available values: `base_token`, `quote_token`, `dex`, `network`. <br> Example: `base_token` or `base_token,dex`\"\n },\n \"page\": {\n \"type\": \"integer\",\n \"description\": \"page through results <br> Default value: 1\"\n }\n }\n }\n },\n {\n \"name\": \"get_trending_pools_by_network\",\n \"description\": \"This endpoint allows you to **query the trending pools based on the provided network**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"network\": {\n \"type\": \"string\"\n },\n \"duration\": {\n \"type\": \"string\",\n \"description\": \"duration to sort trending list by <br> Default value: 24h\",\n \"enum\": [\n \"5m\",\n \"1h\",\n \"6h\",\n \"24h\"\n ]\n },\n \"include\": {\n \"type\": \"string\",\n \"description\": \"attributes to include, comma-separated if more than one to include <br> Available values: `base_token`, `quote_token`, `dex`\"\n },\n \"page\": {\n \"type\": \"integer\",\n \"description\": \"page through results <br> Default value: 1\"\n }\n }\n }\n },\n {\n \"name\": \"get_dexes\",\n \"description\": \"This endpoint allows you to **query all the supported decentralized exchanges (DEXs) based on the provided network on HIVE_DATASOURCE_ONE_CONSOLE**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"network\": {\n \"type\": \"string\"\n },\n \"page\": {\n \"type\": \"integer\",\n \"description\": \"page through results <br> Default value: 1\"\n }\n }\n }\n },\n {\n \"name\": \"get_pools_by_dex\",\n \"description\": \"This endpoint allows you to **query all the top pools based on the provided network and decentralized exchange (DEX)**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"network\": {\n \"type\": \"string\"\n },\n \"dex\": {\n \"type\": \"string\"\n },\n \"include\": {\n \"type\": \"string\",\n \"description\": \"attributes to include, comma-separated if more than one to include <br> Available values: `base_token`, `quote_token`, `dex`\"\n },\n \"page\": {\n \"type\": \"integer\",\n \"description\": \"page through results <br> Default value: 1\"\n },\n \"sort\": {\n \"type\": \"string\",\n \"description\": \"sort the pools by field <br> Default value: h24_tx_count_desc\",\n \"enum\": [\n \"h24_tx_count_desc\",\n \"h24_volume_usd_desc\"\n ]\n }\n }\n }\n },\n {\n \"name\": \"get_pools\",\n \"description\": \"This endpoint allows you to **query all the top pools based on the provided network**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"network\": {\n \"type\": \"string\"\n },\n \"include\": {\n \"type\": \"string\",\n \"description\": \"attributes to include, comma-separated if more than one to include <br> Available values: `base_token`, `quote_token`, `dex`\"\n },\n \"page\": {\n \"type\": \"integer\",\n \"description\": \"page through results <br> Default value: 1\"\n },\n \"sort\": {\n \"type\": \"string\",\n \"description\": \"sort the pools by field <br> Default value: h24_tx_count_desc\",\n \"enum\": [\n \"h24_tx_count_desc\",\n \"h24_volume_usd_desc\"\n ]\n }\n }\n }\n },\n {\n \"name\": \"get_pools_by_address\",\n \"description\": \"This endpoint allows you to **query the specific pool based on the provided network and pool address**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"network\": {\n \"type\": \"string\"\n },\n \"address\": {\n \"type\": \"string\"\n },\n \"include\": {\n \"type\": \"string\",\n \"description\": \"attributes to include, comma-separated if more than one to include <br> Available values: `base_token`, `quote_token`, `dex`\"\n },\n \"include_volume_breakdown\": {\n \"type\": \"boolean\",\n \"description\": \"include volume breakdown, default: false\"\n }\n }\n }\n },\n {\n \"name\": \"get_pool_info\",\n \"description\": \"This endpoint allows you to **query pool metadata (base and quote token details, image, socials, websites, description, contract address, etc.) based on a provided pool contract address on a network**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"network\": {\n \"type\": \"string\"\n },\n \"pool_address\": {\n \"type\": \"string\"\n }\n }\n }\n },\n {\n \"name\": \"get_pool_ohlcv\",\n \"description\": \"This endpoint allows you to **get the OHLCV chart (Open, High, Low, Close, Volume) of a pool based on the provided pool address on a network**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"network\": {\n \"type\": \"string\"\n },\n \"pool_address\": {\n \"type\": \"string\"\n },\n \"timeframe\": {\n \"type\": \"string\",\n \"enum\": [\n \"day\",\n \"hour\",\n \"minute\"\n ]\n },\n \"token\": {\n \"type\": \"string\",\n \"description\": \"return OHLCV for token <br> use this to invert the chart <br> Available values: 'base', 'quote' or token address <br> Default value: 'base'\"\n },\n \"aggregate\": {\n \"type\": \"string\",\n \"description\": \"time period to aggregate each OHLCV <br> Available values (day): `1` <br> Available values (hour): `1` , `4` , `12` <br> Available values (minute): `1` , `5` , `15` <br> Default value: 1\"\n },\n \"before_timestamp\": {\n \"type\": \"integer\",\n \"description\": \"return OHLCV data before this timestamp (integer seconds since epoch)\"\n },\n \"currency\": {\n \"type\": \"string\",\n \"description\": \"return OHLCV in USD or quote token <br> Default value: usd\",\n \"enum\": [\n \"usd\",\n \"token\"\n ]\n },\n \"include_empty_intervals\": {\n \"type\": \"boolean\",\n \"description\": \"include empty intervals with no trade data, default: false\"\n },\n \"limit\": {\n \"type\": \"integer\",\n \"description\": \"number of OHLCV results to return, maximum 1000 <br> Default value: 100\"\n }\n }\n }\n },\n {\n \"name\": \"get_pool_trades\",\n \"description\": \"This endpoint allows you to **query the last 300 trades in the past 24 hours based on the provided pool address**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"network\": {\n \"type\": \"string\"\n },\n \"pool_address\": {\n \"type\": \"string\"\n },\n \"token\": {\n \"type\": \"string\",\n \"description\": \"return trades for token <br> use this to invert the chart <br> Available values: 'base', 'quote' or token address <br> Default value: 'base'\"\n },\n \"trade_volume_in_usd_greater_than\": {\n \"type\": \"number\",\n \"description\": \"filter trades by trade volume in USD greater than this value <br> Default value: 0\"\n }\n }\n }\n },\n {\n \"name\": \"get_tokens_by_address\",\n \"description\": \"This endpoint allows you to **query specific token data based on the provided token contract address on a network**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"network\": {\n \"type\": \"string\"\n },\n \"address\": {\n \"type\": \"string\"\n },\n \"include\": {\n \"type\": \"string\",\n \"description\": \"attributes to include\",\n \"enum\": [\n \"top_pools\"\n ]\n }\n }\n }\n },\n {\n \"name\": \"get_token_info\",\n \"description\": \"This endpoint allows you to **query token metadata (name, symbol, HIVE_DATASOURCE_ONE ID, image, socials, websites, description, etc.) based on a provided token contract address on a network**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"network\": {\n \"type\": \"string\"\n },\n \"address\": {\n \"type\": \"string\"\n }\n }\n }\n },\n {\n \"name\": \"get_token_top_holders\",\n \"description\": \"This endpoint allows you to **query top token holders based on the provided token contract address on a network**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"network\": {\n \"type\": \"string\"\n },\n \"address\": {\n \"type\": \"string\"\n },\n \"holders\": {\n \"type\": \"string\",\n \"description\": \"number of top token holders to return, you may use any integer or `max` <br> Default value: 10\"\n }\n }\n }\n },\n {\n \"name\": \"get_token_holders_chart\",\n \"description\": \"This endpoint allows you to **get the historical token holders chart based on the provided token contract address on a network**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"network\": {\n \"type\": \"string\"\n },\n \"token_address\": {\n \"type\": \"string\"\n },\n \"days\": {\n \"type\": \"string\",\n \"description\": \"number of days to return the historical token holders chart <br> Default value: 7\",\n \"enum\": [\n \"7\",\n \"30\",\n \"max\"\n ]\n }\n }\n }\n },\n {\n \"name\": \"get_token_ohlcv\",\n \"description\": \"This endpoint allows you to **get the OHLCV chart (Open, High, Low, Close, Volume) of a token based on the provided token address on a network**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"network\": {\n \"type\": \"string\"\n },\n \"token_address\": {\n \"type\": \"string\"\n },\n \"timeframe\": {\n \"type\": \"string\",\n \"enum\": [\n \"day\",\n \"hour\",\n \"minute\"\n ]\n },\n \"aggregate\": {\n \"type\": \"string\",\n \"description\": \"time period to aggregate each OHLCV <br> Available values (day): `1` <br> Available values (hour): `1` , `4` , `12` <br> Available values (minute): `1` , `5` , `15` <br> Default value: 1\"\n },\n \"before_timestamp\": {\n \"type\": \"integer\",\n \"description\": \"return OHLCV data before this timestamp (integer seconds since epoch)\"\n },\n \"currency\": {\n \"type\": \"string\",\n \"description\": \"return OHLCV in USD or quote token <br> Default value: usd\",\n \"enum\": [\n \"usd\",\n \"token\"\n ]\n },\n \"include_empty_intervals\": {\n \"type\": \"boolean\",\n \"description\": \"include empty intervals with no trade data, default: false\"\n },\n \"limit\": {\n \"type\": \"integer\",\n \"description\": \"number of OHLCV results to return, maximum 1000 <br> Default value: 100\"\n }\n }\n }\n },\n {\n \"name\": \"get_token_pools\",\n \"description\": \"This endpoint allows you to **query top pools based on the provided token contract address on a network**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"network\": {\n \"type\": \"string\"\n },\n \"token_address\": {\n \"type\": \"string\"\n },\n \"include\": {\n \"type\": \"string\",\n \"description\": \"attributes to include, comma-separated if more than one to include <br> Available values: `base_token`, `quote_token`, `dex`\"\n },\n \"page\": {\n \"type\": \"integer\",\n \"description\": \"page through results <br> Default value: 1\"\n },\n \"sort\": {\n \"type\": \"string\",\n \"description\": \"sort the pools by field <br> Default value: h24_volume_usd_liquidity_desc\",\n \"enum\": [\n \"h24_volume_usd_liquidity_desc\",\n \"h24_tx_count_desc\",\n \"h24_volume_usd_desc\"\n ]\n }\n }\n }\n },\n {\n \"name\": \"get_token_trades\",\n \"description\": \"This endpoint allows you to **query the last 300 trades in the past 24 hours, across all pools, based on the provided token contract address on a network**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"network\": {\n \"type\": \"string\"\n },\n \"token_address\": {\n \"type\": \"string\"\n },\n \"trade_volume_in_usd_greater_than\": {\n \"type\": \"number\",\n \"description\": \"filter trades by trade volume in USD greater than this value <br> Default value: 0\"\n }\n }\n }\n },\n {\n \"name\": \"filter_pools\",\n \"description\": \"This endpoint allows you to **query pools based on various filters across all networks on HIVE_DATASOURCE_ONE_CONSOLE**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"buy_tax_percentage_max\": {\n \"type\": \"number\",\n \"description\": \"maximum buy tax percentage\"\n },\n \"buy_tax_percentage_min\": {\n \"type\": \"number\",\n \"description\": \"minimum buy tax percentage\"\n },\n \"buys_duration\": {\n \"type\": \"string\",\n \"description\": \"duration for buy transactions metric <br> Default value: 24h\",\n \"enum\": [\n \"5m\",\n \"1h\",\n \"6h\",\n \"24h\"\n ]\n },\n \"buys_max\": {\n \"type\": \"integer\",\n \"description\": \"maximum number of buy transactions\"\n },\n \"buys_min\": {\n \"type\": \"integer\",\n \"description\": \"minimum number of buy transactions\"\n },\n \"checks\": {\n \"type\": \"string\",\n \"description\": \"filter options for various checks, comma-separated if more than one <br> Available values: `no_honeypot`, `good_gt_score`, `has_social`\"\n },\n \"dexes\": {\n \"type\": \"string\",\n \"description\": \"filter pools by DEXes, comma-separated if more than one <br> DEX ID refers to [/networks/{network}/dexes](/reference/dexes-list)\"\n },\n \"fdv_usd_max\": {\n \"type\": \"number\",\n \"description\": \"maximum fully diluted value in USD\"\n },\n \"fdv_usd_min\": {\n \"type\": \"number\",\n \"description\": \"minimum fully diluted value in USD\"\n },\n \"h24_volume_usd_max\": {\n \"type\": \"number\",\n \"description\": \"maximum 24hr volume in USD\"\n },\n \"h24_volume_usd_min\": {\n \"type\": \"number\",\n \"description\": \"minimum 24hr volume in USD\"\n },\n \"include\": {\n \"type\": \"string\",\n \"description\": \"attributes to include, comma-separated if more than one to include <br> Available values: `base_token`, `quote_token`, `dex`, `network`\"\n },\n \"networks\": {\n \"type\": \"string\",\n \"description\": \"filter pools by networks, comma-separated if more than one <br> Network ID refers to [/networks](/reference/networks-list)\"\n },\n \"page\": {\n \"type\": \"integer\",\n \"description\": \"page through results <br> Default value: 1\"\n },\n \"pool_created_hour_max\": {\n \"type\": \"number\",\n \"description\": \"maximum pool age in hours\"\n },\n \"pool_created_hour_min\": {\n \"type\": \"number\",\n \"description\": \"minimum pool age in hours\"\n },\n \"reserve_in_usd_max\": {\n \"type\": \"number\",\n \"description\": \"maximum reserve in USD\"\n },\n \"reserve_in_usd_min\": {\n \"type\": \"number\",\n \"description\": \"minimum reserve in USD\"\n },\n \"sell_tax_percentage_max\": {\n \"type\": \"number\",\n \"description\": \"maximum sell tax percentage\"\n },\n \"sell_tax_percentage_min\": {\n \"type\": \"number\",\n \"description\": \"minimum sell tax percentage\"\n },\n \"sells_duration\": {\n \"type\": \"string\",\n \"description\": \"duration for sell transactions metric <br> Default value: 24h\",\n \"enum\": [\n \"5m\",\n \"1h\",\n \"6h\",\n \"24h\"\n ]\n },\n \"sells_max\": {\n \"type\": \"integer\",\n \"description\": \"maximum number of sell transactions\"\n },\n \"sells_min\": {\n \"type\": \"integer\",\n \"description\": \"minimum number of sell transactions\"\n },\n \"sort\": {\n \"type\": \"string\",\n \"description\": \"sort the pools by field <br> Default value: h6_trending\",\n \"enum\": [\n \"m5_trending\",\n \"h1_trending\",\n \"h6_trending\",\n \"h24_trending\",\n \"h24_tx_count_desc\",\n \"h24_volume_usd_desc\",\n \"h24_price_change_percentage_desc\",\n \"pool_created_at_desc\"\n ]\n },\n \"tx_count_duration\": {\n \"type\": \"string\",\n \"description\": \"duration for transaction count metric <br> Default value: 24h\",\n \"enum\": [\n \"5m\",\n \"1h\",\n \"6h\",\n \"24h\"\n ]\n },\n \"tx_count_max\": {\n \"type\": \"integer\",\n \"description\": \"maximum transaction count\"\n },\n \"tx_count_min\": {\n \"type\": \"integer\",\n \"description\": \"minimum transaction count\"\n }\n }\n }\n },\n {\n \"name\": \"search_trending_pools\",\n \"description\": \"This endpoint allows you to **query all the trending search pools across all networks on HIVE_DATASOURCE_ONE_CONSOLE**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"include\": {\n \"type\": \"string\",\n \"description\": \"attributes to include, comma-separated if more than one to include <br> Available values: `base_token`, `quote_token`, `dex`, `network`\"\n },\n \"pools\": {\n \"type\": \"integer\",\n \"description\": \"number of pools to return, maximum 10 <br> Default value: 4\"\n }\n }\n }\n },\n {\n \"name\": \"search_pools\",\n \"description\": \"This endpoint allows you to **search for pools on a network**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"include\": {\n \"type\": \"string\",\n \"description\": \"attributes to include, comma-separated if more than one to include <br> Available values: `base_token`, `quote_token`, `dex`\"\n },\n \"network\": {\n \"type\": \"string\",\n \"description\": \"network ID <br> *refers to [/networks](/reference/networks-list)\"\n },\n \"page\": {\n \"type\": \"integer\",\n \"description\": \"page through results <br> Default value: 1\"\n },\n \"query\": {\n \"type\": \"string\",\n \"description\": \"search query\"\n }\n }\n }\n },\n {\n \"name\": \"get_onchain_token_price\",\n \"description\": \"This endpoint allows you to **get token price based on the provided token contract address on a network**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"network\": {\n \"type\": \"string\"\n },\n \"addresses\": {\n \"type\": \"string\"\n },\n \"include_24hr_price_change\": {\n \"type\": \"boolean\",\n \"description\": \"include 24hr price change, default: false\"\n },\n \"include_24hr_vol\": {\n \"type\": \"boolean\",\n \"description\": \"include 24hr volume, default: false\"\n },\n \"include_market_cap\": {\n \"type\": \"boolean\",\n \"description\": \"include market capitalization, default: false\"\n },\n \"include_total_reserve_in_usd\": {\n \"type\": \"boolean\",\n \"description\": \"include total reserve in USD, default: false\"\n },\n \"mcap_fdv_fallback\": {\n \"type\": \"boolean\",\n \"description\": \"return FDV if market cap is not available, default: false\"\n }\n }\n }\n },\n {\n \"name\": \"search_all\",\n \"description\": \"This endpoint allows you to **search for coins, categories and markets listed on HIVE_DATASOURCE_ONE**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"query\": {\n \"type\": \"string\",\n \"description\": \"search query\"\n }\n }\n }\n },\n {\n \"name\": \"get_trending\",\n \"description\": \"This endpoint allows you **query trending search coins, NFTs and categories on HIVE_DATASOURCE_ONE in the last 24 hours**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"show_max\": {\n \"type\": \"string\",\n \"description\": \"show max number of results available for the given type <br> Available values: `coins`, `nfts`, `categories` <br> Example: `coins` or `coins,nfts,categories`\"\n }\n }\n }\n },\n {\n \"name\": \"get_price\",\n \"description\": \"This endpoint allows you to **query the prices of one or more coins by using their unique Coin API IDs**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"vs_currencies\": {\n \"type\": \"string\",\n \"description\": \"target currency of coins, comma-separated if querying more than 1 currency. <br> *refers to [`/simple/supported_vs_currencies`](/reference/simple-supported-currencies).\"\n },\n \"ids\": {\n \"type\": \"string\",\n \"description\": \"coins' IDs, comma-separated if querying more than 1 coin. <br> *refers to [`/coins/list`](/reference/coins-list).\"\n },\n \"include_24hr_change\": {\n \"type\": \"boolean\",\n \"description\": \"include 24hr change, default: false\"\n },\n \"include_24hr_vol\": {\n \"type\": \"boolean\",\n \"description\": \"include 24hr volume, default: false\"\n },\n \"include_last_updated_at\": {\n \"type\": \"boolean\",\n \"description\": \"include last updated price time in UNIX, default: false\"\n },\n \"include_market_cap\": {\n \"type\": \"boolean\",\n \"description\": \"include market capitalization, default: false\"\n },\n \"include_tokens\": {\n \"type\": \"string\",\n \"description\": \"for `symbols` lookups, specify `all` to include all matching tokens <br> Default `top` returns top-ranked tokens (by market cap or volume)\",\n \"enum\": [\n \"top\",\n \"all\"\n ]\n },\n \"names\": {\n \"type\": \"string\",\n \"description\": \"coins' names, comma-separated if querying more than 1 coin.\"\n },\n \"precision\": {\n \"type\": \"string\",\n \"description\": \"decimal place for currency price value\",\n \"enum\": [\n \"full\",\n \"0\",\n \"1\",\n \"2\",\n \"3\",\n \"4\",\n \"5\",\n \"6\",\n \"7\",\n \"8\",\n \"9\",\n \"10\",\n \"11\",\n \"12\",\n \"13\",\n \"14\",\n \"15\",\n \"16\",\n \"17\",\n \"18\"\n ]\n },\n \"symbols\": {\n \"type\": \"string\",\n \"description\": \"coins' symbols, comma-separated if querying more than 1 coin.\"\n }\n }\n }\n },\n {\n \"name\": \"get_supported_currencies\",\n \"description\": \"This endpoint allows you to **query all the supported currencies on HIVE_DATASOURCE_ONE**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_token_price_by_contract\",\n \"description\": \"This endpoint allows you to **query one or more token prices using their token contract addresses**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"id\": {\n \"type\": \"string\"\n },\n \"contract_addresses\": {\n \"type\": \"string\",\n \"description\": \"the contract addresses of tokens, comma-separated if querying more than 1 token's contract address\"\n },\n \"vs_currencies\": {\n \"type\": \"string\",\n \"description\": \"target currency of coins, comma-separated if querying more than 1 currency. <br> *refers to [`/simple/supported_vs_currencies`](/reference/simple-supported-currencies).\"\n },\n \"include_24hr_change\": {\n \"type\": \"boolean\",\n \"description\": \"include 24hr change <br> default: false\"\n },\n \"include_24hr_vol\": {\n \"type\": \"boolean\",\n \"description\": \"include 24hr volume, default: false\"\n },\n \"include_last_updated_at\": {\n \"type\": \"boolean\",\n \"description\": \"include last updated price time in UNIX , default: false\"\n },\n \"include_market_cap\": {\n \"type\": \"boolean\",\n \"description\": \"include market capitalization, default: false\"\n },\n \"precision\": {\n \"type\": \"string\",\n \"description\": \"decimal place for currency price value\",\n \"enum\": [\n \"full\",\n \"0\",\n \"1\",\n \"2\",\n \"3\",\n \"4\",\n \"5\",\n \"6\",\n \"7\",\n \"8\",\n \"9\",\n \"10\",\n \"11\",\n \"12\",\n \"13\",\n \"14\",\n \"15\",\n \"16\",\n \"17\",\n \"18\"\n ]\n }\n }\n }\n },\n {\n \"name\": \"get_coin_tickers\",\n \"description\": \"This endpoint allows you to **query the coin tickers on both centralized exchange (CEX) and decentralized exchange (DEX) based on a particular coin ID**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"id\": {\n \"type\": \"string\",\n \"description\": \"coin id (use /coins/list endpoint to get the coin id)\"\n },\n \"exchange_ids\": {\n \"type\": \"string\",\n \"description\": \"filter results by exchange_ids (comma-separated if querying more than 1 exchange)\"\n },\n \"include_exchange_logo\": {\n \"type\": \"boolean\",\n \"description\": \"flag to show exchange logo, default: false\"\n },\n \"page\": {\n \"type\": \"integer\",\n \"description\": \"page through results, default: 1\"\n },\n \"order\": {\n \"type\": \"string\",\n \"description\": \"valid values: trust_score_desc (default), trust_score_asc, volume_desc\"\n },\n \"depth\": {\n \"type\": \"boolean\",\n \"description\": \"flag to show 2% orderbook depth, default: false\"\n }\n },\n \"required\": [\n \"id\"\n ]\n }\n },\n {\n \"name\": \"get_coin_historical_chart\",\n \"description\": \"This endpoint allows you to **get the historical chart data of a coin including time in UNIX, price, market cap and 24hr volume based on particular coin ID**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"id\": {\n \"type\": \"string\",\n \"description\": \"coin id (use /coins/list endpoint to get the coin id)\"\n },\n \"vs_currency\": {\n \"type\": \"string\",\n \"description\": \"target currency of coins (usd, eur, jpy, etc.)\"\n },\n \"days\": {\n \"type\": \"string\",\n \"description\": \"data up to number of days ago (1/7/14/30/90/180/365/max)\"\n },\n \"interval\": {\n \"type\": \"string\",\n \"description\": \"data interval. Automatically calculated, or specify 5m, hourly (Enterprise only)\",\n \"enum\": [\n \"5m\",\n \"hourly\"\n ]\n },\n \"precision\": {\n \"type\": \"string\",\n \"description\": \"decimal place for currency price value\",\n \"enum\": [\n \"full\",\n \"0\",\n \"1\",\n \"2\",\n \"3\",\n \"4\",\n \"5\",\n \"6\",\n \"7\",\n \"8\",\n \"9\",\n \"10\",\n \"11\",\n \"12\",\n \"13\",\n \"14\",\n \"15\",\n \"16\",\n \"17\",\n \"18\"\n ]\n }\n },\n \"required\": [\n \"id\",\n \"vs_currency\",\n \"days\"\n ]\n }\n },\n {\n \"name\": \"get_categories_market_data\",\n \"description\": \"This endpoint allows you to **query all the coins categories with market data (market cap, volume, ...) on HIVE_DATASOURCE_ONE**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"order\": {\n \"type\": \"string\",\n \"description\": \"sort results by field\"\n }\n }\n }\n },\n {\n \"name\": \"get_exchanges\",\n \"description\": \"This endpoint allows you to **query all the supported exchanges with exchanges' data (ID, name, country, ...) that have active trading volumes on HIVE_DATASOURCE_ONE**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"per_page\": {\n \"type\": \"integer\",\n \"description\": \"total results per page, default: 100\"\n },\n \"page\": {\n \"type\": \"integer\",\n \"description\": \"page through results, default: 1\"\n }\n }\n }\n },\n {\n \"name\": \"get_exchanges_list\",\n \"description\": \"This endpoint allows you to **query all the exchanges with ID and name**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_exchange\",\n \"description\": \"This endpoint allows you to **query exchange's data (name, year established, country, ...), exchange volume in BTC and top 100 tickers based on exchange's ID**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"id\": {\n \"type\": \"string\",\n \"description\": \"exchange id (use /exchanges/list endpoint to get exchange id)\"\n },\n \"dex_pair_format\": {\n \"type\": \"string\",\n \"description\": \"set to symbol to display DEX pair base and target as symbols, default: contract_address\",\n \"enum\": [\n \"contract_address\",\n \"symbol\"\n ]\n }\n },\n \"required\": [\n \"id\"\n ]\n }\n },\n {\n \"name\": \"get_exchange_tickers\",\n \"description\": \"This endpoint allows you to **query exchange's tickers based on exchange's ID**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"id\": {\n \"type\": \"string\",\n \"description\": \"exchange id (use /exchanges/list endpoint to get exchange id)\"\n },\n \"coin_ids\": {\n \"type\": \"string\",\n \"description\": \"filter results by coin_ids (comma-separated if querying more than 1 coin)\"\n },\n \"include_exchange_logo\": {\n \"type\": \"boolean\",\n \"description\": \"flag to show exchange logo, default: false\"\n },\n \"page\": {\n \"type\": \"integer\",\n \"description\": \"page through results, default: 1\"\n },\n \"depth\": {\n \"type\": \"boolean\",\n \"description\": \"flag to show 2% orderbook depth, default: false\"\n },\n \"order\": {\n \"type\": \"string\",\n \"description\": \"valid values: trust_score_desc (default), trust_score_asc, volume_desc, base_target\"\n },\n \"dex_pair_format\": {\n \"type\": \"string\",\n \"description\": \"set to symbol to display DEX pair base and target as symbols, default: contract_address\",\n \"enum\": [\n \"contract_address\",\n \"symbol\"\n ]\n }\n },\n \"required\": [\n \"id\"\n ]\n }\n },\n {\n \"name\": \"get_exchange_volume_chart\",\n \"description\": \"This endpoint allows you to **query the historical volume chart data with time in UNIX and trading volume data in BTC based on exchange's ID**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"id\": {\n \"type\": \"string\",\n \"description\": \"exchange id (use /exchanges/list endpoint to get exchange id)\"\n },\n \"days\": {\n \"type\": \"integer\",\n \"description\": \"data up to number of days ago (1/7/14/30/90/180/365)\"\n }\n },\n \"required\": [\n \"id\",\n \"days\"\n ]\n }\n },\n {\n \"name\": \"get_exchange_volume_chart_range\",\n \"description\": \"This endpoint allows you to **query the historical volume chart data within a specific time range with time in UNIX and trading volume data in BTC based on exchange's ID**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"id\": {\n \"type\": \"string\",\n \"description\": \"exchange id (use /exchanges/list endpoint to get exchange id)\"\n },\n \"from\": {\n \"type\": \"integer\",\n \"description\": \"from date in UNIX timestamp\"\n },\n \"to\": {\n \"type\": \"integer\",\n \"description\": \"to date in UNIX timestamp\"\n }\n },\n \"required\": [\n \"id\",\n \"from\",\n \"to\"\n ]\n }\n },\n {\n \"name\": \"get_derivatives_tickers\",\n \"description\": \"This endpoint allows you to **query all the tickers from derivatives exchanges on HIVE_DATASOURCE_ONE**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"include_tickers\": {\n \"type\": \"string\",\n \"description\": \"include all or unexpired tickers, default: unexpired\",\n \"enum\": [\n \"all\",\n \"unexpired\"\n ]\n }\n }\n }\n },\n {\n \"name\": \"get_derivatives_exchanges\",\n \"description\": \"This endpoint allows you to **query all the derivatives exchanges with related data (ID, name, open interest, ...) on HIVE_DATASOURCE_ONE**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"order\": {\n \"type\": \"string\",\n \"description\": \"sort results by field\"\n },\n \"per_page\": {\n \"type\": \"integer\",\n \"description\": \"total results per page, default: 100\"\n },\n \"page\": {\n \"type\": \"integer\",\n \"description\": \"page through results, default: 1\"\n }\n }\n }\n },\n {\n \"name\": \"get_derivatives_exchange\",\n \"description\": \"This endpoint allows you to **query the derivatives exchange's related data (ID, name, open interest, ...) based on the exchanges' ID**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"id\": {\n \"type\": \"string\",\n \"description\": \"derivatives exchange id\"\n },\n \"include_tickers\": {\n \"type\": \"string\",\n \"description\": \"include all or unexpired tickers, leave blank to omit\",\n \"enum\": [\n \"all\",\n \"unexpired\"\n ]\n }\n },\n \"required\": [\n \"id\"\n ]\n }\n },\n {\n \"name\": \"get_derivatives_exchanges_list\",\n \"description\": \"This endpoint allows you to **query all the derivatives exchanges with ID and name**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_btc_exchange_rates\",\n \"description\": \"This endpoint allows you to **query BTC exchange rates with other currencies**. You may use this endpoint to convert the response data, which is originally in BTC, to other currencies.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_global_defi\",\n \"description\": \"This endpoint allows you **query top 100 cryptocurrency global decentralized finance (DeFi) data including DeFi market cap, trading volume**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_global_market_cap_chart\",\n \"description\": \"This endpoint allows you to **query global market cap chart data**. Get historical global market cap chart data with timestamps.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"days\": {\n \"type\": \"string\",\n \"description\": \"Data up to number of days ago (1/7/14/30/90/180/365/max)\",\n \"enum\": [\n \"1\",\n \"7\",\n \"14\",\n \"30\",\n \"90\",\n \"180\",\n \"365\",\n \"max\"\n ]\n },\n \"vs_currency\": {\n \"type\": \"string\",\n \"description\": \"Target currency of market cap data (default: usd)\",\n \"default\": \"usd\"\n }\n },\n \"required\": [\n \"days\"\n ]\n }\n },\n {\n \"name\": \"get_companies_treasury\",\n \"description\": \"This endpoint allows you to **query public companies Bitcoin or Ethereum holdings**. Get detailed information about public companies and their cryptocurrency treasury holdings.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"coin_id\": {\n \"type\": \"string\",\n \"description\": \"Target cryptocurrency (bitcoin or ethereum)\",\n \"enum\": [\n \"bitcoin\",\n \"ethereum\"\n ]\n }\n },\n \"required\": [\n \"coin_id\"\n ]\n }\n },\n {\n \"name\": \"get_network_trending_pools\",\n \"description\": \"This endpoint allows you to **query the trending pools based on the provided network**\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"network\": {\n \"type\": \"string\",\n \"description\": \"Network ID (refers to /onchain/networks)\"\n },\n \"duration\": {\n \"type\": \"string\",\n \"description\": \"Duration to sort trending list by (Default: 24h)\",\n \"enum\": [\n \"5m\",\n \"1h\",\n \"6h\",\n \"24h\"\n ],\n \"default\": \"24h\"\n },\n \"include\": {\n \"type\": \"string\",\n \"description\": \"Attributes to include, comma-separated (base_token, quote_token, dex)\"\n },\n \"page\": {\n \"type\": \"integer\",\n \"description\": \"Page through results (Default: 1)\",\n \"default\": 1\n }\n },\n \"required\": [\n \"network\"\n ]\n }\n },\n {\n \"name\": \"get_multi_pools\",\n \"description\": \"This endpoint allows you to **query multiple pools data based on the provided pool addresses on a network**. You can query up to 30 pool addresses per request.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"network\": {\n \"type\": \"string\",\n \"description\": \"Network ID (refers to /onchain/networks)\"\n },\n \"addresses\": {\n \"type\": \"string\",\n \"description\": \"Pool addresses, comma-separated (up to 30 addresses)\"\n },\n \"include\": {\n \"type\": \"string\",\n \"description\": \"Attributes to include, comma-separated (base_token, quote_token, dex)\"\n }\n },\n \"required\": [\n \"network\",\n \"addresses\"\n ]\n }\n },\n {\n \"name\": \"get_multi_tokens\",\n \"description\": \"This endpoint allows you to **query multiple tokens data based on the provided token contract addresses on a network**. You can query up to 50 contract addresses per request (Paid plan subscribers only).\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"network\": {\n \"type\": \"string\",\n \"description\": \"Network ID (refers to /onchain/networks)\"\n },\n \"addresses\": {\n \"type\": \"string\",\n \"description\": \"Token contract addresses, comma-separated (up to 50 addresses)\"\n },\n \"include\": {\n \"type\": \"string\",\n \"description\": \"Attributes to include (top_pools)\",\n \"enum\": [\n \"top_pools\"\n ]\n }\n },\n \"required\": [\n \"network\",\n \"addresses\"\n ]\n }\n },\n {\n \"name\": \"get_recently_updated_tokens\",\n \"description\": \"This endpoint allows you to **query the most recently updated tokens information (metadata) across all networks**. Returns tokens with recently updated metadata such as socials, websites, descriptions, etc.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"page\": {\n \"type\": \"integer\",\n \"description\": \"Page through results (Default: 1)\",\n \"default\": 1\n },\n \"include\": {\n \"type\": \"string\",\n \"description\": \"Attributes to include, comma-separated (network)\",\n \"enum\": [\n \"network\"\n ]\n }\n }\n }\n },\n {\n \"name\": \"get_nft_tickers\",\n \"description\": \"Execute the get_nft_tickers tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_nft_by_contract\",\n \"description\": \"Execute the get_nft_by_contract tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_nft_markets\",\n \"description\": \"Execute the get_nft_markets tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_coin_ohlc\",\n \"description\": \"Execute the get_coin_ohlc tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_entities_list\",\n \"description\": \"Execute the get_entities_list tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_treasury_by_entity\",\n \"description\": \"Execute the get_treasury_by_entity tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_treasury_holding_chart\",\n \"description\": \"Execute the get_treasury_holding_chart tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_treasury_transaction_history\",\n \"description\": \"Execute the get_treasury_transaction_history tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_nft_contract_market_chart\",\n \"description\": \"Execute the get_nft_contract_market_chart tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_contract_market_chart\",\n \"description\": \"Execute the get_contract_market_chart tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_defi_protocols\",\n \"description\": \"Get a list of DeFi protocols with TVL metrics. Supports pagination with limit (max 100) and offset parameters. Default limit is 50.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Maximum number of protocols to return (default: 200, max: 1000)\"\n }\n }\n }\n },\n {\n \"name\": \"get_defi_protocol\",\n \"description\": \"Get detailed information about a specific DeFi protocol including historical TVL data\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"protocol\": {\n \"type\": \"string\",\n \"description\": \"Protocol slug (e.g., \\\"uniswap\\\", \\\"aave\\\", \\\"compound\\\")\"\n }\n },\n \"required\": [\n \"protocol\"\n ]\n }\n },\n {\n \"name\": \"get_protocol_tvl\",\n \"description\": \"Get current TVL (Total Value Locked) for a specific protocol as a single number\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"protocol\": {\n \"type\": \"string\",\n \"description\": \"Protocol slug (e.g., \\\"uniswap\\\", \\\"aave\\\", \\\"compound\\\")\"\n }\n },\n \"required\": [\n \"protocol\"\n ]\n }\n },\n {\n \"name\": \"get_protocol_fees\",\n \"description\": \"Get fee data for a specific protocol\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"protocol\": {\n \"type\": \"string\",\n \"description\": \"Protocol name\"\n }\n },\n \"required\": [\n \"protocol\"\n ]\n }\n },\n {\n \"name\": \"get_chains\",\n \"description\": \"Get a list of all blockchain networks with their current TVL\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Maximum number of chains to return (default: 100)\"\n }\n }\n }\n },\n {\n \"name\": \"get_chain_tvl_history\",\n \"description\": \"Get historical TVL data for a specific blockchain\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"chain\": {\n \"type\": \"string\",\n \"description\": \"Chain name (e.g., \\\"ethereum\\\", \\\"bsc\\\", \\\"polygon\\\")\"\n }\n },\n \"required\": [\n \"chain\"\n ]\n }\n },\n {\n \"name\": \"get_chains_tvl_history\",\n \"description\": \"Get historical TVL data for all chains\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_yield_pools\",\n \"description\": \"Get yield pools with APY data. Supports pagination (limit max 100, offset) and filtering by minTvl. Default limit is 50.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Maximum number of pools to return (default: 200, max: 1000)\",\n \"minimum\": 1,\n \"maximum\": 1000,\n \"default\": 200\n }\n }\n }\n },\n {\n \"name\": \"get_yield_pool_chart\",\n \"description\": \"Get historical chart data for a specific yield pool showing APY and TVL over time\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"poolId\": {\n \"type\": \"string\",\n \"description\": \"Pool identifier (get from yield pools list)\"\n }\n },\n \"required\": [\n \"poolId\"\n ]\n }\n },\n {\n \"name\": \"get_stablecoins\",\n \"description\": \"Get all stablecoins with their market cap and chain distribution. Results are limited to prevent oversized responses.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Maximum number of stablecoins to return (default: 100, max: 500)\",\n \"minimum\": 1,\n \"maximum\": 500,\n \"default\": 100\n }\n }\n }\n },\n {\n \"name\": \"get_stablecoin_chains\",\n \"description\": \"Get list of all chains with stablecoin data and their TVL.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_stablecoin_charts_global\",\n \"description\": \"Get historical chart data for all stablecoins showing market cap over time. Response is limited to prevent MCP timeouts.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Maximum number of recent data points to return (default: 30, max: 100)\",\n \"minimum\": 1,\n \"maximum\": 100,\n \"default\": 30\n }\n }\n }\n },\n {\n \"name\": \"get_stablecoin_charts_by_chain\",\n \"description\": \"Get historical chart data for stablecoins on a specific blockchain. Response is limited to prevent MCP timeouts.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"chain\": {\n \"type\": \"string\",\n \"description\": \"Chain name (e.g., \\\"ethereum\\\", \\\"bsc\\\", \\\"polygon\\\")\"\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Maximum number of recent data points to return (default: 30, max: 100)\",\n \"minimum\": 1,\n \"maximum\": 100,\n \"default\": 30\n }\n },\n \"required\": [\n \"chain\"\n ]\n }\n },\n {\n \"name\": \"get_stablecoin_prices\",\n \"description\": \"Get current prices of stablecoins. Response is limited to prevent MCP timeouts.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Maximum number of recent time entries to return (default: 5, max: 20)\",\n \"minimum\": 1,\n \"maximum\": 20,\n \"default\": 5\n }\n }\n }\n },\n {\n \"name\": \"stablecoin_data_by_id\",\n \"description\": \"Get stablecoin data (DISABLED for MCP: 14MB response causes timeouts). Returns error message with alternatives.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"stablecoinId\": {\n \"type\": \"string\",\n \"description\": \"Stablecoin ID from the stablecoins list (e.g., \\\"1\\\" for Tether)\"\n }\n },\n \"required\": [\n \"stablecoinId\"\n ]\n }\n },\n {\n \"name\": \"get_options_overview\",\n \"description\": \"Get options trading overview data across all chains and protocols with historical charts\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_options_by_chain\",\n \"description\": \"Get options trading data for a specific blockchain\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"chain\": {\n \"type\": \"string\",\n \"description\": \"Chain name (e.g., \\\"ethereum\\\", \\\"arbitrum\\\", \\\"polygon\\\")\"\n }\n },\n \"required\": [\n \"chain\"\n ]\n }\n },\n {\n \"name\": \"get_options_protocol\",\n \"description\": \"Get detailed summary for a specific options trading protocol\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"protocol\": {\n \"type\": \"string\",\n \"description\": \"Protocol slug (e.g., \\\"hegic\\\", \\\"opyn\\\", \\\"ribbon\\\")\"\n }\n },\n \"required\": [\n \"protocol\"\n ]\n }\n },\n {\n \"name\": \"get_dex_volumes\",\n \"description\": \"Get DEX volumes overview across all protocols\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Maximum number of DEXs to return (default: 100, max: 500)\"\n }\n }\n }\n },\n {\n \"name\": \"get_dex_volume\",\n \"description\": \"Get volume data for a specific DEX with key metrics and recent chart data\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"dexName\": {\n \"type\": \"string\",\n \"description\": \"DEX name (e.g., \\\"uniswap\\\", \\\"sushiswap\\\")\"\n }\n },\n \"required\": [\n \"dexName\"\n ]\n }\n },\n {\n \"name\": \"get_dex_volumes_by_chain\",\n \"description\": \"Get DEX volumes overview for a specific blockchain with historical data\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"chain\": {\n \"type\": \"string\",\n \"description\": \"Chain name (e.g., \\\"ethereum\\\", \\\"bsc\\\", \\\"polygon\\\", \\\"arbitrum\\\")\"\n }\n },\n \"required\": [\n \"chain\"\n ]\n }\n },\n {\n \"name\": \"get_fees_overview\",\n \"description\": \"Get protocol fees overview. Supports pagination (limit max 100, offset) and filtering by minFees. Default limit is 50.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Maximum number of protocols to return (default: 200, max: 1000)\",\n \"minimum\": 1,\n \"maximum\": 1000\n }\n }\n }\n },\n {\n \"name\": \"get_chain_fees\",\n \"description\": \"Get fees overview for a specific blockchain with historical data and protocol breakdown\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"chain\": {\n \"type\": \"string\",\n \"description\": \"Chain name (e.g., \\\"ethereum\\\", \\\"bsc\\\", \\\"polygon\\\", \\\"arbitrum\\\")\"\n }\n },\n \"required\": [\n \"chain\"\n ]\n }\n },\n {\n \"name\": \"defillama_get_bridges\",\n \"description\": \"Get comprehensive list of all cross-chain bridges with metrics including total value locked, volume, and supported chains.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"defillama_get_bridge_by_id\",\n \"description\": \"Get detailed information about a specific bridge including supported tokens, chains, and historical volume data.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"defillama_get_bridge_volume\",\n \"description\": \"Get bridge volume data for a specific chain showing inflows, outflows, and net flows across different bridges.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"defillama_get_hacks\",\n \"description\": \"Get comprehensive list of DeFi hacks, exploits, and security incidents with details on amounts lost, affected protocols, and attack vectors.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"defillama_get_treasuries\",\n \"description\": \"Get list of all protocol treasuries showing their holdings, value in USD, and asset composition across chains.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"defillama_get_treasury\",\n \"description\": \"Get detailed treasury information for a specific protocol including token holdings, historical changes, and chain distribution.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"defillama_get_raises\",\n \"description\": \"Get comprehensive list of all protocol funding rounds including amounts raised, investors, valuation, and funding categories.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"defillama_get_emissions\",\n \"description\": \"Get token emission and unlock schedules for all protocols including vesting events, cliff unlocks, and circulation supply changes.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_protocol_fee_summary\",\n \"description\": \"Get comprehensive fee summary for a specific protocol including revenue breakdown, fee tiers, and historical fee data.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_current_prices\",\n \"description\": \"Get current token prices from DeFiLlama. Supports multiple tokens across different chains with price aggregation.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_historical_prices\",\n \"description\": \"Get historical token prices at a specific timestamp from DeFiLlama. Useful for portfolio valuations and historical analysis.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_batch_historical_prices\",\n \"description\": \"Get historical prices for multiple tokens at multiple timestamps in a single request. Efficient for bulk historical data retrieval.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_price_chart\",\n \"description\": \"Get price chart data for a token over a time range. Returns timestamped price points for charting and analysis.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_price_percentage_change\",\n \"description\": \"Get percentage price change for tokens over specified time periods. Useful for tracking price movements.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_first_prices\",\n \"description\": \"Get the earliest recorded price for tokens. Useful for determining when tokens were first tracked.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_block_by_timestamp\",\n \"description\": \"Get the block number closest to a given timestamp for a specific chain. Useful for historical blockchain queries.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_stablecoin_dominance\",\n \"description\": \"Get stablecoin dominance metrics showing market share and distribution across chains and stablecoin types.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_defi_oracles\",\n \"description\": \"Get list of DeFi oracles with their TVL secured and protocols using them.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_defi_forks\",\n \"description\": \"Get list of protocol forks with TVL data showing forked-from relationships in DeFi.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_defi_categories\",\n \"description\": \"Get DeFi protocol categories with aggregated TVL data for each category.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_defi_entities\",\n \"description\": \"Get list of DeFi entities (companies/organizations) with their associated protocols and combined TVL.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_token_security\",\n \"description\": \"Get comprehensive token security analysis including: honeypot detection, ownership details, trading tax, slippage, holder distribution, liquidity status, contract verification, and other security metrics. Helps identify scams, rugpulls, and high-risk tokens.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"chainId\": {\n \"type\": \"string\",\n \"description\": \"The chain ID (1=Ethereum, 56=BSC, 137=Polygon, 42161=Arbitrum, 43114=Avalanche, 10=Optimism, 25=Cronos, 250=Fantom)\",\n \"example\": \"1\"\n },\n \"contract_addresses\": {\n \"type\": \"string\",\n \"description\": \"Token contract address (can be comma-separated for multiple)\",\n \"example\": \"0x3567aa22cd3ab9aEf23d7e18EE0D7cf16974d7e6\"\n }\n },\n \"required\": [\n \"chainId\",\n \"contract_addresses\"\n ]\n }\n },\n {\n \"name\": \"get_nft_security\",\n \"description\": \"Get NFT security and authenticity analysis including: malicious behavior detection, trading platform verification, metadata authenticity, contract risks (privileged_burn, transfer_without_approval, self_destruct), and collection clone detection. Helps identify fake NFTs and scam collections.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"chainId\": {\n \"type\": \"string\",\n \"description\": \"The chain ID (1=Ethereum, 56=BSC, 137=Polygon, 42161=Arbitrum, 43114=Avalanche)\",\n \"example\": \"1\"\n },\n \"contract_addresses\": {\n \"type\": \"string\",\n \"description\": \"NFT contract address (can be comma-separated for multiple)\",\n \"example\": \"0xBC4CA0EdA7647A8aB7C2061c2E118A18a936f13D\"\n }\n },\n \"required\": [\n \"chainId\",\n \"contract_addresses\"\n ]\n }\n },\n {\n \"name\": \"check_malicious_address\",\n \"description\": \"Check if an address is malicious or associated with: scams, phishing, exploits, mixers, sanctioned entities, or other malicious activities. Returns cybercrime labels, blacklist status, and risk scores.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"chainId\": {\n \"type\": \"string\",\n \"description\": \"The chain ID (1=Ethereum, 56=BSC, 137=Polygon, 42161=Arbitrum)\",\n \"example\": \"1\"\n },\n \"address\": {\n \"type\": \"string\",\n \"description\": \"The address to check for malicious activity\",\n \"example\": \"0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb\"\n }\n },\n \"required\": [\n \"chainId\",\n \"address\"\n ]\n }\n },\n {\n \"name\": \"check_approval_security\",\n \"description\": \"Check security risks of token/NFT approval contracts including: contract verification status, malicious history, approval abuse potential, and whether the spender is a known phishing address or malicious contract.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"chainId\": {\n \"type\": \"string\",\n \"description\": \"The chain ID (1=Ethereum, 56=BSC, 137=Polygon)\",\n \"example\": \"1\"\n },\n \"contract_addresses\": {\n \"type\": \"string\",\n \"description\": \"Spender contract address to check\",\n \"example\": \"0x68b3465833fb72A70ecDF485E0e4C7bD8665Fc45\"\n }\n },\n \"required\": [\n \"chainId\",\n \"contract_addresses\"\n ]\n }\n },\n {\n \"name\": \"get_wallet_approvals\",\n \"description\": \"Get comprehensive security analysis of all token and NFT approvals for a user address, showing which contracts have spending permissions. Helps identify risky approvals, potential approval exploits, and malicious spenders. Returns approved amounts, spender addresses, risk levels, and security recommendations.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"chainId\": {\n \"type\": \"string\",\n \"description\": \"The chain ID (1=Ethereum, 56=BSC, 137=Polygon)\",\n \"example\": \"1\"\n },\n \"address\": {\n \"type\": \"string\",\n \"description\": \"User address to check approvals for\",\n \"example\": \"0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb\"\n }\n },\n \"required\": [\n \"chainId\",\n \"address\"\n ]\n }\n },\n {\n \"name\": \"check_dapp_security\",\n \"description\": \"Check security risks of a dApp by URL including: phishing detection, malicious contract interactions, audit status, and trust score. Helps users avoid malicious dApps and phishing sites.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"url\": {\n \"type\": \"string\",\n \"description\": \"The dApp URL to check\",\n \"example\": \"https://app.uniswap.org\"\n }\n },\n \"required\": [\n \"url\"\n ]\n }\n },\n {\n \"name\": \"check_phishing_site\",\n \"description\": \"Detect if a URL is a phishing site by checking against comprehensive phishing databases. Returns phishing status, similar legitimate sites, and risk indicators.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"url\": {\n \"type\": \"string\",\n \"description\": \"The URL to check for phishing\",\n \"example\": \"https://example-site.com\"\n }\n },\n \"required\": [\n \"url\"\n ]\n }\n },\n {\n \"name\": \"decode_abi\",\n \"description\": \"Decode ABI data to understand smart contract interactions, function calls, and parameters. Helps identify malicious transactions, understand approval details, and detect anomalies in contract calls.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"chainId\": {\n \"type\": \"string\",\n \"description\": \"The chain ID\",\n \"example\": \"1\"\n },\n \"contract_address\": {\n \"type\": \"string\",\n \"description\": \"Contract address\",\n \"example\": \"0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D\"\n },\n \"abi_data\": {\n \"type\": \"string\",\n \"description\": \"The ABI encoded data to decode\",\n \"example\": \"0xa9059cbb000000000000000000000000...\"\n }\n },\n \"required\": [\n \"chainId\",\n \"contract_address\",\n \"abi_data\"\n ]\n }\n },\n {\n \"name\": \"simulate_evm_transaction\",\n \"description\": \"Simulate an EVM transaction to detect security risks before signing. Returns balance changes, approval changes, gas estimation, and risk assessment. Essential for preventing phishing, token draining, and malicious contract interactions.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"chain_id\": {\n \"type\": \"string\",\n \"description\": \"Chain ID: 1 (Ethereum), 56 (BSC), 137 (Polygon), 42161 (Arbitrum)\",\n \"example\": \"1\"\n },\n \"from\": {\n \"type\": \"string\",\n \"description\": \"Sender wallet address (0x format)\",\n \"example\": \"0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb\"\n },\n \"to\": {\n \"type\": \"string\",\n \"description\": \"Recipient/contract address (0x format)\",\n \"example\": \"0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D\"\n },\n \"data\": {\n \"type\": \"string\",\n \"description\": \"Transaction calldata hex string starting with 0x\",\n \"example\": \"0x38ed1739...\"\n },\n \"value\": {\n \"type\": \"string\",\n \"description\": \"ETH value in wei (optional, default: 0)\"\n }\n },\n \"required\": [\n \"chain_id\",\n \"from\",\n \"to\",\n \"data\"\n ]\n }\n },\n {\n \"name\": \"simulate_solana_transaction\",\n \"description\": \"Simulate a Solana transaction to detect security risks before signing. Analyzes balance changes, program interactions, and risk indicators for base64-encoded Solana transactions.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"transaction\": {\n \"type\": \"string\",\n \"description\": \"Base64-encoded Solana transaction data\"\n }\n },\n \"required\": [\n \"transaction\"\n ]\n }\n },\n {\n \"name\": \"detect_rugpull\",\n \"description\": \"Detect potential rug-pull schemes for a token contract. Analyzes liquidity removal risks, ownership concentration, backdoor functions, and historical rug-pull patterns.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"chain_id\": {\n \"type\": \"string\",\n \"description\": \"Chain ID: 1 (Ethereum), 56 (BSC), 137 (Polygon)\",\n \"example\": \"1\"\n },\n \"contract_address\": {\n \"type\": \"string\",\n \"description\": \"Token contract address (0x format)\"\n }\n },\n \"required\": [\n \"chain_id\",\n \"contract_address\"\n ]\n }\n },\n {\n \"name\": \"get_token_lock_info\",\n \"description\": \"Retrieve token and LP lock information including lock amounts, unlock dates, lock platforms, and lock percentages. Essential for assessing token credibility and liquidity safety.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"chain_id\": {\n \"type\": \"string\",\n \"description\": \"Chain ID: 1 (Ethereum), 56 (BSC), 137 (Polygon)\",\n \"example\": \"1\"\n },\n \"token_address\": {\n \"type\": \"string\",\n \"description\": \"Token contract address (0x format)\"\n }\n },\n \"required\": [\n \"chain_id\",\n \"token_address\"\n ]\n }\n },\n {\n \"name\": \"get_solana_token_security\",\n \"description\": \"Analyze Solana SPL token security risks including mint authority, freeze authority, supply analysis, and known risk indicators. Essential for verifying Solana token safety.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"contract_address\": {\n \"type\": \"string\",\n \"description\": \"Solana token mint address\",\n \"example\": \"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v\"\n }\n },\n \"required\": [\n \"contract_address\"\n ]\n }\n },\n {\n \"name\": \"get_sui_token_security\",\n \"description\": \"Analyze Sui token security risks including module authority, supply controls, and known risk indicators.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"contract_address\": {\n \"type\": \"string\",\n \"description\": \"Sui token type address (e.g., 0x2::sui::SUI)\",\n \"example\": \"0x2::sui::SUI\"\n }\n },\n \"required\": [\n \"contract_address\"\n ]\n }\n },\n {\n \"name\": \"check_approval_security_v2\",\n \"description\": \"Enhanced approval security analysis (v2) with support for ERC-20, ERC-721, and ERC-1155 tokens. More detailed risk analysis than v1 including NFT approval risks.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"chain_id\": {\n \"type\": \"string\",\n \"description\": \"Chain ID: 1 (Ethereum), 56 (BSC), 137 (Polygon), 42161 (Arbitrum)\",\n \"example\": \"1\"\n },\n \"contract_address\": {\n \"type\": \"string\",\n \"description\": \"Spender contract address (0x format)\",\n \"example\": \"0x68b3465833fb72A70ecDF485E0e4C7bD8665Fc45\"\n }\n },\n \"required\": [\n \"chain_id\",\n \"contract_address\"\n ]\n }\n },\n {\n \"name\": \"get_goplus_supported_chains\",\n \"description\": \"List all blockchain networks supported by GoPlus Security API. Returns chain IDs, names, and supported features. Useful for validating chain_id before calling other security tools.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"get_networks_list\",\n \"description\": \"Get a list of all blockchain networks supported by HIVE_DATASOURCE_TWO\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {},\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_network_status\",\n \"description\": \"Get the status of a specific blockchain network\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"The network ID to get status for\"\n }\n },\n \"required\": [\n \"networkId\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_network_stats\",\n \"description\": \"Get metadata and statistics for a given network\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"The network ID to get stats for\"\n }\n },\n \"required\": [\n \"networkId\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_token_details\",\n \"description\": \"Get detailed information about a specific token\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"The network ID the token is on\"\n },\n \"address\": {\n \"type\": \"string\",\n \"description\": \"The token contract address\"\n }\n },\n \"required\": [\n \"networkId\",\n \"address\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_tokens\",\n \"description\": \"Get detailed information about multiple tokens\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"ids\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"object\",\n \"properties\": {\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"The network ID the token is on\"\n },\n \"address\": {\n \"type\": \"string\",\n \"description\": \"The token contract address\"\n }\n },\n \"required\": [\n \"networkId\",\n \"address\"\n ],\n \"additionalProperties\": false,\n \"description\": \"A token identifier consisting of network ID and address\"\n }\n }\n },\n \"required\": [\n \"ids\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_token_price\",\n \"description\": \"Get real-time or historical prices for a list of tokens\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"inputs\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"object\",\n \"properties\": {\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"The network ID the token is on\"\n },\n \"address\": {\n \"type\": \"string\",\n \"description\": \"The token contract address\"\n },\n \"poolAddress\": {\n \"type\": \"string\",\n \"description\": \"The address of the pool, when omitted the top pool is used.\"\n },\n \"timestamp\": {\n \"type\": \"number\",\n \"description\": \"Unix timestamp\"\n }\n },\n \"required\": [\n \"networkId\",\n \"address\"\n ],\n \"additionalProperties\": false,\n \"description\": \"A token identifier consisting of network ID and address\"\n }\n }\n },\n \"required\": [\n \"inputs\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"filter_tokens\",\n \"description\": \"Filter tokens by various criteria with automatic pagination for large results. Supports limit (max 100) and offset parameters for efficient data retrieval.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"excludeTokens\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n },\n \"description\": \"A list of token IDs to exclude from results (address:networkId)\"\n },\n \"filters\": {\n \"type\": \"object\",\n \"properties\": {\n \"buyCount1\": {\n \"type\": \"object\",\n \"properties\": {\n \"gt\": {\n \"type\": \"number\",\n \"description\": \"Greater than\"\n },\n \"gte\": {\n \"type\": \"number\",\n \"description\": \"Greater than or equal to\"\n },\n \"lt\": {\n \"type\": \"number\",\n \"description\": \"Less than\"\n },\n \"lte\": {\n \"type\": \"number\",\n \"description\": \"Less than or equal to\"\n }\n },\n \"additionalProperties\": false,\n \"description\": \"Number of buy transactions in the last hour\"\n },\n \"buyCount4\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Number of buy transactions in the last 4 hours\"\n },\n \"buyCount5m\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Number of buy transactions in the last 5 minutes\"\n },\n \"buyCount12\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Number of buy transactions in the last 12 hours\"\n },\n \"buyCount24\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Number of buy transactions in the last 24 hours\"\n },\n \"change1\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Price change in the last hour\"\n },\n \"change4\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Price change in the last 4 hours\"\n },\n \"change5m\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Price change in the last 5 minutes\"\n },\n \"change12\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Price change in the last 12 hours\"\n },\n \"change24\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Price change in the last 24 hours\"\n },\n \"createdAt\": {\n \"type\": \"number\",\n \"description\": \"Token creation timestamp\"\n },\n \"creatorAddress\": {\n \"type\": \"string\",\n \"description\": \"Token creator's wallet address\"\n },\n \"exchangeAddress\": {\n \"type\": \"string\",\n \"description\": \"Exchange contract address\"\n },\n \"exchangeId\": {\n \"type\": \"string\",\n \"description\": \"Exchange identifier\"\n },\n \"fdv\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Fully diluted valuation\"\n },\n \"high1\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Highest price in the last hour\"\n },\n \"high4\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Highest price in the last 4 hours\"\n },\n \"high5m\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Highest price in the last 5 minutes\"\n },\n \"high12\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Highest price in the last 12 hours\"\n },\n \"high24\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Highest price in the last 24 hours\"\n },\n \"holders\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Number of token holders\"\n },\n \"includeScams\": {\n \"type\": \"boolean\",\n \"description\": \"Whether to include potential scam tokens\"\n },\n \"isVerified\": {\n \"$ref\": \"#/properties/filters/properties/includeScams\",\n \"description\": \"Whether the token is verified\"\n },\n \"lastTransaction\": {\n \"$ref\": \"#/properties/filters/properties/createdAt\",\n \"description\": \"Timestamp of the last transaction\"\n },\n \"liquidity\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Total liquidity\"\n },\n \"low1\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Lowest price in the last hour\"\n },\n \"low4\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Lowest price in the last 4 hours\"\n },\n \"low5m\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Lowest price in the last 5 minutes\"\n },\n \"low12\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Lowest price in the last 12 hours\"\n },\n \"low24\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Lowest price in the last 24 hours\"\n },\n \"marketCap\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Market capitalization\"\n },\n \"network\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"Network ID\"\n },\n \"notableHolderCount\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Number of notable holders\"\n },\n \"potentialScam\": {\n \"$ref\": \"#/properties/filters/properties/includeScams\",\n \"description\": \"Whether the token is potentially a scam\"\n },\n \"priceUSD\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Current price in USD\"\n },\n \"sellCount1\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Number of sell transactions in the last hour\"\n },\n \"sellCount4\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Number of sell transactions in the last 4 hours\"\n },\n \"sellCount5m\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Number of sell transactions in the last 5 minutes\"\n },\n \"sellCount12\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Number of sell transactions in the last 12 hours\"\n },\n \"sellCount24\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Number of sell transactions in the last 24 hours\"\n },\n \"trendingIgnored\": {\n \"$ref\": \"#/properties/filters/properties/includeScams\",\n \"description\": \"Whether the token is ignored in trending calculations\"\n },\n \"txnCount1\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Total transactions in the last hour\"\n },\n \"txnCount4\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Total transactions in the last 4 hours\"\n },\n \"txnCount5m\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Total transactions in the last 5 minutes\"\n },\n \"txnCount12\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Total transactions in the last 12 hours\"\n },\n \"txnCount24\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Total transactions in the last 24 hours\"\n },\n \"uniqueBuys1\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Unique buyers in the last hour\"\n },\n \"uniqueBuys4\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Unique buyers in the last 4 hours\"\n },\n \"uniqueBuys5m\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Unique buyers in the last 5 minutes\"\n },\n \"uniqueBuys12\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Unique buyers in the last 12 hours\"\n },\n \"uniqueBuys24\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Unique buyers in the last 24 hours\"\n },\n \"uniqueSells1\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Unique sellers in the last hour\"\n },\n \"uniqueSells4\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Unique sellers in the last 4 hours\"\n },\n \"uniqueSells5m\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Unique sellers in the last 5 minutes\"\n },\n \"uniqueSells12\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Unique sellers in the last 12 hours\"\n },\n \"uniqueSells24\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Unique sellers in the last 24 hours\"\n },\n \"uniqueTransactions1\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Unique transactions in the last hour\"\n },\n \"uniqueTransactions4\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Unique transactions in the last 4 hours\"\n },\n \"uniqueTransactions5m\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Unique transactions in the last 5 minutes\"\n },\n \"uniqueTransactions12\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Unique transactions in the last 12 hours\"\n },\n \"uniqueTransactions24\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Unique transactions in the last 24 hours\"\n },\n \"volume1\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Trading volume in the last hour\"\n },\n \"volume4\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Trading volume in the last 4 hours\"\n },\n \"volume5m\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Trading volume in the last 5 minutes\"\n },\n \"volume12\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Trading volume in the last 12 hours\"\n },\n \"volume24\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Trading volume in the last 24 hours\"\n },\n \"volumeChange1\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Volume change in the last hour\"\n },\n \"volumeChange4\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Volume change in the last 4 hours\"\n },\n \"volumeChange5m\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Volume change in the last 5 minutes\"\n },\n \"volumeChange12\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Volume change in the last 12 hours\"\n },\n \"volumeChange24\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Volume change in the last 24 hours\"\n }\n },\n \"additionalProperties\": false,\n \"description\": \"A set of filters to apply\"\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Maximum number of items to return\"\n },\n \"offset\": {\n \"type\": \"number\",\n \"description\": \"Number of items to skip\"\n },\n \"phrase\": {\n \"type\": \"string\",\n \"description\": \"A phrase to search for. Can match a token contract address or partially match a token's name or symbol\"\n },\n \"rankings\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"object\",\n \"properties\": {\n \"attribute\": {\n \"type\": \"string\",\n \"enum\": [\n \"age\",\n \"buyCount1\",\n \"buyCount4\",\n \"buyCount5m\",\n \"buyCount12\",\n \"buyCount24\",\n \"buyVolume1\",\n \"buyVolume4\",\n \"buyVolume5m\",\n \"buyVolume12\",\n \"buyVolume24\",\n \"change1\",\n \"change4\",\n \"change5m\",\n \"change12\",\n \"change24\",\n \"circulatingMarketCap\",\n \"createdAt\",\n \"graduationPercent\",\n \"high1\",\n \"high4\",\n \"high5m\",\n \"high12\",\n \"high24\",\n \"holders\",\n \"lastTransaction\",\n \"launchpadCompletedAt\",\n \"launchpadMigratedAt\",\n \"liquidity\",\n \"low1\",\n \"low4\",\n \"low5m\",\n \"low12\",\n \"low24\",\n \"marketCap\",\n \"notableHolderCount\",\n \"priceUSD\",\n \"sellCount1\",\n \"sellCount4\",\n \"sellCount5m\",\n \"sellCount12\",\n \"sellCount24\",\n \"sellVolume1\",\n \"sellVolume4\",\n \"sellVolume5m\",\n \"sellVolume12\",\n \"sellVolume24\",\n \"swapPct1dOldWallet\",\n \"swapPct7dOldWallet\",\n \"trendingScore\",\n \"trendingScore1\",\n \"trendingScore4\",\n \"trendingScore5m\",\n \"trendingScore12\",\n \"trendingScore24\",\n \"txnCount1\",\n \"txnCount4\",\n \"txnCount5m\",\n \"txnCount12\",\n \"txnCount24\",\n \"uniqueBuys1\",\n \"uniqueBuys4\",\n \"uniqueBuys5m\",\n \"uniqueBuys12\",\n \"uniqueBuys24\",\n \"uniqueSells1\",\n \"uniqueSells4\",\n \"uniqueSells5m\",\n \"uniqueSells12\",\n \"uniqueSells24\",\n \"uniqueTransactions1\",\n \"uniqueTransactions4\",\n \"uniqueTransactions5m\",\n \"uniqueTransactions12\",\n \"uniqueTransactions24\",\n \"volume1\",\n \"volume4\",\n \"volume5m\",\n \"volume12\",\n \"volume24\",\n \"volumeChange1\",\n \"volumeChange4\",\n \"volumeChange5m\",\n \"volumeChange12\",\n \"volumeChange24\",\n \"walletAgeAvg\",\n \"walletAgeStd\"\n ]\n },\n \"direction\": {\n \"type\": \"string\",\n \"enum\": [\n \"ASC\",\n \"DESC\"\n ]\n }\n },\n \"required\": [\n \"attribute\",\n \"direction\"\n ],\n \"additionalProperties\": false\n },\n \"description\": \"A list of ranking attributes to apply\"\n },\n \"statsType\": {\n \"type\": \"string\",\n \"enum\": [\n \"FILTERED\",\n \"UNFILTERED\"\n ],\n \"description\": \"The type of statistics returned. Can be FILTERED or UNFILTERED\"\n },\n \"tokens\": {\n \"$ref\": \"#/properties/excludeTokens\",\n \"description\": \"A list of token IDs (address:networkId) or addresses. Can be left blank to discover new tokens\"\n }\n },\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_token_holders\",\n \"description\": \"Returns list of wallets that hold a given token, ordered by holdings descending. Also has the unique count of holders for that token.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"The network ID the token is on\"\n },\n \"address\": {\n \"type\": \"string\",\n \"description\": \"The token contract address\"\n },\n \"cursor\": {\n \"type\": \"string\",\n \"description\": \"Cursor for pagination\"\n },\n \"sort\": {\n \"type\": \"object\",\n \"properties\": {\n \"attribute\": {\n \"type\": \"string\",\n \"enum\": [\n \"BALANCE\",\n \"DATE\"\n ]\n },\n \"direction\": {\n \"type\": \"string\",\n \"enum\": [\n \"ASC\",\n \"DESC\"\n ]\n }\n },\n \"additionalProperties\": false,\n \"description\": \"Sort options for the holders list\"\n }\n },\n \"required\": [\n \"networkId\",\n \"address\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_wallet_balances\",\n \"description\": \"Get token balances for a wallet\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"The network ID the wallet is on\"\n },\n \"walletAddress\": {\n \"type\": \"string\",\n \"description\": \"The wallet address to get balances for\"\n },\n \"cursor\": {\n \"type\": \"string\",\n \"description\": \"Cursor for pagination\"\n },\n \"filterToken\": {\n \"type\": \"string\",\n \"description\": \"Optional token to filter balances for\"\n },\n \"includeNative\": {\n \"type\": \"boolean\",\n \"description\": \"Include native token balances\"\n }\n },\n \"required\": [\n \"networkId\",\n \"walletAddress\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_top_holders_percentage\",\n \"description\": \"Get the percentage of tokens held by top 10 holders\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"The network ID the token is on\"\n },\n \"address\": {\n \"type\": \"string\",\n \"description\": \"The token contract address\"\n }\n },\n \"required\": [\n \"networkId\",\n \"address\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_token_chart_data\",\n \"description\": \"Returns bar chart data to track token price changes over time. Can be queried using either a pair address or token address.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"The network ID the pair or token is on\"\n },\n \"address\": {\n \"type\": \"string\",\n \"description\": \"The pair address or token address to get chart data for. If a token address is provided, the token's top pair will be used.\"\n },\n \"resolution\": {\n \"type\": \"string\",\n \"description\": \"The time frame for each candle. Available options are 1, 5, 15, 30, 60, 240, 720, 1D, 7D\"\n },\n \"from\": {\n \"type\": \"number\",\n \"description\": \"Unix timestamp\"\n },\n \"to\": {\n \"$ref\": \"#/properties/from\"\n },\n \"countback\": {\n \"type\": \"number\"\n },\n \"currencyCode\": {\n \"type\": \"string\"\n },\n \"quoteToken\": {\n \"type\": \"string\",\n \"enum\": [\n \"token0\",\n \"token1\"\n ],\n \"description\": \"The token of interest (token0 or token1)\"\n },\n \"removeEmptyBars\": {\n \"type\": \"boolean\"\n },\n \"removeLeadingNullValues\": {\n \"$ref\": \"#/properties/removeEmptyBars\"\n },\n \"statsType\": {\n \"type\": \"string\",\n \"enum\": [\n \"FILTERED\",\n \"UNFILTERED\"\n ],\n \"description\": \"The type of statistics returned. Can be FILTERED or UNFILTERED\"\n },\n \"symbolType\": {\n \"type\": \"string\",\n \"enum\": [\n \"POOL\",\n \"TOKEN\"\n ]\n }\n },\n \"required\": [\n \"networkId\",\n \"address\",\n \"resolution\",\n \"from\",\n \"to\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_token_chart_urls\",\n \"description\": \"Chart images for token pairs\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"The network ID the pair is on\"\n },\n \"pairAddress\": {\n \"type\": \"string\",\n \"description\": \"The pair contract address\"\n },\n \"quoteToken\": {\n \"type\": \"string\",\n \"enum\": [\n \"token0\",\n \"token1\"\n ],\n \"description\": \"The token of interest (token0 or token1)\"\n }\n },\n \"required\": [\n \"networkId\",\n \"pairAddress\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_new_tokens\",\n \"description\": \"Get a list of the latests token contracts deployed. Note: This endpoint is only available on Ethereum, Optimum, Base, and Arbitrum networks (network IDs 1, 10, 8453, and 42161).\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"networkFilter\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"The network ID\"\n }\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Maximum number of items to return\"\n },\n \"offset\": {\n \"type\": \"number\",\n \"description\": \"Number of items to skip\"\n }\n },\n \"required\": [\n \"networkFilter\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_token_sparklines\",\n \"description\": \"Get a list of token simple chart data (sparklines) for the given tokens\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"The network ID the tokens are on\"\n },\n \"addresses\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\",\n \"description\": \"The token contract address\"\n },\n \"description\": \"Array of token contract addresses\"\n }\n },\n \"required\": [\n \"networkId\",\n \"addresses\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_token_transactions\",\n \"description\": \"Get transactions for a token pair\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"cursor\": {\n \"type\": \"string\",\n \"description\": \"A cursor for use in pagination\"\n },\n \"direction\": {\n \"type\": \"string\",\n \"enum\": [\n \"ASC\",\n \"DESC\"\n ],\n \"description\": \"The direction to sort the events by\"\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"The maximum number of events to return\"\n },\n \"query\": {\n \"type\": \"object\",\n \"properties\": {\n \"address\": {\n \"type\": \"string\",\n \"description\": \"The pair contract address to filter by. If you pass a token address in here, it will instead find the top pair for that token and use that.\"\n },\n \"amountNonLiquidityToken\": {\n \"type\": \"object\",\n \"properties\": {\n \"gt\": {\n \"type\": \"number\",\n \"description\": \"Greater than\"\n },\n \"gte\": {\n \"type\": \"number\",\n \"description\": \"Greater than or equal to\"\n },\n \"lt\": {\n \"type\": \"number\",\n \"description\": \"Less than\"\n },\n \"lte\": {\n \"type\": \"number\",\n \"description\": \"Less than or equal to\"\n }\n },\n \"additionalProperties\": false,\n \"description\": \"Filter by amount of non-liquidity token\"\n },\n \"eventDisplayType\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\",\n \"enum\": [\n \"Burn\",\n \"Buy\",\n \"Collect\",\n \"CollectProtocol\",\n \"Mint\",\n \"Sell\",\n \"Sync\"\n ]\n },\n \"description\": \"Filter by event display type\"\n },\n \"eventType\": {\n \"type\": \"string\",\n \"enum\": [\n \"Burn\",\n \"Collect\",\n \"CollectProtocol\",\n \"Mint\",\n \"PoolBalanceChanged\",\n \"Swap\",\n \"Sync\"\n ],\n \"description\": \"Filter by event type\"\n },\n \"maker\": {\n \"type\": \"string\",\n \"description\": \"Filter by maker address\"\n },\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"The network ID to filter by\"\n },\n \"priceBaseToken\": {\n \"$ref\": \"#/properties/query/properties/amountNonLiquidityToken\",\n \"description\": \"Filter by price in base token\"\n },\n \"priceBaseTokenTotal\": {\n \"$ref\": \"#/properties/query/properties/amountNonLiquidityToken\",\n \"description\": \"Filter by total price in base token\"\n },\n \"priceUsd\": {\n \"$ref\": \"#/properties/query/properties/amountNonLiquidityToken\",\n \"description\": \"Filter by price in USD\"\n },\n \"priceUsdTotal\": {\n \"$ref\": \"#/properties/query/properties/amountNonLiquidityToken\",\n \"description\": \"Filter by total price in USD\"\n },\n \"quoteToken\": {\n \"type\": \"string\",\n \"enum\": [\n \"token0\",\n \"token1\"\n ],\n \"description\": \"Filter by quote token\"\n },\n \"timestamp\": {\n \"type\": \"object\",\n \"properties\": {\n \"from\": {\n \"type\": \"number\",\n \"description\": \"Start timestamp\"\n },\n \"to\": {\n \"type\": \"number\",\n \"description\": \"End timestamp\"\n }\n },\n \"required\": [\n \"from\",\n \"to\"\n ],\n \"additionalProperties\": false,\n \"description\": \"Filter by timestamp range\"\n }\n },\n \"required\": [\n \"address\",\n \"networkId\"\n ],\n \"additionalProperties\": false,\n \"description\": \"Query parameters for filtering token events\"\n }\n },\n \"required\": [\n \"query\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_wallet_token_events\",\n \"description\": \"Get a list of token events for a given wallet address\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"cursor\": {\n \"type\": \"string\",\n \"description\": \"A cursor for use in pagination\"\n },\n \"direction\": {\n \"type\": \"string\",\n \"enum\": [\n \"ASC\",\n \"DESC\"\n ],\n \"description\": \"The direction to sort the events by\"\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"The maximum number of events to return\"\n },\n \"query\": {\n \"type\": \"object\",\n \"properties\": {\n \"eventType\": {\n \"type\": \"string\",\n \"enum\": [\n \"Burn\",\n \"Collect\",\n \"CollectProtocol\",\n \"Mint\",\n \"PoolBalanceChanged\",\n \"Swap\",\n \"Sync\"\n ],\n \"description\": \"The specific event type to filter by\"\n },\n \"maker\": {\n \"type\": \"string\",\n \"description\": \"The specific wallet address to filter by\"\n },\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"The network ID to filter by\"\n },\n \"priceUsdTotal\": {\n \"type\": \"object\",\n \"properties\": {\n \"gt\": {\n \"type\": \"number\",\n \"description\": \"Greater than\"\n },\n \"gte\": {\n \"type\": \"number\",\n \"description\": \"Greater than or equal to\"\n },\n \"lt\": {\n \"type\": \"number\",\n \"description\": \"Less than\"\n },\n \"lte\": {\n \"type\": \"number\",\n \"description\": \"Less than or equal to\"\n }\n },\n \"additionalProperties\": false,\n \"description\": \"The total amount of quoteToken involved in the swap in USD\"\n },\n \"timestamp\": {\n \"type\": \"object\",\n \"properties\": {\n \"from\": {\n \"type\": \"number\",\n \"description\": \"Start timestamp\"\n },\n \"to\": {\n \"type\": \"number\",\n \"description\": \"End timestamp\"\n }\n },\n \"required\": [\n \"from\",\n \"to\"\n ],\n \"additionalProperties\": false,\n \"description\": \"The time range to filter by\"\n },\n \"tokenAddress\": {\n \"type\": \"string\",\n \"description\": \"The token involved in the event\"\n }\n },\n \"required\": [\n \"maker\"\n ],\n \"additionalProperties\": false,\n \"description\": \"Query parameters for filtering token events\"\n }\n },\n \"required\": [\n \"query\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_pair_stats\",\n \"description\": \"Get bucketed stats for a given token within a pair\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"The network ID the pair is on\"\n },\n \"address\": {\n \"type\": \"string\",\n \"description\": \"The pair contract address\"\n },\n \"duration\": {\n \"type\": \"string\",\n \"enum\": [\n \"day1\",\n \"day30\",\n \"hour1\",\n \"hour4\",\n \"hour12\",\n \"min5\",\n \"min15\",\n \"week1\"\n ],\n \"description\": \"The duration for stats\"\n },\n \"bucketCount\": {\n \"type\": \"number\",\n \"description\": \"The number of aggregated values to receive. Note: Each duration has predetermined bucket sizes. The first n-1 buckets are historical. The last bucket is a snapshot of current data.\"\n },\n \"timestamp\": {\n \"type\": \"number\"\n },\n \"tokenOfInterest\": {\n \"type\": \"string\",\n \"enum\": [\n \"token0\",\n \"token1\"\n ]\n },\n \"statsType\": {\n \"type\": \"string\",\n \"enum\": [\n \"FILTERED\",\n \"UNFILTERED\"\n ],\n \"description\": \"The type of statistics returned. Can be FILTERED or UNFILTERED\"\n }\n },\n \"required\": [\n \"networkId\",\n \"address\",\n \"duration\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_pairs_stats\",\n \"description\": \"Get bucketed stats for a given token within a list of pairs\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"The network ID the pairs are on\"\n },\n \"pairAddresses\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\",\n \"description\": \"The pair contract address\"\n },\n \"description\": \"Array of pair contract addresses\"\n },\n \"duration\": {\n \"type\": \"string\",\n \"enum\": [\n \"day1\",\n \"day30\",\n \"hour1\",\n \"hour4\",\n \"hour12\",\n \"min5\",\n \"min15\",\n \"week1\"\n ],\n \"description\": \"The duration for stats\"\n },\n \"bucketCount\": {\n \"type\": \"number\",\n \"description\": \"The number of aggregated values to receive. Note: Each duration has predetermined bucket sizes. The first n-1 buckets are historical. The last bucket is a snapshot of current data.\"\n }\n },\n \"required\": [\n \"networkId\",\n \"pairAddresses\",\n \"duration\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"filter_pairs\",\n \"description\": \"Get a list of pairs based on various filters like volume, price, liquidity, etc.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"filters\": {\n \"type\": \"object\",\n \"properties\": {\n \"buyCount1\": {\n \"type\": \"object\",\n \"properties\": {\n \"gt\": {\n \"type\": \"number\",\n \"description\": \"Greater than\"\n },\n \"gte\": {\n \"type\": \"number\",\n \"description\": \"Greater than or equal to\"\n },\n \"lt\": {\n \"type\": \"number\",\n \"description\": \"Less than\"\n },\n \"lte\": {\n \"type\": \"number\",\n \"description\": \"Less than or equal to\"\n }\n },\n \"additionalProperties\": false,\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"buyCount4\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"buyCount12\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"buyCount24\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"createdAt\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"exchangeAddress\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n }\n },\n \"highPrice1\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"highPrice4\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"highPrice12\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"highPrice24\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"lastTransaction\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"liquidity\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"lockedLiquidityPercentage\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"lowPrice1\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"lowPrice4\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"lowPrice12\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"lowPrice24\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"network\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"The network ID\"\n }\n },\n \"potentialScam\": {\n \"type\": \"boolean\"\n },\n \"price\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"priceChange1\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"priceChange4\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"priceChange12\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"priceChange24\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"sellCount1\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"sellCount4\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"sellCount12\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"sellCount24\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"tokenAddress\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\",\n \"description\": \"The token contract address\"\n },\n \"description\": \"Array of token contract addresses\"\n },\n \"trendingIgnored\": {\n \"$ref\": \"#/properties/filters/properties/potentialScam\"\n },\n \"txnCount1\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"txnCount4\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"txnCount12\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"txnCount24\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"uniqueBuys1\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"uniqueBuys4\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"uniqueBuys12\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"uniqueBuys24\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"uniqueSells1\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"uniqueSells4\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"uniqueSells12\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"uniqueSells24\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"uniqueTransactions1\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"uniqueTransactions4\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"uniqueTransactions12\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"uniqueTransactions24\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"volumeChange1\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"volumeChange4\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"volumeChange12\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"volumeChange24\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"volumeUSD1\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"volumeUSD4\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"volumeUSD12\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n },\n \"volumeUSD24\": {\n \"$ref\": \"#/properties/filters/properties/buyCount1\",\n \"description\": \"Filter for numeric values with comparison operators\"\n }\n },\n \"additionalProperties\": false\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Maximum number of items to return\"\n },\n \"offset\": {\n \"type\": \"number\",\n \"description\": \"Number of items to skip\"\n },\n \"pairs\": {\n \"anyOf\": [\n {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n }\n },\n {\n \"type\": \"string\"\n }\n ]\n },\n \"phrase\": {\n \"type\": \"string\"\n },\n \"rankings\": {\n \"anyOf\": [\n {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"object\",\n \"properties\": {\n \"attribute\": {\n \"type\": \"string\",\n \"enum\": [\n \"buyCount1\",\n \"buyCount4\",\n \"buyCount12\",\n \"buyCount24\",\n \"buyVolumeUSD1\",\n \"buyVolumeUSD4\",\n \"buyVolumeUSD12\",\n \"buyVolumeUSD24\",\n \"createdAt\",\n \"highPrice1\",\n \"highPrice4\",\n \"highPrice12\",\n \"highPrice24\",\n \"lastTransaction\",\n \"liquidity\",\n \"lockedLiquidityPercentage\",\n \"lowPrice1\",\n \"lowPrice4\",\n \"lowPrice12\",\n \"lowPrice24\",\n \"marketCap\",\n \"price\",\n \"priceChange1\",\n \"priceChange4\",\n \"priceChange12\",\n \"priceChange24\",\n \"sellCount1\",\n \"sellCount4\",\n \"sellCount12\",\n \"sellCount24\",\n \"sellVolumeUSD1\",\n \"sellVolumeUSD4\",\n \"sellVolumeUSD12\",\n \"sellVolumeUSD24\",\n \"swapPct1dOldWallet\",\n \"swapPct7dOldWallet\",\n \"trendingScore\",\n \"trendingScore1\",\n \"trendingScore4\",\n \"trendingScore5m\",\n \"trendingScore12\",\n \"trendingScore24\",\n \"txnCount1\",\n \"txnCount4\",\n \"txnCount12\",\n \"txnCount24\",\n \"uniqueBuys1\",\n \"uniqueBuys4\",\n \"uniqueBuys12\",\n \"uniqueBuys24\",\n \"uniqueSells1\",\n \"uniqueSells4\",\n \"uniqueSells12\",\n \"uniqueSells24\",\n \"uniqueTransactions1\",\n \"uniqueTransactions4\",\n \"uniqueTransactions12\",\n \"uniqueTransactions24\",\n \"volumeChange1\",\n \"volumeChange4\",\n \"volumeChange12\",\n \"volumeChange24\",\n \"volumeUSD1\",\n \"volumeUSD4\",\n \"volumeUSD12\",\n \"volumeUSD24\",\n \"walletAgeAvg\",\n \"walletAgeStd\"\n ]\n },\n \"direction\": {\n \"type\": \"string\",\n \"enum\": [\n \"ASC\",\n \"DESC\"\n ]\n }\n },\n \"required\": [\n \"attribute\",\n \"direction\"\n ],\n \"additionalProperties\": false\n }\n },\n {\n \"type\": \"object\",\n \"properties\": {\n \"attribute\": {\n \"type\": \"string\",\n \"enum\": [\n \"buyCount1\",\n \"buyCount4\",\n \"buyCount12\",\n \"buyCount24\",\n \"buyVolumeUSD1\",\n \"buyVolumeUSD4\",\n \"buyVolumeUSD12\",\n \"buyVolumeUSD24\",\n \"createdAt\",\n \"highPrice1\",\n \"highPrice4\",\n \"highPrice12\",\n \"highPrice24\",\n \"lastTransaction\",\n \"liquidity\",\n \"lockedLiquidityPercentage\",\n \"lowPrice1\",\n \"lowPrice4\",\n \"lowPrice12\",\n \"lowPrice24\",\n \"marketCap\",\n \"price\",\n \"priceChange1\",\n \"priceChange4\",\n \"priceChange12\",\n \"priceChange24\",\n \"sellCount1\",\n \"sellCount4\",\n \"sellCount12\",\n \"sellCount24\",\n \"sellVolumeUSD1\",\n \"sellVolumeUSD4\",\n \"sellVolumeUSD12\",\n \"sellVolumeUSD24\",\n \"swapPct1dOldWallet\",\n \"swapPct7dOldWallet\",\n \"trendingScore\",\n \"trendingScore1\",\n \"trendingScore4\",\n \"trendingScore5m\",\n \"trendingScore12\",\n \"trendingScore24\",\n \"txnCount1\",\n \"txnCount4\",\n \"txnCount12\",\n \"txnCount24\",\n \"uniqueBuys1\",\n \"uniqueBuys4\",\n \"uniqueBuys12\",\n \"uniqueBuys24\",\n \"uniqueSells1\",\n \"uniqueSells4\",\n \"uniqueSells12\",\n \"uniqueSells24\",\n \"uniqueTransactions1\",\n \"uniqueTransactions4\",\n \"uniqueTransactions12\",\n \"uniqueTransactions24\",\n \"volumeChange1\",\n \"volumeChange4\",\n \"volumeChange12\",\n \"volumeChange24\",\n \"volumeUSD1\",\n \"volumeUSD4\",\n \"volumeUSD12\",\n \"volumeUSD24\",\n \"walletAgeAvg\",\n \"walletAgeStd\"\n ]\n },\n \"direction\": {\n \"type\": \"string\",\n \"enum\": [\n \"ASC\",\n \"DESC\"\n ]\n }\n },\n \"required\": [\n \"attribute\",\n \"direction\"\n ],\n \"additionalProperties\": false\n }\n ]\n },\n \"statsType\": {\n \"type\": \"string\",\n \"enum\": [\n \"FILTERED\",\n \"UNFILTERED\"\n ],\n \"description\": \"The type of statistics returned. Can be FILTERED or UNFILTERED\"\n }\n },\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_pair_info\",\n \"description\": \"Get metadata for a pair of tokens, including price, volume, and liquidity stats over various timeframes.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"The network ID the pair is on\"\n },\n \"address\": {\n \"type\": \"string\",\n \"description\": \"The pair contract address\"\n },\n \"quoteToken\": {\n \"type\": \"string\",\n \"enum\": [\n \"token0\",\n \"token1\"\n ],\n \"description\": \"The token of interest (token0 or token1)\"\n },\n \"statsType\": {\n \"type\": \"string\",\n \"enum\": [\n \"FILTERED\",\n \"UNFILTERED\"\n ],\n \"description\": \"The type of statistics returned. Can be FILTERED or UNFILTERED\"\n }\n },\n \"required\": [\n \"networkId\",\n \"address\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_token_pairs\",\n \"description\": \"Get a list of pairs for a token\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"The network ID the token is on\"\n },\n \"address\": {\n \"type\": \"string\",\n \"description\": \"The token contract address\"\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Maximum number of pairs to return (default: 10)\"\n }\n },\n \"required\": [\n \"networkId\",\n \"address\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_token_pairs_metadata\",\n \"description\": \"Get pairs with metadata for a specific token\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"The network ID the token is on\"\n },\n \"address\": {\n \"type\": \"string\",\n \"description\": \"The token contract address\"\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Maximum number of pairs to return (default: 10)\"\n }\n },\n \"required\": [\n \"networkId\",\n \"address\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_liquidity_info\",\n \"description\": \"Get liquidity metadata for a pair, including both unlocked and locked liquidity data\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"The network ID the pair is on\"\n },\n \"address\": {\n \"type\": \"string\",\n \"description\": \"The pair contract address\"\n }\n },\n \"required\": [\n \"networkId\",\n \"address\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_liquidity_locks\",\n \"description\": \"Get liquidity locks for a pair, including details about locked amounts, lock duration, and owner information\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"The network ID the pair is on\"\n },\n \"address\": {\n \"type\": \"string\",\n \"description\": \"The pair contract address\"\n },\n \"cursor\": {\n \"type\": \"string\",\n \"description\": \"Cursor for pagination\"\n }\n },\n \"required\": [\n \"networkId\",\n \"address\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"filter_exchanges\",\n \"description\": \"Get a list of exchanges based on various filters like volume, transactions, active users, etc.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"filters\": {\n \"type\": \"object\",\n \"properties\": {\n \"address\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n },\n \"description\": \"The list of exchange contract addresses to filter by\"\n },\n \"dailyActiveUsers\": {\n \"type\": \"object\",\n \"properties\": {\n \"gt\": {\n \"type\": \"number\",\n \"description\": \"Greater than\"\n },\n \"gte\": {\n \"type\": \"number\",\n \"description\": \"Greater than or equal to\"\n },\n \"lt\": {\n \"type\": \"number\",\n \"description\": \"Less than\"\n },\n \"lte\": {\n \"type\": \"number\",\n \"description\": \"Less than or equal to\"\n }\n },\n \"additionalProperties\": false,\n \"description\": \"The total unique daily active users\"\n },\n \"monthlyActiveUsers\": {\n \"$ref\": \"#/properties/filters/properties/dailyActiveUsers\",\n \"description\": \"The total unique monthly active users (30 days)\"\n },\n \"network\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"The network ID\"\n },\n \"description\": \"The list of network IDs to filter by\"\n },\n \"txnCount1\": {\n \"$ref\": \"#/properties/filters/properties/dailyActiveUsers\",\n \"description\": \"The number of transactions on the exchange in the past hour\"\n },\n \"txnCount4\": {\n \"$ref\": \"#/properties/filters/properties/dailyActiveUsers\",\n \"description\": \"The number of transactions on the exchange in the past 4 hours\"\n },\n \"txnCount12\": {\n \"$ref\": \"#/properties/filters/properties/dailyActiveUsers\",\n \"description\": \"The number of transactions on the exchange in the past 12 hours\"\n },\n \"txnCount24\": {\n \"$ref\": \"#/properties/filters/properties/dailyActiveUsers\",\n \"description\": \"The number of transactions on the exchange in the past 24 hours\"\n },\n \"volumeNBT1\": {\n \"$ref\": \"#/properties/filters/properties/dailyActiveUsers\",\n \"description\": \"The trade volume in the network's base token in the past hour\"\n },\n \"volumeNBT4\": {\n \"$ref\": \"#/properties/filters/properties/dailyActiveUsers\",\n \"description\": \"The trade volume in the network's base token in the past 4 hours\"\n },\n \"volumeNBT12\": {\n \"$ref\": \"#/properties/filters/properties/dailyActiveUsers\",\n \"description\": \"The trade volume in the network's base token in the past 12 hours\"\n },\n \"volumeNBT24\": {\n \"$ref\": \"#/properties/filters/properties/dailyActiveUsers\",\n \"description\": \"The trade volume in the network's base token in the past 24 hours\"\n },\n \"volumeUSD1\": {\n \"$ref\": \"#/properties/filters/properties/dailyActiveUsers\",\n \"description\": \"The trade volume in USD in the past hour\"\n },\n \"volumeUSD4\": {\n \"$ref\": \"#/properties/filters/properties/dailyActiveUsers\",\n \"description\": \"The trade volume in USD in the past 4 hours\"\n },\n \"volumeUSD12\": {\n \"$ref\": \"#/properties/filters/properties/dailyActiveUsers\",\n \"description\": \"The trade volume in USD in the past 12 hours\"\n },\n \"volumeUSD24\": {\n \"$ref\": \"#/properties/filters/properties/dailyActiveUsers\",\n \"description\": \"The trade volume in USD in the past 24 hours\"\n }\n },\n \"additionalProperties\": false\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Maximum number of items to return\"\n },\n \"offset\": {\n \"type\": \"number\",\n \"description\": \"Number of items to skip\"\n },\n \"phrase\": {\n \"type\": \"string\",\n \"description\": \"A phrase to search for. Can match an exchange address or ID (address:networkId), or partially match an exchange name\"\n },\n \"rankings\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"object\",\n \"properties\": {\n \"attribute\": {\n \"type\": \"string\",\n \"enum\": [\n \"dailyActiveUsers\",\n \"monthlyActiveUsers\",\n \"txnCount1\",\n \"txnCount4\",\n \"txnCount12\",\n \"txnCount24\",\n \"volumeNBT1\",\n \"volumeNBT4\",\n \"volumeNBT12\",\n \"volumeNBT24\",\n \"volumeUSD1\",\n \"volumeUSD4\",\n \"volumeUSD12\",\n \"volumeUSD24\"\n ]\n },\n \"direction\": {\n \"type\": \"string\",\n \"enum\": [\n \"ASC\",\n \"DESC\"\n ]\n }\n },\n \"required\": [\n \"attribute\",\n \"direction\"\n ],\n \"additionalProperties\": false\n },\n \"description\": \"A list of ranking attributes to apply\"\n }\n },\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_network_dexes\",\n \"description\": \"Get a list of exchanges on a specific network\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"The network ID to get exchanges for\"\n },\n \"phrase\": {\n \"type\": \"string\",\n \"description\": \"A phrase to search for exchange names or addresses\"\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Maximum number of items to return\"\n },\n \"offset\": {\n \"type\": \"number\",\n \"description\": \"Number of items to skip\"\n }\n },\n \"required\": [\n \"networkId\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_pair_chart_metadata\",\n \"description\": \"Returns charting metadata for a given pair. Used for implementing a Trading View datafeed.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"symbol\": {\n \"type\": \"string\",\n \"description\": \"The ID of the pair in format 'address:networkId' (e.g., '0xB4e16d0168e52d35CaCD2c6185b44281Ec28C9Dc:1')\"\n },\n \"currencyCode\": {\n \"type\": \"string\",\n \"description\": \"The currency to use for the response. Can be 'USD' (default) or 'TOKEN'\"\n }\n },\n \"required\": [\n \"symbol\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_event_labels\",\n \"description\": \"Get a list of event labels that can be used to categorize events\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"id\": {\n \"type\": \"string\",\n \"description\": \"The ID to get event labels for\"\n },\n \"cursor\": {\n \"type\": \"string\",\n \"description\": \"Cursor for pagination\"\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Maximum number of items to return\"\n }\n },\n \"required\": [\n \"id\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"filter_wallets\",\n \"description\": \"Search and filter blockchain wallets based on various criteria.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"excludeLabels\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n }\n },\n \"filters\": {},\n \"includeLabels\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n }\n },\n \"limit\": {\n \"type\": \"number\"\n },\n \"offset\": {\n \"type\": \"number\"\n },\n \"rankings\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"object\",\n \"properties\": {\n \"attribute\": {\n \"type\": \"string\",\n \"enum\": [\n \"averageProfitUsdPerTrade1d\",\n \"averageProfitUsdPerTrade1w\",\n \"averageProfitUsdPerTrade1y\",\n \"averageProfitUsdPerTrade30d\",\n \"averageSwapAmountUsd1d\",\n \"averageSwapAmountUsd1w\",\n \"averageSwapAmountUsd1y\",\n \"averageSwapAmountUsd30d\",\n \"botScore\",\n \"firstTransactionAt\",\n \"lastTransactionAt\",\n \"nativeTokenBalance\",\n \"realizedProfitPercentage1d\",\n \"realizedProfitPercentage1w\",\n \"realizedProfitPercentage1y\",\n \"realizedProfitPercentage30d\",\n \"realizedProfitUsd1d\",\n \"realizedProfitUsd1w\",\n \"realizedProfitUsd1y\",\n \"realizedProfitUsd30d\",\n \"scammerScore\",\n \"swaps1d\",\n \"swaps1w\",\n \"swaps1y\",\n \"swaps30d\",\n \"swapsAll1d\",\n \"swapsAll1w\",\n \"swapsAll1y\",\n \"swapsAll30d\",\n \"uniqueTokens1d\",\n \"uniqueTokens1w\",\n \"uniqueTokens1y\",\n \"uniqueTokens30d\",\n \"volumeUsd1d\",\n \"volumeUsd1w\",\n \"volumeUsd1y\",\n \"volumeUsd30d\",\n \"volumeUsdAll1d\",\n \"volumeUsdAll1w\",\n \"volumeUsdAll1y\",\n \"volumeUsdAll30d\",\n \"winRate1d\",\n \"winRate1w\",\n \"winRate1y\",\n \"winRate30d\"\n ]\n },\n \"direction\": {\n \"type\": \"string\",\n \"enum\": [\n \"ASC\",\n \"DESC\"\n ]\n }\n },\n \"required\": [\n \"attribute\",\n \"direction\"\n ],\n \"additionalProperties\": false\n }\n },\n \"wallets\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n }\n }\n },\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"filter_token_wallets\",\n \"description\": \"Filter wallets that hold or trade a specific token.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"excludeLabels\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n }\n },\n \"filters\": {},\n \"filtersV2\": {},\n \"includeLabels\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n }\n },\n \"limit\": {\n \"type\": \"number\"\n },\n \"networkId\": {\n \"type\": \"number\"\n },\n \"offset\": {\n \"type\": \"number\"\n },\n \"phrase\": {\n \"type\": \"string\"\n },\n \"rankings\": {\n \"type\": \"array\"\n },\n \"tokenId\": {\n \"type\": \"string\"\n },\n \"walletAddress\": {\n \"type\": \"string\"\n },\n \"wallets\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n }\n }\n },\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_wallet_stats\",\n \"description\": \"Get comprehensive statistics for a wallet.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"The network ID\"\n },\n \"walletAddress\": {\n \"type\": \"string\",\n \"description\": \"The wallet address\"\n },\n \"timestamp\": {\n \"type\": \"number\",\n \"description\": \"Unix timestamp\"\n },\n \"includeNetworkBreakdown\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"walletAddress\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_wallet_chart\",\n \"description\": \"Generate chart data for wallet.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"The network ID\"\n },\n \"range\": {\n \"type\": \"object\",\n \"properties\": {\n \"start\": {\n \"type\": \"number\",\n \"description\": \"Unix timestamp\"\n },\n \"end\": {\n \"$ref\": \"#/properties/range/properties/start\"\n }\n },\n \"required\": [\n \"start\",\n \"end\"\n ],\n \"additionalProperties\": false\n },\n \"resolution\": {\n \"type\": \"string\"\n },\n \"walletAddress\": {\n \"type\": \"string\",\n \"description\": \"The wallet address\"\n }\n },\n \"required\": [\n \"range\",\n \"resolution\",\n \"walletAddress\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_nft_pool\",\n \"description\": \"Get detailed information about a specific NFT pool including pool balance, spot price, NFT assets, fees, and trading statistics. Supports AMM NFT marketplaces like Sudoswap.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"address\": {\n \"type\": \"string\",\n \"description\": \"The NFT pool address\"\n },\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"The network ID where the pool exists\"\n }\n },\n \"required\": [\n \"address\",\n \"networkId\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_nft_pool_events\",\n \"description\": \"Get transaction events for NFT pools across all AMM NFT marketplaces. Returns detailed event data including swaps, deposits, withdrawals, price updates, and pool management activities.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"The network ID to get events for\"\n },\n \"collectionAddress\": {\n \"type\": \"string\",\n \"description\": \"Filter by NFT collection address\"\n },\n \"cursor\": {\n \"type\": \"string\",\n \"description\": \"Pagination cursor\"\n },\n \"eventTypes\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\",\n \"enum\": [\n \"ASSET_RECIPIENT_CHANGE\",\n \"DELTA_UPDATE\",\n \"FEE_UPDATE\",\n \"NEW_POOL\",\n \"NEW_POOL_V2\",\n \"NFT_DEPOSIT\",\n \"NFT_DEPOSIT_V2\",\n \"NFT_WITHDRAWAL\",\n \"NFT_WITHDRAWAL_V2\",\n \"OWNERSHIP_TRANSFERRED\",\n \"SPOT_PRICE_UPDATE\",\n \"SPOT_PRICE_UPDATE_V2\",\n \"SWAP_NFT_IN_POOL\",\n \"SWAP_NFT_IN_POOL_V2\",\n \"SWAP_NFT_OUT_POOL\",\n \"SWAP_NFT_OUT_POOL_V2\",\n \"TOKEN_DEPOSIT\",\n \"TOKEN_DEPOSIT_V2\",\n \"TOKEN_WITHDRAWAL\",\n \"TOKEN_WITHDRAWAL_V2\"\n ]\n },\n \"description\": \"Filter by event types\"\n },\n \"exchangeAddress\": {\n \"type\": \"string\",\n \"description\": \"Filter by exchange address\"\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Maximum number of events to return\"\n },\n \"poolAddress\": {\n \"type\": \"string\",\n \"description\": \"Filter by specific pool address\"\n },\n \"timestamp\": {\n \"type\": \"object\",\n \"properties\": {\n \"from\": {\n \"type\": \"number\",\n \"description\": \"Unix timestamp\"\n },\n \"to\": {\n \"$ref\": \"#/properties/timestamp/properties/from\",\n \"description\": \"Unix timestamp\"\n }\n },\n \"additionalProperties\": false,\n \"description\": \"Filter by timestamp range\"\n }\n },\n \"required\": [\n \"networkId\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_nft_pool_stats\",\n \"description\": \"Get aggregated pool statistics and metadata for a specific NFT collection on a given AMM NFT exchange. Returns collection-wide liquidity, volume, fees, and floor price data.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"collectionAddress\": {\n \"type\": \"string\",\n \"description\": \"The NFT collection address\"\n },\n \"exchangeAddress\": {\n \"type\": \"string\",\n \"description\": \"The exchange address\"\n },\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"The network ID\"\n }\n },\n \"required\": [\n \"collectionAddress\",\n \"exchangeAddress\",\n \"networkId\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_nft_collections_by_exchange\",\n \"description\": \"Get all NFT collections that have liquidity pools on a specific AMM NFT exchange. Returns collection metadata, liquidity statistics, and trading metrics for each collection.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"exchangeAddress\": {\n \"type\": \"string\",\n \"description\": \"The exchange address\"\n },\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"The network ID\"\n },\n \"cursor\": {\n \"type\": \"string\",\n \"description\": \"Pagination cursor\"\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Maximum number of collections to return\"\n }\n },\n \"required\": [\n \"exchangeAddress\",\n \"networkId\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_nft_pools_by_collection\",\n \"description\": \"Get all liquidity pools for a specific NFT collection on a given AMM NFT exchange. Returns detailed pool information including balances, pricing, assets, and trading statistics.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"collectionAddress\": {\n \"type\": \"string\",\n \"description\": \"The NFT collection address\"\n },\n \"exchangeAddress\": {\n \"type\": \"string\",\n \"description\": \"The exchange address\"\n },\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"The network ID\"\n },\n \"cursor\": {\n \"type\": \"string\",\n \"description\": \"Pagination cursor\"\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Maximum number of pools to return\"\n }\n },\n \"required\": [\n \"collectionAddress\",\n \"exchangeAddress\",\n \"networkId\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_nft_pools_by_owner\",\n \"description\": \"Get all NFT liquidity pools owned by a specific wallet address across AMM NFT marketplaces. Returns detailed pool information including assets, balances, and performance metrics.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"The network ID\"\n },\n \"ownerAddress\": {\n \"type\": \"string\",\n \"description\": \"The owner's wallet address\"\n },\n \"cursor\": {\n \"type\": \"string\",\n \"description\": \"Pagination cursor\"\n },\n \"exchangeAddress\": {\n \"type\": \"string\",\n \"description\": \"Filter by specific exchange address\"\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Maximum number of pools to return\"\n }\n },\n \"required\": [\n \"networkId\",\n \"ownerAddress\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"filter_nft_collections\",\n \"description\": \"Search and filter NFT collections based on various criteria including volume, floor price, trading activity, and metadata. All parameters are optional - use filters for advanced criteria.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"collections\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n },\n \"description\": \"List of collection addresses to filter by\"\n },\n \"filters\": {\n \"description\": \"NftCollectionFilters object for advanced filtering\"\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Maximum number of collections to return\"\n },\n \"offset\": {\n \"type\": \"number\",\n \"description\": \"Number of items to skip for pagination\"\n },\n \"phrase\": {\n \"type\": \"string\",\n \"description\": \"Search phrase to match collection names\"\n },\n \"rankings\": {\n \"type\": \"array\",\n \"description\": \"Ranking criteria for sorting results\"\n }\n },\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"filter_nft_pool_collections\",\n \"description\": \"Search and filter NFT collections that have liquidity pools on AMM NFT marketplaces. Returns collections with pool statistics and trading metrics. All parameters are optional.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"filters\": {\n \"description\": \"NftPoolCollectionFilters object for advanced filtering\"\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Maximum number of collections to return\"\n },\n \"offset\": {\n \"type\": \"number\",\n \"description\": \"Number of items to skip for pagination\"\n },\n \"phrase\": {\n \"type\": \"string\",\n \"description\": \"Search phrase to match collection names\"\n },\n \"rankings\": {\n \"type\": \"array\",\n \"description\": \"Ranking criteria for sorting results\"\n }\n },\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"search_nfts\",\n \"description\": \"Search for NFTs across collections and marketplaces with advanced filtering options. Returns comprehensive NFT data including metadata, pricing, and trading history. All parameters are optional.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"filterWashTrading\": {\n \"type\": \"boolean\",\n \"description\": \"Whether to filter out wash trading\"\n },\n \"include\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n },\n \"description\": \"Types of NFT data to include in search\"\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Maximum number of results to return\"\n },\n \"networkFilter\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"The network ID\"\n },\n \"description\": \"List of network IDs to search within\"\n },\n \"search\": {\n \"type\": \"string\",\n \"description\": \"Search query string\"\n }\n },\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"filter_nft_pools\",\n \"description\": \"Search and filter NFT liquidity pools based on various criteria including liquidity, volume, pool type, and performance metrics. All parameters are optional.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"filters\": {\n \"description\": \"NftPoolFilters object for advanced filtering\"\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Maximum number of pools to return\"\n },\n \"offset\": {\n \"type\": \"number\",\n \"description\": \"Number of items to skip for pagination\"\n },\n \"phrase\": {\n \"type\": \"string\",\n \"description\": \"Search phrase to match pool details\"\n },\n \"rankings\": {\n \"type\": \"array\",\n \"description\": \"Ranking criteria for sorting results\"\n }\n },\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_nft_collection_assets\",\n \"description\": \"Get individual NFT assets from a collection with detailed metadata including attributes, media, and token-specific information. Address and networkId are required.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"address\": {\n \"type\": \"string\",\n \"description\": \"Collection contract address (required)\"\n },\n \"cursor\": {\n \"type\": \"string\",\n \"description\": \"Pagination cursor\"\n },\n \"fetchMissingAssets\": {\n \"type\": \"boolean\",\n \"description\": \"Whether to fetch missing asset metadata\"\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Maximum number of assets to return\"\n },\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"Network ID (required)\"\n },\n \"tokenIds\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n },\n \"description\": \"Specific token IDs to fetch\"\n }\n },\n \"required\": [\n \"address\",\n \"networkId\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_nft_collection_stats\",\n \"description\": \"Get bucketed statistical data for NFT collections over time including volume, price movements, and trading metrics across specified time periods. CollectionAddress and networkId are required.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"bucketCount\": {\n \"type\": \"number\",\n \"description\": \"Number of time buckets for statistics\"\n },\n \"collectionAddress\": {\n \"type\": \"string\",\n \"description\": \"Collection contract address (required)\"\n },\n \"durations\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\",\n \"enum\": [\n \"HOUR\",\n \"DAY\",\n \"WEEK\",\n \"MONTH\",\n \"YEAR\"\n ]\n },\n \"description\": \"Time durations for statistics\"\n },\n \"grouping\": {\n \"type\": \"string\",\n \"description\": \"Grouping strategy for statistics\"\n },\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"Network ID (required)\"\n },\n \"timestamp\": {\n \"type\": \"number\",\n \"description\": \"Timestamp for historical data\"\n }\n },\n \"required\": [\n \"collectionAddress\",\n \"networkId\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_nft_collection_events\",\n \"description\": \"Get transaction events for NFT collections across marketplaces including sales, transfers, mints, and other activities. NetworkId is required, other filters are optional.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"address\": {\n \"type\": \"string\",\n \"description\": \"Collection contract address\"\n },\n \"cursor\": {\n \"type\": \"string\",\n \"description\": \"Pagination cursor\"\n },\n \"exchangeAddress\": {\n \"type\": \"string\",\n \"description\": \"Exchange address to filter by\"\n },\n \"includeTransfers\": {\n \"type\": \"boolean\",\n \"description\": \"Whether to include transfer events\"\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Maximum number of events to return\"\n },\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"Network ID (required)\"\n },\n \"poolAddress\": {\n \"type\": \"string\",\n \"description\": \"Pool address to filter by\"\n },\n \"timestamp\": {\n \"type\": \"object\",\n \"properties\": {\n \"from\": {\n \"type\": \"number\",\n \"description\": \"Unix timestamp\"\n },\n \"to\": {\n \"$ref\": \"#/properties/timestamp/properties/from\",\n \"description\": \"Unix timestamp\"\n }\n },\n \"additionalProperties\": false,\n \"description\": \"Timestamp range filter\"\n },\n \"tokenId\": {\n \"type\": \"string\",\n \"description\": \"Specific token ID to filter by\"\n }\n },\n \"required\": [\n \"networkId\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_nft_contracts\",\n \"description\": \"Get enhanced contract information for NFT collections including metadata, social links, and labels. Provide a list of contract addresses and network IDs.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"contracts\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"object\",\n \"properties\": {\n \"address\": {\n \"type\": \"string\"\n },\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"The network ID\"\n }\n },\n \"required\": [\n \"address\",\n \"networkId\"\n ],\n \"additionalProperties\": false\n },\n \"description\": \"List of contract addresses and network IDs\"\n }\n },\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"filter_parallel_assets\",\n \"description\": \"Search and filter Parallel trading card game assets with advanced filtering and matching criteria. Returns card metadata, game stats, and pricing information. All parameters are optional.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"filters\": {\n \"description\": \"ParallelAssetFilters object for advanced filtering\"\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Maximum number of assets to return\"\n },\n \"match\": {\n \"description\": \"ParallelAssetMatchers for matching criteria\"\n },\n \"offset\": {\n \"type\": \"number\",\n \"description\": \"Number of items to skip for pagination\"\n },\n \"phrase\": {\n \"type\": \"string\",\n \"description\": \"Search phrase for asset names\"\n },\n \"rankings\": {\n \"type\": \"array\",\n \"description\": \"Ranking criteria for sorting results\"\n }\n },\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_parallel_card_changes\",\n \"description\": \"Get changes made to Parallel trading card metadata over time including updates to stats, artwork, and game mechanics. All parameters are optional.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"cursor\": {\n \"type\": \"string\",\n \"description\": \"Pagination cursor\"\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Maximum number of changes to return\"\n },\n \"parallelId\": {\n \"type\": \"number\",\n \"description\": \"Specific Parallel card ID\"\n }\n },\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_prime_pool_assets\",\n \"description\": \"Get assets in Prime ecosystem pools including liquidity pool compositions and asset details. NetworkId is required, other parameters are optional.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"cursor\": {\n \"type\": \"string\",\n \"description\": \"Pagination cursor\"\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Maximum number of assets to return\"\n },\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"Network ID (required)\"\n },\n \"poolContractAddress\": {\n \"type\": \"string\",\n \"description\": \"Specific pool contract address to filter by\"\n },\n \"poolId\": {\n \"type\": \"string\",\n \"description\": \"Specific pool ID to filter by\"\n },\n \"walletAddress\": {\n \"type\": \"string\",\n \"description\": \"Specific wallet address to filter by\"\n }\n },\n \"required\": [\n \"networkId\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_prime_pool_events\",\n \"description\": \"Get transaction events for Prime ecosystem pools including liquidity changes, swaps, and pool management activities. NetworkId is required, other parameters are optional.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"cursor\": {\n \"type\": \"string\",\n \"description\": \"Pagination cursor\"\n },\n \"eventTypes\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n },\n \"description\": \"Types of events to include\"\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Maximum number of events to return\"\n },\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"Network ID (required)\"\n },\n \"poolContractAddress\": {\n \"type\": \"string\",\n \"description\": \"Specific pool contract address to filter by\"\n },\n \"poolId\": {\n \"type\": \"string\",\n \"description\": \"Specific pool ID to filter by\"\n },\n \"walletAddress\": {\n \"type\": \"string\",\n \"description\": \"Specific wallet address to filter by\"\n }\n },\n \"required\": [\n \"networkId\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_prime_pools\",\n \"description\": \"Get information about Prime ecosystem pools including pool statistics, liquidity, and performance metrics. Address and networkId are required.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"address\": {\n \"type\": \"string\",\n \"description\": \"Pool address (required)\"\n },\n \"cursor\": {\n \"type\": \"string\",\n \"description\": \"Pagination cursor\"\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Maximum number of pools to return\"\n },\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"Network ID (required)\"\n }\n },\n \"required\": [\n \"address\",\n \"networkId\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_nft_holders\",\n \"description\": \"Get holders of a specific NFT collection ordered by holdings with detailed balance information. CollectionAddress and networkId are required.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"collectionAddress\": {\n \"type\": \"string\",\n \"description\": \"Collection contract address (required)\"\n },\n \"cursor\": {\n \"type\": \"string\",\n \"description\": \"Pagination cursor\"\n },\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"Network ID (required)\"\n }\n },\n \"required\": [\n \"collectionAddress\",\n \"networkId\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_wallet_nft_collections\",\n \"description\": \"Get NFT collections held by a specific wallet including collection metadata and holding quantities. Input requires walletAddress.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"input\": {\n \"type\": \"object\",\n \"properties\": {\n \"cursor\": {\n \"type\": \"string\",\n \"description\": \"Pagination cursor\"\n },\n \"walletAddress\": {\n \"type\": \"string\",\n \"description\": \"Wallet address (required)\"\n }\n },\n \"required\": [\n \"walletAddress\"\n ],\n \"additionalProperties\": false,\n \"description\": \"WalletNftCollectionsInput object (required)\"\n }\n },\n \"required\": [\n \"input\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_wallet_nft_assets\",\n \"description\": \"Get specific NFT assets held by a wallet from a particular collection including token metadata and ownership details. Input requires collectionId in format 'collectionAddress:networkId' and walletAddress.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"input\": {\n \"type\": \"object\",\n \"properties\": {\n \"collectionId\": {\n \"type\": \"string\",\n \"description\": \"Collection ID in format collectionAddress:networkId (required)\"\n },\n \"cursor\": {\n \"type\": \"string\",\n \"description\": \"Pagination cursor\"\n },\n \"walletAddress\": {\n \"type\": \"string\",\n \"description\": \"Wallet address (required)\"\n }\n },\n \"required\": [\n \"collectionId\",\n \"walletAddress\"\n ],\n \"additionalProperties\": false,\n \"description\": \"WalletNftCollectionAssetsInput object (required)\"\n }\n },\n \"required\": [\n \"input\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_token_lifecycle_events\",\n \"description\": \"Get mint and burn events for a specific token including amounts, timestamps, and supply changes. Address and networkId are required.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"cursor\": {\n \"type\": \"string\",\n \"description\": \"Pagination cursor\"\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Maximum number of events to return\"\n },\n \"query\": {\n \"type\": \"object\",\n \"properties\": {\n \"address\": {\n \"type\": \"string\",\n \"description\": \"Token contract address (required)\"\n },\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"Network ID (required)\"\n }\n },\n \"required\": [\n \"address\",\n \"networkId\"\n ],\n \"additionalProperties\": false,\n \"description\": \"Query parameters for token lifecycle events\"\n }\n },\n \"required\": [\n \"query\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_token_top_traders\",\n \"description\": \"Get the top traders for a specific token over a specified time period including trading volumes, profits, and transaction counts. TokenAddress, networkId, and tradingPeriod are required.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"input\": {\n \"type\": \"object\",\n \"properties\": {\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Number of traders to return\"\n },\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"Network ID (required)\"\n },\n \"offset\": {\n \"type\": \"number\",\n \"description\": \"Offset for pagination\"\n },\n \"tokenAddress\": {\n \"type\": \"string\",\n \"description\": \"Token contract address (required)\"\n },\n \"tradingPeriod\": {\n \"type\": \"string\",\n \"enum\": [\n \"DAY\",\n \"MONTH\",\n \"WEEK\",\n \"YEAR\"\n ],\n \"description\": \"Trading period (DAY, WEEK, MONTH, YEAR)\"\n }\n },\n \"required\": [\n \"networkId\",\n \"tokenAddress\",\n \"tradingPeriod\"\n ],\n \"additionalProperties\": false,\n \"description\": \"Input parameters for token top traders query\"\n }\n },\n \"required\": [\n \"input\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_token_liquidity_metadata\",\n \"description\": \"Get liquidity metadata for all pairs of a given token\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"networkId\": {\n \"type\": \"number\",\n \"exclusiveMinimum\": 0,\n \"description\": \"The network ID the token is on\"\n },\n \"address\": {\n \"type\": \"string\",\n \"description\": \"The token contract address\"\n }\n },\n \"required\": [\n \"networkId\",\n \"address\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_community_notes\",\n \"description\": \"Get community gathered notes and annotations. Returns community-contributed information and insights.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"cursor\": {\n \"type\": \"string\",\n \"description\": \"Cursor for pagination\"\n },\n \"filter\": {},\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Maximum number of items to return\"\n }\n },\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_prime_holders\",\n \"description\": \"Get holders of Prime tokens with detailed balance information, USD values, and token metadata. All parameters are optional.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"cursor\": {\n \"type\": \"string\",\n \"description\": \"Pagination cursor\"\n }\n },\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"search_tokens\",\n \"description\": \"Search for tokens by name, symbol, or contract address on HIVE_DATASOURCE_TWO. Returns matching tokens with price, volume, and market cap data. Uses filterTokens API with phrase search.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"phrase\": {\n \"type\": \"string\",\n \"description\": \"The search query to match against token name, symbol, or address\"\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Maximum number of results to return (default: 20)\"\n },\n \"offset\": {\n \"type\": \"number\",\n \"description\": \"Pagination offset for results\"\n },\n \"networkFilter\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"number\"\n },\n \"description\": \"Filter results to specific network IDs (e.g., [1] for Ethereum, [56] for BSC)\"\n }\n },\n \"required\": [\n \"phrase\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"list_top_tokens\",\n \"description\": \"Get a ranked list of top tokens by volume, market cap, or other metrics on HIVE_DATASOURCE_TWO. Returns tokens sorted by the specified ranking attribute.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Maximum number of tokens to return (default: 100)\"\n },\n \"offset\": {\n \"type\": \"number\",\n \"description\": \"Pagination offset for results\"\n },\n \"rankingAttribute\": {\n \"type\": \"string\",\n \"description\": \"Attribute to rank tokens by (e.g., volume24, marketCap, change24)\"\n },\n \"rankingDirection\": {\n \"type\": \"string\",\n \"enum\": [\n \"ASC\",\n \"DESC\"\n ],\n \"description\": \"Sort direction ASC or DESC (default: DESC)\"\n }\n },\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_latest_pairs\",\n \"description\": \"Get the most recently created trading pairs across DEXs on HIVE_DATASOURCE_TWO. Ideal for discovering new token launches and monitoring launchpad activity. Pairs are sorted by creation time.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Maximum number of pairs to return (default: 20)\"\n },\n \"offset\": {\n \"type\": \"number\",\n \"description\": \"Pagination offset for results\"\n },\n \"minLiquidity\": {\n \"type\": \"number\",\n \"description\": \"Minimum liquidity in USD to include\"\n }\n },\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"filter_network_wallets\",\n \"description\": \"Filter and rank wallets by realized profit, trading activity, or other metrics on HIVE_DATASOURCE_TWO. Useful for finding top traders or analyzing wallet behavior. (Requires Growth or Enterprise plan)\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Maximum number of wallets to return (default: 20)\"\n },\n \"offset\": {\n \"type\": \"number\",\n \"description\": \"Pagination offset for results\"\n },\n \"rankingAttribute\": {\n \"type\": \"string\",\n \"description\": \"Attribute to rank wallets by (e.g., realizedProfitUsd30d, swaps1d)\"\n },\n \"rankingDirection\": {\n \"type\": \"string\",\n \"enum\": [\n \"ASC\",\n \"DESC\"\n ],\n \"description\": \"Sort direction ASC or DESC (default: DESC)\"\n },\n \"wallets\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n },\n \"description\": \"Filter to specific wallet addresses\"\n },\n \"includeLabels\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n },\n \"description\": \"Include only wallets with these labels\"\n },\n \"excludeLabels\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n },\n \"description\": \"Exclude wallets with these labels\"\n }\n },\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_detailed_stats\",\n \"description\": \"Get comprehensive statistics for a specific trading pair on HIVE_DATASOURCE_TWO including volume, price changes, buy/sell counts, and liquidity metrics over multiple timeframes.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"networkId\": {\n \"type\": \"number\",\n \"description\": \"The network ID (e.g., 1 for Ethereum, 56 for BSC)\"\n },\n \"pairAddress\": {\n \"type\": \"string\",\n \"description\": \"The trading pair contract address\"\n },\n \"durations\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n },\n \"description\": \"Time durations for stats (e.g., day1, hour12, hour4, hour1, min5)\"\n },\n \"bucketCount\": {\n \"type\": \"number\",\n \"description\": \"Number of time buckets for historical data\"\n },\n \"statsType\": {\n \"type\": \"string\",\n \"description\": \"Statistics type (filtered or unfiltered)\"\n },\n \"tokenOfInterest\": {\n \"type\": \"string\",\n \"description\": \"Which token in the pair to focus on (token0 or token1)\"\n },\n \"timestamp\": {\n \"type\": \"number\",\n \"description\": \"Historical timestamp for stats (Unix seconds)\"\n }\n },\n \"required\": [\n \"networkId\",\n \"pairAddress\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n }\n },\n {\n \"name\": \"get_exchange_markets\",\n \"description\": \"Fetch all available markets/trading pairs from an exchange\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"exchange\": {\n \"type\": \"string\",\n \"description\": \"Exchange ID (e.g., binance, coinbase, kraken)\",\n \"example\": \"binance\"\n }\n },\n \"required\": [\n \"exchange\"\n ]\n }\n },\n {\n \"name\": \"get_exchange_currencies\",\n \"description\": \"Fetch all available currencies from an exchange\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"exchange\": {\n \"type\": \"string\",\n \"description\": \"Exchange ID (e.g., binance, coinbase, kraken)\",\n \"example\": \"binance\"\n }\n },\n \"required\": [\n \"exchange\"\n ]\n }\n },\n {\n \"name\": \"get_ticker\",\n \"description\": \"Fetch ticker data (price, volume, etc.) for a specific trading pair\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"exchange\": {\n \"type\": \"string\",\n \"description\": \"Exchange ID (e.g., binance, coinbase, kraken)\",\n \"example\": \"binance\"\n },\n \"symbol\": {\n \"type\": \"string\",\n \"description\": \"Trading pair symbol (e.g., BTC/USDT, ETH/USD)\",\n \"example\": \"BTC/USDT\"\n }\n },\n \"required\": [\n \"exchange\",\n \"symbol\"\n ]\n }\n },\n {\n \"name\": \"get_tickers\",\n \"description\": \"Fetch ticker data for multiple trading pairs\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"exchange\": {\n \"type\": \"string\",\n \"description\": \"Exchange ID (e.g., binance, coinbase, kraken)\",\n \"example\": \"binance\"\n },\n \"symbols\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n },\n \"description\": \"Array of trading pair symbols (optional, fetches all if not provided)\",\n \"example\": [\n \"BTC/USDT\",\n \"ETH/USDT\"\n ]\n }\n },\n \"required\": [\n \"exchange\"\n ]\n }\n },\n {\n \"name\": \"get_orderbook\",\n \"description\": \"Fetch order book (bids and asks) for a trading pair\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"exchange\": {\n \"type\": \"string\",\n \"description\": \"Exchange ID (e.g., binance, coinbase, kraken)\",\n \"example\": \"binance\"\n },\n \"symbol\": {\n \"type\": \"string\",\n \"description\": \"Trading pair symbol (e.g., BTC/USDT, ETH/USD)\",\n \"example\": \"BTC/USDT\"\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Number of order book entries to return\",\n \"example\": 10\n }\n },\n \"required\": [\n \"exchange\",\n \"symbol\"\n ]\n }\n },\n {\n \"name\": \"get_recent_trades\",\n \"description\": \"Fetch recent trades for a trading pair\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"exchange\": {\n \"type\": \"string\",\n \"description\": \"Exchange ID (e.g., binance, coinbase, kraken)\",\n \"example\": \"binance\"\n },\n \"symbol\": {\n \"type\": \"string\",\n \"description\": \"Trading pair symbol (e.g., BTC/USDT, ETH/USD)\",\n \"example\": \"BTC/USDT\"\n },\n \"since\": {\n \"type\": \"number\",\n \"description\": \"Timestamp in milliseconds to fetch trades since\",\n \"example\": 1693958400000\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Number of trades to return\",\n \"example\": 100\n }\n },\n \"required\": [\n \"exchange\",\n \"symbol\"\n ]\n }\n },\n {\n \"name\": \"get_ohlcv\",\n \"description\": \"Fetch OHLCV (candlestick) data for a trading pair\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"exchange\": {\n \"type\": \"string\",\n \"description\": \"Exchange ID (e.g., binance, coinbase, kraken)\",\n \"example\": \"binance\"\n },\n \"symbol\": {\n \"type\": \"string\",\n \"description\": \"Trading pair symbol (e.g., BTC/USDT, ETH/USD)\",\n \"example\": \"BTC/USDT\"\n },\n \"timeframe\": {\n \"type\": \"string\",\n \"description\": \"Timeframe (e.g., 1m, 5m, 15m, 1h, 4h, 1d)\",\n \"example\": \"1h\",\n \"default\": \"1m\"\n },\n \"since\": {\n \"type\": \"number\",\n \"description\": \"Timestamp in milliseconds to fetch candles since\",\n \"example\": 1693958400000\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Number of candles to return\",\n \"example\": 100\n }\n },\n \"required\": [\n \"exchange\",\n \"symbol\"\n ]\n }\n },\n {\n \"name\": \"get_funding_rate\",\n \"description\": \"Fetch current funding rate for a perpetual futures contract\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"exchange\": {\n \"type\": \"string\",\n \"description\": \"Exchange ID (e.g., binance, bybit, okx)\",\n \"example\": \"binance\"\n },\n \"symbol\": {\n \"type\": \"string\",\n \"description\": \"Trading pair symbol (e.g., BTC/USDT:USDT)\",\n \"example\": \"BTC/USDT:USDT\"\n }\n },\n \"required\": [\n \"exchange\",\n \"symbol\"\n ]\n }\n },\n {\n \"name\": \"get_funding_rate_history\",\n \"description\": \"Fetch funding rate history for perpetual futures contracts\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"exchange\": {\n \"type\": \"string\",\n \"description\": \"Exchange ID (e.g., binance, bybit, okx)\",\n \"example\": \"binance\"\n },\n \"symbol\": {\n \"type\": \"string\",\n \"description\": \"Trading pair symbol (optional, fetches all if not provided)\",\n \"example\": \"BTC/USDT:USDT\"\n },\n \"since\": {\n \"type\": \"number\",\n \"description\": \"Timestamp in milliseconds to fetch history since\",\n \"example\": 1693958400000\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Number of funding rate entries to return\",\n \"example\": 100\n }\n },\n \"required\": [\n \"exchange\"\n ]\n }\n },\n {\n \"name\": \"get_best_bid_ask\",\n \"description\": \"Fetch best bid/ask prices for multiple trading pairs\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"exchange\": {\n \"type\": \"string\",\n \"description\": \"Exchange ID (e.g., binance, coinbase, kraken)\",\n \"example\": \"binance\"\n },\n \"symbols\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n },\n \"description\": \"Array of trading pair symbols (optional, fetches all if not provided)\",\n \"example\": [\n \"BTC/USDT\",\n \"ETH/USDT\"\n ]\n }\n },\n \"required\": [\n \"exchange\"\n ]\n }\n },\n {\n \"name\": \"get_exchange_status\",\n \"description\": \"Fetch the exchange system status to check if it is operating normally\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"exchange\": {\n \"type\": \"string\",\n \"description\": \"Exchange ID (e.g., binance, coinbase, kraken)\",\n \"example\": \"binance\"\n }\n },\n \"required\": [\n \"exchange\"\n ]\n }\n },\n {\n \"name\": \"get_exchange_time\",\n \"description\": \"Fetch the current exchange server time\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"exchange\": {\n \"type\": \"string\",\n \"description\": \"Exchange ID (e.g., binance, coinbase, kraken)\",\n \"example\": \"binance\"\n }\n },\n \"required\": [\n \"exchange\"\n ]\n }\n },\n {\n \"name\": \"get_l2_orderbook\",\n \"description\": \"Fetch level 2 (aggregated) order book for faster performance\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"exchange\": {\n \"type\": \"string\",\n \"description\": \"Exchange ID (e.g., binance, coinbase, kraken)\",\n \"example\": \"binance\"\n },\n \"symbol\": {\n \"type\": \"string\",\n \"description\": \"Trading pair symbol (e.g., BTC/USDT, ETH/USD)\",\n \"example\": \"BTC/USDT\"\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Number of order book entries to return\",\n \"example\": 10\n }\n },\n \"required\": [\n \"exchange\",\n \"symbol\"\n ]\n }\n },\n {\n \"name\": \"get_funding_rates\",\n \"description\": \"Fetch funding rates for multiple or all perpetual futures contracts\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"exchange\": {\n \"type\": \"string\",\n \"description\": \"Exchange ID (e.g., binance, bybit, okx)\",\n \"example\": \"binance\"\n },\n \"symbols\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n },\n \"description\": \"Array of trading pair symbols (optional, fetches all if not provided)\",\n \"example\": [\n \"BTC/USDT:USDT\",\n \"ETH/USDT:USDT\"\n ]\n }\n },\n \"required\": [\n \"exchange\"\n ]\n }\n },\n {\n \"name\": \"get_index_ohlcv\",\n \"description\": \"Fetch index price OHLCV data for derivatives\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"exchange\": {\n \"type\": \"string\",\n \"description\": \"Exchange ID (e.g., binance, bybit, okx)\",\n \"example\": \"binance\"\n },\n \"symbol\": {\n \"type\": \"string\",\n \"description\": \"Index symbol (e.g., BTC/USDT)\",\n \"example\": \"BTC/USDT\"\n },\n \"timeframe\": {\n \"type\": \"string\",\n \"description\": \"Timeframe (e.g., 1m, 5m, 15m, 1h, 4h, 1d)\",\n \"example\": \"1h\",\n \"default\": \"1m\"\n },\n \"since\": {\n \"type\": \"number\",\n \"description\": \"Timestamp in milliseconds to fetch candles since\",\n \"example\": 1693958400000\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Number of candles to return\",\n \"example\": 100\n }\n },\n \"required\": [\n \"exchange\",\n \"symbol\"\n ]\n }\n },\n {\n \"name\": \"get_mark_ohlcv\",\n \"description\": \"Fetch mark price OHLCV data for derivatives\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"exchange\": {\n \"type\": \"string\",\n \"description\": \"Exchange ID (e.g., binance, bybit, okx)\",\n \"example\": \"binance\"\n },\n \"symbol\": {\n \"type\": \"string\",\n \"description\": \"Trading pair symbol (e.g., BTC/USDT:USDT)\",\n \"example\": \"BTC/USDT:USDT\"\n },\n \"timeframe\": {\n \"type\": \"string\",\n \"description\": \"Timeframe (e.g., 1m, 5m, 15m, 1h, 4h, 1d)\",\n \"example\": \"1h\",\n \"default\": \"1m\"\n },\n \"since\": {\n \"type\": \"number\",\n \"description\": \"Timestamp in milliseconds to fetch candles since\",\n \"example\": 1693958400000\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Number of candles to return\",\n \"example\": 100\n }\n },\n \"required\": [\n \"exchange\",\n \"symbol\"\n ]\n }\n },\n {\n \"name\": \"get_premium_index_ohlcv\",\n \"description\": \"Fetch premium index OHLCV data for perpetual contracts\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"exchange\": {\n \"type\": \"string\",\n \"description\": \"Exchange ID (e.g., binance, bybit, okx)\",\n \"example\": \"binance\"\n },\n \"symbol\": {\n \"type\": \"string\",\n \"description\": \"Trading pair symbol (e.g., BTC/USDT:USDT)\",\n \"example\": \"BTC/USDT:USDT\"\n },\n \"timeframe\": {\n \"type\": \"string\",\n \"description\": \"Timeframe (e.g., 1m, 5m, 15m, 1h, 4h, 1d)\",\n \"example\": \"1h\",\n \"default\": \"1m\"\n },\n \"since\": {\n \"type\": \"number\",\n \"description\": \"Timestamp in milliseconds to fetch candles since\",\n \"example\": 1693958400000\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Number of candles to return\",\n \"example\": 100\n }\n },\n \"required\": [\n \"exchange\",\n \"symbol\"\n ]\n }\n },\n {\n \"name\": \"get_trading_fees\",\n \"description\": \"Fetch trading fee structure (maker/taker fees) for an exchange\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"exchange\": {\n \"type\": \"string\",\n \"description\": \"Exchange ID (e.g., binance, coinbase, kraken)\",\n \"example\": \"binance\"\n }\n },\n \"required\": [\n \"exchange\"\n ]\n }\n },\n {\n \"name\": \"get_open_interest\",\n \"description\": \"Fetch current open interest for a derivatives contract\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"exchange\": {\n \"type\": \"string\",\n \"description\": \"Exchange ID (e.g., binance, bybit, okx)\",\n \"example\": \"binance\"\n },\n \"symbol\": {\n \"type\": \"string\",\n \"description\": \"Derivatives contract symbol (e.g., BTC/USDT:USDT)\",\n \"example\": \"BTC/USDT:USDT\"\n }\n },\n \"required\": [\n \"exchange\",\n \"symbol\"\n ]\n }\n },\n {\n \"name\": \"get_open_interest_history\",\n \"description\": \"Fetch historical open interest data for a derivatives contract\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"exchange\": {\n \"type\": \"string\",\n \"description\": \"Exchange ID (e.g., binance, bybit, okx)\",\n \"example\": \"binance\"\n },\n \"symbol\": {\n \"type\": \"string\",\n \"description\": \"Derivatives contract symbol (e.g., BTC/USDT:USDT)\",\n \"example\": \"BTC/USDT:USDT\"\n },\n \"timeframe\": {\n \"type\": \"string\",\n \"description\": \"Data interval (e.g., 5m, 15m, 1h, 4h, 1d)\",\n \"example\": \"1h\",\n \"default\": \"1h\"\n },\n \"since\": {\n \"type\": \"number\",\n \"description\": \"Timestamp in milliseconds to fetch data since\",\n \"example\": 1693958400000\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Number of data points to return\",\n \"example\": 100\n }\n },\n \"required\": [\n \"exchange\",\n \"symbol\"\n ]\n }\n },\n {\n \"name\": \"get_long_short_ratio\",\n \"description\": \"Fetch long/short ratio for a derivatives contract (market sentiment)\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"exchange\": {\n \"type\": \"string\",\n \"description\": \"Exchange ID (e.g., binance, bybit, okx)\",\n \"example\": \"binance\"\n },\n \"symbol\": {\n \"type\": \"string\",\n \"description\": \"Derivatives contract symbol (e.g., BTC/USDT:USDT)\",\n \"example\": \"BTC/USDT:USDT\"\n },\n \"timeframe\": {\n \"type\": \"string\",\n \"description\": \"Data interval (e.g., 5m, 15m, 1h, 4h, 1d)\",\n \"example\": \"1h\",\n \"default\": \"1h\"\n },\n \"since\": {\n \"type\": \"number\",\n \"description\": \"Timestamp in milliseconds to fetch data since\",\n \"example\": 1693958400000\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Number of data points to return\",\n \"example\": 24\n }\n },\n \"required\": [\n \"exchange\",\n \"symbol\"\n ]\n }\n },\n {\n \"name\": \"get_liquidations\",\n \"description\": \"Fetch recent liquidation events for a derivatives contract\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"exchange\": {\n \"type\": \"string\",\n \"description\": \"Exchange ID (e.g., binance, bybit, okx)\",\n \"example\": \"binance\"\n },\n \"symbol\": {\n \"type\": \"string\",\n \"description\": \"Derivatives contract symbol (e.g., BTC/USDT:USDT)\",\n \"example\": \"BTC/USDT:USDT\"\n },\n \"since\": {\n \"type\": \"number\",\n \"description\": \"Timestamp in milliseconds to fetch liquidations since\",\n \"example\": 1693958400000\n },\n \"limit\": {\n \"type\": \"number\",\n \"description\": \"Number of liquidation events to return\",\n \"example\": 50\n }\n },\n \"required\": [\n \"exchange\",\n \"symbol\"\n ]\n }\n },\n {\n \"name\": \"get_borrow_rates\",\n \"description\": \"Fetch cross-margin borrow rates for all currencies on an exchange\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"exchange\": {\n \"type\": \"string\",\n \"description\": \"Exchange ID (e.g., binance, bybit, okx)\",\n \"example\": \"binance\"\n }\n },\n \"required\": [\n \"exchange\"\n ]\n }\n },\n {\n \"name\": \"get_leverage_tiers\",\n \"description\": \"Fetch leverage tier information for trading pairs showing max leverage, maintenance margin rates, and notional value brackets\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"exchange\": {\n \"type\": \"string\",\n \"description\": \"Exchange ID (e.g., binance, bybit, okx)\",\n \"example\": \"binance\"\n },\n \"symbol\": {\n \"type\": \"string\",\n \"description\": \"Trading pair symbol (e.g., BTC/USDT:USDT). Omit for all.\",\n \"example\": \"BTC/USDT:USDT\"\n }\n },\n \"required\": [\n \"exchange\"\n ]\n }\n },\n {\n \"name\": \"goldrush_get_cross_chain_activity\",\n \"description\": \"Execute the goldrush_get_cross_chain_activity tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_multichain_balances\",\n \"description\": \"Execute the goldrush_get_multichain_balances tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_multichain_transactions\",\n \"description\": \"Execute the goldrush_get_multichain_transactions tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_token_balances\",\n \"description\": \"Execute the goldrush_get_token_balances tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_historical_balances\",\n \"description\": \"Execute the goldrush_get_historical_balances tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_native_balance\",\n \"description\": \"Execute the goldrush_get_native_balance tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_erc20_transfers\",\n \"description\": \"Execute the goldrush_get_erc20_transfers tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_portfolio_history\",\n \"description\": \"Execute the goldrush_get_portfolio_history tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_token_holders\",\n \"description\": \"Execute the goldrush_get_token_holders tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_transaction\",\n \"description\": \"Execute the goldrush_get_transaction tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_transaction_summary\",\n \"description\": \"Execute the goldrush_get_transaction_summary tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_transactions_earliest\",\n \"description\": \"Execute the goldrush_get_transactions_earliest tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_transactions_latest\",\n \"description\": \"Execute the goldrush_get_transactions_latest tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_transactions_paginated\",\n \"description\": \"Execute the goldrush_get_transactions_paginated tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_transactions_time_buckets\",\n \"description\": \"Execute the goldrush_get_transactions_time_buckets tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_block_transactions\",\n \"description\": \"Execute the goldrush_get_block_transactions tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_block_transactions_paginated\",\n \"description\": \"Execute the goldrush_get_block_transactions_paginated tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_nft_balances\",\n \"description\": \"Execute the goldrush_get_nft_balances tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_check_nft_ownership\",\n \"description\": \"Execute the goldrush_check_nft_ownership tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_check_nft_token_ownership\",\n \"description\": \"Execute the goldrush_check_nft_token_ownership tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_token_approvals\",\n \"description\": \"Execute the goldrush_get_token_approvals tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_bitcoin_hd_balances\",\n \"description\": \"Execute the goldrush_get_bitcoin_hd_balances tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_bitcoin_balance\",\n \"description\": \"Execute the goldrush_get_bitcoin_balance tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_bitcoin_balance_history\",\n \"description\": \"Execute the goldrush_get_bitcoin_balance_history tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_bitcoin_transactions\",\n \"description\": \"Execute the goldrush_get_bitcoin_transactions tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_historical_token_prices\",\n \"description\": \"Execute the goldrush_get_historical_token_prices tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_pool_spot_prices\",\n \"description\": \"Execute the goldrush_get_pool_spot_prices tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_gas_prices\",\n \"description\": \"Execute the goldrush_get_gas_prices tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_logs\",\n \"description\": \"Execute the goldrush_get_logs tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_logs_by_topic\",\n \"description\": \"Execute the goldrush_get_logs_by_topic tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_logs_by_contract\",\n \"description\": \"Execute the goldrush_get_logs_by_contract tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_block\",\n \"description\": \"Execute the goldrush_get_block tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_block_heights\",\n \"description\": \"Execute the goldrush_get_block_heights tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_chains\",\n \"description\": \"Execute the goldrush_get_chains tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_chain_statuses\",\n \"description\": \"Execute the goldrush_get_chain_statuses tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_resolve_address\",\n \"description\": \"Execute the goldrush_resolve_address tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"finnhub_get_stock_quote\",\n \"description\": \"Execute the finnhub_get_stock_quote tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"finnhub_get_stock_candles\",\n \"description\": \"Execute the finnhub_get_stock_candles tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"finnhub_get_company_profile\",\n \"description\": \"Execute the finnhub_get_company_profile tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"finnhub_get_basic_financials\",\n \"description\": \"Execute the finnhub_get_basic_financials tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"finnhub_get_stock_recommendations\",\n \"description\": \"Execute the finnhub_get_stock_recommendations tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"finnhub_get_price_target\",\n \"description\": \"Execute the finnhub_get_price_target tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"finnhub_search_symbol\",\n \"description\": \"Execute the finnhub_search_symbol tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"finnhub_get_market_news\",\n \"description\": \"Execute the finnhub_get_market_news tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"finnhub_get_forex_candles\",\n \"description\": \"Execute the finnhub_get_forex_candles tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"finnhub_get_forex_symbols\",\n \"description\": \"Execute the finnhub_get_forex_symbols tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"finnhub_get_forex_rates\",\n \"description\": \"Execute the finnhub_get_forex_rates tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"finnhub_get_commodity_candles\",\n \"description\": \"Execute the finnhub_get_commodity_candles tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"finnhub_get_insider_transactions\",\n \"description\": \"Execute the finnhub_get_insider_transactions tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"finnhub_get_insider_sentiment\",\n \"description\": \"Execute the finnhub_get_insider_sentiment tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"finnhub_get_company_news\",\n \"description\": \"Execute the finnhub_get_company_news tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"finnhub_get_earnings_calendar\",\n \"description\": \"Execute the finnhub_get_earnings_calendar tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"finnhub_get_ipo_calendar\",\n \"description\": \"Execute the finnhub_get_ipo_calendar tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"finnhub_get_economic_calendar\",\n \"description\": \"Execute the finnhub_get_economic_calendar tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"finnhub_get_market_status\",\n \"description\": \"Execute the finnhub_get_market_status tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"finnhub_get_country_list\",\n \"description\": \"Execute the finnhub_get_country_list tool\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n }\n,\n {\n \"name\": \"goldrush_get_xyk_pools\",\n \"description\": \"Get all XY=K (AMM DEX) pools for a chain using GoldRush (Covalent). Returns pool addresses, token pairs, reserves, and liquidity data.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_xyk_pool\",\n \"description\": \"Get details for a specific XY=K pool by address using GoldRush (Covalent).\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_xyk_pools_for_token\",\n \"description\": \"Get all XY=K pools containing a specific token using GoldRush (Covalent).\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_xyk_pools_for_wallet\",\n \"description\": \"Get XY=K pools that a wallet has LP positions in using GoldRush (Covalent).\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_xyk_address_balances\",\n \"description\": \"Get XY=K LP token balances for a wallet using GoldRush (Covalent).\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_xyk_tokens\",\n \"description\": \"Get all tokens traded on XY=K DEXes for a chain using GoldRush (Covalent).\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_xyk_token\",\n \"description\": \"Get details for a specific token on XY=K DEXes using GoldRush (Covalent).\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_xyk_supported_dexes\",\n \"description\": \"Get list of supported XY=K DEXes across chains using GoldRush (Covalent).\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_xyk_dex_for_pool\",\n \"description\": \"Get which DEX a specific XY=K pool belongs to using GoldRush (Covalent).\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_xyk_txns_for_account\",\n \"description\": \"Get XY=K swap transactions for a wallet address using GoldRush (Covalent).\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_xyk_txns_for_token\",\n \"description\": \"Get XY=K swap transactions involving a specific token using GoldRush (Covalent).\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_xyk_txns_for_pool\",\n \"description\": \"Get XY=K swap transactions for a specific pool using GoldRush (Covalent).\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_xyk_txns_for_dex\",\n \"description\": \"Get XY=K swap transactions for an entire DEX using GoldRush (Covalent).\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_xyk_ecosystem\",\n \"description\": \"Get ecosystem-wide XY=K DEX statistics for a chain using GoldRush (Covalent).\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_xyk_health\",\n \"description\": \"Get health/status of XY=K DEX indexing for a chain using GoldRush (Covalent).\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"moralis_get_wallet_history\",\n \"description\": \"Get full transaction history for a wallet using Moralis. Returns decoded transactions with transfers, approvals, and contract interactions.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"moralis_get_wallet_token_balances\",\n \"description\": \"Get all ERC20 token balances for a wallet using Moralis. Returns token addresses, symbols, balances, and USD values.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"moralis_get_wallet_net_worth\",\n \"description\": \"Get total net worth of a wallet across all chains using Moralis. Aggregates token values including native tokens.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"moralis_get_wallet_profitability\",\n \"description\": \"Get realized and unrealized profit/loss for each token in a wallet using Moralis.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"moralis_get_wallet_profitability_summary\",\n \"description\": \"Get aggregated P&L summary for a wallet using Moralis. Total realized gains, unrealized gains, and overall performance.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"moralis_get_wallet_defi_positions\",\n \"description\": \"Get all DeFi protocol positions for a wallet using Moralis. Shows lending, staking, LP positions with values.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"moralis_get_wallet_defi_summary\",\n \"description\": \"Get aggregated DeFi position summary for a wallet using Moralis.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"moralis_get_wallet_approvals\",\n \"description\": \"Get all token approvals granted by a wallet using Moralis. Shows spender addresses and approved amounts.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"moralis_get_wallet_swaps\",\n \"description\": \"Get swap/trade history for a wallet using Moralis. Shows DEX trades with tokens, amounts, and prices.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"moralis_get_wallet_active_chains\",\n \"description\": \"Get list of chains where a wallet has been active using Moralis.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"moralis_get_wallet_stats\",\n \"description\": \"Get wallet statistics using Moralis. Transaction counts, first/last activity, token counts.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"moralis_get_wallet_nfts\",\n \"description\": \"Get all NFTs owned by a wallet using Moralis. Returns NFT metadata, collection info, and floor prices.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"moralis_get_wallet_insight\",\n \"description\": \"Get wallet intelligence insights using Moralis. Wallet age, activity patterns, risk indicators.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"moralis_get_native_balance\",\n \"description\": \"Get native token balance (ETH, MATIC, etc.) for a wallet using Moralis.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"moralis_get_wallet_token_transfers\",\n \"description\": \"Get all ERC20 token transfer history for a wallet using Moralis.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"moralis_get_sol_balance\",\n \"description\": \"Get SOL balance for a Solana wallet using Moralis.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"moralis_get_sol_token_balances\",\n \"description\": \"Get all SPL token balances for a Solana wallet using Moralis.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"moralis_get_sol_portfolio\",\n \"description\": \"Get full portfolio for a Solana wallet including SOL and all tokens using Moralis.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"moralis_get_sol_swaps\",\n \"description\": \"Get swap/trade history for a Solana wallet using Moralis.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"moralis_get_pumpfun_new_tokens\",\n \"description\": \"Get newly created tokens on PumpFun using Moralis.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"moralis_get_pumpfun_bonding_tokens\",\n \"description\": \"Get tokens currently in bonding curve on PumpFun using Moralis.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"moralis_get_pumpfun_graduated_tokens\",\n \"description\": \"Get tokens that graduated from PumpFun bonding curve using Moralis.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"moralis_get_token_price\",\n \"description\": \"Get real-time price for an ERC20 token using Moralis. Returns USD price, native price, and 24h change.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"moralis_get_token_metadata\",\n \"description\": \"Get metadata for ERC20 tokens using Moralis. Returns name, symbol, decimals, logo, and verification status.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"moralis_get_token_holders\",\n \"description\": \"Get holder count and top holders for an ERC20 token using Moralis.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"moralis_get_token_transfers\",\n \"description\": \"Get all transfers for a specific ERC20 token using Moralis.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"moralis_get_token_pairs\",\n \"description\": \"Get all trading pairs/liquidity pools for a token using Moralis.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"moralis_get_token_top_traders\",\n \"description\": \"Get top profitable wallets for a specific token using Moralis.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"moralis_get_token_score\",\n \"description\": \"Get security/quality score for a token using Moralis. Analyzes contract, liquidity, holder distribution.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"moralis_search_tokens\",\n \"description\": \"Search for tokens by name or symbol across all chains using Moralis.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"moralis_get_trending_tokens\",\n \"description\": \"Get trending tokens across chains using Moralis.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"moralis_resolve_ens_domain\",\n \"description\": \"Resolve an ENS domain name to an Ethereum address using Moralis.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"moralis_resolve_address\",\n \"description\": \"Reverse resolve an Ethereum address to its ENS domain name using Moralis.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"moralis_get_token_price_batch\",\n \"description\": \"Get prices for multiple ERC20 tokens in a single call using Moralis. Up to 25 tokens per request.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"moralis_get_token_analytics\",\n \"description\": \"Get buy/sell analytics for a token using Moralis. Buyer/seller counts, volume across timeframes.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"moralis_get_token_holder_stats\",\n \"description\": \"Get historical holder count over time for an ERC20 token using Moralis.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"moralis_get_pair_ohlcv\",\n \"description\": \"Get OHLCV candlestick data for a DEX trading pair using Moralis.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"moralis_get_pair_stats\",\n \"description\": \"Get trading statistics for a DEX pair using Moralis. Volume, liquidity, transaction count.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"moralis_get_pair_snipers\",\n \"description\": \"Get sniper wallets that bought a token within the first blocks of a pair's creation using Moralis.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"moralis_filter_tokens\",\n \"description\": \"Filter and screen tokens with 20+ metrics using Moralis Discovery API.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"moralis_get_top_gainers\",\n \"description\": \"Get top gaining tokens by price change using Moralis.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"moralis_get_top_losers\",\n \"description\": \"Get top losing tokens by price change using Moralis.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"moralis_get_transaction\",\n \"description\": \"Get transaction details by hash using Moralis. Returns decoded transaction data.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"moralis_get_decoded_transaction\",\n \"description\": \"Get fully decoded transaction by hash using Moralis verbose mode.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"moralis_get_sol_token_price\",\n \"description\": \"Get price for a Solana SPL token using Moralis.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_nft_metadata\",\n \"description\": \"Get NFT metadata for a specific token using GoldRush (Covalent). Returns name, description, image, attributes.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_nft_token_ids\",\n \"description\": \"Get all token IDs for an NFT collection using GoldRush (Covalent).\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_nft_transactions\",\n \"description\": \"Get transaction history for an NFT token using GoldRush (Covalent).\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_nft_traits\",\n \"description\": \"Get trait types for an NFT collection using GoldRush (Covalent).\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_nft_trait_values\",\n \"description\": \"Get values for a specific trait type in an NFT collection using GoldRush (Covalent).\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_nft_traits_summary\",\n \"description\": \"Get trait summary/rarity data for an NFT collection using GoldRush (Covalent).\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_nft_floor_price\",\n \"description\": \"Get floor price for an NFT collection using GoldRush (Covalent).\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_nft_volume\",\n \"description\": \"Get trading volume for an NFT collection using GoldRush (Covalent).\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_nft_sale_count\",\n \"description\": \"Get sale count for an NFT collection using GoldRush (Covalent).\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_chain_collections\",\n \"description\": \"Get all NFT collections on a chain using GoldRush (Covalent).\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"goldrush_get_nft_approvals\",\n \"description\": \"Get all NFT-specific approvals (operator permissions) granted by a wallet using GoldRush (Covalent).\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"tenderly_simulate_transaction\",\n \"description\": \"Simulate an EVM transaction without sending it on-chain using Tenderly. Returns asset changes, balance changes, gas used, call trace.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"tenderly_simulate_bundle\",\n \"description\": \"Simulate a bundle of sequential EVM transactions using Tenderly.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"tenderly_estimate_gas\",\n \"description\": \"Estimate gas cost for an EVM transaction using Tenderly simulation.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"tenderly_get_supported_networks\",\n \"description\": \"Get the list of EVM networks supported by Tenderly for transaction simulation.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"tenderly_decode_calldata\",\n \"description\": \"Decode and analyze EVM transaction calldata by running a simulation with ABI decoding using Tenderly.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"tenderly_trace_transaction\",\n \"description\": \"Get a decoded trace for any on-chain transaction by hash using Tenderly.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"tenderly_gas_price\",\n \"description\": \"Get real-time gas price predictions with low/medium/high confidence levels using Tenderly.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"tenderly_suggest_gas_fee\",\n \"description\": \"Get EIP-1559 gas fee suggestions using Tenderly Gateway RPC.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"tenderly_decode_input\",\n \"description\": \"Decode raw EVM transaction calldata into human-readable function name and parameters using Tenderly.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"tenderly_decode_error\",\n \"description\": \"Decode EVM revert/error data into human-readable error name and parameters using Tenderly.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"tenderly_get_contract_abi\",\n \"description\": \"Get the ABI for any verified smart contract using Tenderly Gateway RPC.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"tenderly_decode_event\",\n \"description\": \"Decode raw EVM event log data into human-readable event name and parameters using Tenderly.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"tenderly_get_storage_changes\",\n \"description\": \"Get storage slot change history for a smart contract using Tenderly.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"tenderly_get_transactions_range\",\n \"description\": \"Get transactions between two addresses within a block range using Tenderly.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"tenderly_function_signatures\",\n \"description\": \"Look up function signatures by their 4-byte selector using Tenderly.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"tenderly_error_signatures\",\n \"description\": \"Look up custom error signatures by their 4-byte selector using Tenderly.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"tenderly_event_signature\",\n \"description\": \"Look up an event signature by its 32-byte topic hash using Tenderly.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"tenderly_share_simulation\",\n \"description\": \"Share a Tenderly simulation publicly by generating a shareable link.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"tenderly_get_block_number\",\n \"description\": \"Get the latest block number for an EVM network using Tenderly.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"codex_prediction_market_stats\",\n \"description\": \"Get detailed statistics for a specific prediction market using Codex by Defined.fi.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"codex_prediction_event_stats\",\n \"description\": \"Get detailed statistics for a prediction event using Codex by Defined.fi.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"codex_prediction_trader_stats\",\n \"description\": \"Get prediction market statistics for a specific trader using Codex by Defined.fi.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"codex_prediction_trader_markets\",\n \"description\": \"Get all prediction markets a trader has participated in using Codex by Defined.fi.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"codex_prediction_trader_bars\",\n \"description\": \"Get time-series chart data for a prediction market trader using Codex by Defined.fi.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"codex_prediction_market_bars\",\n \"description\": \"Get time-series chart data for a prediction market using Codex by Defined.fi.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"codex_prediction_event_bars\",\n \"description\": \"Get time-series chart data for a prediction event using Codex by Defined.fi.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"codex_prediction_event_top_markets\",\n \"description\": \"Get the top markets within a prediction event using Codex by Defined.fi.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"codex_prediction_trades\",\n \"description\": \"Get prediction market trade history using Codex by Defined.fi.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"codex_prediction_markets\",\n \"description\": \"Look up specific prediction markets by their IDs using Codex by Defined.fi.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"codex_prediction_traders\",\n \"description\": \"Look up specific prediction market traders by their IDs using Codex by Defined.fi.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"codex_prediction_token_holders\",\n \"description\": \"Get token holder data for prediction market outcome tokens using Codex by Defined.fi.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"codex_filter_prediction_events\",\n \"description\": \"Filter and search prediction events using Codex by Defined.fi.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"codex_prediction_categories\",\n \"description\": \"Get prediction market categories using Codex by Defined.fi.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"codex_filter_prediction_markets\",\n \"description\": \"Filter and search prediction markets with advanced criteria using Codex by Defined.fi.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"codex_filter_prediction_trader_markets\",\n \"description\": \"Filter trader-market pairs in prediction markets using Codex by Defined.fi.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"codex_filter_prediction_traders\",\n \"description\": \"Filter and search prediction market traders with advanced criteria using Codex by Defined.fi.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"codex_prediction_market_price\",\n \"description\": \"Get current outcome prices for a prediction market using Codex by Defined.fi.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n },\n {\n \"name\": \"codex_prediction_trader_holdings\",\n \"description\": \"Get a trader's current prediction market holdings using Codex by Defined.fi.\",\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {}\n }\n }\n]\n","import {supportedTools} from './mcp/allToolList'\n\nexport let ToolRegistry = [\n {\n \"category\": \"Market Data and Price\",\n \"name\": \"get_market_and_price_endpoints\",\n \"description\": \"Endpoints to retrieve real-time and historical cryptocurrency prices, market caps, trading volumes, OHLC data, global market statistics, supported currencies, basic market performance metrics across different timeframes and asset platforms, stablecoin market analytics, stablecoin price tracking, comprehensive stablecoin market cap data across multiple chains, centralized exchange (CEX) trading data including real-time tickers, order books, recent trades, candlestick charts, best bid/ask prices, CEX exchange metadata and volume charts, derivatives pricing (index, mark, and premium), perpetual futures funding rates, leverage tiers, options trading analytics, and available trading markets/currencies across major exchanges. Provider guide: Use coingecko tools for market-wide price data. Use ccxt_ tools for CEX trading data. Use goldrush_ tools for on-chain token price history and gas prices across 100+ chains.\",\n \"tools\": [\n \"get_coins_index\",\n \"get_coins_market_data\",\n \"get_coin_history\",\n \"get_coin_market_chart_range\",\n \"get_price\",\n \"get_gainers_losers\",\n \"get_contract_coin\",\n \"get_contract_market_chart\",\n \"get_contract_market_chart_range\",\n \"get_token_price_by_contract\",\n \"get_global_stats\",\n \"get_supported_currencies\",\n \"get_token_price\",\n \"get_price_chart\",\n \"get_token_sparklines\",\n \"get_token_chart_urls\",\n \"get_coin_tickers\",\n \"get_coin_historical_chart\",\n \"get_btc_exchange_rates\",\n \"get_global_market_cap_chart\",\n \"get_coin_ohlc\",\n \"get_stablecoins\",\n \"get_stablecoin_chains\",\n \"get_stablecoin_charts_global\",\n \"get_stablecoin_charts_by_chain\",\n \"get_stablecoin_prices\",\n \"stablecoin_data_by_id\",\n \"get_current_prices\",\n \"get_historical_prices\",\n \"get_batch_historical_prices\",\n \"get_price_percentage_change\",\n \"get_first_prices\",\n \"get_ticker\",\n \"get_tickers\",\n \"get_orderbook\",\n \"get_recent_trades\",\n \"get_ohlcv\",\n \"get_best_bid_ask\",\n \"get_l2_orderbook\",\n \"get_index_ohlcv\",\n \"get_mark_ohlcv\",\n \"get_premium_index_ohlcv\",\n \"get_funding_rate\",\n \"get_funding_rate_history\",\n \"get_funding_rates\",\n \"get_trading_fees\",\n \"get_open_interest\",\n \"get_open_interest_history\",\n \"get_long_short_ratio\",\n \"get_liquidations\",\n \"get_borrow_rates\",\n \"get_stablecoin_dominance\",\n \"get_leverage_tiers\",\n // GoldRush market/price tools\n \"goldrush_get_historical_token_prices\",\n \"goldrush_get_gas_prices\",\n \"goldrush_get_pool_spot_prices\",\n // CEX exchange data\n \"get_exchanges\",\n \"get_exchange\",\n \"get_exchange_tickers\",\n \"get_exchange_volume_chart\",\n \"get_exchange_volume_chart_range\",\n \"get_derivatives_tickers\",\n \"get_derivatives_exchanges\",\n \"get_derivatives_exchange\",\n \"filter_exchanges\",\n // Options/derivatives market data\n \"get_options_overview\",\n \"get_options_by_chain\",\n \"get_options_protocol\",\n // CEX infrastructure\n \"get_exchange_markets\",\n \"get_exchange_currencies\"\n ]\n },\n {\n \"category\": \"On-Chain DEX & Pool Analytics\",\n \"name\": \"get_onchain_dex_pool_endpoints\",\n \"description\": \"Endpoints for analyzing on-chain decentralized exchange pools, liquidity data, trading pairs, DEX rankings, pool filtering, trending pools, OHLCV data for pools/tokens, trading volume analysis, comprehensive on-chain trading metrics across multiple networks and DEXs, real-time DEX trading analytics, advanced token trading intelligence with DEXScreener-style metrics, trader statistics (makers, buyers, sellers), aggregated trading data by tokens, volume breakdowns, trading activity analysis, DEX volume analytics across protocols and chains, and cross-chain bridge analytics.\",\n \"tools\": [\n \"get_onchain_categories\",\n \"get_pools_by_category\",\n \"get_new_pools\",\n \"get_new_pools_by_network\",\n \"get_trending_pools\",\n \"get_trending_pools_by_network\",\n \"get_dexes\",\n \"get_pools_by_dex\",\n \"get_pools\",\n \"get_pools_by_address\",\n \"get_pool_info\",\n \"get_pool_ohlcv\",\n \"get_pool_trades\",\n \"get_token_ohlcv\",\n \"get_token_pools\",\n \"get_token_trades\",\n \"filter_pools\",\n \"search_trending_pools\",\n \"search_pools\",\n \"get_onchain_token_price\",\n \"get_token_transactions\",\n \"get_pair_stats\",\n \"get_pairs_stats\",\n \"filter_pairs\",\n \"get_pair_info\",\n \"get_token_pairs\",\n \"get_token_pairs_metadata\",\n \"get_liquidity_info\",\n \"get_liquidity_locks\",\n \"get_network_trending_pools\",\n \"get_multi_pools\",\n \"get_network_dexes\",\n \"get_pair_chart_metadata\",\n \"get_token_liquidity_metadata\",\n \"get_latest_pairs\",\n \"get_detailed_stats\",\n \"get_token_chart_data\",\n \"get_dex_volumes\",\n \"get_dex_volume\",\n \"get_dex_volumes_by_chain\",\n \"defillama_get_bridges\",\n \"defillama_get_bridge_by_id\",\n \"defillama_get_bridge_volume\",\n // GoldRush XY=K DEX analytics tools\n \"goldrush_get_xyk_pools\",\n \"goldrush_get_xyk_pool\",\n \"goldrush_get_xyk_pools_for_token\",\n \"goldrush_get_xyk_pools_for_wallet\",\n \"goldrush_get_xyk_address_balances\",\n \"goldrush_get_xyk_tokens\",\n \"goldrush_get_xyk_token\",\n \"goldrush_get_xyk_supported_dexes\",\n \"goldrush_get_xyk_dex_for_pool\",\n \"goldrush_get_xyk_txns_for_account\",\n \"goldrush_get_xyk_txns_for_token\",\n \"goldrush_get_xyk_txns_for_pool\",\n \"goldrush_get_xyk_txns_for_dex\",\n \"goldrush_get_xyk_ecosystem\",\n \"goldrush_get_xyk_health\"\n ]\n },\n {\n \"category\": \"Portfolio & Wallet\",\n \"name\": \"get_portfolio_wallet_endpoints\",\n \"description\": \"Endpoints for tracking user wallet balances, transaction history, portfolio positions across protocols and chains, net asset calculations, token holdings analysis, comprehensive wallet activity monitoring, real-time balance tracking, balance update history over time, multi-token portfolio analysis, balance changes with transaction context, financial auditing capabilities for individual users and addresses, wallet filtering and discovery, NFT holdings tracking, wallet PnL, DeFi positions, swap history, and wallet insight metrics. Provider guide: Use moralis_ tools for wallet intelligence (PnL, DeFi positions, swap history, net worth, approvals, active chains, wallet insights). Use goldrush_ tools for Bitcoin wallets, historical balance snapshots at specific blocks, 100+ chain coverage, and decoded transaction logs.\",\n \"tools\": [\n \"get_wallet_balances\",\n \"get_wallet_token_events\",\n \"filter_wallets\",\n \"filter_token_wallets\",\n \"get_wallet_stats\",\n \"get_wallet_chart\",\n \"get_wallet_nft_collections\",\n \"get_wallet_nft_assets\",\n \"filter_network_wallets\",\n // GoldRush wallet/portfolio tools\n \"goldrush_get_token_balances\",\n \"goldrush_get_historical_balances\",\n \"goldrush_get_native_balance\",\n \"goldrush_get_erc20_transfers\",\n \"goldrush_get_portfolio_history\",\n \"goldrush_get_multichain_balances\",\n \"goldrush_get_multichain_transactions\",\n \"goldrush_get_cross_chain_activity\",\n \"goldrush_get_bitcoin_balance\",\n \"goldrush_get_bitcoin_hd_balances\",\n \"goldrush_get_bitcoin_balance_history\",\n \"goldrush_get_bitcoin_transactions\",\n \"goldrush_get_transaction\",\n \"goldrush_get_transaction_summary\",\n \"goldrush_get_transactions_earliest\",\n \"goldrush_get_transactions_latest\",\n \"goldrush_get_transactions_paginated\",\n \"goldrush_get_transactions_time_buckets\",\n // Moralis wallet intelligence tools\n \"moralis_get_wallet_history\",\n \"moralis_get_wallet_token_balances\",\n \"moralis_get_wallet_net_worth\",\n \"moralis_get_wallet_profitability\",\n \"moralis_get_wallet_profitability_summary\",\n \"moralis_get_wallet_defi_positions\",\n \"moralis_get_wallet_defi_summary\",\n \"moralis_get_wallet_approvals\",\n \"moralis_get_wallet_swaps\",\n \"moralis_get_wallet_active_chains\",\n \"moralis_get_wallet_stats\",\n \"moralis_get_wallet_nfts\",\n \"moralis_get_wallet_insight\",\n \"moralis_get_native_balance\",\n \"moralis_get_wallet_token_transfers\",\n // Moralis Solana wallet tools\n \"moralis_get_sol_balance\",\n \"moralis_get_sol_token_balances\",\n \"moralis_get_sol_portfolio\",\n \"moralis_get_sol_swaps\",\n // Moralis PumpFun tools\n \"moralis_get_pumpfun_new_tokens\",\n \"moralis_get_pumpfun_bonding_tokens\",\n \"moralis_get_pumpfun_graduated_tokens\"\n ]\n },\n {\n \"category\": \"Token & Contract data\",\n \"name\": \"get_token_contract_endpoints\",\n \"description\": \"Endpoints for detailed token and contract analysis including token metadata, holder distributions, contract information, token filtering and discovery, holder rankings, comprehensive token intelligence across multiple networks, advanced transaction analysis and forensics, detailed transaction data (hash, sender, recipient, value, gas costs), internal transactions with signatures, transaction status validation, address tracking capabilities for security analysis and investigation, token lifecycle events, trader analytics, and project metadata including websites and social media links. Provider guide: Use codex_ tools for on-chain DEX token analytics and pair data. Use coingecko tools for market metadata. Use goldrush_ tools for token holder lists across 100+ chains.\",\n \"tools\": [\n \"get_tokens_by_address\",\n \"get_token_info\",\n \"get_token_top_holders\",\n \"get_token_holders_chart\",\n \"get_token_details\",\n \"get_tokens\",\n \"filter_tokens\",\n \"get_token_holders\",\n \"get_top_holders_percentage\",\n \"get_new_tokens\",\n \"get_multi_tokens\",\n \"get_recently_updated_tokens\",\n \"get_token_lifecycle_events\",\n \"get_token_top_traders\",\n \"list_top_tokens\",\n \"get_companies_treasury\",\n \"get_entities_list\",\n \"get_treasury_by_entity\",\n \"get_treasury_holding_chart\",\n \"get_treasury_transaction_history\",\n // GoldRush token tools\n \"goldrush_get_token_holders\",\n // Moralis token tools\n \"moralis_get_token_price\",\n \"moralis_get_token_metadata\",\n \"moralis_get_token_holders\",\n \"moralis_get_token_transfers\",\n \"moralis_get_token_pairs\",\n \"moralis_get_token_top_traders\",\n \"moralis_get_token_score\",\n \"moralis_search_tokens\",\n \"moralis_get_trending_tokens\",\n \"moralis_resolve_ens_domain\",\n \"moralis_resolve_address\",\n \"moralis_get_token_price_batch\",\n \"moralis_get_token_analytics\",\n \"moralis_get_token_holder_stats\",\n \"moralis_get_pair_ohlcv\",\n \"moralis_get_pair_stats\",\n \"moralis_get_pair_snipers\",\n \"moralis_filter_tokens\",\n \"moralis_get_top_gainers\",\n \"moralis_get_top_losers\",\n \"moralis_get_transaction\",\n \"moralis_get_decoded_transaction\",\n \"moralis_get_sol_token_price\"\n ]\n },\n {\n \"category\": \"DeFi Protocol Analytics\",\n \"name\": \"get_defi_protocol_endpoints\",\n \"description\": \"Endpoints for comprehensive DeFi protocol analysis including Total Value Locked (TVL) data, protocol listings, chain-specific TVL metrics, historical TVL tracking across all chains, protocol fee analysis, yield farming analytics with APY data, detailed protocol information, comprehensive DeFi ecosystem statistics, blockchain network TVL tracking, yield pool management and historical charts, and protocol fee structures across different DeFi platforms.\",\n \"tools\": [\n \"get_global_defi\",\n \"get_defi_protocols\",\n \"get_defi_protocol\",\n \"get_protocol_tvl\",\n \"get_protocol_fees\",\n \"get_chains\",\n \"get_chain_tvl_history\",\n \"get_chains_tvl_history\",\n \"get_yield_pools\",\n \"get_yield_pool_chart\",\n \"get_fees_overview\",\n \"get_chain_fees\",\n \"get_protocol_fee_summary\",\n \"defillama_get_treasuries\",\n \"defillama_get_treasury\",\n \"defillama_get_raises\",\n \"defillama_get_emissions\",\n \"get_defi_oracles\",\n \"get_defi_forks\",\n \"get_defi_categories\",\n \"get_defi_entities\"\n ]\n },\n {\n \"category\": \"NFT Analytics\",\n \"name\": \"get_nft_analytics_endpoints\",\n \"description\": \"Endpoints for comprehensive NFT ecosystem analysis including collection data, market analytics, user NFT holdings, collection floor prices, trading volumes, historical NFT market data, NFT liquidity pools and AMM marketplaces (like Sudoswap), NFT DeFi analytics, Prime ecosystem pools, Parallel trading card game assets, NFT pool management, collection holder analysis, advanced NFT search and filtering, contract metadata, cross-chain NFT analytics, social sentiment tracking for NFT collections, and time series market trend analysis. Provider guide: Use codex_ tools for NFT collection analytics, pools, and trading. Use goldrush_ tools for NFT balance lookups and ownership verification across 100+ chains.\",\n \"tools\": [\n \"get_nft\",\n \"get_nfts\",\n \"get_nft_market_chart\",\n \"get_nft_tickers\",\n \"get_nft_by_contract\",\n \"get_nft_markets\",\n \"get_nft_contract_market_chart\",\n \"get_nft_pool\",\n \"get_nft_pool_events\",\n \"get_nft_pool_stats\",\n \"get_nft_collections_by_exchange\",\n \"get_nft_pools_by_collection\",\n \"get_nft_pools_by_owner\",\n \"filter_nft_collections\",\n \"filter_nft_pool_collections\",\n \"search_nfts\",\n \"filter_nft_pools\",\n \"get_nft_collection_assets\",\n \"get_nft_collection_stats\",\n \"get_nft_collection_events\",\n \"get_nft_contracts\",\n \"filter_parallel_assets\",\n \"get_parallel_card_changes\",\n \"get_prime_pool_assets\",\n \"get_prime_pool_events\",\n \"get_prime_pools\",\n \"get_nft_holders\",\n \"get_prime_holders\",\n // GoldRush NFT tools\n \"goldrush_get_nft_balances\",\n \"goldrush_check_nft_ownership\",\n \"goldrush_check_nft_token_ownership\",\n \"goldrush_get_nft_metadata\",\n \"goldrush_get_nft_token_ids\",\n \"goldrush_get_nft_transactions\",\n \"goldrush_get_nft_traits\",\n \"goldrush_get_nft_trait_values\",\n \"goldrush_get_nft_traits_summary\",\n \"goldrush_get_nft_floor_price\",\n \"goldrush_get_nft_volume\",\n \"goldrush_get_nft_sale_count\",\n \"goldrush_get_chain_collections\"\n ]\n },\n {\n \"category\": \"Security & Risk Analysis\",\n \"name\": \"get_security_risk_endpoints\",\n \"description\": \"Comprehensive security endpoints for token security analysis, NFT authenticity verification, honeypot detection, malicious address identification, phishing site detection, contract approval risks, dApp security assessment, ABI data decoding, EVM transaction simulation, gas estimation, calldata decoding, and comprehensive security metrics to protect users from scams, rugpulls, and malicious contracts. Provider guide: Use goplus_ tools for threat detection (honeypots, scams, phishing, rugpulls). Use goldrush_ tools for token approval auditing across 100+ chains. Use tenderly_ tools for transaction simulation, gas estimation, and calldata decoding across 100+ EVM chains.\",\n \"tools\": [\n \"get_token_security\",\n \"get_nft_security\",\n \"check_malicious_address\",\n \"check_approval_security\",\n \"get_wallet_approvals\",\n \"check_dapp_security\",\n \"check_phishing_site\",\n \"decode_abi\",\n \"defillama_get_hacks\",\n \"simulate_evm_transaction\",\n \"simulate_solana_transaction\",\n \"detect_rugpull\",\n \"get_token_lock_info\",\n \"get_solana_token_security\",\n \"get_sui_token_security\",\n \"check_approval_security_v2\",\n // GoldRush security tools\n \"goldrush_get_token_approvals\",\n \"goldrush_get_nft_approvals\",\n // Tenderly simulation & security tools\n \"tenderly_simulate_transaction\",\n \"tenderly_simulate_bundle\",\n \"tenderly_estimate_gas\",\n \"tenderly_get_supported_networks\",\n \"tenderly_decode_calldata\",\n \"tenderly_trace_transaction\",\n \"tenderly_gas_price\",\n \"tenderly_suggest_gas_fee\",\n \"tenderly_decode_input\",\n \"tenderly_decode_error\",\n \"tenderly_get_contract_abi\",\n \"tenderly_decode_event\",\n \"tenderly_get_storage_changes\",\n \"tenderly_get_transactions_range\",\n \"tenderly_function_signatures\",\n \"tenderly_error_signatures\",\n \"tenderly_event_signature\",\n \"tenderly_share_simulation\",\n \"tenderly_get_block_number\"\n ]\n },\n {\n \"category\": \"Network & Infrastructure\",\n \"name\": \"get_network_infrastructure_endpoints\",\n \"description\": \"Endpoints for blockchain network information, network health monitoring, gas price tracking, network statistics, asset platform data, infrastructure metrics across different blockchain networks, real-time mempool monitoring, pending transaction analysis, transaction status simulation, MEV detection and protection, gas fee optimization, arbitrage opportunity identification, comprehensive blockchain activity monitoring, community-contributed insights and annotations, data platform system updates monitoring, centralized exchange (CEX) infrastructure including system status monitoring, server time synchronization, available trading markets/pairs browsing, and supported currencies listing across major exchanges. Provider guide: Use codex/coingecko tools for network lists and stats. Use goldrush_ tools for block data, decoded event logs, chain statuses, and address resolution across 100+ chains.\",\n \"tools\": [\n \"get_networks\",\n \"get_networks_list\",\n \"get_network_status\",\n \"get_network_stats\",\n \"get_asset_platforms\",\n \"get_community_notes\",\n \"get_exchange_status\",\n \"get_exchange_time\",\n \"get_block_by_timestamp\",\n \"get_goplus_supported_chains\",\n // GoldRush network tools\n \"goldrush_get_chains\",\n \"goldrush_get_chain_statuses\",\n \"goldrush_get_block\",\n \"goldrush_get_block_heights\",\n \"goldrush_get_logs\",\n \"goldrush_get_logs_by_topic\",\n \"goldrush_get_logs_by_contract\",\n \"goldrush_resolve_address\",\n \"goldrush_get_block_transactions\",\n \"goldrush_get_block_transactions_paginated\"\n ]\n },\n {\n \"category\": \"Search & Discovery\",\n \"name\": \"get_search_discovery_endpoints\",\n \"description\": \"Endpoints for cryptocurrency search functionality, trending analysis, coin categorization, token discovery, new coin listings, comprehensive search capabilities across coins, categories, and markets, event categorization and labeling systems.\",\n \"tools\": [\n \"search_all\",\n \"get_trending\",\n \"get_categories\",\n \"get_coins_list\",\n \"get_new_coins\",\n \"get_categories_market_data\",\n \"get_exchanges_list\",\n \"get_derivatives_exchanges_list\",\n \"get_event_labels\",\n \"search_tokens\"\n ]\n },\n {\n \"category\": \"Stocks & Equities\",\n \"name\": \"get_stocks_equities_endpoints\",\n \"description\": \"Endpoints for stock market data including real-time quotes, historical OHLCV candles, company profiles, basic financial metrics (P/E, EPS, market cap), analyst recommendations and price targets, symbol search, and market news. Provider guide: Use finnhub_ tools for real-time US stock quotes, historical price data, analyst consensus, company profiles, and financial news.\",\n \"tools\": [\n \"finnhub_get_stock_quote\",\n \"finnhub_get_stock_candles\",\n \"finnhub_get_company_profile\",\n \"finnhub_get_basic_financials\",\n \"finnhub_get_stock_recommendations\",\n \"finnhub_get_price_target\",\n \"finnhub_search_symbol\",\n \"finnhub_get_market_news\"\n ]\n },\n {\n \"category\": \"Forex & Commodities\",\n \"name\": \"get_forex_commodities_endpoints\",\n \"description\": \"Endpoints for foreign exchange rates, currency pair historical candles, available forex symbols, and commodity price data (gold, silver, platinum). Provider guide: Use finnhub_ tools for real-time forex rates, currency pair OHLCV data, and commodity prices via XAU/XAG/XPT pairs.\",\n \"tools\": [\n \"finnhub_get_forex_candles\",\n \"finnhub_get_forex_symbols\",\n \"finnhub_get_forex_rates\",\n \"finnhub_get_commodity_candles\"\n ]\n },\n {\n \"category\": \"Economic Indicators\",\n \"name\": \"get_economic_indicators_endpoints\",\n \"description\": \"Endpoints for economic event calendars, market open/close status, and country data. Provider guide: Use finnhub_ tools for upcoming economic events, market status, and country listings.\",\n \"tools\": [\n \"finnhub_get_economic_calendar\",\n \"finnhub_get_market_status\",\n \"finnhub_get_country_list\"\n ]\n },\n {\n \"category\": \"Alternative Data\",\n \"name\": \"get_alternative_data_endpoints\",\n \"description\": \"Endpoints for alternative financial data including insider (executive) trading transactions, insider sentiment scores, company-specific news, earnings calendar, and IPO calendar. Provider guide: Use finnhub_ tools for SEC-filed insider buy/sell data, insider sentiment (MSPR), upcoming earnings reports, IPO schedules, and company news.\",\n \"tools\": [\n \"finnhub_get_insider_transactions\",\n \"finnhub_get_insider_sentiment\",\n \"finnhub_get_company_news\",\n \"finnhub_get_earnings_calendar\",\n \"finnhub_get_ipo_calendar\"\n ]\n },\n {\n \"category\": \"Prediction Markets\",\n \"name\": \"get_prediction_markets_endpoints\",\n \"description\": \"Endpoints for prediction market data including event/market/trader stats, outcome prices, trade history, bar charts, token holders, and filtering. Provider: Codex (Defined.fi) covering Polymarket and Kalshi.\",\n \"tools\": [\n \"codex_prediction_market_stats\",\n \"codex_prediction_event_stats\",\n \"codex_prediction_trader_stats\",\n \"codex_prediction_trader_markets\",\n \"codex_prediction_trader_bars\",\n \"codex_prediction_market_bars\",\n \"codex_prediction_event_bars\",\n \"codex_prediction_event_top_markets\",\n \"codex_prediction_trades\",\n \"codex_prediction_markets\",\n \"codex_prediction_traders\",\n \"codex_prediction_token_holders\",\n \"codex_filter_prediction_events\",\n \"codex_prediction_categories\",\n \"codex_filter_prediction_markets\",\n \"codex_filter_prediction_trader_markets\",\n \"codex_filter_prediction_traders\",\n \"codex_prediction_market_price\",\n \"codex_prediction_trader_holdings\"\n ]\n },\n]\n\n// function that takes category name, and returns list of tools in that category return {}\n\nexport function getAllToolsInCategory(category: string){\n let categoryUsed = ToolRegistry.find(tool => tool.category === category);\n if(!categoryUsed){\n return []\n }\n const allWrappedTools = supportedTools\n // return all the tools from wrapped tools that are in the category (name match)\n let toolsInCategory = [];\n for (const tool of categoryUsed.tools){\n const wrappedTool = allWrappedTools.find(wrappedTool => wrappedTool.name === tool);\n if(wrappedTool){\n toolsInCategory.push(wrappedTool);\n }\n else console.log(`Tool ${tool} not found in wrapped tools`);\n }\n return toolsInCategory;\n}\n\n// get total tools in tool registry\nfunction getTotalToolsInToolRegistry(){\n let totalTools = 0;\n for(const category of ToolRegistry){\n totalTools += category.tools.length;\n }\n return totalTools;\n}\n\n// Dictionary mapping category index to endpoint paths\nexport const CategoryEndpoints: { [key: number]: string } = {\n 0: \"/hive_market_data/mcp\", // Market Data and Price\n 1: \"/hive_onchain_dex/mcp\", // On-Chain DEX & Pool Analytics\n 2: \"/hive_portfolio_wallet/mcp\", // Portfolio & Wallet\n 3: \"/hive_token_contract/mcp\", // Token & Contract data\n 4: \"/hive_defi_protocol/mcp\", // DeFi Protocol Analytics\n 5: \"/hive_nft_analytics/mcp\", // NFT Analytics\n 6: \"/hive_security_risk/mcp\", // Security & Risk Analysis\n 7: \"/hive_network_infrastructure/mcp\", // Network & Infrastructure\n 8: \"/hive_search_discovery/mcp\", // Search & Discovery\n 9: \"/hive_stocks_equities/mcp\", // Stocks & Equities\n 10: \"/hive_forex_commodities/mcp\", // Forex & Commodities\n 11: \"/hive_economic_indicators/mcp\", // Economic Indicators\n 12: \"/hive_alternative_data/mcp\", // Alternative Data\n 13: \"/hive_prediction_markets/mcp\", // Prediction Markets\n};\n\nexport function getToolByCategory(category:number){\n // return list tools and call tool\n const toolNameList = ToolRegistry[category].tools\n\n const tools = [];\n for(const toolName of toolNameList){\n const tool = supportedTools.find(tool => tool.name === toolName);\n if(tool){\n tools.push({tool});\n }\n }\n return tools;\n}\n","import { zodToJsonSchema } from 'zod-to-json-schema';\nimport { z } from 'zod';\nimport { ToolRegistry, getAllToolsInCategory } from './toolRegistry';\nimport { Tool } from '@modelcontextprotocol/sdk/types';\n\nexport function asTextContentResult(result: Object): any {\n // return {data: result}\n // Estimate token count (roughly 4 chars per token)\n const MAX_TOKENS = 25000;\n const CHARS_PER_TOKEN = 4;\n const maxChar = MAX_TOKENS * CHARS_PER_TOKEN; // ~100,000 chars for 25k tokens\n \n const jsonString = JSON.stringify(result, null, 2);\n \n if (jsonString.length > maxChar) {\n // Try to intelligently truncate if it's an array\n if (Array.isArray(result)) {\n const truncatedArray = result.slice(0, Math.floor(result.length * maxChar / jsonString.length));\n const truncatedJson = JSON.stringify({\n results: truncatedArray,\n truncated: true,\n originalLength: result.length,\n returnedLength: truncatedArray.length,\n message: \"Response truncated due to size limits. Consider using pagination.\"\n }, null, 2);\n \n return {\n content: [\n {\n type: 'text',\n text: truncatedJson,\n },\n ],\n };\n }\n \n // For objects with results array\n if (typeof result === 'object' && result !== null && 'results' in result && Array.isArray((result as any).results)) {\n const originalResults = (result as any).results;\n const estimatedItemSize = jsonString.length / originalResults.length;\n const maxItems = Math.floor(maxChar / estimatedItemSize);\n \n const truncatedResult = {\n ...result,\n results: originalResults.slice(0, maxItems),\n truncated: true,\n originalCount: originalResults.length,\n returnedCount: maxItems,\n message: \"Response truncated due to size limits. Use pagination parameters (limit/offset) for more results.\"\n };\n \n return {\n content: [\n {\n type: 'text',\n text: JSON.stringify(truncatedResult, null, 2),\n },\n ],\n };\n }\n \n // Fallback to simple truncation\n const truncated = jsonString.substring(0, maxChar) + '\\n... [TRUNCATED DUE TO SIZE LIMITS]';\n return {\n content: [\n {\n type: 'text',\n text: truncated,\n },\n ],\n };\n }\n \n return {\n content: [\n {\n type: 'text',\n text: jsonString,\n },\n ],\n };\n}\n\nfunction zodToInputSchema(schema: z.ZodSchema) {\n return {\n type: 'object' as const,\n ...(zodToJsonSchema(schema) as any),\n };\n}\n\nexport function dynamicTools(endpoints) {\n const getEndpointSchema = z.object({\n endpoint: z.string().describe('The name of the endpoint to get the schema for.'),\n });\n \n const getEndpointTool = {\n metadata: {\n resource: 'dynamic_tools',\n operation: 'read' as const,\n tags: [],\n },\n tool: {\n name: 'get_api_endpoint_schema',\n description:\n 'Get the schema for an endpoint in the HIVE API. You can use the schema returned by this tool to call an endpoint with the `call_api_endpoint` tool.',\n inputSchema: zodToInputSchema(getEndpointSchema),\n },\n handler: async (args: Record<string, unknown> | undefined) => {\n if (!args) {\n throw new Error('No endpoint provided');\n }\n const endpointName = getEndpointSchema.parse(args).endpoint;\n\n // First, look in the original endpoints array\n let endpoint = endpoints.find((e) => e.name === endpointName);\n \n if (!endpoint) {\n throw new Error(`Endpoint ${endpointName} not found`);\n }\n return asTextContentResult(endpoint);\n },\n };\n\n const callEndpointSchema = z.object({\n endpoint_name: z.string().describe('The name of the endpoint to call.'),\n args: z\n .record(z.string(), z.any())\n .describe(\n 'The arguments to pass to the endpoint. This must match the schema returned by the `get_api_endpoint_schema` tool.',\n ),\n });\n\n const callEndpointTool = {\n metadata: {\n resource: 'dynamic_tools',\n operation: 'write' as const,\n tags: [],\n },\n tool: {\n name: 'call_api_endpoint',\n description:\n 'call an endpoint in the HIVE API. Note: use the category endpoints to get the list of endpoints and `get_api_endpoint_schema` tool to get the schema for an endpoint.',\n inputSchema: zodToInputSchema(callEndpointSchema),\n },\n handler: null\n };\n\n // Create category-specific endpoints that act as list functionality\n const categoryTools = ToolRegistry.map(category => {\n const categorySchema = z.object({});\n \n const categoryEndpointName = category.name;\n \n return {\n metadata: {\n resource: 'dynamic_tools',\n operation: 'read' as const,\n tags: ['category'],\n },\n tool: {\n name: categoryEndpointName,\n description: `Get all endpoints in the \"${category.category}\" category. ${category.description}`,\n inputSchema: zodToInputSchema(categorySchema),\n },\n handler: async (\n args: Record<string, unknown> | undefined,\n ): Promise<any> => {\n const toolsInCategory = getAllToolsInCategory(category.category);\n \n return asTextContentResult({\n category: category.category,\n description: category.description,\n tools: toolsInCategory.map((tool ) => ({\n name: tool.name,\n description: tool.description\n })),\n });\n },\n };\n });\n\n return [getEndpointTool, callEndpointTool, ...categoryTools];\n}\n\n\n"],"mappings":"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","names":["util","objectUtil","errorUtil","errorMap","ctx","result","issues","elements","processed","result","r","ZodFirstPartyTypeKind","emojiRegex","types","x","base","name","schema","main","wrappedTool","tool"]}
|