Add Taj logo 256x256 png

Add TAJ design

Add Lanadesign

Add ARC design

add Tajcoin

add aquariuscoin, lanacoin and nevacoin

remove trailing white spaces

remove trailing white spaces

Wrong AquariusCoin logo

New AquariusCoin ARCO logo

Partial Slovenian translation "si"

Update si.js

Slovenian translation -SI

Update README

Update README
This commit is contained in:
Crypto.si 2016-10-25 04:03:09 -07:00 committed by Michael Muré
parent eb115ed5bc
commit 2ee9278fec
31 changed files with 709 additions and 684 deletions

4
README
View file

@ -1,6 +1,6 @@
**** LOOKING FOR THE ZIP FILE TO DOWNLOAD ? *********************************** **** LOOKING FOR THE ZIP FILE TO DOWNLOAD ? ***********************************
If you're on already at https://github.com/MichaelMure/WalletGenerator.net If you're on already at https://github.com/Taj-Coin/WalletGenerator.net
Then just look for the button that says "Download ZIP". Look to your right ---> Then just look for the button that says Clone or Download "Download ZIP". Look to your right --->
******************************************************************************* *******************************************************************************
WalletGenerator.net WalletGenerator.net

File diff suppressed because it is too large Load diff

17
l10n/si.js Normal file
View file

@ -0,0 +1,17 @@
"si": {
"defaultTitle" : "WalletGenerator.net - Univerzalni generator papirnatih/ denarnic/trezorjev za Bitcoin in ostale kriptovalute",
"title" : "Generator paprirnatih denarnic",
"bulkgeneratingaddresses": "Generiram naslove... ",
"brainalertpassphrasetooshort": "Vaša obnovitvena fraza/geslo je prekratka.\n\n",
"brainalertpassphrasewarning": "Opozorilo: Izberite si izredo močno in varno frazo/geslo za čimvečjo zaščito proti kraji vaših kripto kovancev.",
"brainalertpassphrasedoesnotmatch": "Preverite če ste obakrat vnesli pravilno obnovitveno frazo/geslo.",
"detailalertnotvalidprivatekey": "Vaš vnos ni veljaven Zasebni ključ",
"detailconfirmsha256": "Vaš vnos ne vsebuje veljavnega Zasebnega ključa !\n\nBi želeli vaš vnos uporabiti kot frazo/geslo pri izdelavi novega Zasebnega ključa / Private Key z uporabo SHA256 hash zaščito fraze/passphrase?\n\nWarning: Choosing a strong passphrase is important to avoid brute force attempts to guess your passphrase and steal your coins.",
"bip38alertincorrectpassphrase": "Nepravilna obnovitvena fraza.",
"bip38alertpassphraserequired": "Obnovitvena fraza/geslo je obvezna za BIP38 zaščito kjuča",
"securitychecklistrandomOK": "Vaš brskalnik je sposoben generiranja naključnih kriptografskih vrednosti / window.crypto.getRandomValues",
"securitychecklistrandomNOK": "Vaš brskalnik ni zmožen kreiranja naključnih kriptografskih vrednosti window.crypto.getRandomValues(), which is important for generating the most secure random numbers possible. Please use a more modern browser.",
"securitychecklistofflineNOK": "Zagon generatorja na spletnem mestu ni priporočeno. Namesto tega prenesite zip datoteko generatorja iz github repozitorija na offline/brez povezave računalnik in generator poženite lokalno \'local/lokalne\' HTML file/datoteke.",
"securitychecklistofflineOK": "Ali poganjate generator lokalno na vašem računalniku.",
"paperwalletback": "<ul><li>Nakazila opravite na Public/Javni Ključ kadarkoli.</li><li>Svoje stanje lahko preverite kadarkoli na spletnem raziskovalcu verige blokov kot je blockchain.info.</li><li><b>NIKOLI NE RAZKRITE PRIVATNEGA/PRIVATE KLJUČA/KEY</b> dokler niste pripravljeni uvoziti sredstev na valutno menjalnico ali osebno spletno denarnico.</li></ul><b>Amount/Znesek :</b> ___________ &nbsp; &nbsp; &nbsp; <b>Date :</b> ________________<br /><b>Notes :</b> ______________________________________",
},

BIN
logos/aquariuscoin.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 73 KiB

BIN
logos/lanacoin.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 61 KiB

BIN
logos/nevacoin.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

BIN
logos/tajcoin.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 71 KiB

View file

@ -1,57 +1,57 @@
// Array.prototype.map function is in the public domain. // Array.prototype.map function is in the public domain.
// Production steps of ECMA-262, Edition 5, 15.4.4.19 // Production steps of ECMA-262, Edition 5, 15.4.4.19
// Reference: http://es5.github.com/#x15.4.4.19 // Reference: http://es5.github.com/#x15.4.4.19
if (!Array.prototype.map) { if (!Array.prototype.map) {
Array.prototype.map = function (callback, thisArg) { Array.prototype.map = function (callback, thisArg) {
var T, A, k; var T, A, k;
if (this == null) { if (this == null) {
throw new TypeError(" this is null or not defined"); throw new TypeError(" this is null or not defined");
} }
// 1. Let O be the result of calling ToObject passing the |this| value as the argument. // 1. Let O be the result of calling ToObject passing the |this| value as the argument.
var O = Object(this); var O = Object(this);
// 2. Let lenValue be the result of calling the Get internal method of O with the argument "length". // 2. Let lenValue be the result of calling the Get internal method of O with the argument "length".
// 3. Let len be ToUint32(lenValue). // 3. Let len be ToUint32(lenValue).
var len = O.length >>> 0; var len = O.length >>> 0;
// 4. If IsCallable(callback) is false, throw a TypeError exception. // 4. If IsCallable(callback) is false, throw a TypeError exception.
// See: http://es5.github.com/#x9.11 // See: http://es5.github.com/#x9.11
if ({}.toString.call(callback) != "[object Function]") { if ({}.toString.call(callback) != "[object Function]") {
throw new TypeError(callback + " is not a function"); throw new TypeError(callback + " is not a function");
} }
// 5. If thisArg was supplied, let T be thisArg; else let T be undefined. // 5. If thisArg was supplied, let T be thisArg; else let T be undefined.
if (thisArg) { if (thisArg) {
T = thisArg; T = thisArg;
} }
// 6. Let A be a new array created as if by the expression new Array(len) where Array is // 6. Let A be a new array created as if by the expression new Array(len) where Array is
// the standard built-in constructor with that name and len is the value of len. // the standard built-in constructor with that name and len is the value of len.
A = new Array(len); A = new Array(len);
// 7. Let k be 0 // 7. Let k be 0
k = 0; k = 0;
// 8. Repeat, while k < len // 8. Repeat, while k < len
while (k < len) { while (k < len) {
var kValue, mappedValue; var kValue, mappedValue;
// a. Let Pk be ToString(k). // a. Let Pk be ToString(k).
// This is implicit for LHS operands of the in operator // This is implicit for LHS operands of the in operator
// b. Let kPresent be the result of calling the HasProperty internal method of O with argument Pk. // b. Let kPresent be the result of calling the HasProperty internal method of O with argument Pk.
// This step can be combined with c // This step can be combined with c
// c. If kPresent is true, then // c. If kPresent is true, then
if (k in O) { if (k in O) {
// i. Let kValue be the result of calling the Get internal method of O with argument Pk. // i. Let kValue be the result of calling the Get internal method of O with argument Pk.
kValue = O[k]; kValue = O[k];
// ii. Let mappedValue be the result of calling the Call internal method of callback // ii. Let mappedValue be the result of calling the Call internal method of callback
// with T as the this value and argument list containing kValue, k, and O. // with T as the this value and argument list containing kValue, k, and O.
mappedValue = callback.call(T, kValue, k, O); mappedValue = callback.call(T, kValue, k, O);
// iii. Call the DefineOwnProperty internal method of A with arguments // iii. Call the DefineOwnProperty internal method of A with arguments
// Pk, Property Descriptor {Value: mappedValue, Writable: true, Enumerable: true, Configurable: true}, // Pk, Property Descriptor {Value: mappedValue, Writable: true, Enumerable: true, Configurable: true},
// and false. // and false.
// In browsers that support Object.defineProperty, use the following: // In browsers that support Object.defineProperty, use the following:
// Object.defineProperty(A, Pk, { value: mappedValue, writable: true, enumerable: true, configurable: true }); // Object.defineProperty(A, Pk, { value: mappedValue, writable: true, enumerable: true, configurable: true });
// For best browser support, use the following: // For best browser support, use the following:
A[k] = mappedValue; A[k] = mappedValue;
} }
// d. Increase k by 1. // d. Increase k by 1.
k++; k++;
} }
// 9. return A // 9. return A
return A; return A;
}; };
} }

View file

@ -1,6 +1,6 @@
/*! /*!
* Basic JavaScript BN library - subset useful for RSA encryption. v1.3 * Basic JavaScript BN library - subset useful for RSA encryption. v1.3
* *
* Copyright (c) 2005 Tom Wu * Copyright (c) 2005 Tom Wu
* All Rights Reserved. * All Rights Reserved.
* BSD License * BSD License
@ -1268,4 +1268,4 @@
// r = x^2 mod m; x != r // r = x^2 mod m; x != r
Barrett.prototype.sqrTo = function (x, r) { x.squareTo(r); this.reduce(r); }; Barrett.prototype.sqrTo = function (x, r) { x.squareTo(r); this.reduce(r); };
})(); })();

View file

@ -136,7 +136,7 @@ Bitcoin.ECDSA = (function () {
* Parses a byte array containing a DER-encoded signature. * Parses a byte array containing a DER-encoded signature.
* *
* This function will return an object of the form: * This function will return an object of the form:
* *
* { * {
* r: BigInteger, * r: BigInteger,
* s: BigInteger * s: BigInteger
@ -280,4 +280,4 @@ Bitcoin.ECDSA = (function () {
}; };
return ECDSA; return ECDSA;
})(); })();

View file

@ -29,7 +29,7 @@ Bitcoin.ECKey = (function () {
} else if (ECKey.isBase64Format(input)) { } else if (ECKey.isBase64Format(input)) {
bytes = Crypto.util.base64ToBytes(input); bytes = Crypto.util.base64ToBytes(input);
} }
if (ECKey.isBase6Format(input)) { if (ECKey.isBase6Format(input)) {
this.priv = new BigInteger(input, 6); this.priv = new BigInteger(input, 6);
} else if (bytes == null || bytes.length != 32) { } else if (bytes == null || bytes.length != 32) {
@ -127,7 +127,7 @@ Bitcoin.ECKey = (function () {
return this; return this;
}; };
// 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(janin.currency.privateKeyPrefix()); // prepend private key prefix bytes.unshift(janin.currency.privateKeyPrefix()); // prepend private key prefix
@ -138,12 +138,12 @@ Bitcoin.ECKey = (function () {
return privWif; return privWif;
}; };
// Private Key Hex Format // Private Key Hex Format
ECKey.prototype.getBitcoinHexFormat = function () { ECKey.prototype.getBitcoinHexFormat = function () {
return Crypto.util.bytesToHex(this.getBitcoinPrivateKeyByteArray()).toString().toUpperCase(); return Crypto.util.bytesToHex(this.getBitcoinPrivateKeyByteArray()).toString().toUpperCase();
}; };
// Private Key Base64 Format // Private Key Base64 Format
ECKey.prototype.getBitcoinBase64Format = function () { ECKey.prototype.getBitcoinBase64Format = function () {
return Crypto.util.bytesToBase64(this.getBitcoinPrivateKeyByteArray()); return Crypto.util.bytesToBase64(this.getBitcoinPrivateKeyByteArray());
}; };
@ -151,7 +151,7 @@ Bitcoin.ECKey = (function () {
ECKey.prototype.getBitcoinPrivateKeyByteArray = function () { ECKey.prototype.getBitcoinPrivateKeyByteArray = function () {
// Get a copy of private key as a byte array // Get a copy of private key as a byte array
var bytes = this.priv.toByteArrayUnsigned(); var bytes = this.priv.toByteArrayUnsigned();
// zero pad if private key is less than 32 bytes // zero pad if private key is less than 32 bytes
while (bytes.length < 32) bytes.unshift(0x00); while (bytes.length < 32) bytes.unshift(0x00);
return bytes; return bytes;
}; };
@ -263,4 +263,4 @@ Bitcoin.ECKey = (function () {
}; };
return ECKey; return ECKey;
})(); })();

View file

@ -1,16 +1,16 @@
/* /*
* Copyright (c) 2010-2011 Intalio Pte, All Rights Reserved * Copyright (c) 2010-2011 Intalio Pte, All Rights Reserved
* *
* Permission is hereby granted, free of charge, to any person obtaining a copy * Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal * of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights * in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is * copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions: * furnished to do so, subject to the following conditions:
* *
* The above copyright notice and this permission notice shall be included in * The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software. * all copies or substantial portions of the Software.
* *
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
@ -30,7 +30,7 @@
* N = Cpu cost * N = Cpu cost
* r = Memory cost * r = Memory cost
* p = parallelization cost * p = parallelization cost
* *
*/ */
window.Crypto_scrypt = function (passwd, salt, N, r, p, dkLen, callback) { window.Crypto_scrypt = function (passwd, salt, N, r, p, dkLen, callback) {
if (N == 0 || (N & (N - 1)) != 0) throw Error("N must be > 0 and a power of 2"); if (N == 0 || (N & (N - 1)) != 0) throw Error("N must be > 0 and a power of 2");
@ -292,4 +292,4 @@
} }
} // scryptCore } // scryptCore
}; // window.Crypto_scrypt }; // window.Crypto_scrypt
})(); })();

