Search content
Sort by

Showing 20 of 25 results by btcKaboom
Post
Topic
Board Project Development
Re: Bitcoin + Bittorrent
by
btcKaboom
on 06/11/2014, 04:17:28 UTC
the confirmation time is about 10minutes right, i can imagine how annoying and slow that would be
but it might be good if they were running out of peers, keep the torrent around longer
Post
Topic
Board Project Development
Re: Bitcoin + Bittorrent
by
btcKaboom
on 06/11/2014, 02:52:46 UTC
This sounds like a good idea. Is the plan to put the blockchain up as a torrent to be shared between nodes to speed up the tx download/upload process?

of course not. didn't you know that copyrighted files such as the blockchain are illegal to share on bittorrent?
Post
Topic
Board Project Development
Topic OP
Bitcoin + Bittorrent
by
btcKaboom
on 05/11/2014, 06:53:40 UTC
This is an idea for creating a bitcoin bittorrent client

The torrent client will have its own wallet ability, to generate addresses, receive and make payments from those addresses
User will send bitcoin to the client address to fund it.

p1 connects to p2 client and asks to download the torrent.
p2 generates receipt address to associate with p1 ipAddress, or a public key which p1 can verify is theirs. so it stores a list of [ btc address, ip/key ]
p1 makes a small payment to p2.
p2 checking the blockchain sees the payment and record it.
p2 will upload to peers that paid it some money.
p1 client, receiving bytes from the p2, records positive rating against p2. if bytes are not received, p1 record negative rating against p2.

graduated increase in payment and download amount, will counter act maliciously not uploading.
this should be all automated and not requiring much action from the user.
peers will prefer generous peers, or faster uploaders

what do you think will this work? i knows about storj too but this is bitcoin and bittorrent is already widespread it just needs some coding into a client.

Post
Topic
Board Speculation
Re: [prediction] Next spike $560,000 14 months from now
by
btcKaboom
on 28/09/2014, 01:18:33 UTC
stores are not allowed to sell the same goods for a cash discount vs credit card

well then they'll just be making more money of each bitcoin sale.
if enough % of sales are bitcoin, they can sell at lower prices vs competitors
Post
Topic
Board Speculation
Re: [prediction] Next spike $560,000 14 months from now
by
btcKaboom
on 28/09/2014, 01:00:38 UTC
What is the impetus for every day use?

this will become clear once bitcoin leaks into the supply chains.
merchants can offer discounts for bitcoin, just because of the customer->merchant transaction.
there are savings to be made all the way up that supply chain.
they would have the advantage over their competitors.
consider this, I can buy something from an online merchant in france, the chinese supplier could have a replacement order on file and received payment within one or two hours.
Post
Topic
Board Speculation
Re: If we break 350 we go right to double digits!
by
btcKaboom
on 22/09/2014, 12:44:13 UTC
Guys, just relax, bitcoin works and adoption and price will increase over time.
Adoption drives the price down, stupid. Don't you know merchants convert funny money into real fiat immediately? They are not stupid.

in the short term yes
is there a btc -> fiat conversion fee? it won't be long before they figure out they could avoid it by paying their suppliers and staff with the bitcoin

That would make the suppliers and staff really happy making business with you.

probably in the next few years they will have integrated supply chain systems that automate stock orders and instantly pay suppliers based on rates of sale
well they won't have to wait days or weeks to get their money and reduce their administrative costs
Post
Topic
Board Speculation
Re: If we break 350 we go right to double digits!
by
btcKaboom
on 22/09/2014, 11:11:37 UTC
Guys, just relax, bitcoin works and adoption and price will increase over time.
Adoption drives the price down, stupid. Don't you know merchants convert funny money into real fiat immediately? They are not stupid.

in the short term yes
is there a btc -> fiat conversion fee? it won't be long before they figure out they could avoid it by paying their suppliers and staff with the bitcoin
Post
Topic
Board Economics
Re: Please stop with mBTC, microBTC, ...!
by
btcKaboom
on 28/08/2014, 12:05:16 UTC
lets call them BOLLARS, and SENTS

10 satoshi = 1 SENT
100 SENTS = 1 BOLLAR

