This guide explains Bitcoin Core createmultisig RPC in plain English. It shows what the command does, what its result means and what it cannot prove.
TL;DR
- What it is: Bitcoin Core 0.16.0 createmultisig constructed a multisignature address and redeem script from an n-required threshold and a list of hex-encoded public keys. Unlike addmultisigaddress, the utility call did not register the script in a wallet.
- Why it matters: createmultisig builds a script but does not build a custody system. Operators must verify threshold and key order, arrange monitoring, preserve public recovery data and prove independent signer restoration before accepting funds.
- Current position: Bitcoin Core 0.16.0 createmultisig constructed a multisignature address and redeem script from an n-required threshold and a list of hex-encoded public keys.
Bitcoin Core createmultisig RPC in simple English
Bitcoin Core createmultisig RPC: createmultisig returns address and redeemScript but does not make a wallet watch or spend the output. Addmultisigaddress registers wallet metadata and, in 0.16, introduced address-type control.
Simple example
A miner is checking Bitcoin Core createmultisig RPC. If using BIP 67 sorted keys as an application convention, sort deliberately and document it. Createmultisig does not make every input ordering interchangeable.
Key terms in plain English
- BIP:
- Bitcoin Improvement Proposal: a document describing a proposed rule, standard or process. Its status must be checked separately.
- Bitcoin Core:
- Widely used software that validates Bitcoin and can provide wallet, network and operator tools.
- RPC:
- A command that software sends to a node to request information or a local action.
- Node:
- A computer running Bitcoin software that checks data and communicates with other peers.
Threshold contract
nrequired specifies how many signatures are needed from the ordered key list. Validate it against the number of unique compressed public keys and operational policy. A one-of-many script offers different theft and availability properties from a two-of-three script. The threshold must match the written custody design, not simply an RPC example.
Public keys, not secrets
Supply hex-encoded public keys only. Never send private keys, seeds or private extended keys to the node or a construction service. Validate curve points and network-independent derivation records, then identify which independent signer controls each key without exposing its secret. Duplicate keys can undermine the intended separation of custody.
Ordering and script identity
Key order affects the redeem script and derived address. Preserve the exact ordered list and decode the returned script with an independent implementation. If using BIP 67 sorted keys as an application convention, sort deliberately and document it; createmultisig does not make every input ordering interchangeable.
Stateless versus wallet registration
createmultisig returns address and redeemScript but does not make a wallet watch or spend the output. Addmultisigaddress registers wallet metadata and, in 0.16, introduced address-type control. For offline construction, import the exact script into monitoring infrastructure under a tested watch-only procedure before any deposit.
Historical deprecation boundary
The 0.16 help deprecated using addresses as inputs and required a compatibility option for that path, while documenting public keys as the supported list. Do not model modern descriptor output or later address-type parameters as if they existed in this historical call. Version-pin clients and parse the expected object shape.
Recovery package
Retain threshold, ordered public keys, redeem script, address, network, derivation references and signer-recovery instructions. Keep this public recovery metadata separate from signer secrets. At least two reviewers should reconstruct the address independently and prove the required signer combination can authorise a spend after a total node and wallet loss.
How specialists test it
Operators test the command on a non-production node first. They check a normal reply, an invalid request, a timeout and a restart. This shows what the response means and prevents one local result from being mistaken for a network-wide outcome.
Frequently asked questions
What is the main point of Bitcoin Core createmultisig RPC?
Bitcoin Core createmultisig RPC: createmultisig returns address and redeemScript but does not make a wallet watch or spend the output.
For Bitcoin Core createmultisig RPC, what should a beginner know about threshold contract?
nrequired specifies how many signatures are needed from the ordered key list.
For Bitcoin Core createmultisig RPC, what should a beginner know about public keys, not secrets?
Supply hex-encoded public keys only. Never send private keys, seeds or private extended keys to the node or a construction service.
For Bitcoin Core createmultisig RPC, what should a beginner know about ordering and script identity?
Key order affects the redeem script and derived address. Preserve the exact ordered list and decode the returned script with an independent implementation.
Conclusion
createmultisig builds a script but does not build a custody system. Operators must verify threshold and key order, arrange monitoring, preserve public recovery data and prove independent signer restoration before accepting funds.
Primary sources
Check the current specification status and the documentation for the exact implementation you operate before moving production funds or changing a mining node.
Join the ASIC Mining Discussion
Members can read and join the discussion
Log in to read comments from other miners. Create a free account if you would like to ask a question or share your experience.
Membership helps us protect the discussion from spam and keep answers useful.