Friday, September 20, 2024
HomeBitcoinHow do I spend bitcoins from a number of wallets in a...

How do I spend bitcoins from a number of wallets in a single transaction?


There are at present three other ways to do that: uncooked transactions, PSBT in 0.17, and PSBT in 0.18. I like to recommend that you just use PSBT in 0.18 as it’s the least trouble, however I’ll describe all three right here for you.


Historically, you’d do that with createrawtransaction, fundrawtransaction, and signrawtransactionwithkey/signrawtransactionwithwallet. One particular person must know the entire inputs that have been getting used within the transaction or have all of these saved of their pockets (i.e. they’ve imported everybody else’s public keys and/or redeemScripts into their pockets) after which they’ll use createrawtransaction or fundrawtransaction to create the uncooked transaction.

createrawtransaction simply takes inputs and outputs which can be specified by the person and offers the ensuing transaction as is (so you could watch out about charges and alter). fundrawtransaction can select the inputs to make use of for you utilizing your pockets and it’ll deal with charges and alter outputs itself. Nonetheless fundrawtransaction must know the entire info essential to assemble the ultimate transaction (apart from the personal key, it may simply use a dummy signature) with a purpose to accurately estimate the transaction charges, which is why you could import the general public keys and scripts into your pockets.

After you have the uncooked transaction, you then ship it to every of the opposite folks concerned within the transaction. They then signal it utilizing signrawtransactionwithwallet (if the keys and scripts are of their pockets) or signrawtransactionwithkey (if their keys and scripts usually are not of their pockets). Most individuals will use signrawtransactionwithwallet. They then ship the consequence again to you the place you need to mix the entire signed transactions into the ultimate transaction utilizing combinerawtransaction. Then you’ll be able to broadcast it with sendrawtransaction.

As a substitute of sending the transactions out to everybody to signal on the identical time, you would ship to 1 one that indicators, who then sends to the following particular person and so forth. This might not require combinerawtransaction. The final particular person would signal after which use sendrawtransaction to broadcast.

This course of is form of cumbersome and requires that one particular person is aware of some (or all) of the knowledge for the inputs getting used (apart from the personal keys).


Since Bitcoin Core 0.17, you need to use the assorted *psbt RPCs to realize the identical factor. With 0.17, the circulate is pretty much like the the uncooked transaction circulate described earlier. You would need to have the entire info for creating the ultimate transaction in your pockets (besides for personal keys) in order that price estimation could be correctly finished for coin choice, or you could know which inputs to make use of. Both method, you employ walletcreatefundedpsbt and specify the inputs you need and the outputs you need. Bitcoin Core will then routinely select extra inputs if there may be not sufficient to cowl the output quantity and create a change output for you. As a result of it must additionally conver transaction charges, it must have the identical info that you just want for fundrawtransaction to have the ability to estimate charges for the inputs it chooses.

You then would ship the transaction to everybody else who would add their signatures (and different metadata) utilizing walletprocesspsbt. You can too do walletprocesspsbt first earlier than sending the transaction to everybody in order that numerous metadata wanted for signing (just like the UTXO that’s being spent for every enter) is added beforehand. As soon as signed, everybody would ship the transaction again to you and also you mix them collectively utilizing combinepsbts You then create the ultimate transaction for broadcast utilizing finalizepsbt and ship the consequence utilizing sendrawtransaction.

After all utilizing PSBTs you are able to do the identical factor described above the place every particular person sends the transaction to the following particular person to be signed as a substitute of sending again to you to be mixed.

Once more, this course of is form of cumbersome and requires that one particular person is aware of some (or all) of data for the inputs getting used (apart from the personal keys). However it’s barely much less prone to end in an error than the uncooked transaction technique. PSBTs additionally means that you can use different non-Bitcoin Core wallets that help PSBT, and you need to use this technique with wallets which aren’t related to the web or in any other case should not have the blockchain or the UTXOs which can be being spent within the transaction.


Nonetheless, Bitcoin Core 0.18 truly makes this complete course of lots simpler. Bitcoin Core 0.18 introduces a few new *psbt RPCs which make it in order that one particular person doesn’t have to know the entire inputs getting used and the entire info for every enter. The one caveat is that this technique assumes that every particular person has their very own outputs that they wish to create as a substitute of a number of folks pooling collectively their Bitcoin to make one giant output.

With 0.18, everybody would create their very own PSBT utilizing walletcreatefundedpsbt. They specify any of their very own inputs that they wish to use and all of their outputs. Any change outputs might be added, and extra inputs from the pockets might be added to cowl the output quantity and transaction price if not sufficient have been specified by the person. Since each person does this with their very own pockets, nobody particular person must know something about what the opposite customers have of their wallets.

Then every particular person would ship the PSBT to a delegated coordinator who makes use of joinpsbts to hitch each PSBT into one giant PSBT. This PSBT could have the entire inputs and outputs that every particular person needs to spend and create. So as a substitute of getting many particular person PSBTs with their very own inputs and outputs, there may be now one giant PSBT with everybody’s inputs and outputs.

This PSBT is then despatched again to every one that makes use of walletprocesspsbt to replace the PSBT and add their enter info to the PSBT and indicators it. Even when a person has an airgapped setup the place their personal keys are someplace that doesn’t have entry to the blockchain, they’ll replace the PSBT from an internet watching solely pockets and ship the PSBT to the offline machine to be signed.

As soon as everybody has signed the PSBT, it’s despatched again to the coordinator who makes use of combinepsbt to mix the entire signatures and enter info into the identical PSBT, then creates the ultimate community transaction utilizing finalizepsbt and broadcasts it utilizing sendrawtransaction.

Once more, this may be finished serially like the opposite strategies described earlier and thus omit the necessity for combinepsbt.

RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments