Bitcoin Forum

Bitcoin => Development & Technical Discussion => Topic started by: flibbr on July 06, 2014, 11:53:12 AM



Title:  
Post by: flibbr on July 06, 2014, 11:53:12 AM
 


Title: Re: Javascript: New address per transaction, 1000's of addresses.
Post by: 🏰 TradeFortress 🏰 on July 06, 2014, 11:55:29 AM
The fact that it's generated in JS is irrelevant, what you actually want to do is get the balances of thousands of Bitcoin addresses.

I suggest running your own bitcoind and building/querying your own tx index.


Title: Re: Javascript: New address per transaction, 1000's of addresses.
Post by: 🏰 TradeFortress 🏰 on July 06, 2014, 01:57:44 PM
I was wondering if there was some kind of way I could group addreses into like hierarchical address system or something ?

I don't know..

That exists, but it's not going to help you detect and associate transactions. You will need to be running a node.


Title: Re: Javascript: New address per transaction, 1000's of addresses.
Post by: jonald_fyookball on July 06, 2014, 02:58:39 PM
The security aspect requires only one send per address.
You can still receive many transactions and not weaken
the security.


Title: Re: Javascript: New address per transaction, 1000's of addresses.
Post by: Abdussamad on July 06, 2014, 06:48:46 PM
Hierachical address system could mean deterministic addresses. The standard for those is BIP32. You can generate unlimited addresses from a single extended public key.

You will still need to feed all the unspent outputs into your send transaction though. No way around that.


Title: Re: Javascript: New address per transaction, 1000's of addresses.
Post by: dwdoc on July 07, 2014, 11:45:29 PM
I was wondering if there was some kind of way I could group addreses into like hierarchical address system or something ?

I don't know..

That exists, but it's not going to help you detect and associate transactions. You will need to be running a node.



What are you still doing here?
Everyone please ignore this douchebag.
He lost thousands of bitcoins others entrusted to him at inputs.io and coinlenders.


Title: Re: Javascript: New address per transaction, 1000's of addresses.
Post by: jubalix on July 09, 2014, 08:14:24 AM
i happen to have dev'd a js soloution for the first part of this.

how ever its not non blocking, so will jam your browser and may fail for 1000.

i have not had time to refactor. you just shoot of say 10 at a time, JS should easily be able to handle 1000 if done this way.


Watch multiple addresses for PPC, LTC & BTC coins from one page and total amounts without logging in or signing up anywhere or having to re-enter addresses into a block explorer or having to get pivate keys.

This version has no time limit to use.

http://i61.tinypic.com/qoi16p.png

you can find it here
https://sourceforge.net/projects/coinwatch/files/CoinWatch.zip/download (https://sourceforge.net/projects/coinwatch/files/CoinWatch.zip/download)

put you addresses in the coinwatch/addressAndtype.js

press the go button and go!!!!!

Consider Tor Browser for you own addresses.

I have put some random addresses in there already for you to just try and as examples of how to put addresses in

This has no time limit to use.


Title: Re: Javascript: New address per transaction, 1000's of addresses.
Post by: BawsyBoss on July 09, 2014, 09:48:30 AM
If you know that you can't receive BTC more than once, then you could run a daily script to check with the API the addresses of that day and store them on a separate database/file that does not get checked automaticallu anymore. Other than that, the build up of addresses seems too much to handle, but keep in mind that 1000 addresses is still under the daily limit of blockchain.info. (I can't quite remember the limit, though)