Skip to content

Chains

LunoKit supports almost all Substrate-based chains including Polkadot, Kusama, parachains, and custom chains. This guide shows you how to configure and use different chains in your application.

Built-in Chains

LunoKit provides pre-configured support for major Polkadot ecosystem chains:

tsx
import {
  polkadot,
  kusama,
  westend,
  paseo
} from '@luno-kit/react'

const config = createConfig({
  appName: 'My Lunokit App',
  chains: [polkadot, kusama, westend, paseo],
  connectors: [polkadotjs()],
})

Available Chains

ChainDescriptionNetwork TypeSS58 FormatToken SymbolDecimals
polkadotPolkadot relay chainMainnet0DOT10
kusamaKusama canary networkMainnet2KSM12
westendPolkadot testnetTestnet42WND12
paseoCommunity testnetTestnet42PASEO12

Next Steps

Released under the MIT License.