ChainParams constructor

const ChainParams({
  1. required Chain chain,
  2. required String chainName,
  3. required String ticker,
  4. required String identifier,
  5. required int bip44CoinType,
  6. required List<AddrType> supportedAddrTypes,
  7. bool supportsSegwit = true,
  8. bool supportsTaproot = true,
  9. bool supportsMweb = false,
  10. bool usesForkId = false,
})

Implementation

const ChainParams({
  required this.chain,
  required this.chainName,
  required this.ticker,
  required this.identifier,
  required this.bip44CoinType,
  required this.supportedAddrTypes,
  this.supportsSegwit = true,
  this.supportsTaproot = true,
  this.supportsMweb = false,
  this.usesForkId = false,
});