kusamaEd25519Slip property

BipCoinConfig kusamaEd25519Slip
final

Configuration for Kusama (ed25519 SLIP-0010)

Implementation

final BipCoinConfig kusamaEd25519Slip = BipCoinConfig(
  coinNames: CoinsConf.kusama.coinName,
  coinIdx: Slip44.kusama,
  chainType: ChainType.mainnet,
  defPath: derPathHardenedFull,
  keyNetVer: bip44BtcKeyNetVerMain,
  wifNetVer: null,
  type: EllipticCurveTypes.ed25519,
  addressEncoder:
      (params, config) => SubstrateEd25519AddrEncoder().encodeKey(
        params.pubKey,
        ss58Format: CoinsConf.kusama.params.addrSs58Format,
      ),
);