0

I want to be able to create many Bitcoin addresses and transfer coins from those addresses to other addresses. It is better if it is available on a Linux server, through the command line. What libraries or programs might work for this?

Murch
  • 71,155
  • 33
  • 180
  • 600
  • It might be relevant what level of activity you're expecting, as very high activity could exclude some solutions that would be good choices for lower volume. – Murch Sep 19 '22 at 14:33

1 Answers1

0

Create multiple address: https://bitcoin.stackexchange.com/a/107735/133407

You can send coin to those addresses using signet faucet: https://signet.bc-2.jp/

Create a transaction to transfer coins:

$ bitcoin-cli createpsbt "[{\"txid\":\"myid\",\"vout\":0}]" "[{\"<address>\":\"<amount>\"}]" 

You would have to finalize the PSBT using finalizepsbt after signing

Broadcast it using:

$ bitcoin-cli sendrawtransaction "signedhex"