1
AFIK, UTXO of an address cannot be retrieved using bitcoin-core, without importing the address in the wallet.
- How are application in production able to get UTXO ?
- Does all the application use Indexed database like Insight or Abe to get UTXO ?
- Is there any way to get UTXO from bitcoin core without importing the address into the wallet?
Thanks, Does having address imported in the wallet suggested for production ?, What are the safety measure that has to be taken? – Tharun Prabakaran – 2019-11-14T07:38:12.997
Yes. You probably need to periodically import a batch of addresses into the wallet, as a production site, however that's more of a topic of software engeering. As for safety measure, if you are generating those addresses, it's recommended to use HD wallet so your private keys won't get exposed. – yyforyongyu – 2019-11-14T09:31:47.610
1Using an HD wallet does not prevent exposure of your private keys, especially if you are importing them into Bitcoin Core – Raghav Sood – 2019-11-14T09:33:56.443
1) Import addresses as watch-only; 2) Use an HD wallet, and save the master private key offline; 3) Construct raw transaction online, send it to offline signing. How's my private key exposed? – yyforyongyu – 2019-11-14T09:38:55.480