1

What is the cli command to send some coins to 1 address and the command to send to multiple addresses by paying a fee once?

Patoshi パトシ
  • 4,540
  • 3
  • 26
  • 66

1 Answers1

0

transfer should do it

transfer [< priority>] [< ring_size>] < address> < amount> [< payment_id>] - Transfer < amount> to < address>. < priority> is the priority of the transaction. The higher the priority, the higher the fee of the transaction. Valid values in priority order (from lowest to highest) are: unimportant, normal, elevated, priority. If omitted, the default value (see the command "set priority") is used. < ring_size> is the number of inputs to include for untraceability. Multiple payments can be made at once by adding < address_2> < amount_2> etcetera (before the payment ID, if it's included)

you can transfer to multiple addresses but you can transfer using only one payment_id per transaction ie:

transfer <address_1> <amount_1> <address_2> <amount_2> <address_3> <amount_3> <payment_id>
Pedro Gaspar
  • 635
  • 3
  • 7