Pages:
Author

Topic: How is CarbonWallet ? (Read 5244 times)

donator
Activity: 1731
Merit: 1008
December 02, 2014, 07:18:17 PM
#24
How does that work ?
legendary
Activity: 2198
Merit: 1049
September 29, 2014, 02:54:46 PM
#23
Ahh, i see how carbon wallet address fee action  Grin
don't forget change it

What's wrong with the miner fee calculation in Carbon Wallet ? Can u please elaborate your concern ?
member
Activity: 126
Merit: 10
August 26, 2014, 11:15:57 AM
#22
Ahh, i see how carbon wallet address fee action  Grin
don't forget change it
legendary
Activity: 2282
Merit: 1204
The revolution will be digital
August 13, 2014, 05:59:24 PM
#21
It'd be great to see CarbonWallet updated. Not taking into account the things already mentioned, I've noticed several features are just "placeholders" (or maybe they don't work for every browser?), which doesn't look good from an end-user point of view.

Which features and which browser ?

@Aleksei any new update regarding CarbonWallet ?
legendary
Activity: 966
Merit: 1000
June 24, 2014, 08:59:13 AM
#20
Try to download here

http://carbonwallet.com

Source code is available here: https://github.com/carbonwallet/carbonwallet.github.io. It is easier to download, just click on download ZIP button.
member
Activity: 118
Merit: 100
June 24, 2014, 08:57:28 AM
#19
Try to download here

http://carbonwallet.com
newbie
Activity: 38
Merit: 0
June 24, 2014, 08:21:44 AM
#18
It'd be great to see CarbonWallet updated. Not taking into account the things already mentioned, I've noticed several features are just "placeholders" (or maybe they don't work for every browser?), which doesn't look good from an end-user point of view.

Which features and which browser ?
sr. member
Activity: 490
Merit: 250
June 24, 2014, 05:34:36 AM
#17
It'd be great to see CarbonWallet updated. Not taking into account the things already mentioned, I've noticed several features are just "placeholders" (or maybe they don't work for every browser?), which doesn't look good from an end-user point of view.
newbie
Activity: 38
Merit: 0
June 24, 2014, 04:52:19 AM
#16


Cant we make this.retrieveBalance independent of BlockChain.info ? I mean to say, the URL to be used will be in a config file and user may control whether it will be blockchain.info/biteasy.com/helloblock.io/blockr.io/his own blockexplorer URL running on VPS.

Yes you can. The main thing you need to be aware of is that when creating a payment you need to retrieve unspent outs and different services i.e. blockr.io vs blockchain.info have different formats for this.

I'm more than happy to look at pull requests for this or for BIP39. Makes sense to develop this all in one place.

Is it possible to make the source code independent of any third party API by having its own daemon running and fetching data from that ?

Yes. The daemon would need to be able to provide balances for addresses and unspent outs for when the user wants to create a payment.

Perhaps a modified version of BitcoinJ.
legendary
Activity: 2282
Merit: 1204
The revolution will be digital
June 23, 2014, 01:20:08 PM
#15


Cant we make this.retrieveBalance independent of BlockChain.info ? I mean to say, the URL to be used will be in a config file and user may control whether it will be blockchain.info/biteasy.com/helloblock.io/blockr.io/his own blockexplorer URL running on VPS.

Yes you can. The main thing you need to be aware of is that when creating a payment you need to retrieve unspent outs and different services i.e. blockr.io vs blockchain.info have different formats for this.

I'm more than happy to look at pull requests for this or for BIP39. Makes sense to develop this all in one place.

Is it possible to make the source code independent of any third party API by having its own daemon running and fetching data from that ?
newbie
Activity: 38
Merit: 0
June 23, 2014, 05:35:18 AM
#14


Cant we make this.retrieveBalance independent of BlockChain.info ? I mean to say, the URL to be used will be in a config file and user may control whether it will be blockchain.info/biteasy.com/helloblock.io/blockr.io/his own blockexplorer URL running on VPS.

Yes you can. The main thing you need to be aware of is that when creating a payment you need to retrieve unspent outs and different services i.e. blockr.io vs blockchain.info have different formats for this.

I'm more than happy to look at pull requests for this or for BIP39. Makes sense to develop this all in one place.
newbie
Activity: 38
Merit: 0
June 23, 2014, 05:29:36 AM
#13
Hi,

Sorry didn't see this until now. I do have some plans for carbon wallet going forward and I'm also interested in any comments of course.

CarbonWallet uses electrum style passphrases and it would not be easy to move over to BIP39 as we already have people using the existing ones. BIP39 is still in draft, although I can see they are already out in the wild.



legendary
Activity: 966
Merit: 1000
June 12, 2014, 08:04:19 AM
#12
This issue has been opened  months ago and is unassigned? Well that's a good way of telling that you shouldn't touch this.


Furthermore, this wallet is dependent on blockchain to relay transactions. It is not a full independent wallet.

The code looks good and the GUI is nice but no one seems to develop it anymore.

Any wallet will depend on blockchain to relay transaction. Is not it normal ? Or u mean BlockChain.info here ?

I meant blockchain.info website.

Here are firstline of file app/js/blockchain.js

Code:
// Here we hold all the interactions with the blockchain.
var BLOCKCHAIN = new function () {
  
  this.retrieveBalance = function(address, callback) {
    url = 'http://blockchain.info/q/addressbalance/';
    this.tx_fetch(url + address, callback);
  }

Cant we make this.retrieveBalance independent of BlockChain.info ? I mean to say, the URL to be used will be in a config file and user may control whether it will be blockchain.info/biteasy.com/helloblock.io/blockr.io/his own blockexplorer URL running on VPS.

Yes you can. Just fork it on github and do the job. Code is very clear and easy to understand. If you know javascript, it is really a good basis to create a good deterministic wallet.
legendary
Activity: 2282
Merit: 1204
The revolution will be digital
June 12, 2014, 08:02:03 AM
#11
This issue has been opened  months ago and is unassigned? Well that's a good way of telling that you shouldn't touch this.


Furthermore, this wallet is dependent on blockchain to relay transactions. It is not a full independent wallet.

The code looks good and the GUI is nice but no one seems to develop it anymore.

Any wallet will depend on blockchain to relay transaction. Is not it normal ? Or u mean BlockChain.info here ?

I meant blockchain.info website.

Here are firstline of file app/js/blockchain.js

Code:
// Here we hold all the interactions with the blockchain.
var BLOCKCHAIN = new function () {
  
  this.retrieveBalance = function(address, callback) {
    url = 'http://blockchain.info/q/addressbalance/';
    this.tx_fetch(url + address, callback);
  }

Cant we make this.retrieveBalance independent of BlockChain.info ? I mean to say, the URL to be used will be in a config file and user may control whether it will be blockchain.info/biteasy.com/helloblock.io/blockr.io/his own blockexplorer URL running on VPS.
legendary
Activity: 966
Merit: 1000
June 12, 2014, 03:25:50 AM
#10
This issue has been opened  months ago and is unassigned? Well that's a good way of telling that you shouldn't touch this.


Furthermore, this wallet is dependent on blockchain to relay transactions. It is not a full independent wallet.

The code looks good and the GUI is nice but no one seems to develop it anymore.

Any wallet will depend on blockchain to relay transaction. Is not it normal ? Or u mean BlockChain.info here ?

I meant blockchain.info website.

Here are firstline of file app/js/blockchain.js

Code:
// Here we hold all the interactions with the blockchain.
var BLOCKCHAIN = new function () {
 
  this.retrieveBalance = function(address, callback) {
    url = 'http://blockchain.info/q/addressbalance/';
    this.tx_fetch(url + address, callback);
  }
legendary
Activity: 2198
Merit: 1049
June 12, 2014, 03:18:42 AM
#9
This issue has been opened  months ago and is unassigned? Well that's a good way of telling that you shouldn't touch this.


Furthermore, this wallet is dependent on blockchain to relay transactions. It is not a full independent wallet.

The code looks good and the GUI is nice but no one seems to develop it anymore.

Any wallet will depend on blockchain to relay transaction. Is not it normal ? Or u mean BlockChain.info here ?
legendary
Activity: 966
Merit: 1000
June 12, 2014, 02:26:33 AM
#8
This issue has been opened  months ago and is unassigned? Well that's a good way of telling that you shouldn't touch this.


Furthermore, this wallet is dependent on blockchain to relay transactions. It is not a full independent wallet.

The code looks good and the GUI is nice but no one seems to develop it anymore.
sr. member
Activity: 281
Merit: 250
June 12, 2014, 01:37:29 AM
#7
This issue has been opened  months ago and is unassigned? Well that's a good way of telling that you shouldn't touch this.

legendary
Activity: 966
Merit: 1000
June 10, 2014, 07:36:10 AM
#6
I just checked your post here => https://bitcointalksearch.org/topic/m.7184961

Are you taking this carbonwallet project forward ?
No (not yet).  I was wondering if there was anyone actively working on the project.

Last commit is more than one month old, so project is not dead, but no one is actively working on it.
https://github.com/carbonwallet/carbonwallet.github.io/graphs/contributors
legendary
Activity: 2646
Merit: 1131
All paid signature campaigns should be banned.
June 08, 2014, 07:52:49 PM
#5
I just checked your post here => https://bitcointalksearch.org/topic/m.7184961

Are you taking this carbonwallet project forward ?
No (not yet).  I was wondering if there was anyone actively working on the project.
Pages:
Jump to: