/** * Metadata for an EVM-compatible chain. * * @remarks * Covers the fields commonly needed across products: * display name, short name, and block explorer URL. * UI-specific assets (icons, slugs) are intentionally excluded * because they belong in each consuming application. */ export interface ChainMetadata { /** Full human-readable name (e.g. "Arbitrum", "Ethereum Sepolia"). */ name: string; /** Short label for compact displays (e.g. "ARB", "ETH"). */ shortName: string; /** Block explorer base URL without trailing slash (e.g. "https://arbiscan.io"). */ explorerUrl: string; } //# sourceMappingURL=types.d.ts.map