UNPKG

@chainlink/mcp-server

Version:
20 lines 682 B
"use strict"; /** * @fileoverview Shared configuration schemas * * Reusable Zod schemas that apply across multiple products. These schemas * ensure consistent validation and shared types for config structures that are * common across features (e.g., contract references). */ Object.defineProperty(exports, "__esModule", { value: true }); exports.ContractConfigSchema = void 0; const zod_1 = require("zod"); /** * Schema for a contract configuration reference * Contains the contract address and version information */ exports.ContractConfigSchema = zod_1.z.object({ address: zod_1.z.string(), version: zod_1.z.string(), }); //# sourceMappingURL=shared-config.js.map