addmultisigaddress nrequired ["key",...] ( "label" "address_type" )
Add an nrequired-to-sign multisignature address to the wallet. Requires a new wallet backup.
Each key is a Bitcoin address or hex-encoded public key.
This functionality is only intended for use with non-watchonly addresses.
See importaddress for watchonly p2sh address support.
If 'label' is specified, assign address to that label.
Type: numeric, required
The number of required signatures out of the n keys or addresses.
Type: json array, required
The bitcoin addresses or hex-encoded public keys
[ "key", (string) bitcoin address or hex-encoded public key ... ]
Type: string, optional
A label to assign the addresses to.
Type: string, optional, default=set by -addresstype
The address type to use. Options are "legacy", "p2sh-segwit", and "bech32".
{ (json object) "address" : "str", (string) The value of the new multisig address "redeemScript" : "hex", (string) The string value of the hex-encoded redemption script "descriptor" : "str" (string) The descriptor for this multisig }
Add a multisig address from 2 addresses:
digibyte-cli addmultisigaddress 2 "[\"SXXgn4BX1wTXrCxAtwtiB2r3DPg7nnhjYA\",\"SdUzSYHyKdc2kZtM3DBkQeqc5MdeDXLjFi\"]"
As a JSON-RPC call:
curl --user myusername --data-binary '{"jsonrpc": "1.0", "id": "curltest", "method": "addmultisigaddress", "params": [2, "[\"SXXgn4BX1wTXrCxAtwtiB2r3DPg7nnhjYA\",\"SdUzSYHyKdc2kZtM3DBkQeqc5MdeDXLjFi\"]"]}' -H 'content-type: text/plain;' http://127.0.0.1:14022/