Bitcoin Forum
May 09, 2024, 03:54:56 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: Multicoins.org: Personal multicoin wallet  (Read 1511 times)
kzv (OP)
Legendary
*
Offline Offline

Activity: 1722
Merit: 1285

OpenTrade - Open Source Cryptocurrency Exchange


View Profile WWW
March 02, 2016, 02:20:53 PM
Last edit: April 21, 2016, 01:43:27 PM by kzv
 #1

Hi

I'm tired of the constant bugs with my desctop wallet (multibit), but i do not trust online wallets.

So I developed "semioffline" javascript wallet https://multicoins.org
Main feature: all private keys are stored in the browser cache (but may by encoded and then backuped on the server).

Other features:
- Support Bitcoin, Litecoin, Dogecoin, Peercoin and Bitcoin-testnet
- View balance and push transactions. Multiple outputs is available
- Generate new key pairs
- Import private keys
- Sign/Verify messages
- Encode/Decode wallet
- Backup/Restore wallet

Service in active development. I would be grateful for any suggestions!

Source code: https://github.com/3s3s/multicoins.org

Updates:
03.19.2016 Add Dogecoins
04.08.2016 Add support for multiple outputs
04.21.2016 Add support for Peercoins

OpenTrade - Open Source Cryptocurrency Exchange
1715226896
Hero Member
*
Offline Offline

Posts: 1715226896

View Profile Personal Message (Offline)

Ignore
1715226896
Reply with quote  #2

1715226896
Report to moderator
1715226896
Hero Member
*
Offline Offline

Posts: 1715226896

View Profile Personal Message (Offline)

Ignore
1715226896
Reply with quote  #2

1715226896
Report to moderator
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
~Bitcoin~
Legendary
*
Offline Offline

Activity: 994
Merit: 1000



View Profile
March 02, 2016, 04:49:44 PM
 #2

if private key is saved in users browser cache than if we clean cache than we will lost our access to coin?  Huh

foolcool808
Newbie
*
Offline Offline

Activity: 51
Merit: 0


View Profile
March 02, 2016, 05:34:35 PM
 #3

if private key is saved in users browser cache than if we clean cache than we will lost our access to coin?  Huh
i guess you right  Huh
kzv (OP)
Legendary
*
Offline Offline

Activity: 1722
Merit: 1285

OpenTrade - Open Source Cryptocurrency Exchange


View Profile WWW
March 02, 2016, 07:08:02 PM
 #4

if private key is saved in users browser cache than if we clean cache than we will lost our access to coin?  Huh

Hi,

you can use backup feature to gain access to your wallet at any time from anywhere Smiley

see at:         Security -> Backup/Restore wallet

For tests you can use my private testnet key: cPtyQjUSvdkWV2ahPVtKajHEhARc2BavfaokHwXPaoGMdmKMP4gT

OpenTrade - Open Source Cryptocurrency Exchange
Snorek
Legendary
*
Offline Offline

Activity: 1400
Merit: 1001



View Profile
March 02, 2016, 07:24:41 PM
 #5

Good to see that there is new initiative in the wallets field. But don't you think that market is quite saturated with good products already?
It will be really hard to develop wallet with good functionality, design and on top on that - trustworthy and reliable.

Do you have time, resources and dedication needed to taking care of this project?
kzv (OP)
Legendary
*
Offline Offline

Activity: 1722
Merit: 1285

OpenTrade - Open Source Cryptocurrency Exchange


View Profile WWW
March 02, 2016, 07:38:34 PM
 #6

Good to see that there is new initiative in the wallets field. But don't you think that market is quite saturated with good products already?
It will be really hard to develop wallet with good functionality, design and on top on that - trustworthy and reliable.

Do you have time, resources and dedication needed to taking care of this project?


As I already said, first of all this project I need to for my purposes. I am an active bitcoin user, but I am quite disappointed functionality of existing wallets like multibit and core.
It will be great if my project is interested in someone else. But in any case, i'll continue to work on it.

OpenTrade - Open Source Cryptocurrency Exchange
Decoded
Legendary
*
Offline Offline

Activity: 1232
Merit: 1030


give me your cryptos


View Profile
March 03, 2016, 01:02:00 AM
 #7

So, it's kind of like blockchain.info, but for multiple coins? I'm interested. Keep up the good work!

looking for a signature campaign, dm me for that
bitcoin revo
Legendary
*
Offline Offline

Activity: 1168
Merit: 1049



View Profile
March 03, 2016, 01:31:05 AM
 #8

So, it's kind of like blockchain.info, but for multiple coins? I'm interested. Keep up the good work!

I believe it's only for Bitcoin/LTC and Testnet addresses (stated on the website itself), but the main feature here is that the private key is stored in your browser cache and not the website itself (although I might be wrong that it's not stored on the website itself; I'm not entirely sure how it works).

If it's not stored in the website itself, then this is a great "online" wallet (I know you referred to it as a semi-offline/online wallet, but I think that might require more proof that the private keys aren't stored on the website?).
~Bitcoin~
Legendary
*
Offline Offline

