A reference list for all popular Dotsama relay/parachains.
This library is heavily inspired from the @wagmi/chains library. The intention is to provide a list of all the popular relay/parachains that are currently running on the Polkadot ecosystem.
This library is intended to be used in conjunction with the other libraries in the ZigZag ecosystem.
Install the @zig-zag/chains
package.
npm i @zig-zag/chains
@zig-zag/chains
exports a list of all the chains in the Polkadot ecosystem. Each chain has all the necessary information to interact with the chain.
Encoding an address for a particular chain requires the prefix of the chain. You can find the prefix for a chain in the prefix
property of the chain 🪄
import { astar } from '@zig-zag/chains'
import { encodeAddress } from '@polkadot/keyring'
const address = encodeAddress('13nCQdALEU9dp9whYhL5pntdveZ3ijDH9CUyJTJwhatWxdUW', astar.prefix)
You can also use the @zig-zag/chains
library to create an instance of the ApiPromise
for a particular chain.
import { polkadot, kusama } from '@zig-zag/chains'
import { encodeAddress } from '@polkadot/keyring'
import { ApiPromise, WsProvider } from '@polkadot/api'
const polkadotProvider = new WsProvider(polkadot.rpc.default)
const polkadotApi = await ApiPromise.create({ provider })
const kusamaProvider = new WsProvider(kusama.rpc.onfinality)
const kusamaApi = await ApiPromise.create({ provider })
If your bundler supports tree-shaking (most likely), only the used chains will be included in the bundle, so you don't have to worry about bundle size. 😊
The following chains are currently supported:
More chains will be added soon...
Want to add another chain to the list? Make sure you read the contributing guide first.
The info for the chains is taken from the following sources:
- ss58-registry - ss58-registry
- Polkadot Parachains - @polkadot/apps-config
- Kusama Parachains - @polkadot/apps-config