Author

Topic: Is there a way to import coins into a Bitcoin Core wallet? (Read 156 times)

legendary
Activity: 2534
Merit: 6080
Self-proclaimed Genius
-snip-
Is there an RPC to add a specific transaction to a wallet even if its outputs do not belong to the wallet ?
AFAIK, there's none.

You can use the command suggested by hosseinimr93 to import a private key or importaddress to include its associated transaction(s) to the wallet.
If you're planning to use this method and there's more than one address to be imported,
I'd suggest to use "false" 'rescan' flag for the first few (so it wont scan right away) and "true" on the last.
legendary
Activity: 3374
Merit: 3095
BTC price road to $80k
Are you talking about importing UTXO to an offline bitcoin core wallet? or online Bitcoin core wallet with prune enabled?

I can't find on Google if you can able to import UTXO in the offline wallet so that you can make a sign transaction without importing raw transaction.

Why don't you just make a raw transaction on https://coinb.in/#txoutputs and sign it with your offline wallet?
It would be easier than importing UTXO to offline wallet?
legendary
Activity: 2380
Merit: 5213
What I'm looking for is a way to import a coin (UTXO) into the wallet so that it can be considered when calculating the inputs for a transaction.
You can use the following command and import the private key of the address holding the UTXO.

Code:
importprivkey "YourPrivateKey"

Note that you can use coin control feature to specify which UTXOs you want to use for your transaction.
newbie
Activity: 6
Merit: 18
Thanks. But creating a transaction or PSBT does not add it to the wallet (specifically to the `mapWallet` collection).
What I'm looking for is a way to import a coin (UTXO) into the wallet so that it can be considered when calculating the inputs for a transaction.

Is there an RPC to add a specific transaction to a wallet even if its outputs do not belong to the wallet ?
legendary
Activity: 2534
Merit: 6080
Self-proclaimed Genius
Bitcoin Core has RPC commands: createrawtransaction to manually create a transaction and converttopsbt to convert it into PSBT.
Neither require the UTXO set nor blockchain to use.

Reference: developer.bitcoin.org/reference/rpc/index.html
newbie
Activity: 6
Merit: 18
Is there a way to import coins (UTXOs) into a Bitcoin Core wallet?

And can these coins also be used to build transactions / PSBTs (to be partially signed by the original / hot wallet)?
Jump to: