diff --git a/.gitignore b/.gitignore index 3c3629e..14df5d8 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ node_modules +Thumbs.db \ No newline at end of file diff --git a/index.html b/index.html index 70e4567..6077a43 100644 --- a/index.html +++ b/index.html @@ -6097,7 +6097,7 @@ body { font-family: Arial; background-image: url('images/diamonds.png'); }
- First step is to download this website from Github and open the index.html file directly from your computer. It's just too easy to sneak some evil code in the 6000+ lines of javascript to leak your private key, and you don't want to see your fund stolen. Code version control make it much easier to cross-check what actually run. For extra security, unplug your Internet access while generating your wallet. + First step is to download this website from Github and open the index.html file directly from your computer. It's just too easy to sneak some evil code in the 6000+ lines of javascript to leak your private key, and you don't want to see your fund stolen. Code version control make it much easier to cross-check what actually run. For extra security, unplug your Internet access while generating your wallet.
@@ -6451,8 +6451,10 @@ janin.currencies = [ 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 ("Reddcoin", 0x3d, 0xbd, "7", "[UV]" , "addr13"), + janin.currency.createCurrency ("Topcoin", 0x42, 0xc2, "7", "V" , "addr12"), janin.currency.createCurrency ("Vertcoin", 0x47, 0xc7, "7", "W" , "addr9"), - + janin.currency.createCurrency ("Testnet Bitcoin", 0x6f, 0xef, "9", "c", null) ]; diff --git a/logos/reddcoin.png b/logos/reddcoin.png new file mode 100644 index 0000000..f507875 Binary files /dev/null and b/logos/reddcoin.png differ diff --git a/logos/topcoin.png b/logos/topcoin.png new file mode 100644 index 0000000..8eba235 Binary files /dev/null and b/logos/topcoin.png differ diff --git a/src/index.html b/src/index.html index 6cbe911..87e9c87 100644 --- a/src/index.html +++ b/src/index.html @@ -190,7 +190,7 @@
- First step is to download this website from Github and open the index.html file directly from your computer. It's just too easy to sneak some evil code in the 6000+ lines of javascript to leak your private key, and you don't want to see your fund stolen. Code version control make it much easier to cross-check what actually run. For extra security, unplug your Internet access while generating your wallet. + First step is to download this website from Github and open the index.html file directly from your computer. It's just too easy to sneak some evil code in the 6000+ lines of javascript to leak your private key, and you don't want to see your fund stolen. Code version control make it much easier to cross-check what actually run. For extra security, unplug your Internet access while generating your wallet.
diff --git a/src/janin.currency.js b/src/janin.currency.js index 8428870..b9e59f6 100644 --- a/src/janin.currency.js +++ b/src/janin.currency.js @@ -67,8 +67,10 @@ janin.currencies = [ 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 ("Reddcoin", 0x3d, 0xbd, "7", "[UV]" , "addr13"), + janin.currency.createCurrency ("Topcoin", 0x42, 0xc2, "7", "V" , "addr12"), janin.currency.createCurrency ("Vertcoin", 0x47, 0xc7, "7", "W" , "addr9"), - + janin.currency.createCurrency ("Testnet Bitcoin", 0x6f, 0xef, "9", "c", null) ];