🥷
Namespace
AppDev Portal
  • [ Introduction ]
    • ENS
    • Namespace
  • Official Links
  • Apps
    • Overview
    • Onchain Subnames (App)
      • Search & Register
      • Wizard
        • Listing an ENS Name
        • Features List
      • ENS Widget
      • Farcaster Frames
        • Default Frame
        • Custom Frame
    • Offchain Subnames (DevApp)
      • Subnames
      • Resolver set
      • API keys
  • How-to Guides and Demos
  • Dev Docs
    • SDK
      • Offchain Manager
        • Installation
        • Generate API key
        • Create or Update Subname
        • DeleteSubname
        • IsSubnameAvailable
        • GetFilteredSubnames
        • AddressRecords
          • ChainName
        • TextRecords
        • DataRecords
      • Indexer Manager
        • Installation
        • Fetch L2 Subnames
        • Fetch L2 Registries
      • Mint Manager
        • Installation
        • GetMintDetails
        • GetMintTransactionParameters
        • IsSubnameAvailable
        • How To Mint L1 & L2 subname via mint-manager
      • Namespace Client (deprecated)
        • Installation
        • GetListedName
        • GetMintDetails
        • GetMintTransactionParameters
        • IsSubnameAvailable
        • GenerateAuthToken
    • APIs
      • Offchain Manager
      • Mint Manager
    • Infrastructure
      • Namespace L2 Subnames
    • Subpages
  • Ecosystem
    • Use Cases
  • Jobs
    • 📌We’re Hiring 👇
    • 🧑‍💻 Full-Stack Dev
    • 🥷 DevRel Lead
    • 💼 BD Lead
    • 🐣 Intern (dev role)
Powered by GitBook
On this page
  1. Dev Docs
  2. SDK
  3. Offchain Manager
  4. AddressRecords

ChainName

Address records on the ENS side are stored according to the SLIP-0044 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

export enum ChainName {
    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",
}

If the chain you need is not listed above, feel free to reach out to us on Discord— we’ll be happy to add support as soon as possible.

PreviousAddressRecordsNextTextRecords

Last updated 28 days ago