zcashTestNet property

BipCoinConfig zcashTestNet
final

Configuration for Zcash test net

Implementation

final BipCoinConfig zcashTestNet = BipCoinConfig(
  coinNames: CoinsConf.zcashTransparentTestNet.coinName,
  coinIdx: Slip44.testnet,
  chainType: ChainType.testnet,
  defPath: derPathNonHardenedFull,
  keyNetVer: bip44BtcKeyNetVerTest,
  wifNetVer: CoinsConf.zcashTransparentTestNet.params.wifNetVer,
  type: EllipticCurveTypes.secp256k1,
  addressEncoder:
      (params, config) => P2PKHAddrEncoder().encodeKey(
        params.pubKey,
        netVersion: CoinsConf.zcashTransparentTestNet.params.p2pkhNetVer,
      ),
);