View file

@ -102,7 +102,7 @@
// Allow mode to override options // Allow mode to override options
if (mode.fixOptions) mode.fixOptions(options); if (mode.fixOptions) mode.fixOptions(options);
var var
// Convert to bytes if message is a string // Convert to bytes if message is a string
m = ( m = (
@ -143,7 +143,7 @@
// Allow mode to override options // Allow mode to override options
if (mode.fixOptions) mode.fixOptions(options); if (mode.fixOptions) mode.fixOptions(options);
var var
// Convert to bytes if ciphertext is a string // Convert to bytes if ciphertext is a string
c = ( c = (
@ -404,4 +404,4 @@
}; };
})(); })();

View file

@ -176,9 +176,9 @@
/** /**
* Electronic Code Book mode. * Electronic Code Book mode.
* *
* ECB applies the cipher directly against each block of the input. * ECB applies the cipher directly against each block of the input.
* *
* ECB does not require an initialization vector. * ECB does not require an initialization vector.
*/ */
var ECB = C_mode.ECB = function () { var ECB = C_mode.ECB = function () {
@ -213,7 +213,7 @@
/** /**
* Cipher block chaining * Cipher block chaining
* *
* The first block is XORed with the IV. Subsequent blocks are XOR with the * The first block is XORed with the IV. Subsequent blocks are XOR with the
* previous cipher output. * previous cipher output.
*/ */
@ -267,11 +267,11 @@
/** /**
* Cipher feed back * Cipher feed back
* *
* The cipher output is XORed with the plain text to produce the cipher output, * The cipher output is XORed with the plain text to produce the cipher output,
* which is then fed back into the cipher to produce a bit pattern to XOR the * which is then fed back into the cipher to produce a bit pattern to XOR the
* next block with. * next block with.
* *
* This is a stream cipher mode and does not require padding. * This is a stream cipher mode and does not require padding.
*/ */
var CFB = C_mode.CFB = function () { var CFB = C_mode.CFB = function () {
@ -319,10 +319,10 @@
/** /**
* Output feed back * Output feed back
* *
* The cipher repeatedly encrypts its own output. The output is XORed with the * The cipher repeatedly encrypts its own output. The output is XORed with the
* plain text to produce the cipher text. * plain text to produce the cipher text.
* *
* This is a stream cipher mode and does not require padding. * This is a stream cipher mode and does not require padding.
*/ */
var OFB = C_mode.OFB = function () { var OFB = C_mode.OFB = function () {
@ -407,4 +407,4 @@
}; };
CTR_prototype._doDecrypt = CTR_prototype._doEncrypt; CTR_prototype._doDecrypt = CTR_prototype._doEncrypt;
})(Crypto); })(Crypto);

View file

@ -3,7 +3,7 @@
* Basic Javascript Elliptic Curve implementation * Basic Javascript Elliptic Curve implementation
* Ported loosely from BouncyCastle's Java EC code * Ported loosely from BouncyCastle's Java EC code
* Only Fp curves implemented for now * Only Fp curves implemented for now
* *
* Copyright Tom Wu, bitaddress.org BSD License. * Copyright Tom Wu, bitaddress.org BSD License.
* http://www-cs-students.stanford.edu/~tjw/jsbn/LICENSE * http://www-cs-students.stanford.edu/~tjw/jsbn/LICENSE
*/ */
@ -64,7 +64,7 @@
/** /**
* return a sqrt root - the routine verifies that the calculation * return a sqrt root - the routine verifies that the calculation
* returns the right value - if none exists it returns null. * returns the right value - if none exists it returns null.
* *
* Copyright (c) 2000 - 2011 The Legion Of The Bouncy Castle (http://www.bouncycastle.org) * Copyright (c) 2000 - 2011 The Legion Of The Bouncy Castle (http://www.bouncycastle.org)
* Ported to JavaScript by bitaddress.org * Ported to JavaScript by bitaddress.org
*/ */
@ -353,7 +353,7 @@
var len = 32; // integerToBytes will zero pad if integer is less than 32 bytes. 32 bytes length is required by the Bitcoin protocol. var len = 32; // integerToBytes will zero pad if integer is less than 32 bytes. 32 bytes length is required by the Bitcoin protocol.
var enc = ec.integerToBytes(x, len); var enc = ec.integerToBytes(x, len);
// when compressed prepend byte depending if y point is even or odd // when compressed prepend byte depending if y point is even or odd
if (compressed) { if (compressed) {
if (y.isEven()) { if (y.isEven()) {
enc.unshift(0x02); enc.unshift(0x02);
@ -666,4 +666,4 @@
if (ec.secNamedCurves[name] == undefined) return null; if (ec.secNamedCurves[name] == undefined) return null;
return ec.secNamedCurves[name](); return ec.secNamedCurves[name]();
} }
})(); })();

View file

@ -85,6 +85,7 @@ janin.currencies = [
janin.currency.createCurrency ("Anoncoin", 0x17, 0x97, "6", "P" , "AS3BvkE4wvsXJpn1bGhQni5vZajthnrWQE"), janin.currency.createCurrency ("Anoncoin", 0x17, 0x97, "6", "P" , "AS3BvkE4wvsXJpn1bGhQni5vZajthnrWQE"),
janin.currency.createCurrency ("Apexcoin", 0x17, 0x97, "6", "P" , "AdPxUCGLDUhHUTGYftffwFVdxbFy2nkXGX"), janin.currency.createCurrency ("Apexcoin", 0x17, 0x97, "6", "P" , "AdPxUCGLDUhHUTGYftffwFVdxbFy2nkXGX"),
janin.currency.createCurrency ("Auroracoin", 0x17, 0x97, "6", "T" , "AVWH1ZutLd4Y5LPDDj5FkBjbm2Gci4iFx3"), janin.currency.createCurrency ("Auroracoin", 0x17, 0x97, "6", "T" , "AVWH1ZutLd4Y5LPDDj5FkBjbm2Gci4iFx3"),
janin.currency.createCurrency ("Aquariuscoin", 0x17, 0x97, "6", "P" , "ARk4VoaCHDoPDn2dctGizJaHFvXNRiDUDr"),
janin.currency.createCurrency ("BBQcoin", 0x55, 0xd5, "6", "T" , "bTFFC3Gg2XzQygLxxakHkNM3ravBZby1y9"), janin.currency.createCurrency ("BBQcoin", 0x55, 0xd5, "6", "T" , "bTFFC3Gg2XzQygLxxakHkNM3ravBZby1y9"),
janin.currency.createCurrency ("Bitcoin", 0x00, 0x80, "5", "[LK]" , "15DHZzv7eBUwss77qczZiL3DUEZLjDYhbM"), janin.currency.createCurrency ("Bitcoin", 0x00, 0x80, "5", "[LK]" , "15DHZzv7eBUwss77qczZiL3DUEZLjDYhbM"),
janin.currency.createCurrency ("BitcoinDark",0x3c, 0xbc, "7", "U" , "RWtY5fg9ZQ9tYaPd7WJLgsdae1m1ZfrVRe"), janin.currency.createCurrency ("BitcoinDark",0x3c, 0xbc, "7", "U" , "RWtY5fg9ZQ9tYaPd7WJLgsdae1m1ZfrVRe"),
@ -141,6 +142,7 @@ janin.currencies = [
janin.currency.createCurrency ("iXcoin", 0x8a, 0x80, "5", "[LK]" , "xnF1nshqFLaVdDGBmQ4k2jBQkr8nbuCkLz"), janin.currency.createCurrency ("iXcoin", 0x8a, 0x80, "5", "[LK]" , "xnF1nshqFLaVdDGBmQ4k2jBQkr8nbuCkLz"),
janin.currency.createCurrency ("Judgecoin", 0x2b, 0xab, "6", "S" , "JbF9ZnvoFkBdasPEq21jCCTnTUDSiyWrAQ"), janin.currency.createCurrency ("Judgecoin", 0x2b, 0xab, "6", "S" , "JbF9ZnvoFkBdasPEq21jCCTnTUDSiyWrAQ"),
janin.currency.createCurrency ("Jumbucks", 0x2b, 0xab, "6", "S" , "JSzHiaoD6ewtymBMJHsHqkpFzCYKBzxJeC"), janin.currency.createCurrency ("Jumbucks", 0x2b, 0xab, "6", "S" , "JSzHiaoD6ewtymBMJHsHqkpFzCYKBzxJeC"),
janin.currency.createCurrency ("Lanacoin", 0x30, 0xb0, "6", "T" , "LhqrrTHtfNMn8rZi7QesFbbpJYeGWX7319"),
janin.currency.createCurrency ("Latium", 0x17, 0x80, "5", "[LK]" , "ASz2EgegeXfKyHaY1SbJ6nCDK6sxd7BpXg"), janin.currency.createCurrency ("Latium", 0x17, 0x80, "5", "[LK]" , "ASz2EgegeXfKyHaY1SbJ6nCDK6sxd7BpXg"),
janin.currency.createCurrency ("Litecoin", 0x30, 0xb0, "6", "T" , "LiScnsyPcqsyxn1fx92BcFguryXcw4DgCy"), janin.currency.createCurrency ("Litecoin", 0x30, 0xb0, "6", "T" , "LiScnsyPcqsyxn1fx92BcFguryXcw4DgCy"),
janin.currency.createCurrency ("LiteDoge", 0x5a, 0xab, "6", "S" , "daaV1gQ63HpHHn4Ny1fJZHMA7KCeUVE538"), janin.currency.createCurrency ("LiteDoge", 0x5a, 0xab, "6", "S" , "daaV1gQ63HpHHn4Ny1fJZHMA7KCeUVE538"),
@ -159,6 +161,7 @@ janin.currencies = [
janin.currency.createCurrency ("Myriadcoin", 0x32, 0xb2, "6", "T" , "MWGDtjDw9c8C6zicDQF22yZBWbEX53v4o9"), janin.currency.createCurrency ("Myriadcoin", 0x32, 0xb2, "6", "T" , "MWGDtjDw9c8C6zicDQF22yZBWbEX53v4o9"),
janin.currency.createCurrency ("NameCoin", 0x34, 0x80, "5", "[LK]" , "NASxLK4nt5hgX9wQEny5qPPJ2q4uSGCvT9"), janin.currency.createCurrency ("NameCoin", 0x34, 0x80, "5", "[LK]" , "NASxLK4nt5hgX9wQEny5qPPJ2q4uSGCvT9"),
janin.currency.createCurrency ("Neoscoin", 0x35, 0xb1, "6", "T" , "NZw6WJPiKYcXxua1VveieihiNJRYanHjrP"), janin.currency.createCurrency ("Neoscoin", 0x35, 0xb1, "6", "T" , "NZw6WJPiKYcXxua1VveieihiNJRYanHjrP"),
janin.currency.createCurrency ("Nevacoin", 0x35, 0xb1, "6", "T" , "NQDJrKGP3TNhKhKzaHMdg1Wk9FWCT4Nx3q"),
janin.currency.createCurrency ("Novacoin", 0x08, 0x88, "5", "M" , "4EZMrEA5LnmwtcK5b2JfCq9k5YS4ZVZrtT"), janin.currency.createCurrency ("Novacoin", 0x08, 0x88, "5", "M" , "4EZMrEA5LnmwtcK5b2JfCq9k5YS4ZVZrtT"),
janin.currency.createCurrency ("Nubits", 0x19, 0xbf, "7", "V" , "BPWCkyaVqWdaf3uqahrgdTjB2QTnRZzPMM"), janin.currency.createCurrency ("Nubits", 0x19, 0xbf, "7", "V" , "BPWCkyaVqWdaf3uqahrgdTjB2QTnRZzPMM"),
janin.currency.createCurrency ("Ocupy", 0x73, 0xf3, "9", "[cd]" , "ocLKVPkQRFtKn5mFygrd4QJG9eZd1sKTyi"), janin.currency.createCurrency ("Ocupy", 0x73, 0xf3, "9", "[cd]" , "ocLKVPkQRFtKn5mFygrd4QJG9eZd1sKTyi"),
@ -185,6 +188,7 @@ janin.currencies = [
janin.currency.createCurrency ("SpreadCoin", 0x3f, 0xbf, "7", "V" , "SjPkh7V2KkySjL52wsD2CpEj4quTtjiaVW"), janin.currency.createCurrency ("SpreadCoin", 0x3f, 0xbf, "7", "V" , "SjPkh7V2KkySjL52wsD2CpEj4quTtjiaVW"),
janin.currency.createCurrency ("StealthCoin",0x3e, 0xbe, "7", "V" , "SJJGGq7UyoUH1TExGJCQ6ee49ztJr2quF8"), janin.currency.createCurrency ("StealthCoin",0x3e, 0xbe, "7", "V" , "SJJGGq7UyoUH1TExGJCQ6ee49ztJr2quF8"),
janin.currency.createCurrency ("Syscoin", 0x3f, 0xbf, "7", "V" , "SbycbQikGW6dWGbeDAb1NyircpAwXvCsDF"), janin.currency.createCurrency ("Syscoin", 0x3f, 0xbf, "7", "V" , "SbycbQikGW6dWGbeDAb1NyircpAwXvCsDF"),
janin.currency.createCurrency ("Tajcoin", 0x41, 0x6f, "6", "H" , "TWYZCoBw6Kd5fKZ5wWpqgJaeNAbuRF9Qg8"),
janin.currency.createCurrency ("Titcoin", 0x00, 0x80, "5", "[LK]" , "1CHAo7muicsLHdPk5q4asrEbh6aUeSPpdC"), janin.currency.createCurrency ("Titcoin", 0x00, 0x80, "5", "[LK]" , "1CHAo7muicsLHdPk5q4asrEbh6aUeSPpdC"),
janin.currency.createCurrency ("TittieCoin", 0x41, 0xc1, "7", "V" , "TYrdtLy9irV4u1yo2YQVCkS27RzDzBqWwJ"), janin.currency.createCurrency ("TittieCoin", 0x41, 0xc1, "7", "V" , "TYrdtLy9irV4u1yo2YQVCkS27RzDzBqWwJ"),
janin.currency.createCurrency ("Topcoin", 0x42, 0xc2, "7", "V" , "TmDTsQqqv1LWGw4xjGNiJ7ABwdCenf2BFF"), janin.currency.createCurrency ("Topcoin", 0x42, 0xc2, "7", "V" , "TmDTsQqqv1LWGw4xjGNiJ7ABwdCenf2BFF"),

File diff suppressed because it is too large Load diff

View file

@ -43,8 +43,8 @@ ninja.wallets.bulkwallet = {
bulkWallet.csv.push((bulkWallet.csvRowLimit - bulkWallet.csvRowsRemaining + bulkWallet.csvStartIndex) bulkWallet.csv.push((bulkWallet.csvRowLimit - bulkWallet.csvRowsRemaining + bulkWallet.csvStartIndex)
+ ",\"" + key.getBitcoinAddress() + "\",\"" + key.toString("wif") + ",\"" + key.getBitcoinAddress() + "\",\"" + key.toString("wif")
//+ "\",\"" + key.toString("wifcomp") // uncomment these lines to add different private key formats to the CSV //+ "\",\"" + key.toString("wifcomp") // uncomment these lines to add different private key formats to the CSV
//+ "\",\"" + key.getBitcoinHexFormat() //+ "\",\"" + key.getBitcoinHexFormat()
//+ "\",\"" + key.toString("base64") //+ "\",\"" + key.toString("base64")
+ "\""); + "\"");
document.getElementById("bulktextarea").value = ninja.translator.get("bulkgeneratingaddresses") + bulkWallet.csvRowsRemaining; document.getElementById("bulktextarea").value = ninja.translator.get("bulkgeneratingaddresses") + bulkWallet.csvRowsRemaining;
@ -70,4 +70,4 @@ ninja.wallets.bulkwallet = {
document.getElementById("bulke" + faqNum).setAttribute("class", "less"); document.getElementById("bulke" + faqNum).setAttribute("class", "less");
} }
} }
}; };

View file

@ -38,7 +38,7 @@ ninja.wallets.detailwallet = {
document.getElementById("detailarea").style.display = "block"; document.getElementById("detailarea").style.display = "block";
document.getElementById("detailprivkey").focus(); document.getElementById("detailprivkey").focus();
if (!ninja.wallets.detailwallet.qrscanner.scanner) { if (!ninja.wallets.detailwallet.qrscanner.scanner) {
ninja.wallets.detailwallet.qrscanner.scanner = new QRCodeScanner(320, 240, 'paperqroutput', ninja.wallets.detailwallet.qrscanner.scanner = new QRCodeScanner(320, 240, 'paperqroutput',
function(data) { function(data) {
document.getElementById('detailprivkey').value = data; document.getElementById('detailprivkey').value = data;
document.getElementById('paperqrscanner').className = ''; document.getElementById('paperqrscanner').className = '';
@ -183,4 +183,4 @@ ninja.wallets.detailwallet = {
document.getElementById("detailbip38commands").style.display = "none"; document.getElementById("detailbip38commands").style.display = "none";
document.getElementById("detailbip38").style.display = "none"; document.getElementById("detailbip38").style.display = "none";
} }
}; };

View file

@ -6,13 +6,13 @@ ninja.wallets.donate = {
close: function () { close: function () {
document.getElementById("donatearea").style.display = "none"; document.getElementById("donatearea").style.display = "none";
}, },
displayQrCode: function (currencyid, e) { displayQrCode: function (currencyid, e) {
var keyValuePair = {}; var keyValuePair = {};
keyValuePair["donateqrcode"] = janin.currencies[currencyid].donate; keyValuePair["donateqrcode"] = janin.currencies[currencyid].donate;
ninja.qrCode.showQrCode(keyValuePair, 4); ninja.qrCode.showQrCode(keyValuePair, 4);
document.getElementById("donateqrcode").style.display = "block"; document.getElementById("donateqrcode").style.display = "block";
document.getElementById("donateqrcode").style.top = (e.offsetTop+15) + 'px'; document.getElementById("donateqrcode").style.top = (e.offsetTop+15) + 'px';
} }
}; };

View file

@ -53,7 +53,7 @@ ninja.privateKey = {
callback(new Error(ninja.translator.get("detailalertnotvalidprivatekey"))); callback(new Error(ninja.translator.get("detailalertnotvalidprivatekey")));
return; return;
} }
// first byte is always 0x01 // first byte is always 0x01
else if (hex[0] != 0x01) { else if (hex[0] != 0x01) {
callback(new Error(ninja.translator.get("detailalertnotvalidprivatekey"))); callback(new Error(ninja.translator.get("detailalertnotvalidprivatekey")));
return; return;
@ -82,7 +82,7 @@ ninja.privateKey = {
return; return;
} }
} }
// second byte for EC-multiplied key // second byte for EC-multiplied key
else if (hex[1] == 0x43) { else if (hex[1] == 0x43) {
isECMult = true; isECMult = true;
isCompPoint = (hex[2] & 0x20) != 0; isCompPoint = (hex[2] & 0x20) != 0;
@ -347,4 +347,4 @@ ninja.publicKey = {
var pubHexUncompressed = ninja.publicKey.getHexFromByteArray(pubByteArray); var pubHexUncompressed = ninja.publicKey.getHexFromByteArray(pubByteArray);
return pubHexUncompressed; return pubHexUncompressed;
} }
}; };

View file

@ -16,7 +16,7 @@
isDone: function() { isDone: function() {
return ninja.seeder.seedCount >= ninja.seeder.seedLimit; return ninja.seeder.seedCount >= ninja.seeder.seedLimit;
}, },
// seed function exists to wait for mouse movement to add more entropy before generating an address // seed function exists to wait for mouse movement to add more entropy before generating an address
seed: function (evt) { seed: function (evt) {
if (!evt) var evt = window.event; if (!evt) var evt = window.event;
@ -76,7 +76,7 @@
div.setAttribute("class", "seedpoint"); div.setAttribute("class", "seedpoint");
div.style.top = y + "px"; div.style.top = y + "px";
div.style.left = x + "px"; div.style.left = x + "px";
// let's make the entropy 'points' grow and change color! // let's make the entropy 'points' grow and change color!
percentageComplete = ninja.seeder.seedCount / ninja.seeder.seedLimit; percentageComplete = ninja.seeder.seedCount / ninja.seeder.seedLimit;
document.getElementById("progress-bar-percentage").style.width=Math.ceil(percentageComplete*100)+"%"; document.getElementById("progress-bar-percentage").style.width=Math.ceil(percentageComplete*100)+"%";
@ -145,7 +145,7 @@ ninja.qrCode = {
return canvas; return canvas;
}, },
// generate a QRCode and return it's representation as an Html table // generate a QRCode and return it's representation as an Html table
createTableHtml: function (text) { createTableHtml: function (text) {
var typeNumber = ninja.qrCode.getTypeNumber(text); var typeNumber = ninja.qrCode.getTypeNumber(text);
var qr = new QRCode(typeNumber, QRCode.ErrorCorrectLevel.H); var qr = new QRCode(typeNumber, QRCode.ErrorCorrectLevel.H);
@ -168,7 +168,7 @@ ninja.qrCode = {
}, },
// show QRCodes with canvas OR table (IE8) // show QRCodes with canvas OR table (IE8)
// parameter: keyValuePair // parameter: keyValuePair
// example: { "id1": "string1", "id2": "string2"} // example: { "id1": "string1", "id2": "string2"}
// "id1" is the id of a div element where you want a QRCode inserted. // "id1" is the id of a div element where you want a QRCode inserted.
// "string1" is the string you want encoded into the QRCode. // "string1" is the string you want encoded into the QRCode.
@ -212,7 +212,7 @@ ninja.envSecurityCheck = function() {
innerHTML = '<span style="color: #009900;">' + ninja.translator.get("securitychecklistofflineOK") + '</span>'; innerHTML = '<span style="color: #009900;">' + ninja.translator.get("securitychecklistofflineOK") + '</span>';
break; break;
default: default:
} }
document.getElementById('envSecurityCheck').innerHTML = innerHTML; document.getElementById('envSecurityCheck').innerHTML = innerHTML;
}; };
@ -222,7 +222,7 @@ ninja.browserSecurityCheck = function() {
innerHTML = '<span style="color: #009900;">' + ninja.translator.get("securitychecklistrandomOK") + '</span>'; innerHTML = '<span style="color: #009900;">' + ninja.translator.get("securitychecklistrandomOK") + '</span>';
} else { } else {
innerHTML = '<span style="color: #990000;">' + ninja.translator.get("securitychecklistrandomNOK") + '</span>'; innerHTML = '<span style="color: #990000;">' + ninja.translator.get("securitychecklistrandomNOK") + '</span>';
} }
document.getElementById('browserSecurityCheck').innerHTML = innerHTML; document.getElementById('browserSecurityCheck').innerHTML = innerHTML;
} }
@ -271,4 +271,4 @@ ninja.foreachSerialized = function (collection, whatToDo, onComplete) {
ninja.toggleFaqQuestion = function (elementId) { ninja.toggleFaqQuestion = function (elementId) {
var answerDiv = document.getElementById(elementId); var answerDiv = document.getElementById(elementId);
answerDiv.style.display = answerDiv.style.display == "block" ? "none" : "block"; answerDiv.style.display = answerDiv.style.display == "block" ? "none" : "block";
}; };

View file

@ -78,9 +78,9 @@ if (ninja.getQueryString()["i18nextract"]) {
elem.setAttribute("rows", "30"); elem.setAttribute("rows", "30");
elem.setAttribute("style", "width: 99%"); elem.setAttribute("style", "width: 99%");
elem.setAttribute("wrap", "off"); elem.setAttribute("wrap", "off");
a=document.getElementsByClassName("i18n"); a=document.getElementsByClassName("i18n");
var i18n = "\"" + culture + "\": {\n"; var i18n = "\"" + culture + "\": {\n";
for(x=0; x<a.length; x++) { for(x=0; x<a.length; x++) {
i18n += "\t"; i18n += "\t";
@ -100,9 +100,9 @@ if (ninja.getQueryString()["i18nextract"]) {
i18n += "(ENGLISH)" + cleani18n(ninja.translator.translations["en"][ninja.translator.staticID[x]]); i18n += "(ENGLISH)" + cleani18n(ninja.translator.translations["en"][ninja.translator.staticID[x]]);
i18n += "\",\n"; i18n += "\",\n";
} }
i18n += "}," i18n += "},"
elem.innerHTML = i18n; elem.innerHTML = i18n;
div.appendChild(elem); div.appendChild(elem);
document.body.appendChild(div); document.body.appendChild(div);

View file

@ -93,10 +93,10 @@ ninja.wallets.paperwallet = {
ninja.wallets.paperwallet.showArtisticWallet(idPostFix, bitcoinAddress, privateKeyWif); ninja.wallets.paperwallet.showArtisticWallet(idPostFix, bitcoinAddress, privateKeyWif);
} }
}, },
// Verify that a self-entered key is valid, and compute the corresponding // Verify that a self-entered key is valid, and compute the corresponding
// public address, render the wallet. // public address, render the wallet.
testAndApplyVanityKey: function () { testAndApplyVanityKey: function () {
var suppliedKey = document.getElementById('suppliedPrivateKey').value; var suppliedKey = document.getElementById('suppliedPrivateKey').value;
suppliedKey = suppliedKey.trim(); // in case any spaces or whitespace got pasted in suppliedKey = suppliedKey.trim(); // in case any spaces or whitespace got pasted in
document.getElementById('suppliedPrivateKey').value = suppliedKey; document.getElementById('suppliedPrivateKey').value = suppliedKey;
@ -139,11 +139,11 @@ ninja.wallets.paperwallet = {
var keyValuePair = {}; var keyValuePair = {};
keyValuePair["qrcode_public" + idPostFix] = bitcoinAddress; keyValuePair["qrcode_public" + idPostFix] = bitcoinAddress;
ninja.qrCode.showQrCode(keyValuePair, 3.5); ninja.qrCode.showQrCode(keyValuePair, 3.5);
var keyValuePair = {}; var keyValuePair = {};
keyValuePair["qrcode_private" + idPostFix] = privateKey; keyValuePair["qrcode_private" + idPostFix] = privateKey;
ninja.qrCode.showQrCode(keyValuePair, 2.8); ninja.qrCode.showQrCode(keyValuePair, 2.8);
document.getElementById("btcaddress" + idPostFix).innerHTML = bitcoinAddress; document.getElementById("btcaddress" + idPostFix).innerHTML = bitcoinAddress;
document.getElementById("btcprivwif" + idPostFix).innerHTML = privateKey; document.getElementById("btcprivwif" + idPostFix).innerHTML = privateKey;
}, },
@ -164,4 +164,4 @@ ninja.wallets.paperwallet = {
document.getElementById("paperkeyarea").style.fontSize = "95%"; document.getElementById("paperkeyarea").style.fontSize = "95%";
} }
} }
}; };

View file

@ -40,7 +40,7 @@ ninja.translator = {
var translation = ninja.translator.translations[ninja.translator.currentCulture][id]; var translation = ninja.translator.translations[ninja.translator.currentCulture][id];
return translation; return translation;
}, },
staticID: [ staticID: [
"defaultTitle", "defaultTitle",
"title", "title",

View file

@ -8,7 +8,7 @@
// Licensed under the MIT license: // Licensed under the MIT license:
// http://www.opensource.org/licenses/mit-license.php // http://www.opensource.org/licenses/mit-license.php
// //
// The word "QR Code" is registered trademark of // The word "QR Code" is registered trademark of
// DENSO WAVE INCORPORATED // DENSO WAVE INCORPORATED
// http://www.denso-wave.com/qrcode/faqpatent-e.html // http://www.denso-wave.com/qrcode/faqpatent-e.html
// //
@ -222,7 +222,7 @@
var data = (this.errorCorrectLevel << 3) | maskPattern; var data = (this.errorCorrectLevel << 3) | maskPattern;
var bits = QRCode.Util.getBCHTypeInfo(data); var bits = QRCode.Util.getBCHTypeInfo(data);
// vertical // vertical
for (var i = 0; i < 15; i++) { for (var i = 0; i < 15; i++) {
var mod = (!test && ((bits >> i) & 1) == 1); var mod = (!test && ((bits >> i) & 1) == 1);
@ -905,7 +905,7 @@
[2, 35, 17], [2, 35, 17],
[2, 35, 13], [2, 35, 13],
// 4 // 4
[1, 100, 80], [1, 100, 80],
[2, 50, 32], [2, 50, 32],
[2, 50, 24], [2, 50, 24],
@ -923,7 +923,7 @@
[4, 43, 19], [4, 43, 19],
[4, 43, 15], [4, 43, 15],
// 7 // 7
[2, 98, 78], [2, 98, 78],
[4, 49, 31], [4, 49, 31],
[2, 32, 14, 4, 33, 15], [2, 32, 14, 4, 33, 15],
@ -941,7 +941,7 @@
[4, 36, 16, 4, 37, 17], [4, 36, 16, 4, 37, 17],
[4, 36, 12, 4, 37, 13], [4, 36, 12, 4, 37, 13],
// 10 // 10
[2, 86, 68, 2, 87, 69], [2, 86, 68, 2, 87, 69],
[4, 69, 43, 1, 70, 44], [4, 69, 43, 1, 70, 44],
[6, 43, 19, 2, 44, 20], [6, 43, 19, 2, 44, 20],
@ -1031,4 +1031,4 @@
this.length++; this.length++;
} }
}; };
})(); })();

View file

@ -1,10 +1,10 @@
/*! /*!
* Random number generator with ArcFour PRNG * Random number generator with ArcFour PRNG
* *
* NOTE: For best results, put code like * NOTE: For best results, put code like
* <body onclick='SecureRandom.seedTime();' onkeypress='SecureRandom.seedTime();'> * <body onclick='SecureRandom.seedTime();' onkeypress='SecureRandom.seedTime();'>
* in your main HTML document. * in your main HTML document.
* *
* Copyright Tom Wu, bitaddress.org BSD License. * Copyright Tom Wu, bitaddress.org BSD License.
* http://www-cs-students.stanford.edu/~tjw/jsbn/LICENSE * http://www-cs-students.stanford.edu/~tjw/jsbn/LICENSE
*/ */
@ -56,7 +56,7 @@
alert("Premature initialisation of the random generator. Something is really wrong, do not generate wallets."); alert("Premature initialisation of the random generator. Something is really wrong, do not generate wallets.");
return NaN; return NaN;
} }
if (sr.state == null) { if (sr.state == null) {
sr.seedTime(); sr.seedTime();
sr.state = sr.ArcFour(); // Plug in your RNG constructor here sr.state = sr.ArcFour(); // Plug in your RNG constructor here
@ -184,4 +184,4 @@
sr.seedInt8(entropyBytes[i]); sr.seedInt8(entropyBytes[i]);
} }
} }
})(); })();

BIN
wallets/aquariuscoin.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 685 KiB

BIN
wallets/lanacoin.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 600 KiB

BIN
wallets/nevacoin.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 501 KiB

BIN
wallets/tajcoin.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 585 KiB