dogecoinTestNet property

BipCoinConfig dogecoinTestNet
final

Configuration for Dogecoin test net

Implementation

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