Bitcoin Core 28.99.0
P2P Digital Currency
outputtype.cpp
Go to the documentation of this file.
1// Copyright (c) 2009-2010 Satoshi Nakamoto
2// Copyright (c) 2009-2022 The Bitcoin Core developers
3// Distributed under the MIT software license, see the accompanying
4// file COPYING or http://www.opensource.org/licenses/mit-license.php.
5
6#include <outputtype.h>
7
8#include <pubkey.h>
9#include <script/script.h>
10#include <script/sign.h>
12#include <util/vector.h>
13
14#include <assert.h>
15#include <optional>
16#include <string>
17
18static const std::string OUTPUT_TYPE_STRING_LEGACY = "legacy";
19static const std::string OUTPUT_TYPE_STRING_P2SH_SEGWIT = "p2sh-segwit";
20static const std::string OUTPUT_TYPE_STRING_BECH32 = "bech32";
21static const std::string OUTPUT_TYPE_STRING_BECH32M = "bech32m";
22static const std::string OUTPUT_TYPE_STRING_UNKNOWN = "unknown";
23
24std::optional<OutputType> ParseOutputType(const std::string& type)
25{
26 if (type == OUTPUT_TYPE_STRING_LEGACY) {
27 return OutputType::LEGACY;
28 } else if (type == OUTPUT_TYPE_STRING_P2SH_SEGWIT) {
30 } else if (type == OUTPUT_TYPE_STRING_BECH32) {
31 return OutputType::BECH32;
32 } else if (type == OUTPUT_TYPE_STRING_BECH32M) {
34 }
35 return std::nullopt;
36}
37
38const std::string& FormatOutputType(OutputType type)
39{
40 switch (type) {
46 } // no default case, so the compiler can warn about missing cases
47 assert(false);
48}
49
51{
52 switch (type) {
53 case OutputType::LEGACY: return PKHash(key);
55 case OutputType::BECH32: {
56 if (!key.IsCompressed()) return PKHash(key);
57 CTxDestination witdest = WitnessV0KeyHash(key);
58 CScript witprog = GetScriptForDestination(witdest);
59 if (type == OutputType::P2SH_SEGWIT) {
60 return ScriptHash(witprog);
61 } else {
62 return witdest;
63 }
64 }
66 case OutputType::UNKNOWN: {} // This function should never be used with BECH32M or UNKNOWN, so let it assert
67 } // no default case, so the compiler can warn about missing cases
68 assert(false);
69}
70
71std::vector<CTxDestination> GetAllDestinationsForKey(const CPubKey& key)
72{
73 PKHash keyid(key);
74 CTxDestination p2pkh{keyid};
75 if (key.IsCompressed()) {
76 CTxDestination segwit = WitnessV0KeyHash(keyid);
78 return Vector(std::move(p2pkh), std::move(p2sh), std::move(segwit));
79 } else {
80 return Vector(std::move(p2pkh));
81 }
82}
83
85{
86 // Add script to keystore
87 keystore.scripts.emplace(CScriptID(script), script);
88
89 switch (type) {
91 return ScriptHash(script);
93 case OutputType::BECH32: {
95 CScript witprog = GetScriptForDestination(witdest);
96 // Add the redeemscript, so that P2WSH and P2SH-P2WSH outputs are recognized as ours.
97 keystore.scripts.emplace(CScriptID(witprog), witprog);
98 if (type == OutputType::BECH32) {
99 return witdest;
100 } else {
101 return ScriptHash(witprog);
102 }
103 }
105 case OutputType::UNKNOWN: {} // This function should not be used for BECH32M or UNKNOWN, so let it assert
106 } // no default case, so the compiler can warn about missing cases
107 assert(false);
108}
109
110std::optional<OutputType> OutputTypeFromDestination(const CTxDestination& dest) {
111 if (std::holds_alternative<PKHash>(dest) ||
112 std::holds_alternative<ScriptHash>(dest)) {
113 return OutputType::LEGACY;
114 }
115 if (std::holds_alternative<WitnessV0KeyHash>(dest) ||
116 std::holds_alternative<WitnessV0ScriptHash>(dest)) {
117 return OutputType::BECH32;
118 }
119 if (std::holds_alternative<WitnessV1Taproot>(dest) ||
120 std::holds_alternative<WitnessUnknown>(dest)) {
121 return OutputType::BECH32M;
122 }
123 return std::nullopt;
124}
CScript GetScriptForDestination(const CTxDestination &dest)
Generate a Bitcoin scriptPubKey for the given CTxDestination.
std::variant< CNoDestination, PubKeyDestination, PKHash, ScriptHash, WitnessV0ScriptHash, WitnessV0KeyHash, WitnessV1Taproot, PayToAnchor, WitnessUnknown > CTxDestination
A txout script categorized into standard templates.
Definition: addresstype.h:140
An encapsulated public key.
Definition: pubkey.h:34
bool IsCompressed() const
Check whether this is a compressed public key.
Definition: pubkey.h:204
Serialized script, used inside transaction inputs and outputs.
Definition: script.h:415
A reference to a CScript: the Hash160 of its serialization.
Definition: script.h:602
static const std::string OUTPUT_TYPE_STRING_BECH32
Definition: outputtype.cpp:20
CTxDestination GetDestinationForKey(const CPubKey &key, OutputType type)
Get a destination of the requested type (if possible) to the specified key.
Definition: outputtype.cpp:50
CTxDestination AddAndGetDestinationForScript(FlatSigningProvider &keystore, const CScript &script, OutputType type)
Get a destination of the requested type (if possible) to the specified script.
Definition: outputtype.cpp:84
static const std::string OUTPUT_TYPE_STRING_BECH32M
Definition: outputtype.cpp:21
std::optional< OutputType > OutputTypeFromDestination(const CTxDestination &dest)
Get the OutputType for a CTxDestination.
Definition: outputtype.cpp:110
static const std::string OUTPUT_TYPE_STRING_LEGACY
Definition: outputtype.cpp:18
std::vector< CTxDestination > GetAllDestinationsForKey(const CPubKey &key)
Get all destinations (potentially) supported by the wallet for the given key.
Definition: outputtype.cpp:71
static const std::string OUTPUT_TYPE_STRING_P2SH_SEGWIT
Definition: outputtype.cpp:19
std::optional< OutputType > ParseOutputType(const std::string &type)
Definition: outputtype.cpp:24
const std::string & FormatOutputType(OutputType type)
Definition: outputtype.cpp:38
static const std::string OUTPUT_TYPE_STRING_UNKNOWN
Definition: outputtype.cpp:22
OutputType
Definition: outputtype.h:17
std::map< CScriptID, CScript > scripts
assert(!tx.IsCoinBase())
std::vector< typename std::common_type< Args... >::type > Vector(Args &&... args)
Construct a vector with the specified elements.
Definition: vector.h:23