BCHChain constructor

BCHChain()

Implementation

BCHChain()
    : super(
          name: 'bch',
          mainnet: WalletSetting(
            bip44Path: BCH_PATH,
            addressType: AddressType.BTC,
            prefix: BITCOINCASH_PREFIX,
            networkType: NetworkType(
                messagePrefix: '\u0019BitcoinCash Signed Message:\n',
                wif: 128,
                pubKeyHash: 0,
                scriptHash: 5,
                prefix: BITCOINCASH_PREFIX,
                bip32: Bip32Type(public: 76067358, private: 76066276)),
          ),
          testnet: WalletSetting(
            bip44Path: BCH_PATH,
            addressType: AddressType.BTC,
            prefix: BITCOINCASH_PREFIX,
            networkType: NetworkType(
                messagePrefix: '\u0019BitcoinCash Signed Message:\n',
                wif: 128,
                pubKeyHash: 0,
                scriptHash: 5,
                prefix: BITCOINCASH_PREFIX,
                bip32: Bip32Type(public: 76067358, private: 76066276)),
          ));