Bitcoin Forum
April 25, 2024, 09:39:43 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: Proposed RPC command: sweepprivkey  (Read 2481 times)
casascius (OP)
Mike Caldwell
VIP
Legendary
*
Offline Offline

Activity: 1386
Merit: 1136


The Casascius 1oz 10BTC Silver Round (w/ Gold B)


View Profile WWW
September 24, 2011, 06:54:02 PM
 #1

I have submitted a proposal for a new RPC command called sweepprivkey (sweep funds from a private key).  It can be found at https://en.bitcoin.it/wiki/Sweepprivkey.
 
This function is useful for merchants who wish to accept typed or scanned Bitcoin private keys as payments, without imposing any specific methodology on how the payments must be processed. sweepprivkey has no direct effect on anything in the local wallet or transaction history -- the function simply generates a transaction in real-time to sweep the funds to another address, and broadcasts it. That destination address may or may not be in the local wallet.
 
The local wallet is only affected if the destination address is in the wallet, and only in an indirect sense: the wallet reacts to the sudden presence of a new transaction referencing it, just the same as if that transaction had been received from a peer.

It is my understanding that similar functionality has been implemented into bitcoinj.

Companies claiming they got hacked and lost your coins sounds like fraud so perfect it could be called fashionable.  I never believe them.  If I ever experience the misfortune of a real intrusion, I declare I have been honest about the way I have managed the keys in Casascius Coins.  I maintain no ability to recover or reproduce the keys, not even under limitless duress or total intrusion.  Remember that trusting strangers with your coins without any recourse is, as a matter of principle, not a best practice.  Don't keep coins online. Use paper or hardware wallets instead.
I HATE TABLES I HATE TABLES I HA(╯°□°)╯︵ ┻━┻ TABLES I HATE TABLES I HATE TABLES
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714037983
Hero Member
*
Offline Offline

Posts: 1714037983

View Profile Personal Message (Offline)

Ignore
1714037983
Reply with quote  #2

1714037983
Report to moderator
Andrew Vorobyov
Hero Member
*****
Offline Offline

Activity: 558
Merit: 500



View Profile
September 24, 2011, 09:56:07 PM
 #2

Thumbs up!
Gavin Andresen
Legendary
*
qt
Offline Offline

Activity: 1652
Merit: 2216


Chief Scientist


View Profile WWW
September 25, 2011, 01:30:03 AM
 #3

Encouraging people to expose their private keys makes me nervous. They're "private" for a reason, and it seems to me the vast majority of private keys will, a few years from now, either be stored on a secure device which is designed to never reveal them or will be split.

Why would a merchant "wish to accept typed or scanned Bitcoin private keys as payment" ? They're going to generate a transaction immediately anyway, it seems to me making a payment that way just opens up more potential ways of getting defrauded (e.g. merchant keeps the private key in case more bitcoins are ever sent to the same address, or merchant sends change to the same address and then a few days later uses the private key to take back the change).

I don't see any privacy or transaction-fee-saving advantages, either; am I missing something?

(I do see the usefulness of importing private keys into your wallet, that's a different feature that I'd like to be in the next release).

How often do you get the chance to work on a potentially world-changing project?
casascius (OP)
Mike Caldwell
VIP
Legendary
*
Offline Offline

Activity: 1386
Merit: 1136


The Casascius 1oz 10BTC Silver Round (w/ Gold B)


View Profile WWW
September 25, 2011, 04:55:14 AM
 #4

The usefulness is that Joe Sixpack, who is part of the "unbanked" population, can go to a check cashing place, and receive bitcoins for cash on what amounts to a special gift card where he can go and do all kinds of wonderful things on websites that, um, cannot accept Visa and Mastercard for whatever reason.  And he can do it right now - not after his Dwolla clears, not after his wire goes through, not after his blockchain finishes downloading.