something lika dat
Post
Topic
Board Speculation
Re: Wall Observer BTC/USD - Bitcoin price movement tracking & discussion
by
btcKaboom
on 18/08/2014, 13:24:27 UTC
saving money is never annoying

https://www.youtube.com/watch?v=XB383WkXcqE
Post
Topic
Board Development & Technical Discussion
Re: Bitcoin feature suggestion - Address Rule
by
btcKaboom
on 08/08/2014, 04:06:52 UTC
Since we can store the wallet balance in the chain
We don't and we can't, so the rest of your suggestion is invalid.

True. 

Likewise, if I understand what you are suggesting, I do not believe this adds anything in terms of security that could not be done at the application level vs the protocol level.  In either case (creating/changing your rules with your private key etc) vs bitcoin as it is now, if someone has your private key, you are screwed because they'll just change your rules and then transfer your coins.  A root cause of insecurity is protecting your private keys and adding these rules doesn't help with that. 


I must be missing something - explain to me how bitcoin stops people spending more than the balance of their address.

The rule key is required to remove a rule.
The rule key is more secure than a private key, because you dont need to use it all the time, and it only ever gets used once - to remove a rule.


1. You are missing something.  The nature of the protocol ensures no one can spend more than the balance that an address contains. If you could overdraw an address bitcoin would be worthless. (Using the concept of balances at addresses as shorthand.). If you are talking about something you didn't say, the total balances at any address for which you control the private keys, your client can enforce whatever rule you want, but the protocol does not.

2. By default Bitcoin Core doesn't reuse addresses and consequently private keys either.  Hence change addresses, new addresses for each transaction etc. Reusing addresses can cause security issues such as the android PRNG issue for reused addresses so it is already not recommended.  If that is the concern, a rule disallowing address reuse might be considered (I don't think it is a good idea either, it too could be enforced client side).

Anyway, if your computer is compromised you are screwed either way.  The difference in security between having a second layer at that point is de minimis.

As an aside, the odds of this being adopted by everyone are infitesimal when you can accomplish the same thing (or more) with good security on the client side. It is like adding email at the tcp/ip layer vs on top of it with SMTP.  You want the lower layers to be simple so they are easier to debug and here it is even more important since if you lose an email it can be resent, vs potentially billions of dollars at stake with bitcoin. 

You can always implement what you suggest and then see how many people will adopt it.



stop being so negative
Post
Topic
Board Development & Technical Discussion
Re: Bitcoin feature suggestion - Address Rule
by
btcKaboom
on 07/08/2014, 05:22:40 UTC
Since we can store the wallet balance in the chain
We don't and we can't, so the rest of your suggestion is invalid.

True. 

Likewise, if I understand what you are suggesting, I do not believe this adds anything in terms of security that could not be done at the application level vs the protocol level.  In either case (creating/changing your rules with your private key etc) vs bitcoin as it is now, if someone has your private key, you are screwed because they'll just change your rules and then transfer your coins.  A root cause of insecurity is protecting your private keys and adding these rules doesn't help with that. 


I must be missing something - explain to me how bitcoin stops people spending more than the balance of their address.

The rule key is required to remove a rule.
The rule key is more secure than a private key, because you dont need to use it all the time, and it only ever gets used once - to remove a rule.
Post
Topic
Board Development & Technical Discussion
Re: Bitcoin feature suggestion - wallet settings
by
btcKaboom
on 06/08/2014, 09:04:42 UTC

Clearly, you believe that the blockchain contains a collection of all generated Bitcoin addresses, which is simply not the case. That is why your proposed idea will not work at the protocol level.



Well, bitcoin already implements something like a rule, which is that someone can't spend more than the balance of an address.
I assume it does this by having a list of all transactions and calculating the balance.

So, the bitcoin client can send a special transaction which contains the rule, rather than an amount to spend.
Then that transaction can be seen by the miners when they confirm new transactions from that address.

Post
Topic
Board Development & Technical Discussion
Re: Bitcoin feature suggestion - wallet settings
by
btcKaboom
on 04/08/2014, 12:31:47 UTC
You seem to be missing the point. Once your wallet.dat file is compromised, then your attacker can just load it in one of the many existing Bitcoin clients. And you can't hardcode those suggested "features" into the wallet.dat file itself without making it incompatible with other Bitcoin clients. Hackers can hack both wallet.dat files and Bitcoin clients. Those are 2 different things.

