Advertisement
Guest User

Untitled

a guest
Jun 15th, 2019
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.88 KB | None | 0 0
  1. sendmany "" {"address":amount} ( minconf "comment" ["address",...] replaceable conf_target "estimate_mode" )
  2.  
  3. Send multiple times. Amounts are double-precision floating point numbers.
  4.  
  5. Arguments:
  6. 1. dummy (string, required) Must be set to "" for backwards compatibility.
  7. 2. amounts (json object, required) A json object with addresses and amounts
  8. {
  9. "address": amount, (numeric or string, required) The bitcoin address is the key, the numeric amount (can be string) in BTC is the value
  10. }
  11. 3. minconf (numeric, optional, default=1) Only use the balance confirmed at least this many times.
  12. 4. comment (string, optional) A comment
  13. 5. subtractfeefrom (json array, optional) A json array with addresses.
  14. The fee will be equally deducted from the amount of each selected address.
  15. Those recipients will receive less bitcoins than you enter in their corresponding amount field.
  16. If no addresses are specified here, the sender pays the fee.
  17. [
  18. "address", (string) Subtract fee from this address
  19. ...
  20. ]
  21. 6. replaceable (boolean, optional, default=fallback to wallet's default) Allow this transaction to be replaced by a transaction with higher fees via BIP 125
  22. 7. conf_target (numeric, optional, default=fallback to wallet's default) Confirmation target (in blocks)
  23. 8. estimate_mode (string, optional, default=UNSET) The fee estimate mode, must be one of:
  24. "UNSET"
  25. "ECONOMICAL"
  26. "CONSERVATIVE"
  27.  
  28. Result:
  29. "txid" (string) The transaction id for the send. Only 1 transaction is created regardless of
  30. the number of addresses.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement