From 8c72304b19721ff80ae7342b8b37cc718c247284 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Mur=C3=A9?= Date: Mon, 24 Mar 2014 22:42:20 +0100 Subject: [PATCH] Add support for NameCoin --- index.html | 12 +++++++++--- src/janin.currency.js | 1 + 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/index.html b/index.html index 93ae6aa..601ed7d 100644 --- a/index.html +++ b/index.html @@ -5810,6 +5810,8 @@ body { font-family: Arial; background-image: url('images/diamonds.png'); } -webkit-transform: rotate(180deg); /* Chrome, Safari, Opera */ transform: rotate(180deg); } +.supportWalletGenerator { margin: 30px; } +.errorMsg { color: red; text-align: center !important; width: 100% !important; padding-top: 15px !important; } #paperarea .artwallet .btcaddress { position: absolute; bottom: 20px; left: 692px; z-index: 100; font-size: 12px; background-color: transparent; @@ -5993,7 +5995,7 @@ body { font-family: Arial; background-image: url('images/diamonds.png'); }
Brain Wallet
Vanity Wallet
- +
@@ -6088,7 +6090,7 @@ body { font-family: Arial; background-image: url('images/diamonds.png'); } Algorithm: SHA256(passphrase)
-
+
@@ -6264,11 +6266,14 @@ body { font-family: Arial; background-image: url('images/diamonds.png'); }
@@ -6338,6 +6343,7 @@ janin.currencies = [ janin.currency.createCurrency ("Dogecoin", 0x1e, 0x9e, "6", "T" , "addr2"), janin.currency.createCurrency ("Litecoin", 0x30, 0xb0, "6", "T" , "addr3"), janin.currency.createCurrency ("Marscoin", 0x32, 0xb2, "6", "T" , "addr8"), + janin.currency.createCurrency ("NameCoin", 0x34, 0x80, "5", "[LK]" , "addr10"), janin.currency.createCurrency ("Peercoin", 0x37, 0xb7, "7", "[LK]" , "addr4"), janin.currency.createCurrency ("Vertcoin", 0x47, 0xc7, "7", "W" , "addr9"), diff --git a/src/janin.currency.js b/src/janin.currency.js index 206efcf..4dc4bf8 100644 --- a/src/janin.currency.js +++ b/src/janin.currency.js @@ -62,6 +62,7 @@ janin.currencies = [ janin.currency.createCurrency ("Dogecoin", 0x1e, 0x9e, "6", "T" , "addr2"), janin.currency.createCurrency ("Litecoin", 0x30, 0xb0, "6", "T" , "addr3"), janin.currency.createCurrency ("Marscoin", 0x32, 0xb2, "6", "T" , "addr8"), + janin.currency.createCurrency ("NameCoin", 0x34, 0x80, "5", "[LK]" , "addr10"), janin.currency.createCurrency ("Peercoin", 0x37, 0xb7, "7", "[LK]" , "addr4"), janin.currency.createCurrency ("Vertcoin", 0x47, 0xc7, "7", "W" , "addr9"),