pub fn build_default_store(cache_ttl_secs: u64) -> Box<dyn CredentialStore>Expand description
Build the default credential chain, optionally wrapping the whole thing in a TTL cache. Call this from host binaries (CLI, MCP server entrypoint) so the cache configuration stays consistent.
cache_ttl_secs == 0→ no cache, returns the rawChainStore.cache_ttl_secs > 0→ wraps inCachedStorewith the requested TTL.