Activity: 994
Merit: 1000



View Profile
March 03, 2016, 04:06:56 AM
 #9

if private key is saved in users browser cache than if we clean cache than we will lost our access to coin?  Huh

Hi,

you can use backup feature to gain access to your wallet at any time from anywhere Smiley

see at:         Security -> Backup/Restore wallet

For tests you can use my private testnet key: cPtyQjUSvdkWV2ahPVtKajHEhARc2BavfaokHwXPaoGMdmKMP4gT

so site just generate bitcoin address and private key with java and then store that in session cookie in browser which than will be used to do transactions?

Than i think you can also add lots of other coin in your site in this way.

kzv (OP)
Legendary
*
Offline Offline

Activity: 1722
Merit: 1285

OpenTrade - Open Source Cryptocurrency Exchange


View Profile WWW
March 03, 2016, 09:34:51 AM
 #10

Hi, thanks for the feedback !

Quote
So, it's kind of like blockchain.info, but for multiple coins?

Yes that's right. And yes, main feature here is that the private key is stored in browser cache and not the website itself. Blockchain.info and other "online-wallets" do not allow private keys and store them in their servers.

Quote
I think that might require more proof that the private keys aren't stored on the website?
Soon the source code will be available on the GitHub.  Right now you can see the source code by using browser tools.

Quote
so site just generate bitcoin address and private key with java and then store that in session cookie in browser which than will be used to do transactions?

Than i think you can also add lots of other coin in your site in this way.

Yes, I plan to add support more forks in the future.

OpenTrade - Open Source Cryptocurrency Exchange
clickerz
Hero Member
*****
Offline Offline

Activity: 1414
Merit: 505


Backed.Finance


View Profile
March 03, 2016, 01:54:27 PM
 #11

I'm looking forward for the development of this wallet.It looks very promising with new concept? Since this is still in developing phase,keep us updated here. Clean site interface but looks like there are missing menus and its still under construction,right? Keep up the good work,Good Luck.

Open for Campaigns
foolcool808
Newbie
*
Offline Offline

Activity: 51
Merit: 0


View Profile
March 03, 2016, 05:26:21 PM
 #12

i think there is no harm to trying this service  Cheesy

just try  Cheesy
onlinedragon
Hero Member
*****
Offline Offline

Activity: 1036
Merit: 501


View Profile
March 03, 2016, 05:36:45 PM
 #13

Nice to see someone working on a potential new good wallet. Would be nice if there will be more coins supported.
kzv (OP)
Legendary
*
Offline Offline

Activity: 1722
Merit: 1285

OpenTrade - Open Source Cryptocurrency Exchange


View Profile WWW
March 04, 2016, 06:34:20 AM
 #14

The source code is now available https://github.com/3s3s/multicoins.org

OpenTrade - Open Source Cryptocurrency Exchange
kzv (OP)
Legendary
*
Offline Offline

Activity: 1722
Merit: 1285

OpenTrade - Open Source Cryptocurrency Exchange


View Profile WWW
March 06, 2016, 08:24:46 PM
 #15

Update interface:
1. Add total balance
2. Add spinners and change some alerts.

OpenTrade - Open Source Cryptocurrency Exchange
kzv (OP)
Legendary
*
Offline Offline

Activity: 1722
Merit: 1285

OpenTrade - Open Source Cryptocurrency Exchange


View Profile WWW
March 18, 2016, 11:10:27 PM
 #16

Add DOGE coins!

OpenTrade - Open Source Cryptocurrency Exchange
maokoto
Hero Member
*****
Offline Offline

Activity: 770
Merit: 500


✪ NEXCHANGE | BTC, LTC, ETH & DOGE ✪


View Profile WWW
March 18, 2016, 11:31:45 PM
 #17

Multicoin wallets make life a lot easier... how is it that is semi-offline? what does that mean exactly? Which is the offline part?

multicoins.org
Newbie
*
Offline Offline

Activity: 18
Merit: 0


View Profile
March 19, 2016, 08:40:06 AM
 #18

Multicoin wallets make life a lot easier... how is it that is semi-offline? what does that mean exactly? Which is the offline part?

Offline it makes:
1. generate public and private keys
2. import private keys
3. encode/decode wallet
4. sign/verify messages
5. store private keys

Online it makes:
1. receives address balance
2. obtains a list of transactions
3. push raw transaction
4. backup/restore encoded wallet
kzv (OP)
Legendary
*
Offline Offline

Activity: 1722
Merit: 1285

OpenTrade - Open Source Cryptocurrency Exchange


View Profile WWW
April 08, 2016, 09:27:31 PM
 #19

Add support for multiple outputs


OpenTrade - Open Source Cryptocurrency Exchange
kzv (OP)
Legendary
*
Offline Offline

Activity: 1722
Merit: 1285

OpenTrade - Open Source Cryptocurrency Exchange


View Profile WWW
April 21, 2016, 01:41:49 PM
 #20

Add support for Peercoin

OpenTrade - Open Source Cryptocurrency Exchange
Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!