He doesn't care or understand blockchains or crypto and isn't downloading the client, can't afford a smartphone (bad credit - prepaid is his only option) and wouldn't ever wire money to MtGox, rather he just wants to have some fun with his habit of choice.  These are throwaway, single use codes.  No different than a GreenDot MoneyPak... he who knows the code and spends it first gets the funds.

Ultimately, the goal is to widen the audience of people who CAN use Bitcoin to do something they already want to do, rather than limiting it to being a way that computer-savvy experts can send funds to other computer-savvy experts.

There are a lot of Joes out there, and if Joes understood that they could get magic gift cards at any check cashing places, I feel those places would be lining up to make a few percent on reselling our bitcoins to Joes.


Companies claiming they got hacked and lost your coins sounds like fraud so perfect it could be called fashionable.  I never believe them.  If I ever experience the misfortune of a real intrusion, I declare I have been honest about the way I have managed the keys in Casascius Coins.  I maintain no ability to recover or reproduce the keys, not even under limitless duress or total intrusion.  Remember that trusting strangers with your coins without any recourse is, as a matter of principle, not a best practice.  Don't keep coins online. Use paper or hardware wallets instead.
willphase
Hero Member
*****
Offline Offline

Activity: 767
Merit: 500


View Profile
September 25, 2011, 02:12:37 PM
 #5

would prefer a way to just import/export signed transactions via the RPC interface, then the sweepprivkey command could just be offloaded to a separate application.

Will

dogisland
Sr. Member
****
Offline Offline

Activity: 262
Merit: 250



View Profile
September 26, 2011, 08:17:32 AM
 #6

I have submitted a proposal for a new RPC command called sweepprivkey (sweep funds from a private key).  It can be found at https://en.bitcoin.it/wiki/Sweepprivkey.

I faced this problem when implementing StrongCoin.com.

I haven't figured out how to sign transactions in the client yet, so I'm having to send the private key to bitcoind.

I'm using the patched bitcoind for key import. With the following commands I can simulate a sweepprivkey

1. importprivkey
2. sendmany
3. removeprivkey

Each payment takes about a minute to process.

Moving forward I can see more use cases for people who want to interact with Bitcoin as an API but don't want it to store the private keys.

My understanding is that the only time a private key is needed is when a payment is made. To make it easy to sign payments on the client side it would be nice to have the following in bitcoin.

1. getinfoforpayment - retrieve everything from the block chain required for a payment. You specify the destination addresses and the source address.

The client application then signs the information.

2. sendrawtransaction - bitcoin pushes the transaction out onto the network.

error
Hero Member
*****
Offline Offline

Activity: 588
Merit: 500



View Profile
September 26, 2011, 10:39:34 AM
 #7

Why would a merchant "wish to accept typed or scanned Bitcoin private keys as payment" ? They're going to generate a transaction immediately anyway, it seems to me making a payment that way just opens up more potential ways of getting defrauded (e.g. merchant keeps the private key in case more bitcoins are ever sent to the same address, or merchant sends change to the same address and then a few days later uses the private key to take back the change).

I think the point is for the merchant (or someone else) to be able to cash out and immediately invalidate a BitBill or any other physical token which contains a Bitcoin private key.

3KzNGwzRZ6SimWuFAgh4TnXzHpruHMZmV8
casascius (OP)
Mike Caldwell
VIP
Legendary
*
Offline Offline

Activity: 1386
Merit: 1136


The Casascius 1oz 10BTC Silver Round (w/ Gold B)


View Profile WWW
September 26, 2011, 02:18:09 PM
 #8

1. getinfoforpayment - retrieve everything from the block chain required for a payment. You specify the destination addresses and the source address.

The client application then signs the information.

2. sendrawtransaction - bitcoin pushes the transaction out onto the network.



I strongly agree with this.

for #1, I'd be looking for: getunspenttransactions <listofaddresses> [<minconfirms>] [<detaillevel>]

