litecoinTestnet property

ChainParams litecoinTestnet
final

Implementation

static final litecoinTestnet = ChainParams(
  chain: const Chain(
    wifPrefix: 0xef,
    p2pkhPrefix: 0x6f,
    p2shPrefix: 0x3a,
    bech32Hrp: 'tltc',
    mwebHrp: 'tmweb',
    name: 'Litecoin Testnet',
    bip44CoinType: 1,
    supportsSegwit: true,
    supportsTaproot: true,
  ),
  chainName: 'Litecoin Testnet',
  ticker: 'tLTC',
  identifier: 'litecoin-testnet',
  bip44CoinType: 1,
  supportedAddrTypes: [
    AddrType.p2pkh,
    AddrType.p2sh,
    AddrType.p2wpkh,
    AddrType.p2wsh,
    AddrType.p2tr,
    AddrType.mweb,
  ],
  supportsSegwit: true,
  supportsTaproot: true,
  supportsMweb: true,
);