Bitcoin Forum

Alternate cryptocurrencies => Altcoin Discussion => Topic started by: twister on December 16, 2014, 01:49:49 PM



Title: What alt-coins have Paper wallets?
Post by: twister on December 16, 2014, 01:49:49 PM
Any body has a list of alt-coins that can be stored in Paper wallets?

Edit: I know technically any coin can be stored on paper wallets, one can simply print out the keys and store them privately, but you have to download their wallet programs to do that. I am talking about alt-coins that simply have paper wallets like bitaddress.org for bitcoin.


Title: Re: What alt-coins have Paper wallets?
Post by: redsn0w on December 16, 2014, 01:53:18 PM
Any body has a list of alt-coins that can be stored in Paper wallets?

You can store everything in a paper wallet ,  you have only to make a qr_code of the private key and print it. After put it in a safe place .


Title: Re: What alt-coins have Paper wallets?
Post by: twister on December 16, 2014, 01:54:04 PM
Any body has a list of alt-coins that can be stored in Paper wallets?

You can store everything in a paper wallet ,  you have only to make a qr_code of the private key and print it. After deposit it in  a safe place .

Yeah, I know, edited the OP.


Title: Re: What alt-coins have Paper wallets?
Post by: NeuroticFish on December 16, 2014, 01:58:22 PM
I know for sure that Dogecoin has such generators, you can even download the html to do it safely.
I don't remember which one I actually used and google.. just gives too many results on that. so just pick one you want :)


Title: Re: What alt-coins have Paper wallets?
Post by: twister on December 16, 2014, 02:05:22 PM
I know for sure that Dogecoin has such generators, you can even download the html to do it safely.
I don't remember which one I actually used and google.. just gives too many results on that. so just pick one you want :)

I have Dogecoin :) I am basically trying to buy a bunch of alt-coins but I hate installing so many softwares and I don't want to hold my coins on exchanges. So a paper wallet is a very easy and simple solution but not all alt-coins have that. I plan to put as much as I can on Paper wallets and forget about them.


Title: Re: What alt-coins have Paper wallets?
Post by: NeuroticFish on December 16, 2014, 02:09:19 PM
I know for sure that Dogecoin has such generators, you can even download the html to do it safely.
I don't remember which one I actually used and google.. just gives too many results on that. so just pick one you want :)

I have Dogecoin :) I am basically trying to buy a bunch of alt-coins but I hate installing so many softwares and I don't want to hold my coins on exchanges. So a paper wallet is a very easy and simple solution but not all alt-coins have that. I plan to put as much as I can on Paper wallets and forget about them.

I completely agree, but unfortunately it's the only one I know of in this format.
I just asked today about the way to do paper wallet for Monero and.. at least you have only to run an exe (no install) and you don't have to download the blockchain.
Maybe this also helps a little. Here's the response I got: https://bitcointalk.org/index.php?topic=583449.msg9855347#msg9855347


Title: Re: What alt-coins have Paper wallets?
Post by: bee7 on December 16, 2014, 02:13:35 PM
Any body has a list of alt-coins that can be stored in Paper wallets?

Edit: I know technically any coin can be stored on paper wallets, one can simply print out the keys and store them privately, but you have to download their wallet programs to do that. I am talking about alt-coins that simply have paper wallets like bitaddress.org for bitcoin.

The only thing you need to download is the source of https://www.bitaddress.org/ site.

It could be found as a zip archive here: https://github.com/pointbiz/bitaddress.org/releases.

Then find out the address prefix of the coin in question - check the file src/base58.h for PUBKEY_ADDRESS:  
Quote
base58.h-    enum
base58.h-    {
base58.h:        PUBKEY_ADDRESS = 63,
base58.h-        SCRIPT_ADDRESS = 24,
base58.h:        PUBKEY_ADDRESS_TEST = 112,
base58.h-        SCRIPT_ADDRESS_TEST = 198,
base58.h-    };

Now unzip the https://www.bitaddress.org/ source zip file to some location and open the bitaddress.org.html file with notepad or any other plain text editor.
Find the following line in that file:
Code:
Bitcoin.Address.networkVersion = 0x00; // mainnet

As of release 2.8.1 it is line no 4757 (https://github.com/pointbiz/bitaddress.org/blob/master/bitaddress.org.html#L4757)

Replace the 0x00 in  this line with a value you found in the base58.h (with 63 in the example provided)

Then save the file and reopen it with a webrowser.

Enjoy.
  
Edit: Don't forget to send some tips to  https://www.bitaddress.org/ 's developer ;)
 


Title: Re: What alt-coins have Paper wallets?
Post by: twister on December 16, 2014, 02:23:39 PM
-snip-
I completely agree, but unfortunately it's the only one I know of in this format.
I just asked today about the way to do paper wallet for Monero and.. at least you have only to run an exe (no install) and you don't have to download the blockchain.
Maybe this also helps a little. Here's the response I got: https://bitcointalk.org/index.php?topic=583449.msg9855347#msg9855347
I'll try and see if I can do as suggested in the steps. Thx :)

-snip-
The only thing you need is to download the source of https://www.bitaddress.org/ site.

It could be found as a zip archive here: https://github.com/pointbiz/bitaddress.org/releases.

Then find out the address prefix of the coin in question - check the file src/base58.h for PUBKEY_ADDRESS:
Quote
base58.h-    enum
base58.h-    {
base58.h:        PUBKEY_ADDRESS = 63,
base58.h-        SCRIPT_ADDRESS = 24,
base58.h:        PUBKEY_ADDRESS_TEST = 112,
base58.h-        SCRIPT_ADDRESS_TEST = 198,
base58.h-    };

Now unzip the https://www.bitaddress.org/ source zip file to some location and open the bitaddress.org.html file with notepad or any other plain text editor.
Find the following line in that file:
Code:
Bitcoin.Address.networkVersion = 0x00; // mainnet

As of release 2.8.1 it is line no 4757 (https://github.com/pointbiz/bitaddress.org/blob/master/bitaddress.org.html#L4757)

Replace the 0x00 in  this line with a value you found in the base58.h (with 63 in example provided)

Then save the file and reopen it with a webrowser.

Enjoy.
 
Edit: Don't forget to send some tips to  https://www.bitaddress.org/ 's developer ;)
 

I have the bitaddress source already downloaded from github but how to find the pubkey address of a coin?



Title: Re: What alt-coins have Paper wallets?
Post by: bee7 on December 16, 2014, 02:40:29 PM


I have the bitaddress source already downloaded from github but how to find the pubkey address of a coin?



check the src/base58.h file in the source code of the coin in question. It must be available at github as well and the link should be provided by the dev in the coin announcement topic or by other means. If the coin has no publicly available source code then it's not worth to look at this coin at all.   


Title: Re: What alt-coins have Paper wallets?
Post by: GonnaGrinditout on December 16, 2014, 03:10:40 PM
bitaddress, liteaddress, dogeadress, all paper wallets generator.
It's easy to transfer bitcoins form a paper wallet to blockchain wallet. But I can't find the solution for doegecoin and litecoin.


Title: Re: What alt-coins have Paper wallets?
Post by: bee7 on December 16, 2014, 03:17:39 PM
bitaddress, liteaddress, dogeadress, all paper wallets generator.
It's easy to transfer bitcoins form a paper wallet to blockchain wallet. But I can't find the solution for doegecoin and litecoin.


importprivkey (https://litecoin.info/How_to_import_private_keys) RPC call/command is the rescue.


Title: Re: What alt-coins have Paper wallets?
Post by: GonnaGrinditout on December 16, 2014, 03:24:07 PM
bitaddress, liteaddress, dogeadress, all paper wallets generator.
It's easy to transfer bitcoins form a paper wallet to blockchain wallet. But I can't find the solution for doegecoin and litecoin.


importprivkey (https://litecoin.info/How_to_import_private_keys) RPC call/command is the rescue.
Ok. But do you know a free online wallet like blockchain with multi coins? And with the option to deposit coins from a paper wallet?




Title: Re: What alt-coins have Paper wallets?
Post by: bee7 on December 16, 2014, 03:48:29 PM
bitaddress, liteaddress, dogeadress, all paper wallets generator.
It's easy to transfer bitcoins form a paper wallet to blockchain wallet. But I can't find the solution for doegecoin and litecoin.


importprivkey (https://litecoin.info/How_to_import_private_keys) RPC call/command is the rescue.
Ok. But do you know a free online wallet like blockchain with multi coins? And with the option to deposit coins from a paper wallet?




No, I don't. I would recommend you to keep off any online wallet: the cost to download a some coin blockhain is much less than potential to lose your coins.


Title: Re: What alt-coins have Paper wallets?
Post by: gatra on December 16, 2014, 04:07:10 PM
Riecoin's paper wallet: http://riecoinfoundation.org/PaperWallet/ (http://riecoinfoundation.org/PaperWallet/)


Title: Re: What alt-coins have Paper wallets?
Post by: ex33s on December 16, 2014, 04:42:58 PM
Magi paperwallet - http://paperwallet.coinmagi.org


Title: Re: What alt-coins have Paper wallets?
Post by: twister on December 17, 2014, 03:49:26 AM
-snip-

check the src/base58.h file in the source code of the coin in question. It must be available at github as well and the link should be provided by the dev in the coin announcement topic or by other means. If the coin has no publicly available source code then it's not worth to look at this coin at all.  

Gr8,  I will try to do this and maybe do little tests like create a paper wallet and send a small amount of coins to it then redeem it before putting a big chunk. Thank u so much :)

Riecoin's paper wallet: http://riecoinfoundation.org/PaperWallet/ (http://riecoinfoundation.org/PaperWallet/)
Magi paperwallet - http://paperwallet.coinmagi.org

Thanks :)


Title: Re: What alt-coins have Paper wallets?
Post by: jawitech on December 17, 2014, 04:05:01 AM
Magi paperwallet - http://paperwallet.coinmagi.org

You were faster, was just about to write this ;)


Title: Re: What alt-coins have Paper wallets?
Post by: Agestorzrxx on December 17, 2014, 04:24:55 AM
Every coins could have a paper wallet.


Title: Re: What alt-coins have Paper wallets?
Post by: gatra on December 17, 2014, 02:13:35 PM
bitaddress, liteaddress, dogeadress, all paper wallets generator.
It's easy to transfer bitcoins form a paper wallet to blockchain wallet. But I can't find the solution for doegecoin and litecoin.


importprivkey (https://litecoin.info/How_to_import_private_keys) RPC call/command is the rescue.
Ok. But do you know a free online wallet like blockchain with multi coins? And with the option to deposit coins from a paper wallet?


ypool has an online wallet that supports 7 coins: https://wallet.ypool.net/ (https://wallet.ypool.net/)


Title: Re: What alt-coins have Paper wallets?
Post by: cakir on December 17, 2014, 02:26:25 PM
Rule 1: Never trust any online wallet generator. (They might be saved by the service provider).
Rule 2: Always use an official & offline wallet to generate address. (Don't let the trojans etc steal your private keys etc).

edit; you don't need to download all the blockchain, just the wallet-qt is enough to create addresses.





Title: Re: What alt-coins have Paper wallets?
Post by: swansong on December 17, 2014, 03:29:47 PM
litecoin


Title: Re: What alt-coins have Paper wallets?
Post by: snarlpill on June 10, 2015, 07:13:42 AM
Bumping a dead thread here but I'm looking to find a secure way to generate a Monero address or 2 and print them out in the form of paper wallets (like bitaddress.org is for BTC) to hold some of my XMR coins for a while. I'm not looking to download the entire XMR client and blockchain to do this, but will if I have to. Anybody got an ideas?


Title: Re: What alt-coins have Paper wallets?
Post by: Gabri on June 10, 2015, 07:43:38 AM
You can make a paper wallet of every altcoin just by making some changes on code and uploading it to your server!