add support for topcoin and reddcoin

This commit is contained in:
Michael Muré 2014-03-31 21:36:03 +02:00
parent bb109ce2a7
commit bc653fd934
6 changed files with 9 additions and 4 deletions

1
.gitignore vendored
View file

@ -1 +1,2 @@
node_modules
Thumbs.db

View file

@ -6097,7 +6097,7 @@ body { font-family: Arial; background-image: url('images/diamonds.png'); }
<div class="firstHalfSingleSafety">
<h3>Step 0. Follow the security checklist recommendation</h3>
<p>
First step is to download <a href="https://github.com/MichaelMure/PaperWallet/archive/master.zip">this website</a> 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, <strong>unplug your Internet access</strong> while generating your wallet.
First step is to <strong>download</strong> this website from <a href="https://github.com/MichaelMure/PaperWallet/archive/master.zip">Github</a> 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, <strong>unplug your Internet access</strong> while generating your wallet.
</p>
<h3>Step 1. Generate new address</h3>
<p>
@ -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)
];

BIN
logos/reddcoin.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 116 KiB

BIN
logos/topcoin.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 119 KiB

View file

@ -190,7 +190,7 @@
<div class="firstHalfSingleSafety">
<h3>Step 0. Follow the security checklist recommendation</h3>
<p>
First step is to download this website from <a href="https://github.com/MichaelMure/PaperWallet/archive/master.zip">Github</a> 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, <strong>unplug your Internet access</strong> while generating your wallet.
First step is to <strong>download</strong> this website from <a href="https://github.com/MichaelMure/PaperWallet/archive/master.zip">Github</a> 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, <strong>unplug your Internet access</strong> while generating your wallet.
</p>
<h3>Step 1. Generate new address</h3>
<p>

View file

@ -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)
];