refactor js for storing/using the different currency
remove support for testnet, as it will be implemented as yet another currency wallet generation should work at this point TODO: detect currency type from a key
This commit is contained in:
parent
2ab9acc3fc
commit
fadeabd396
8 changed files with 183 additions and 140 deletions
|
@ -37,7 +37,7 @@ module.exports = function (grunt) {
|
||||||
{ token: "//ninja.detailwallet.js", file: "./src/ninja.detailwallet.js" },
|
{ token: "//ninja.detailwallet.js", file: "./src/ninja.detailwallet.js" },
|
||||||
{ token: "//qrcode.js", file: "./src/qrcode.js" },
|
{ token: "//qrcode.js", file: "./src/qrcode.js" },
|
||||||
{ token: "//securerandom.js", file: "./src/securerandom.js" },
|
{ token: "//securerandom.js", file: "./src/securerandom.js" },
|
||||||
{ token: "//janin.walletmanager.js", file: "./src/janin.walletmanager.js" },
|
{ token: "//janin.currency.js", file: "./src/janin.currency.js" },
|
||||||
{ token: "//main.css", file: "./src/main.css" }
|
{ token: "//main.css", file: "./src/main.css" }
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
@ -5131,8 +5131,6 @@ Bitcoin.ECKey = (function () {
|
||||||
this.compressed = (this.compressed == undefined) ? !!ECKey.compressByDefault : this.compressed;
|
this.compressed = (this.compressed == undefined) ? !!ECKey.compressByDefault : this.compressed;
|
||||||
};
|
};
|
||||||
|
|
||||||
ECKey.privateKeyPrefix = 0x80; // mainnet 0x80 testnet 0xEF
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Whether public keys should be returned compressed by default.
|
* Whether public keys should be returned compressed by default.
|
||||||
*/
|
*/
|
||||||
|
@ -5220,7 +5218,7 @@ Bitcoin.ECKey = (function () {
|
||||||
// Sipa Private Key Wallet Import Format
|
// Sipa Private Key Wallet Import Format
|
||||||
ECKey.prototype.getBitcoinWalletImportFormat = function () {
|
ECKey.prototype.getBitcoinWalletImportFormat = function () {
|
||||||
var bytes = this.getBitcoinPrivateKeyByteArray();
|
var bytes = this.getBitcoinPrivateKeyByteArray();
|
||||||
bytes.unshift(ECKey.privateKeyPrefix); // prepend 0x80 byte
|
bytes.unshift(janin.selectedCurrency.privateKeyPrefix); // prepend private key prefix
|
||||||
if (this.compressed) bytes.push(0x01); // append 0x01 byte for compressed format
|
if (this.compressed) bytes.push(0x01); // append 0x01 byte for compressed format
|
||||||
var checksum = Crypto.SHA256(Crypto.SHA256(bytes, { asBytes: true }), { asBytes: true });
|
var checksum = Crypto.SHA256(Crypto.SHA256(bytes, { asBytes: true }), { asBytes: true });
|
||||||
bytes = bytes.concat(checksum.slice(0, 4));
|
bytes = bytes.concat(checksum.slice(0, 4));
|
||||||
|
@ -5282,7 +5280,8 @@ Bitcoin.ECKey = (function () {
|
||||||
throw "Checksum validation failed!";
|
throw "Checksum validation failed!";
|
||||||
}
|
}
|
||||||
var version = hash.shift();
|
var version = hash.shift();
|
||||||
if (version != ECKey.privateKeyPrefix) {
|
// TODO: detect currency
|
||||||
|
if (version != janin.selectedCurrency.privateKeyPrefix) {
|
||||||
throw "Version " + version + " not supported!";
|
throw "Version " + version + " not supported!";
|
||||||
}
|
}
|
||||||
return hash;
|
return hash;
|
||||||
|
@ -5302,7 +5301,8 @@ Bitcoin.ECKey = (function () {
|
||||||
throw "Checksum validation failed!";
|
throw "Checksum validation failed!";
|
||||||
}
|
}
|
||||||
var version = hash.shift();
|
var version = hash.shift();
|
||||||
if (version != ECKey.privateKeyPrefix) {
|
// TODO: detect currency
|
||||||
|
if (version != janin.selectedCurrency.privateKeyPrefix) {
|
||||||
throw "Version " + version + " not supported!";
|
throw "Version " + version + " not supported!";
|
||||||
}
|
}
|
||||||
hash.pop();
|
hash.pop();
|
||||||
|
@ -5318,17 +5318,13 @@ Bitcoin.ECKey = (function () {
|
||||||
// 51 characters base58, always starts with a '5'
|
// 51 characters base58, always starts with a '5'
|
||||||
ECKey.isWalletImportFormat = function (key) {
|
ECKey.isWalletImportFormat = function (key) {
|
||||||
key = key.toString();
|
key = key.toString();
|
||||||
return (ECKey.privateKeyPrefix == 0x80) ?
|
return janin.selectedCurrency.WIF_RegExtest(key);
|
||||||
(/^5[123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz]{50}$/.test(key)) :
|
|
||||||
(/^9[123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz]{50}$/.test(key));
|
|
||||||
};
|
};
|
||||||
|
|
||||||
// 52 characters base58
|
// 52 characters base58
|
||||||
ECKey.isCompressedWalletImportFormat = function (key) {
|
ECKey.isCompressedWalletImportFormat = function (key) {
|
||||||
key = key.toString();
|
key = key.toString();
|
||||||
return (ECKey.privateKeyPrefix == 0x80) ?
|
return janin.selectedCurrency.CWIF_RegExtest(key);
|
||||||
(/^[LK][123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz]{51}$/.test(key)) :
|
|
||||||
(/^c[123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz]{51}$/.test(key));
|
|
||||||
};
|
};
|
||||||
|
|
||||||
// 44 characters
|
// 44 characters
|
||||||
|
@ -5995,6 +5991,13 @@ body { font-family: Arial; }
|
||||||
|
|
||||||
<div id="wallets">
|
<div id="wallets">
|
||||||
<div id="singlearea" class="walletarea">
|
<div id="singlearea" class="walletarea">
|
||||||
|
<div class="commands">
|
||||||
|
<select id="walletType" onchange="janin.currency.useCurrency(this);">
|
||||||
|
<option value="0" selected="selected">Bitcoin</option>
|
||||||
|
<option value="1">Dogecoin</option>
|
||||||
|
<option value="2">Litecoin</option>
|
||||||
|
</select>
|
||||||
|
</div>
|
||||||
<div class="commands">
|
<div class="commands">
|
||||||
<div id="singlecommands" class="row">
|
<div id="singlecommands" class="row">
|
||||||
<span><input type="button" id="newaddress" value="Generate New Address" onclick="ninja.wallets.singlewallet.generateNewAddressAndKey();" /></span>
|
<span><input type="button" id="newaddress" value="Generate New Address" onclick="ninja.wallets.singlewallet.generateNewAddressAndKey();" /></span>
|
||||||
|
@ -6295,7 +6298,85 @@ body { font-family: Arial; }
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var janin = {};
|
||||||
|
|
||||||
|
janin.currency = {
|
||||||
|
createCurrency: function (name, networkVersion, privateKeyPrefix, WIF_Start, CWIF_Start) {
|
||||||
|
var currency = {};
|
||||||
|
currency.name = name;
|
||||||
|
currency.networkVersion = networkVersion;
|
||||||
|
currency.privateKeyPrefix = privateKeyPrefix;
|
||||||
|
currency.WIF_Start = WIF_Start;
|
||||||
|
currency.CWIF_Start = CWIF_Start;
|
||||||
|
return currency;
|
||||||
|
},
|
||||||
|
|
||||||
|
name: function() {
|
||||||
|
return janin.selectedCurrency.name;
|
||||||
|
},
|
||||||
|
|
||||||
|
networkVersion: function() {
|
||||||
|
return janin.selectedCurrency.networkVersion;
|
||||||
|
},
|
||||||
|
|
||||||
|
privateKeyPrefix: function() {
|
||||||
|
return janin.selectedCurrency.privateKeyPrefix;
|
||||||
|
},
|
||||||
|
|
||||||
|
WIF_RegEx: function() {
|
||||||
|
return new RegExp("^" + janin.selectedCurrency.WIF_Start + "[123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz]{50}$");
|
||||||
|
},
|
||||||
|
|
||||||
|
CWIF_RegEx: function() {
|
||||||
|
return new RegExp("^" + janin.selectedCurrency.CWIF_Start + "[123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz]{51}$");
|
||||||
|
},
|
||||||
|
|
||||||
|
useCurrency: function(currency) {
|
||||||
|
janin.selectedCurrency = currency;
|
||||||
|
|
||||||
|
// TODO: regenerate/reset current wallet (single, vanity ...)
|
||||||
|
},
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
janin.currencies = [
|
||||||
|
janin.currency.createCurrency ("Bitcoin", 0x00, 0x80, "5", "[LK]"),
|
||||||
|
janin.currency.createCurrency ("Dogecoin", 0x1e, 0x9e, "6", "T"),
|
||||||
|
janin.currency.createCurrency ("Litecoin", 0x30, 0xb0, "6", "T")
|
||||||
|
];
|
||||||
|
|
||||||
|
janin.selectedCurrency = janin.currencies[0];
|
||||||
|
|
||||||
|
/*
|
||||||
|
janin.currency.useCurrencyWallet = function(_networkVersion, _privateKeyPrefix, _walletImportFormatRegEx, _compressedWalletImportRegEx) {
|
||||||
|
|
||||||
|
Bitcoin.Address.networkVersion = _networkVersion; // mainnet
|
||||||
|
Bitcoin.ECKey.privateKeyPrefix = _privateKeyPrefix; // mainnet 0x80 testnet 0xEF
|
||||||
|
|
||||||
|
// 51 characters base58, always starts with a '5'
|
||||||
|
Bitcoin.ECKey.isWalletImportFormat = function (key) {
|
||||||
|
key = key.toString();
|
||||||
|
var currencyRegEx = new RegExp(_walletImportFormatRegEx);
|
||||||
|
var testnetRegEx = new RegExp("^9[123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz]{50}$");
|
||||||
|
|
||||||
|
return (ECKey.privateKeyPrefix == _privateKeyPrefix) ? (currencyRegEx.test(key)) : (testnetRegEx.test(key));
|
||||||
|
};
|
||||||
|
|
||||||
|
// 52 characters base58
|
||||||
|
Bitcoin.ECKey.isCompressedWalletImportFormat = function (key) {
|
||||||
|
key = key.toString();
|
||||||
|
var currencyRegEx = new RegExp(_compressedWalletImportRegEx);
|
||||||
|
var testnetRegEx = new RegExp("^c[123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz]{51}$");
|
||||||
|
|
||||||
|
return (ECKey.privateKeyPrefix == _privateKeyPrefix) ? (currencyRegEx.test(key)) : (testnetRegEx.test(key));
|
||||||
|
};
|
||||||
|
|
||||||
|
ninja.wallets.singlewallet.generateNewAddressAndKey();
|
||||||
|
}*/
|
||||||
|
|
||||||
|
</script>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
var ninja = { wallets: {} };
|
var ninja = { wallets: {} };
|
||||||
|
|
||||||
|
@ -6925,7 +7006,6 @@ ninja.translator = {
|
||||||
translations: {
|
translations: {
|
||||||
"en": {
|
"en": {
|
||||||
// javascript alerts or messages
|
// javascript alerts or messages
|
||||||
"testneteditionactivated": "TESTNET EDITION ACTIVATED",
|
|
||||||
"paperlabelbitcoinaddress": "Bitcoin Address:",
|
"paperlabelbitcoinaddress": "Bitcoin Address:",
|
||||||
"paperlabelprivatekey": "Private Key (Wallet Import Format):",
|
"paperlabelprivatekey": "Private Key (Wallet Import Format):",
|
||||||
"paperlabelencryptedkey": "Encrypted Private Key (Password required)",
|
"paperlabelencryptedkey": "Encrypted Private Key (Password required)",
|
||||||
|
@ -6946,7 +7026,6 @@ ninja.translator = {
|
||||||
|
|
||||||
"es": {
|
"es": {
|
||||||
// javascript alerts or messages
|
// javascript alerts or messages
|
||||||
"testneteditionactivated": "Testnet se activa",
|
|
||||||
"paperlabelbitcoinaddress": "Dirección Bitcoin:",
|
"paperlabelbitcoinaddress": "Dirección Bitcoin:",
|
||||||
"paperlabelprivatekey": "Clave privada (formato para importar):",
|
"paperlabelprivatekey": "Clave privada (formato para importar):",
|
||||||
"paperlabelencryptedkey": "Clave privada cifrada (contraseña necesaria)",
|
"paperlabelencryptedkey": "Clave privada cifrada (contraseña necesaria)",
|
||||||
|
@ -7080,7 +7159,6 @@ ninja.translator = {
|
||||||
|
|
||||||
"fr": {
|
"fr": {
|
||||||
// javascript alerts or messages
|
// javascript alerts or messages
|
||||||
"testneteditionactivated": "ÉDITION TESTNET ACTIVÉE",
|
|
||||||
"paperlabelbitcoinaddress": "Adresse Bitcoin:",
|
"paperlabelbitcoinaddress": "Adresse Bitcoin:",
|
||||||
"paperlabelprivatekey": "Clé Privée (Format d'importation de porte-monnaie):",
|
"paperlabelprivatekey": "Clé Privée (Format d'importation de porte-monnaie):",
|
||||||
"paperlabelencryptedkey": "Encrypted Private Key (Password required)", //TODO: please translate
|
"paperlabelencryptedkey": "Encrypted Private Key (Password required)", //TODO: please translate
|
||||||
|
@ -7214,7 +7292,6 @@ ninja.translator = {
|
||||||
|
|
||||||
"el": {
|
"el": {
|
||||||
// javascript alerts or messages
|
// javascript alerts or messages
|
||||||
"testneteditionactivated": "ΕΝΕΡΓΗ ΕΚΔΟΣΗ TESTNET",
|
|
||||||
"paperlabelbitcoinaddress": "Διεύθυνση Bitcoin:",
|
"paperlabelbitcoinaddress": "Διεύθυνση Bitcoin:",
|
||||||
"paperlabelprivatekey": "Προσωπικό Κλειδί (Μορφή εισαγωγής σε πορτοφόλι):",
|
"paperlabelprivatekey": "Προσωπικό Κλειδί (Μορφή εισαγωγής σε πορτοφόλι):",
|
||||||
"paperlabelencryptedkey": "Encrypted Private Key (Password required)", //TODO: please translate
|
"paperlabelencryptedkey": "Encrypted Private Key (Password required)", //TODO: please translate
|
||||||
|
@ -7348,7 +7425,6 @@ ninja.translator = {
|
||||||
|
|
||||||
"it": {
|
"it": {
|
||||||
// javascript alerts or messages
|
// javascript alerts or messages
|
||||||
"testneteditionactivated": "TESTNET EDITION ATTIVATO",
|
|
||||||
"paperlabelbitcoinaddress": "Indirizzo Bitcoin:",
|
"paperlabelbitcoinaddress": "Indirizzo Bitcoin:",
|
||||||
"paperlabelprivatekey": "Chiave privata (Wallet Import Format):",
|
"paperlabelprivatekey": "Chiave privata (Wallet Import Format):",
|
||||||
"paperlabelencryptedkey": "Chiave privata criptata (password richiesta)",
|
"paperlabelencryptedkey": "Chiave privata criptata (password richiesta)",
|
||||||
|
@ -7483,7 +7559,6 @@ ninja.translator = {
|
||||||
|
|
||||||
"de": {
|
"de": {
|
||||||
// javascript alerts or messages
|
// javascript alerts or messages
|
||||||
"testneteditionactivated": "TESTNET AKTIVIERT",
|
|
||||||
"paperlabelbitcoinaddress": "Bitcoin-Adresse:",
|
"paperlabelbitcoinaddress": "Bitcoin-Adresse:",
|
||||||
"paperlabelprivatekey": "Privater Schlüssel (Wallet Import Format):",
|
"paperlabelprivatekey": "Privater Schlüssel (Wallet Import Format):",
|
||||||
"paperlabelencryptedkey": "Verschlüsselter privater Schlüssel (Passwort benötigt)",
|
"paperlabelencryptedkey": "Verschlüsselter privater Schlüssel (Passwort benötigt)",
|
||||||
|
@ -7617,7 +7692,6 @@ ninja.translator = {
|
||||||
|
|
||||||
"cs": {
|
"cs": {
|
||||||
// javascript alerts or messages
|
// javascript alerts or messages
|
||||||
"testneteditionactivated": "TESTNET aktivován",
|
|
||||||
"paperlabelbitcoinaddress": "Bitcoin adresa:",
|
"paperlabelbitcoinaddress": "Bitcoin adresa:",
|
||||||
"paperlabelprivatekey": "Soukromý klíč (WIF – Formát pro import do peněženky):",
|
"paperlabelprivatekey": "Soukromý klíč (WIF – Formát pro import do peněženky):",
|
||||||
"paperlabelencryptedkey": "Šifrovaný soukromý klíč (Vyžadováno heslo)",
|
"paperlabelencryptedkey": "Šifrovaný soukromý klíč (Vyžadováno heslo)",
|
||||||
|
@ -9085,16 +9159,6 @@ if (ninja.getQueryString()["asyncunittests"] == "true" || ninja.getQueryString()
|
||||||
if (ninja.getQueryString()["culture"] != undefined) {
|
if (ninja.getQueryString()["culture"] != undefined) {
|
||||||
ninja.translator.translate(ninja.getQueryString()["culture"]);
|
ninja.translator.translate(ninja.getQueryString()["culture"]);
|
||||||
}
|
}
|
||||||
// testnet, check if testnet edition should be activated
|
|
||||||
if (ninja.getQueryString()["testnet"] == "true" || ninja.getQueryString()["testnet"] == "1") {
|
|
||||||
document.getElementById("testnet").innerHTML = ninja.translator.get("testneteditionactivated");
|
|
||||||
document.getElementById("testnet").style.display = "block";
|
|
||||||
document.getElementById("detailwifprefix").innerHTML = "'9'";
|
|
||||||
document.getElementById("detailcompwifprefix").innerHTML = "'c'";
|
|
||||||
Bitcoin.Address.networkVersion = 0x6F; // testnet
|
|
||||||
Bitcoin.ECKey.privateKeyPrefix = 0xEF; // testnet
|
|
||||||
ninja.testnetMode = true;
|
|
||||||
}
|
|
||||||
if (ninja.getQueryString()["showseedpool"] == "true" || ninja.getQueryString()["showseedpool"] == "1") {
|
if (ninja.getQueryString()["showseedpool"] == "true" || ninja.getQueryString()["showseedpool"] == "1") {
|
||||||
document.getElementById("seedpoolarea").style.display = "block";
|
document.getElementById("seedpoolarea").style.display = "block";
|
||||||
}
|
}
|
||||||
|
|
|
@ -145,10 +145,10 @@
|
||||||
<div id="wallets">
|
<div id="wallets">
|
||||||
<div id="singlearea" class="walletarea">
|
<div id="singlearea" class="walletarea">
|
||||||
<div class="commands">
|
<div class="commands">
|
||||||
<select id="walletType" onchange="janin.currency.changeWalletType(this);">
|
<select id="walletType" onchange="janin.currency.useCurrency(this);">
|
||||||
<option value="bitcoin" selected="selected">Bitcoin</option>
|
<option value="0" selected="selected">Bitcoin</option>
|
||||||
<option value="dogecoin">Dogecoin</option>
|
<option value="1">Dogecoin</option>
|
||||||
<option value="litecoin">Litecoin</option>
|
<option value="2">Litecoin</option>
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
<div class="commands">
|
<div class="commands">
|
||||||
|
@ -451,7 +451,10 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
//janin.currency.js
|
||||||
|
</script>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
//ninja.key.js
|
//ninja.key.js
|
||||||
</script>
|
</script>
|
||||||
|
@ -479,15 +482,6 @@
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
//ninja.detailwallet.js
|
//ninja.detailwallet.js
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<!-- Custom code -->
|
|
||||||
|
|
||||||
<script type="text/javascript">
|
|
||||||
//janin.walletmanager.js
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<!-- End custom code -->
|
|
||||||
|
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
//ninja.unittests.js
|
//ninja.unittests.js
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -43,8 +43,6 @@ Bitcoin.ECKey = (function () {
|
||||||
this.compressed = (this.compressed == undefined) ? !!ECKey.compressByDefault : this.compressed;
|
this.compressed = (this.compressed == undefined) ? !!ECKey.compressByDefault : this.compressed;
|
||||||
};
|
};
|
||||||
|
|
||||||
ECKey.privateKeyPrefix = 0x80; // mainnet 0x80 testnet 0xEF
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Whether public keys should be returned compressed by default.
|
* Whether public keys should be returned compressed by default.
|
||||||
*/
|
*/
|
||||||
|
@ -132,7 +130,7 @@ Bitcoin.ECKey = (function () {
|
||||||
// Sipa Private Key Wallet Import Format
|
// Sipa Private Key Wallet Import Format
|
||||||
ECKey.prototype.getBitcoinWalletImportFormat = function () {
|
ECKey.prototype.getBitcoinWalletImportFormat = function () {
|
||||||
var bytes = this.getBitcoinPrivateKeyByteArray();
|
var bytes = this.getBitcoinPrivateKeyByteArray();
|
||||||
bytes.unshift(ECKey.privateKeyPrefix); // prepend 0x80 byte
|
bytes.unshift(janin.selectedCurrency.privateKeyPrefix); // prepend private key prefix
|
||||||
if (this.compressed) bytes.push(0x01); // append 0x01 byte for compressed format
|
if (this.compressed) bytes.push(0x01); // append 0x01 byte for compressed format
|
||||||
var checksum = Crypto.SHA256(Crypto.SHA256(bytes, { asBytes: true }), { asBytes: true });
|
var checksum = Crypto.SHA256(Crypto.SHA256(bytes, { asBytes: true }), { asBytes: true });
|
||||||
bytes = bytes.concat(checksum.slice(0, 4));
|
bytes = bytes.concat(checksum.slice(0, 4));
|
||||||
|
@ -194,7 +192,8 @@ Bitcoin.ECKey = (function () {
|
||||||
throw "Checksum validation failed!";
|
throw "Checksum validation failed!";
|
||||||
}
|
}
|
||||||
var version = hash.shift();
|
var version = hash.shift();
|
||||||
if (version != ECKey.privateKeyPrefix) {
|
// TODO: detect currency
|
||||||
|
if (version != janin.selectedCurrency.privateKeyPrefix) {
|
||||||
throw "Version " + version + " not supported!";
|
throw "Version " + version + " not supported!";
|
||||||
}
|
}
|
||||||
return hash;
|
return hash;
|
||||||
|
@ -214,7 +213,8 @@ Bitcoin.ECKey = (function () {
|
||||||
throw "Checksum validation failed!";
|
throw "Checksum validation failed!";
|
||||||
}
|
}
|
||||||
var version = hash.shift();
|
var version = hash.shift();
|
||||||
if (version != ECKey.privateKeyPrefix) {
|
// TODO: detect currency
|
||||||
|
if (version != janin.selectedCurrency.privateKeyPrefix) {
|
||||||
throw "Version " + version + " not supported!";
|
throw "Version " + version + " not supported!";
|
||||||
}
|
}
|
||||||
hash.pop();
|
hash.pop();
|
||||||
|
@ -230,17 +230,13 @@ Bitcoin.ECKey = (function () {
|
||||||
// 51 characters base58, always starts with a '5'
|
// 51 characters base58, always starts with a '5'
|
||||||
ECKey.isWalletImportFormat = function (key) {
|
ECKey.isWalletImportFormat = function (key) {
|
||||||
key = key.toString();
|
key = key.toString();
|
||||||
return (ECKey.privateKeyPrefix == 0x80) ?
|
return janin.selectedCurrency.WIF_RegExtest(key);
|
||||||
(/^5[123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz]{50}$/.test(key)) :
|
|
||||||
(/^9[123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz]{50}$/.test(key));
|
|
||||||
};
|
};
|
||||||
|
|
||||||
// 52 characters base58
|
// 52 characters base58
|
||||||
ECKey.isCompressedWalletImportFormat = function (key) {
|
ECKey.isCompressedWalletImportFormat = function (key) {
|
||||||
key = key.toString();
|
key = key.toString();
|
||||||
return (ECKey.privateKeyPrefix == 0x80) ?
|
return janin.selectedCurrency.CWIF_RegExtest(key);
|
||||||
(/^[LK][123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz]{51}$/.test(key)) :
|
|
||||||
(/^c[123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz]{51}$/.test(key));
|
|
||||||
};
|
};
|
||||||
|
|
||||||
// 44 characters
|
// 44 characters
|
||||||
|
|
75
src/janin.currency.js
Normal file
75
src/janin.currency.js
Normal file
|
@ -0,0 +1,75 @@
|
||||||
|
var janin = {};
|
||||||
|
|
||||||
|
janin.currency = {
|
||||||
|
createCurrency: function (name, networkVersion, privateKeyPrefix, WIF_Start, CWIF_Start) {
|
||||||
|
var currency = {};
|
||||||
|
currency.name = name;
|
||||||
|
currency.networkVersion = networkVersion;
|
||||||
|
currency.privateKeyPrefix = privateKeyPrefix;
|
||||||
|
currency.WIF_Start = WIF_Start;
|
||||||
|
currency.CWIF_Start = CWIF_Start;
|
||||||
|
return currency;
|
||||||
|
},
|
||||||
|
|
||||||
|
name: function() {
|
||||||
|
return janin.selectedCurrency.name;
|
||||||
|
},
|
||||||
|
|
||||||
|
networkVersion: function() {
|
||||||
|
return janin.selectedCurrency.networkVersion;
|
||||||
|
},
|
||||||
|
|
||||||
|
privateKeyPrefix: function() {
|
||||||
|
return janin.selectedCurrency.privateKeyPrefix;
|
||||||
|
},
|
||||||
|
|
||||||
|
WIF_RegEx: function() {
|
||||||
|
return new RegExp("^" + janin.selectedCurrency.WIF_Start + "[123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz]{50}$");
|
||||||
|
},
|
||||||
|
|
||||||
|
CWIF_RegEx: function() {
|
||||||
|
return new RegExp("^" + janin.selectedCurrency.CWIF_Start + "[123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz]{51}$");
|
||||||
|
},
|
||||||
|
|
||||||
|
useCurrency: function(currency) {
|
||||||
|
janin.selectedCurrency = currency;
|
||||||
|
|
||||||
|
// TODO: regenerate/reset current wallet (single, vanity ...)
|
||||||
|
},
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
janin.currencies = [
|
||||||
|
janin.currency.createCurrency ("Bitcoin", 0x00, 0x80, "5", "[LK]"),
|
||||||
|
janin.currency.createCurrency ("Dogecoin", 0x1e, 0x9e, "6", "T"),
|
||||||
|
janin.currency.createCurrency ("Litecoin", 0x30, 0xb0, "6", "T")
|
||||||
|
];
|
||||||
|
|
||||||
|
janin.selectedCurrency = janin.currencies[0];
|
||||||
|
|
||||||
|
/*
|
||||||
|
janin.currency.useCurrencyWallet = function(_networkVersion, _privateKeyPrefix, _walletImportFormatRegEx, _compressedWalletImportRegEx) {
|
||||||
|
|
||||||
|
Bitcoin.Address.networkVersion = _networkVersion; // mainnet
|
||||||
|
Bitcoin.ECKey.privateKeyPrefix = _privateKeyPrefix; // mainnet 0x80 testnet 0xEF
|
||||||
|
|
||||||
|
// 51 characters base58, always starts with a '5'
|
||||||
|
Bitcoin.ECKey.isWalletImportFormat = function (key) {
|
||||||
|
key = key.toString();
|
||||||
|
var currencyRegEx = new RegExp(_walletImportFormatRegEx);
|
||||||
|
var testnetRegEx = new RegExp("^9[123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz]{50}$");
|
||||||
|
|
||||||
|
return (ECKey.privateKeyPrefix == _privateKeyPrefix) ? (currencyRegEx.test(key)) : (testnetRegEx.test(key));
|
||||||
|
};
|
||||||
|
|
||||||
|
// 52 characters base58
|
||||||
|
Bitcoin.ECKey.isCompressedWalletImportFormat = function (key) {
|
||||||
|
key = key.toString();
|
||||||
|
var currencyRegEx = new RegExp(_compressedWalletImportRegEx);
|
||||||
|
var testnetRegEx = new RegExp("^c[123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz]{51}$");
|
||||||
|
|
||||||
|
return (ECKey.privateKeyPrefix == _privateKeyPrefix) ? (currencyRegEx.test(key)) : (testnetRegEx.test(key));
|
||||||
|
};
|
||||||
|
|
||||||
|
ninja.wallets.singlewallet.generateNewAddressAndKey();
|
||||||
|
}*/
|
|
@ -1,69 +0,0 @@
|
||||||
var janin = { currency: {
|
|
||||||
Address: {},
|
|
||||||
ECKey: {}
|
|
||||||
}};
|
|
||||||
|
|
||||||
|
|
||||||
janin.currency.Address.networkVersions = [
|
|
||||||
0x00, // Bitcoin
|
|
||||||
0x1e // Dogecoin
|
|
||||||
];
|
|
||||||
|
|
||||||
janin.currency.ECKey.privateKeyPrefixes = [
|
|
||||||
0x80, // Bitcoin
|
|
||||||
0x9e // Dogecoin
|
|
||||||
];
|
|
||||||
|
|
||||||
janin.currency.WalletImportFormatRegEx = [
|
|
||||||
"^5[123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz]{50}$", // Bitcoin
|
|
||||||
"^6[123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz]{50}$" // Dogecoin
|
|
||||||
];
|
|
||||||
|
|
||||||
janin.currency.CompressedWalletImportRegEx = [
|
|
||||||
"^[LK][123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz]{51}$", // Bitcoin
|
|
||||||
"^T[123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz]{51}$" // Dogecoin
|
|
||||||
];
|
|
||||||
|
|
||||||
|
|
||||||
janin.currency.changeWalletType = function (ddl) {
|
|
||||||
|
|
||||||
var netVersion = janin.currency.Address.networkVersions[ddl.selectedIndex];
|
|
||||||
var privKeyPrefix = janin.currency.ECKey.privateKeyPrefixes[ddl.selectedIndex];
|
|
||||||
var walletImportRegex = janin.currency.WalletImportFormatRegEx[ddl.selectedIndex];
|
|
||||||
var compressedWalletImportRegex = janin.currency.CompressedWalletImportRegEx[ddl.selectedIndex];
|
|
||||||
|
|
||||||
janin.currency.useCurrencyWallet(
|
|
||||||
netVersion,
|
|
||||||
privKeyPrefix,
|
|
||||||
walletImportRegex,
|
|
||||||
compressedWalletImportRegex
|
|
||||||
);
|
|
||||||
|
|
||||||
|
|
||||||
};
|
|
||||||
|
|
||||||
janin.currency.useCurrencyWallet = function(_networkVersion, _privateKeyPrefix, _walletImportFormatRegEx, _compressedWalletImportRegEx) {
|
|
||||||
|
|
||||||
Bitcoin.Address.networkVersion = _networkVersion; // mainnet
|
|
||||||
Bitcoin.ECKey.privateKeyPrefix = _privateKeyPrefix; // mainnet 0x80 testnet 0xEF
|
|
||||||
|
|
||||||
// 51 characters base58, always starts with a '5'
|
|
||||||
Bitcoin.ECKey.isWalletImportFormat = function (key) {
|
|
||||||
key = key.toString();
|
|
||||||
var currencyRegEx = new RegExp(_walletImportFormatRegEx);
|
|
||||||
var testnetRegEx = new RegExp("^9[123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz]{50}$");
|
|
||||||
|
|
||||||
return (ECKey.privateKeyPrefix == _privateKeyPrefix) ? (currencyRegEx.test(key)) : (testnetRegEx.test(key));
|
|
||||||
};
|
|
||||||
|
|
||||||
// 52 characters base58
|
|
||||||
Bitcoin.ECKey.isCompressedWalletImportFormat = function (key) {
|
|
||||||
key = key.toString();
|
|
||||||
var currencyRegEx = new RegExp(_compressedWalletImportRegEx);
|
|
||||||
var testnetRegEx = new RegExp("^c[123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz]{51}$");
|
|
||||||
|
|
||||||
return (ECKey.privateKeyPrefix == _privateKeyPrefix) ? (currencyRegEx.test(key)) : (testnetRegEx.test(key));
|
|
||||||
};
|
|
||||||
|
|
||||||
ninja.wallets.singlewallet.generateNewAddressAndKey();
|
|
||||||
}
|
|
|
@ -11,16 +11,6 @@ if (ninja.getQueryString()["asyncunittests"] == "true" || ninja.getQueryString()
|
||||||
if (ninja.getQueryString()["culture"] != undefined) {
|
if (ninja.getQueryString()["culture"] != undefined) {
|
||||||
ninja.translator.translate(ninja.getQueryString()["culture"]);
|
ninja.translator.translate(ninja.getQueryString()["culture"]);
|
||||||
}
|
}
|
||||||
// testnet, check if testnet edition should be activated
|
|
||||||
if (ninja.getQueryString()["testnet"] == "true" || ninja.getQueryString()["testnet"] == "1") {
|
|
||||||
document.getElementById("testnet").innerHTML = ninja.translator.get("testneteditionactivated");
|
|
||||||
document.getElementById("testnet").style.display = "block";
|
|
||||||
document.getElementById("detailwifprefix").innerHTML = "'9'";
|
|
||||||
document.getElementById("detailcompwifprefix").innerHTML = "'c'";
|
|
||||||
Bitcoin.Address.networkVersion = 0x6F; // testnet
|
|
||||||
Bitcoin.ECKey.privateKeyPrefix = 0xEF; // testnet
|
|
||||||
ninja.testnetMode = true;
|
|
||||||
}
|
|
||||||
if (ninja.getQueryString()["showseedpool"] == "true" || ninja.getQueryString()["showseedpool"] == "1") {
|
if (ninja.getQueryString()["showseedpool"] == "true" || ninja.getQueryString()["showseedpool"] == "1") {
|
||||||
document.getElementById("seedpoolarea").style.display = "block";
|
document.getElementById("seedpoolarea").style.display = "block";
|
||||||
}
|
}
|
|
@ -31,7 +31,6 @@ ninja.translator = {
|
||||||
translations: {
|
translations: {
|
||||||
"en": {
|
"en": {
|
||||||
// javascript alerts or messages
|
// javascript alerts or messages
|
||||||
"testneteditionactivated": "TESTNET EDITION ACTIVATED",
|
|
||||||
"paperlabelbitcoinaddress": "Bitcoin Address:",
|
"paperlabelbitcoinaddress": "Bitcoin Address:",
|
||||||
"paperlabelprivatekey": "Private Key (Wallet Import Format):",
|
"paperlabelprivatekey": "Private Key (Wallet Import Format):",
|
||||||
"paperlabelencryptedkey": "Encrypted Private Key (Password required)",
|
"paperlabelencryptedkey": "Encrypted Private Key (Password required)",
|
||||||
|
@ -52,7 +51,6 @@ ninja.translator = {
|
||||||
|
|
||||||
"es": {
|
"es": {
|
||||||
// javascript alerts or messages
|
// javascript alerts or messages
|
||||||
"testneteditionactivated": "Testnet se activa",
|
|
||||||
"paperlabelbitcoinaddress": "Dirección Bitcoin:",
|
"paperlabelbitcoinaddress": "Dirección Bitcoin:",
|
||||||
"paperlabelprivatekey": "Clave privada (formato para importar):",
|
"paperlabelprivatekey": "Clave privada (formato para importar):",
|
||||||
"paperlabelencryptedkey": "Clave privada cifrada (contraseña necesaria)",
|
"paperlabelencryptedkey": "Clave privada cifrada (contraseña necesaria)",
|
||||||
|
@ -186,7 +184,6 @@ ninja.translator = {
|
||||||
|
|
||||||
"fr": {
|
"fr": {
|
||||||
// javascript alerts or messages
|
// javascript alerts or messages
|
||||||
"testneteditionactivated": "ÉDITION TESTNET ACTIVÉE",
|
|
||||||
"paperlabelbitcoinaddress": "Adresse Bitcoin:",
|
"paperlabelbitcoinaddress": "Adresse Bitcoin:",
|
||||||
"paperlabelprivatekey": "Clé Privée (Format d'importation de porte-monnaie):",
|
"paperlabelprivatekey": "Clé Privée (Format d'importation de porte-monnaie):",
|
||||||
"paperlabelencryptedkey": "Encrypted Private Key (Password required)", //TODO: please translate
|
"paperlabelencryptedkey": "Encrypted Private Key (Password required)", //TODO: please translate
|
||||||
|
@ -320,7 +317,6 @@ ninja.translator = {
|
||||||
|
|
||||||
"el": {
|
"el": {
|
||||||
// javascript alerts or messages
|
// javascript alerts or messages
|
||||||
"testneteditionactivated": "ΕΝΕΡΓΗ ΕΚΔΟΣΗ TESTNET",
|
|
||||||
"paperlabelbitcoinaddress": "Διεύθυνση Bitcoin:",
|
"paperlabelbitcoinaddress": "Διεύθυνση Bitcoin:",
|
||||||
"paperlabelprivatekey": "Προσωπικό Κλειδί (Μορφή εισαγωγής σε πορτοφόλι):",
|
"paperlabelprivatekey": "Προσωπικό Κλειδί (Μορφή εισαγωγής σε πορτοφόλι):",
|
||||||
"paperlabelencryptedkey": "Encrypted Private Key (Password required)", //TODO: please translate
|
"paperlabelencryptedkey": "Encrypted Private Key (Password required)", //TODO: please translate
|
||||||
|
@ -454,7 +450,6 @@ ninja.translator = {
|
||||||
|
|
||||||
"it": {
|
"it": {
|
||||||
// javascript alerts or messages
|
// javascript alerts or messages
|
||||||
"testneteditionactivated": "TESTNET EDITION ATTIVATO",
|
|
||||||
"paperlabelbitcoinaddress": "Indirizzo Bitcoin:",
|
"paperlabelbitcoinaddress": "Indirizzo Bitcoin:",
|
||||||
"paperlabelprivatekey": "Chiave privata (Wallet Import Format):",
|
"paperlabelprivatekey": "Chiave privata (Wallet Import Format):",
|
||||||
"paperlabelencryptedkey": "Chiave privata criptata (password richiesta)",
|
"paperlabelencryptedkey": "Chiave privata criptata (password richiesta)",
|
||||||
|
@ -589,7 +584,6 @@ ninja.translator = {
|
||||||
|
|
||||||
"de": {
|
"de": {
|
||||||
// javascript alerts or messages
|
// javascript alerts or messages
|
||||||
"testneteditionactivated": "TESTNET AKTIVIERT",
|
|
||||||
"paperlabelbitcoinaddress": "Bitcoin-Adresse:",
|
"paperlabelbitcoinaddress": "Bitcoin-Adresse:",
|
||||||
"paperlabelprivatekey": "Privater Schlüssel (Wallet Import Format):",
|
"paperlabelprivatekey": "Privater Schlüssel (Wallet Import Format):",
|
||||||
"paperlabelencryptedkey": "Verschlüsselter privater Schlüssel (Passwort benötigt)",
|
"paperlabelencryptedkey": "Verschlüsselter privater Schlüssel (Passwort benötigt)",
|
||||||
|
@ -723,7 +717,6 @@ ninja.translator = {
|
||||||
|
|
||||||
"cs": {
|
"cs": {
|
||||||
// javascript alerts or messages
|
// javascript alerts or messages
|
||||||
"testneteditionactivated": "TESTNET aktivován",
|
|
||||||
"paperlabelbitcoinaddress": "Bitcoin adresa:",
|
"paperlabelbitcoinaddress": "Bitcoin adresa:",
|
||||||
"paperlabelprivatekey": "Soukromý klíč (WIF – Formát pro import do peněženky):",
|
"paperlabelprivatekey": "Soukromý klíč (WIF – Formát pro import do peněženky):",
|
||||||
"paperlabelencryptedkey": "Šifrovaný soukromý klíč (Vyžadováno heslo)",
|
"paperlabelencryptedkey": "Šifrovaný soukromý klíč (Vyžadováno heslo)",
|
||||||
|
|
Loading…
Add table
Reference in a new issue