Bitcoin Core 28.99.0
P2P Digital Currency
|
#include <addresstype.h>
#include <script/signingprovider.h>
#include <array>
#include <optional>
#include <string>
#include <vector>
Go to the source code of this file.
Enumerations | |
enum class | OutputType { LEGACY , P2SH_SEGWIT , BECH32 , BECH32M , UNKNOWN } |
Functions | |
std::optional< OutputType > | ParseOutputType (const std::string &str) |
const std::string & | FormatOutputType (OutputType type) |
CTxDestination | GetDestinationForKey (const CPubKey &key, OutputType) |
Get a destination of the requested type (if possible) to the specified key. More... | |
std::vector< CTxDestination > | GetAllDestinationsForKey (const CPubKey &key) |
Get all destinations (potentially) supported by the wallet for the given key. More... | |
CTxDestination | AddAndGetDestinationForScript (FlatSigningProvider &keystore, const CScript &script, OutputType) |
Get a destination of the requested type (if possible) to the specified script. More... | |
std::optional< OutputType > | OutputTypeFromDestination (const CTxDestination &dest) |
Get the OutputType for a CTxDestination. More... | |
Variables | |
static constexpr auto | OUTPUT_TYPES |
|
strong |
Enumerator | |
---|---|
LEGACY | |
P2SH_SEGWIT | |
BECH32 | |
BECH32M | |
UNKNOWN |
Definition at line 17 of file outputtype.h.
CTxDestination AddAndGetDestinationForScript | ( | FlatSigningProvider & | keystore, |
const CScript & | script, | ||
OutputType | type | ||
) |
Get a destination of the requested type (if possible) to the specified script.
This function will automatically add the script (and any other necessary scripts) to the keystore.
Definition at line 84 of file outputtype.cpp.
const std::string & FormatOutputType | ( | OutputType | type | ) |
Definition at line 38 of file outputtype.cpp.
std::vector< CTxDestination > GetAllDestinationsForKey | ( | const CPubKey & | key | ) |
Get all destinations (potentially) supported by the wallet for the given key.
Definition at line 71 of file outputtype.cpp.
CTxDestination GetDestinationForKey | ( | const CPubKey & | key, |
OutputType | type | ||
) |
Get a destination of the requested type (if possible) to the specified key.
The caller must make sure LearnRelatedScripts has been called beforehand.
Definition at line 50 of file outputtype.cpp.
std::optional< OutputType > OutputTypeFromDestination | ( | const CTxDestination & | dest | ) |
Get the OutputType for a CTxDestination.
Definition at line 110 of file outputtype.cpp.
std::optional< OutputType > ParseOutputType | ( | const std::string & | str | ) |
|
staticconstexpr |
Definition at line 25 of file outputtype.h.