bitcoinTestnet property

ChainParams bitcoinTestnet
final

Implementation

static final bitcoinTestnet = ChainParams(
  chain: const Chain(
    wifPrefix: 0xef,
    p2pkhPrefix: 0x6f,
    p2shPrefix: 0xc4,
    bech32Hrp: 'tb',
    name: 'Bitcoin Testnet',
    bip44CoinType: 1,
    supportsSegwit: true,
    supportsTaproot: true,
  ),
  chainName: 'Bitcoin Testnet',
  ticker: 'tBTC',
  identifier: 'bitcoin-testnet',
  bip44CoinType: 1,
  supportedAddrTypes: [
    AddrType.p2pkh,
    AddrType.p2sh,
    AddrType.p2wpkh,
    AddrType.p2wsh,
    AddrType.p2tr,
  ],
  supportsSegwit: true,
  supportsTaproot: true,
);