/** * list_chains Tool * * Returns the Lagoon-supported chains, with factory address & wrapped native * token. Lets the LLM discover valid chain IDs instead of guessing. * * Cache: cacheTTL.schema (24h — chain support changes via deployment). * * Cache-tag note: chain directory is global, not per-vault. Intentionally * exempted from CacheTag.VAULT. */ import { CallToolResult } from '@modelcontextprotocol/sdk/types.js'; import { ListChainsInput } from '../utils/validators.js'; import { ServiceContainer } from '../core/container.js'; export declare function createExecuteListChains(container: ServiceContainer): (input: ListChainsInput) => Promise; //# sourceMappingURL=list-chains.d.ts.map