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

# Supported Chains

> Learn about the ChainName enum and how it maps to the appropriate coin types.

Address records on the ENS side are stored according to the [SLIP-0044](https://github.com/satoshilabs/slips/blob/master/slip-0044.md) specification.\
This library provides an abstraction over those records by exposing a `ChainName` enum, which internally maps to the appropriate coin types.

**Currently Supported Chains**

```typescript theme={null}
export enum ChainName {
  Default = "default",
  Ethereum = "eth",
  Solana = "sol",
  Arbitrum = "arb",
  Optimism = "op",
  Base = "base",
  Polygon = "polygon",
  Bsc = "bsc",
  Avalanche = "avax",
  Gnosis = "gnosis",
  Zksync = "zksync",
  Cosmos = "cosmos",
  Near = "near",
  Linea = "linea",
  Scroll = "scroll",
  Bitcoin = "btc",
  Starknet = "starknet",
  Sui = "sui",
  Unichain = "unichain",
  Berachain = "berachain",
  WorldChain = "world_chain",
  Zora = "zora",
  Celo = "celo",
  Aptos = "aptos",
  Algorand = "algorand",
  Monad = "monad",
  Push= "push",
  Polkadot = "dot",
  Vara = "vara"
}
```

If the chain you need is not listed above, feel free to reach out to us on [Telegram](https://t.me/+5FAwyiKOTeswNTIy) we’ll be happy to add support as soon as possible. Alternatively, you can [open an issue](https://github.com/thenamespace/namespacesdk/issues) on our GitHub repository.
