sendmany "fromaccount" {"address":amount,...} ( minconf "comment" )
-8 addresses must be unique. No duplicates.
Send multiple times. Amounts are double-precision floating point numbers.
"fromaccount"Β (string, required)
The account to send the funds from, can be "" for the default account
"amounts" (string, required)
A json object with addresses and amounts{"address":amount (numeric) The smileycoin address is the key, the numeric amount in btc is the value,...}
minconf (numeric, optional, default=1)
Only use the balance confirmed at least this many times.
"comment" (string, optional) A comment
"transactionid" (string) The transaction id for the send. Only 1 transaction is created regardless of the number of addresses.
Send two amounts to two different addresses:
smileycoin-cli sendmany "tabby" "{\"1D1ZrZNe3JUo7ZycKEYQQiQAWd9y54F4XZ\":0.01,\"1353tsE8YMTA4EuV7dgUXGjNFf9KpVvKHz\":0.02}"
Send two amounts to two different addresses setting the confirmation and comment:
smileycoin-cli sendmany "tabby" "{\"1D1ZrZNe3JUo7ZycKEYQQiQAWd9y54F4XZ\":0.01,\"1353tsE8YMTA4EuV7dgUXGjNFf9KpVvKHz\":0.02}" 6 "testing"
As a json rpc call
curl --user myusername --data-binary '{"jsonrpc": "1.0", "id":"curltest", "method": "sendmany", "params": ["tabby", "{\"1D1ZrZNe3JUo7ZycKEYQQiQAWd9y54F4XZ\":0.01,\"1353tsE8YMTA4EuV7dgUXGjNFf9KpVvKHz\":0.02}", 6, "testing"] }' -H 'content-type: text/plain;' http://127.0.0.1:9332/