Revert "Add the boilerplate for a card wallet"
This reverts commit 077019dfc7
.
This commit is contained in:
parent
077019dfc7
commit
29313cfdca
5 changed files with 4 additions and 168 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,4 +1,3 @@
|
|||
node_modules
|
||||
not_versioned
|
||||
Thumbs.db
|
||||
*~
|
||||
|
|
|
@ -32,11 +32,10 @@ module.exports = function (grunt) {
|
|||
{ token: "//ninja.translator.js", file: "./src/ninja.translator.js" },
|
||||
{ token: "//ninja.singlewallet.js", file: "./src/ninja.singlewallet.js" },
|
||||
{ token: "//ninja.paperwallet.js", file: "./src/ninja.paperwallet.js" },
|
||||
{ token: "//ninja.cardwallet.js", file: "./src/ninja.cardwallet.js" },
|
||||
{ token: "//ninja.bulkwallet.js", file: "./src/ninja.bulkwallet.js" },
|
||||
{ token: "//ninja.brainwallet.js", file: "./src/ninja.brainwallet.js" },
|
||||
{ token: "//ninja.detailwallet.js", file: "./src/ninja.detailwallet.js" },
|
||||
{ token: "//ninja.donatetab.js", file: "./src/ninja.donatetab.js" },
|
||||
{ token: "//ninja.donatetab.js", file: "./src/ninja.donatetab.js" },
|
||||
{ token: "//qrcode.js", file: "./src/qrcode.js" },
|
||||
{ token: "//securerandom.js", file: "./src/securerandom.js" },
|
||||
{ token: "//janin.currency.js", file: "./src/janin.currency.js" },
|
||||
|
@ -58,4 +57,4 @@ module.exports = function (grunt) {
|
|||
grunt.file.defaultEncoding = 'utf-8';
|
||||
grunt.loadNpmTasks("grunt-combine");
|
||||
grunt.registerTask("default", ["combine:src", "combine:i18n"]);
|
||||
};
|
||||
};
|
83
index.html
83
index.html
|
@ -9679,7 +9679,6 @@ h1 { margin: 0px; height: 91px; }
|
|||
<div class="menu" id="menu">
|
||||
<div class="tab i18n selected" id="singlewallet" onclick="ninja.tabSwitch(this);">Single Wallet</div>
|
||||
<div class="tab i18n" id="paperwallet" onclick="ninja.tabSwitch(this);">Paper Wallet</div>
|
||||
<div class="tab i18n" id="cardwallet" onclick="ninja.tabSwitch(this);">Card Wallet</div>
|
||||
<div class="tab i18n" id="bulkwallet" onclick="ninja.tabSwitch(this);">Bulk Wallet</div>
|
||||
<div class="tab i18n" id="brainwallet" onclick="ninja.tabSwitch(this);">Brain Wallet</div>
|
||||
<div class="tab i18n" id="detailwallet" onclick="ninja.tabSwitch(this);">Wallet Details</div>
|
||||
|
@ -9863,7 +9862,7 @@ Walletgenerator.net use the same security measures as the original project. All-
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<div id="paperarea" class="walletarea">
|
||||
<div id="paperarea">
|
||||
<div class="commands">
|
||||
<div id="papercommands" class="row">
|
||||
<span><label id="paperlabelencrypt" for="paperencrypt" class="i18n">BIP38 Encrypt?</label> <input type="checkbox" id="paperencrypt" onchange="ninja.wallets.paperwallet.toggleEncrypt(this);" /></span>
|
||||
|
@ -9882,20 +9881,6 @@ Walletgenerator.net use the same security measures as the original project. All-
|
|||
<div id="paperkeyarea"></div>
|
||||
</div>
|
||||
|
||||
<div id="cardarea" class="walletarea">
|
||||
<div class="commands">
|
||||
<div id="papercommands" class="row">
|
||||
<input placeholder="Enter your public address" id="suppliedPublicAddress" name="suppliedPublicAddress" spellcheck="false" />
|
||||
<input placeholder="Custom text" id="suppliedCustomText" name="suppliedCustomText" spellcheck="false" />
|
||||
<input type="button" id="cardgenerate" value="Apply »" onClick="ninja.wallets.cardwallet.generate();" />
|
||||
|
||||
<span class="print"><input type="button" name="print" value="Print" id="cardprint" onclick="window.print();" /></span>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div id="cardkeyarea"></div>
|
||||
</div>
|
||||
|
||||
<div id="bulkarea" class="walletarea">
|
||||
<div class="commands">
|
||||
<div id="bulkcommands" class="row">
|
||||
|
@ -11377,72 +11362,6 @@ ninja.wallets.paperwallet = {
|
|||
}
|
||||
}
|
||||
};
|
||||
</script>
|
||||
<script type="text/javascript">
|
||||
ninja.wallets.cardwallet = {
|
||||
open: function () {
|
||||
document.getElementById("cardarea").style.display = "block";
|
||||
},
|
||||
|
||||
close: function () {
|
||||
document.getElementById("cardarea").style.display = "none";
|
||||
},
|
||||
|
||||
// Verify that a self-entered key is valid, and compute the corresponding
|
||||
// public address, render the wallet.
|
||||
testAndApplyVanityKey: function () {
|
||||
var suppliedKey = document.getElementById('suppliedPrivateKey').value;
|
||||
suppliedKey = suppliedKey.trim(); // in case any spaces or whitespace got pasted in
|
||||
document.getElementById('suppliedPrivateKey').value = suppliedKey;
|
||||
if (!ninja.privateKey.isPrivateKey(suppliedKey)) {
|
||||
alert(ninja.translator.get("detailalertnotvalidprivatekey"));
|
||||
} else {
|
||||
var computedPublicAddress = new Bitcoin.ECKey(suppliedKey).getBitcoinAddress();
|
||||
if (ninja.wallets.paperwallet.encrypt) {
|
||||
document.getElementById("busyblock").className = "busy";
|
||||
ninja.privateKey.BIP38PrivateKeyToEncryptedKeyAsync(suppliedKey,
|
||||
document.getElementById('paperpassphrase').value, false, function(encodedKey) {
|
||||
document.getElementById("busyblock").className = "";
|
||||
ninja.wallets.paperwallet.showArtisticWallet(1, computedPublicAddress, encodedKey);
|
||||
});
|
||||
}
|
||||
else {
|
||||
ninja.wallets.paperwallet.showArtisticWallet(1, computedPublicAddress, suppliedKey);
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
templateArtisticHtml: function (i) {
|
||||
var keyelement = 'btcprivwif';
|
||||
var coinImgUrl = "logos/" + janin.selectedCurrency.name.toLowerCase() + ".png";
|
||||
var walletBackgroundUrl = "wallets/" + janin.selectedCurrency.name.toLowerCase() + ".png";
|
||||
|
||||
var walletHtml =
|
||||
"<div class='coinIcoin'> <img id='coinImg' src='" + coinImgUrl + "' alt='currency_logo' /></div><div class='artwallet' id='artwallet" + i + "'>" +
|
||||
"<img id='papersvg" + i + "' class='papersvg' src='" + walletBackgroundUrl + "' />" +
|
||||
"<div id='qrcode_public" + i + "' class='qrcode_public'></div>" +
|
||||
"<div id='qrcode_private" + i + "' class='qrcode_private'></div>" +
|
||||
"<div class='btcaddress' id='btcaddress" + i + "'></div>" +
|
||||
"<div class='" + keyelement + "' id='" + keyelement + i + "'></div>" +
|
||||
"<div class='paperWalletText'><img class='backLogo' src='" + coinImgUrl + "' alt='currency_logo' />" + ninja.translator.get("paperwalletback") + "</div>" +
|
||||
"</div>";
|
||||
return walletHtml;
|
||||
},
|
||||
|
||||
showArtisticWallet: function (idPostFix, bitcoinAddress, privateKey) {
|
||||
var keyValuePair = {};
|
||||
keyValuePair["qrcode_public" + idPostFix] = bitcoinAddress;
|
||||
ninja.qrCode.showQrCode(keyValuePair, 3.5);
|
||||
|
||||
var keyValuePair = {};
|
||||
keyValuePair["qrcode_private" + idPostFix] = privateKey;
|
||||
ninja.qrCode.showQrCode(keyValuePair, 2.8);
|
||||
|
||||
document.getElementById("btcaddress" + idPostFix).innerHTML = bitcoinAddress;
|
||||
document.getElementById("btcprivwif" + idPostFix).innerHTML = privateKey;
|
||||
},
|
||||
};
|
||||
|
||||
</script>
|
||||
<script type="text/javascript">
|
||||
ninja.wallets.bulkwallet = {
|
||||
|
|
|
@ -144,7 +144,6 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|||
<div class="menu" id="menu">
|
||||
<div class="tab i18n selected" id="singlewallet" onclick="ninja.tabSwitch(this);">Single Wallet</div>
|
||||
<div class="tab i18n" id="paperwallet" onclick="ninja.tabSwitch(this);">Paper Wallet</div>
|
||||
<div class="tab i18n" id="cardwallet" onclick="ninja.tabSwitch(this);">Card Wallet</div>
|
||||
<div class="tab i18n" id="bulkwallet" onclick="ninja.tabSwitch(this);">Bulk Wallet</div>
|
||||
<div class="tab i18n" id="brainwallet" onclick="ninja.tabSwitch(this);">Brain Wallet</div>
|
||||
<div class="tab i18n" id="detailwallet" onclick="ninja.tabSwitch(this);">Wallet Details</div>
|
||||
|
@ -328,7 +327,7 @@ Walletgenerator.net use the same security measures as the original project. All-
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<div id="paperarea" class="walletarea">
|
||||
<div id="paperarea">
|
||||
<div class="commands">
|
||||
<div id="papercommands" class="row">
|
||||
<span><label id="paperlabelencrypt" for="paperencrypt" class="i18n">BIP38 Encrypt?</label> <input type="checkbox" id="paperencrypt" onchange="ninja.wallets.paperwallet.toggleEncrypt(this);" /></span>
|
||||
|
@ -347,20 +346,6 @@ Walletgenerator.net use the same security measures as the original project. All-
|
|||
<div id="paperkeyarea"></div>
|
||||
</div>
|
||||
|
||||
<div id="cardarea" class="walletarea">
|
||||
<div class="commands">
|
||||
<div id="papercommands" class="row">
|
||||
<input placeholder="Enter your public address" id="suppliedPublicAddress" name="suppliedPublicAddress" spellcheck="false" />
|
||||
<input placeholder="Custom text" id="suppliedCustomText" name="suppliedCustomText" spellcheck="false" />
|
||||
<input type="button" id="cardgenerate" value="Apply »" onClick="ninja.wallets.cardwallet.generate();" />
|
||||
|
||||
<span class="print"><input type="button" name="print" value="Print" id="cardprint" onclick="window.print();" /></span>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div id="cardkeyarea"></div>
|
||||
</div>
|
||||
|
||||
<div id="bulkarea" class="walletarea">
|
||||
<div class="commands">
|
||||
<div id="bulkcommands" class="row">
|
||||
|
@ -642,9 +627,6 @@ Walletgenerator.net use the same security measures as the original project. All-
|
|||
//ninja.paperwallet.js
|
||||
</script>
|
||||
<script type="text/javascript">
|
||||
//ninja.cardwallet.js
|
||||
</script>
|
||||
<script type="text/javascript">
|
||||
//ninja.bulkwallet.js
|
||||
</script>
|
||||
<script type="text/javascript">
|
||||
|
|
|
@ -1,63 +0,0 @@
|
|||
ninja.wallets.cardwallet = {
|
||||
open: function () {
|
||||
document.getElementById("cardarea").style.display = "block";
|
||||
},
|
||||
|
||||
close: function () {
|
||||
document.getElementById("cardarea").style.display = "none";
|
||||
},
|
||||
|
||||
// Verify that a self-entered key is valid, and compute the corresponding
|
||||
// public address, render the wallet.
|
||||
testAndApplyVanityKey: function () {
|
||||
var suppliedKey = document.getElementById('suppliedPrivateKey').value;
|
||||
suppliedKey = suppliedKey.trim(); // in case any spaces or whitespace got pasted in
|
||||
document.getElementById('suppliedPrivateKey').value = suppliedKey;
|
||||
if (!ninja.privateKey.isPrivateKey(suppliedKey)) {
|
||||
alert(ninja.translator.get("detailalertnotvalidprivatekey"));
|
||||
} else {
|
||||
var computedPublicAddress = new Bitcoin.ECKey(suppliedKey).getBitcoinAddress();
|
||||
if (ninja.wallets.paperwallet.encrypt) {
|
||||
document.getElementById("busyblock").className = "busy";
|
||||
ninja.privateKey.BIP38PrivateKeyToEncryptedKeyAsync(suppliedKey,
|
||||
document.getElementById('paperpassphrase').value, false, function(encodedKey) {
|
||||
document.getElementById("busyblock").className = "";
|
||||
ninja.wallets.paperwallet.showArtisticWallet(1, computedPublicAddress, encodedKey);
|
||||
});
|
||||
}
|
||||
else {
|
||||
ninja.wallets.paperwallet.showArtisticWallet(1, computedPublicAddress, suppliedKey);
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
templateArtisticHtml: function (i) {
|
||||
var keyelement = 'btcprivwif';
|
||||
var coinImgUrl = "logos/" + janin.selectedCurrency.name.toLowerCase() + ".png";
|
||||
var walletBackgroundUrl = "wallets/" + janin.selectedCurrency.name.toLowerCase() + ".png";
|
||||
|
||||
var walletHtml =
|
||||
"<div class='coinIcoin'> <img id='coinImg' src='" + coinImgUrl + "' alt='currency_logo' /></div><div class='artwallet' id='artwallet" + i + "'>" +
|
||||
"<img id='papersvg" + i + "' class='papersvg' src='" + walletBackgroundUrl + "' />" +
|
||||
"<div id='qrcode_public" + i + "' class='qrcode_public'></div>" +
|
||||
"<div id='qrcode_private" + i + "' class='qrcode_private'></div>" +
|
||||
"<div class='btcaddress' id='btcaddress" + i + "'></div>" +
|
||||
"<div class='" + keyelement + "' id='" + keyelement + i + "'></div>" +
|
||||
"<div class='paperWalletText'><img class='backLogo' src='" + coinImgUrl + "' alt='currency_logo' />" + ninja.translator.get("paperwalletback") + "</div>" +
|
||||
"</div>";
|
||||
return walletHtml;
|
||||
},
|
||||
|
||||
showArtisticWallet: function (idPostFix, bitcoinAddress, privateKey) {
|
||||
var keyValuePair = {};
|
||||
keyValuePair["qrcode_public" + idPostFix] = bitcoinAddress;
|
||||
ninja.qrCode.showQrCode(keyValuePair, 3.5);
|
||||
|
||||
var keyValuePair = {};
|
||||
keyValuePair["qrcode_private" + idPostFix] = privateKey;
|
||||
ninja.qrCode.showQrCode(keyValuePair, 2.8);
|
||||
|
||||
document.getElementById("btcaddress" + idPostFix).innerHTML = bitcoinAddress;
|
||||
document.getElementById("btcprivwif" + idPostFix).innerHTML = privateKey;
|
||||
},
|
||||
};
|
Loading…
Add table
Reference in a new issue