> ## Documentation Index
> Fetch the complete documentation index at: https://docs.kovaswap.finance/llms.txt
> Use this file to discover all available pages before exploring further.

# Chain manifest

> Configure EVM deployments without rewriting protocol code.

Each network has a JSON manifest under `config/chains/`. It defines:

* chain ID, name, RPC and explorer URLs;
* native and wrapped asset behavior;
* trusted stablecoin addresses;
* factory, router, and infrastructure addresses;
* pool fee tiers and protocol fee share;
* external routing integrations;
* verification thresholds;
* launchpad defaults.

```json theme={null}
{
  "schemaVersion": 1,
  "environment": "mainnet",
  "chain": {
    "id": 12345,
    "name": "Example EVM",
    "nativeSymbol": "ETH",
    "rpcUrls": ["https://rpc.example.org"],
    "explorerUrl": "https://explorer.example.org"
  }
}
```

Never copy token, router, or quoter addresses between chains without verifying official sources and deployed bytecode.