Where the client returns all the unspent transactions belonging to any of the addresses in the list anywhere on the block chain, including txid+index, the block number (if confirmed), and a flag saying whether to report just the value of the output, or an encoded version of the entire transaction (so the client can confirm the txid is really worth the claimed value).

Such a feature would depend on the maintenance of an index not present in the software.  It's an index that would tie bitcoin address references to the blocks that reference them, and would only be used by some users, wouldn't be worth the resource cost on the rest who didn't need it, and ought to be an option (e.g. built on first use).

Companies claiming they got hacked and lost your coins sounds like fraud so perfect it could be called fashionable.  I never believe them.  If I ever experience the misfortune of a real intrusion, I declare I have been honest about the way I have managed the keys in Casascius Coins.  I maintain no ability to recover or reproduce the keys, not even under limitless duress or total intrusion.  Remember that trusting strangers with your coins without any recourse is, as a matter of principle, not a best practice.  Don't keep coins online. Use paper or hardware wallets instead.
Steve
Hero Member
*****
Offline Offline

Activity: 868
Merit: 1007



View Profile WWW
September 26, 2011, 09:28:38 PM
 #9

I think as far as exposing private keys, that cat is already out of the bag regardless of whether such an RPC command exists or not (we have casascius coins and bitbills that are already handling private keys).

I had discussions last week along these lines with TTBit at our Orlando meetup.  He brought some bills he printed that included the private key.  I actually think there are some compelling use cases for this in addition to the one casascius mentioned (side note, TTBit was kind enough to sell me a handful of casascius coins...very nice!).

Imagine this scenario...you want to go out for dinner and drinks and you want to pay with bitcoins, but you don't want to fumble with the smartphone (or you don't have one, or data access is cost prohibitive, or you want to make sure you don't go crazy and spend all your bitcoins).  You could print up 10 bills of say 1 BTC each.  Each bill would have a scannable public/private key.  To pay for things, you give these to the restaurant and they either:

- sweep all funds and send change to another "change" address you also printed on the bill
- sweep all funds and print you a new bill for the amount of the change (with a new unique public/private key pair)
- leave the change on the bill for you to use again

If you lose one of these bills, you only lose the amount stored on the bill (and maybe not even that if you kept the keys and can later spend the funds before anyone else does).  You could even take it a step further and encrypt the keys with a pin code that you would have to give the recipient (or type into a key pad) in order to decrypt the keys.

The key difference here is that at the point of the transaction, only the recipient needs software and an internet connection to complete the transaction.  You do have to trust the merchant, but that's not so different from the situation today when you give them a $20 bill and expect them to return with change or you trust that they won't steal your CC number, etc.  I still like the idea of a trusted, personal hardware device, but in the short term, this low tech solution could prove quite useful.

(gasteve on IRC) Does your website accept cash? https://bitpay.com
casascius (OP)
Mike Caldwell
VIP
Legendary
*
Offline Offline

Activity: 1386
Merit: 1136


The Casascius 1oz 10BTC Silver Round (w/ Gold B)


View Profile WWW
September 26, 2011, 10:38:00 PM
 #10

You could print up 10 bills of say 1 BTC each.  Each bill would have a scannable public/private key.  To pay for things, you give these to the restaurant and they either:

I fully agree with that.  I have given out bitcoins this way.  And I also keep virtually all of my bitcoins this way (broken down into convenient increments so they can be re-imported like "bills").

I recently got a QR code "gun" keyboard wedge scanner, and am kicking myself that I didn't put QR codes on my paper wallets.  Another batch I guess.

Companies claiming they got hacked and lost your coins sounds like fraud so perfect it could be called fashionable.  I never believe them.  If I ever experience the misfortune of a real intrusion, I declare I have been honest about the way I have managed the keys in Casascius Coins.  I maintain no ability to recover or reproduce the keys, not even under limitless duress or total intrusion.  Remember that trusting strangers with your coins without any recourse is, as a matter of principle, not a best practice.  Don't keep coins online. Use paper or hardware wallets instead.
TTBit
Legendary
*
Offline Offline

