pepeTestnet property

BipCoinConfig pepeTestnet
final

Configuration for Pepecoin test net

Implementation

final BipCoinConfig pepeTestnet = BipCoinConfig(
  coinNames: CoinsConf.pepeTestnet.coinName,
  coinIdx: Slip44.testnet,
  chainType: ChainType.testnet,
  defPath: derPathNonHardenedFull,
  keyNetVer: Bip32KeyNetVersions(
    [0x04, 0x32, 0xa9, 0xa8],
    [0x04, 0x32, 0xa2, 0x43],
  ),
  wifNetVer: CoinsConf.pepeTestnet.params.wifNetVer,
  type: EllipticCurveTypes.secp256k1,
  addressEncoder:
      (params, config) => P2PKHAddrEncoder().encodeKey(
        params.pubKey,
        netVersion: CoinsConf.pepeTestnet.params.p2pkhNetVer,
      ),
);