i meant put the settings in the block chain somehow, just like the balance is stored on the chain not in wallet file.
the miners look at the rules for an address before they do the transaction

it could work like this

create a new address with your rules, you get given a rule key and private key
rule key you write down its not stored on the computer
so, its a little bit like cold storage, but still usable in a convenient way
so even your wallet got compromised by a hacker, they can only steal what your rule allows

so then you wanna change your rules, create a new address and use the rule key to unlock the address and transfer to the new one
Post
Topic
Board Development & Technical Discussion
Re: Bitcoin feature suggestion - wallet settings
by
btcKaboom
on 04/08/2014, 08:58:55 UTC
well the thing is you would not change the settings very often, or ever,
maybe the settings are set when the address is created, cannot be changed
even if there was a password of some sort you wouldn't need it on your computer

i think security and redundancy go together quite well

besides the security, i think there are heaps of cool things you can do with that

edit - i for one would like to be less reliant on cold storage, it just makes things inconvenient.
this is like a middle ground between cold storage
Post
Topic
Board Development & Technical Discussion
Topic OP
Bitcoin feature suggestion - Address Rule
by
btcKaboom
on 04/08/2014, 07:39:04 UTC
Hi guys
I have a suggestion for a new bitcoin feature
Since we can store the wallet balance in the chain, what about some address rule?

This would mean you can setup things like:

  • Maximum Amount to send per day/month etc
  • Specific time of day which transaction is allowed to occur
  • Whitelist of address to send to
  • Charity donation address for each transaction

Transaction would be rejected if it broke the rules

Think of any more? I think these would help with bitcoin security, stops people zapping your coins to nowhere
So I could have my long term storage address, can only send to my daily expense address, max .5 per day.

This would require separate verification than just the private key to modify.

What do you think

EDIT
here is how i think it could work:

Create a new address
Send a special type of transaction - Rule Transaction
The rule transaction is stored in the blockchain
The client is given a rule key to write down and isn't stored digitally
Then miners look up rules of the address before confirming transactions

To change/remove rules, you do another transaction to remove the rule.
When you put on a new rules, a new rule key is generated and you discard the old one.





Post
Topic
Board Hardware wallets
Re: Trezor: Bitcoin hardware wallet
by
btcKaboom
on 30/05/2014, 13:27:09 UTC
This is really awesome device.
I see the mobile phone could be used for small payments.
then again I also feel the phone is a bit fiddly and cludgy.
I am really thinking about just like a tap and go card than swiping around on my phone screen
Post
Topic
Board Speculation
Re: Memespeculation
by
btcKaboom
on 30/05/2014, 13:02:39 UTC
Post
Topic
Board Hardware wallets
Re: Trezor: Bitcoin hardware wallet
by
btcKaboom
on 30/05/2014, 12:47:13 UTC
this looks great.
but, if the recovery seed uses common words aren't they very easy for some one to guess and 'recover' the keys even without touching your device? they could just guess all combos?

one more thing, I can imagine this in a point of sale at the shops, the USB cable would be a little annoying.
blutooth maybe, but that is not very secure is it.
What about some device on the counter you push the trezor into a slot which lines up the usb and everything correctly.
you could take it out for a sec to check the details, then back in to send the tx.
Post
Topic
Board Speculation
Re: How will the Easter holiday weekend effect prices...Yay Jesus
by
btcKaboom
on 19/04/2014, 11:55:03 UTC
the price will go down good friday (jesus dies)
it will be in its tomb for 3 days
before rising again on monday
Post
Topic
Board Trading Discussion
Topic OP
how can an exchange operate without a bank account?
by
btcKaboom
on 19/04/2014, 10:25:03 UTC

How can a bank close down an account of a bitcoin exchange?
Does that mean the bank can close my personal account if i go sell a coin to someone?
Is this only for electronic transfer or cash deposit too?

If they don't have bank account, what are they going to do with cash from atms?
Put it in a giant vault or something? I dont understand how its going to work!