Activity: 1136
Merit: 1001


View Profile
September 27, 2011, 03:10:14 AM
Last edit: September 27, 2011, 10:38:15 AM by TTBit
 #11

Steve: Just saw this post. Nice meeting with you.

I'm a little out of place in the development area; please excuse.

The issues I see with exposing private keys are:
a) the client may assign change to that address at any time if in wallet.dat
b) a new bitcoin user may expose his private key for his public payment address, which he receives a stream of payments.

If all semi-private keys meant to be 'published/printed' started with a certain prefix (i.e '1BTC' or '2'), the client would never send change to those addresses. When a new user creates a new address, he could select 'for deposit only' if it were his billing address.

In general, I see value in exchanging private keys in print for payment.

edit: easier to get funds out of 'savings' addresses that only exist on paper/your head.

good judgment comes from experience, and experience comes from bad judgment
casascius (OP)
Mike Caldwell
VIP
Legendary
*
Offline Offline

Activity: 1386
Merit: 1136


The Casascius 1oz 10BTC Silver Round (w/ Gold B)


View Profile WWW
September 27, 2011, 03:46:42 AM
 #12

I am pretty sure the client only sends change to addresses pulled in from the 'reserve' pool, not imported keys.

Companies claiming they got hacked and lost your coins sounds like fraud so perfect it could be called fashionable.  I never believe them.  If I ever experience the misfortune of a real intrusion, I declare I have been honest about the way I have managed the keys in Casascius Coins.  I maintain no ability to recover or reproduce the keys, not even under limitless duress or total intrusion.  Remember that trusting strangers with your coins without any recourse is, as a matter of principle, not a best practice.  Don't keep coins online. Use paper or hardware wallets instead.
Pieter Wuille
Legendary
*
qt
Offline Offline

Activity: 1072
Merit: 1174


View Profile WWW
September 27, 2011, 07:48:14 AM
 #13

I am pretty sure the client only sends change to addresses pulled in from the 'reserve' pool, not imported keys.

Correct, though the "importwallet" command has a function to import a key into the reserve pool.

I do Bitcoin stuff.
mndrix
Michael Hendricks
VIP
Sr. Member
*
Offline Offline

Activity: 447
Merit: 258


View Profile
September 27, 2011, 02:17:49 PM
 #14

If a user wants to fund an online wallet, buying a private key (mini or otherwise) from a trusted vendor in the physical world and typing it into any online wallet service would be very convenient.  This is possible without API support, but having API support makes it easier for services to support these kinds of Bitcoin "gift cards".
casascius (OP)
Mike Caldwell
VIP
Legendary
*
Offline Offline

Activity: 1386
Merit: 1136


The Casascius 1oz 10BTC Silver Round (w/ Gold B)


View Profile WWW
September 27, 2011, 02:56:05 PM
 #15

If a POS program offered a "sweep" screen - which in turn called sweepprivkey -  that's all a business would need to conveniently accept bitcoins along with a 2d keyboard-wedge barcode scanner.

Such a screen would instantly validate and sweep funds from a scanned private key, as well as provide instant feedback as to the value of a bill as well as validity.

People could print their own money - which sounds scary - up until the point of realization that it's only valid once verified.


Companies claiming they got hacked and lost your coins sounds like fraud so perfect it could be called fashionable.  I never believe them.  If I ever experience the misfortune of a real intrusion, I declare I have been honest about the way I have managed the keys in Casascius Coins.  I maintain no ability to recover or reproduce the keys, not even under limitless duress or total intrusion.  Remember that trusting strangers with your coins without any recourse is, as a matter of principle, not a best practice.  Don't keep coins online. Use paper or hardware wallets instead.
Red Emerald
Hero Member
*****
Offline Offline

Activity: 742
Merit: 500



View Profile WWW
October 28, 2011, 11:35:24 PM
 #16

I really like this idea.  Good work

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!