addmultisigaddress nrequired ["key",...] ( "account" )
Add a nrequired-to-sign multisignature address to the wallet.
Each key is a Smileycoin address or hex-encoded public key.
If 'account' is specified, assign address to that account.
nrequired (numeric, required)
The number of required signatures out of the n keys or addresses.
"keysobject" (string, required)
A json array of smileycoin addresses or hex-encoded public keys
["address"...,] (string) smileycoin address or hex-encoded public key
"account" (string, optional)
An account to assign the addresses to.
"smileycoinaddress"Β (string) A smileycoin address associated with the keys.
Add a multisig address from 2 addresses
smileycoin-cli addmultisigaddress 2 "[\"16sSauSf5pF2UkUwvKGq4qjNRzBZYqgEL5\",\"171sgjn4YtPu27adkKGrdDwzRTxnRkBfKV\"]"
As json rpc call
curl --user myusername --data-binary '{"jsonrpc": "1.0", "id":"curltest", "method": "addmultisigaddress", "params": [2, "[\"16sSauSf5pF2UkUwvKGq4qjNRzBZYqgEL5\",\"171sgjn4YtPu27adkKGrdDwzRTxnRkBfKV\"]"] }' -H 'content-type: text/plain;' http://127.0.0.1:9332/