LITECOIN_NETWORK constructor
Implementation
const LITECOIN_NETWORK()
: super(
messagePrefix: '\x19Litecoin Signed Message:\n',
networkBIP: LITECOIN_NETWORK_BIP_WK_COMPATIBILITY,
pubKeyHashPrefix: 0x30,
scriptHashPrefix: 0x32,
coinType: 2,
bech32: 'ltc',
txVersion: 1,
sighash: BITCOIN_SIGHASH_INFO,
endpoints: const {
// ("ltc.rentonisk.com", 50001),
("backup.electrum-ltc.org", 50001),
("electrum-ltc.bysh.me", 50001),
("electrum-ltc.qortal.online", 50001),
("electrum.ltc.xurious.com", 50001),
("electrum.qortal.link", 50001),
("46.101.3.154", 50001)
},
coin: ltcCoin,
addressPrefixes: const {
AddressType.legacy: "L",
AddressType.compatibility: "M",
AddressType.segwit: "ltc1",
},
dustTreshhold: BTC_DUSTTRESHOLD,
blockTime: 150, // 2.5 minutes
);