Merge pull request #284 from skironDotNet/litecoinZ

added LTZ - LitecoinZ https://litecoinz.org/
This commit is contained in:
iancoleman
2018-12-11 07:43:55 +11:00
committed by GitHub
3 changed files with 25 additions and 0 deletions
+11
View File
@@ -1463,3 +1463,14 @@ bitcoinjs.bitcoin.networks.blocknode_testnet = {
scriptHash: 0x7d, scriptHash: 0x7d,
wif: 0x89, wif: 0x89,
}; };
bitcoinjs.bitcoin.networks.litecoinz = {
messagePrefix: '\x18LitecoinZ Signed Message:\n',
bip32: {
public: 0x0488B21E,
private: 0x0488ADE3,
},
pubKeyHash: 0x0AB3,
scriptHash: 0x0AB8,
wif: 0x80,
};
+7
View File
@@ -2135,6 +2135,13 @@
DOM.litecoinLtubContainer.removeClass("hidden"); DOM.litecoinLtubContainer.removeClass("hidden");
}, },
}, },
{
name: "LTZ - LitecoinZ",
onSelect: function() {
network = bitcoinjs.bitcoin.networks.litecoinz;
setHdCoin(221);
},
},
{ {
name: "LYNX - Lynx", name: "LYNX - Lynx",
onSelect: function() { onSelect: function() {
+7
View File
@@ -1376,6 +1376,13 @@ it('Allows selection of Blocknode Testnet', function(done) {
}; };
testNetwork(done, params); testNetwork(done, params);
}); });
it('Allows selection of LitecoinZ', function(done) {
var params = {
selectText: "LTZ - LitecoinZ",
firstAddress: "L1VTXju7hLgKV4T7fGXS9sKsnm2gmtRCmyw",
};
testNetwork(done, params);
});
// BIP39 seed is set from phrase // BIP39 seed is set from phrase
it('Sets the bip39 seed from the prhase', function(done) { it('Sets the bip39 seed from the prhase', function(done) {