2014-08-23 03:35:51 +02:00
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
2016-12-31 19:01:21 +01:00
|
|
|
// Copyright (c) 2009-2016 The Bitcoin Core developers
|
2014-09-09 10:00:42 +02:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
2014-08-23 03:35:51 +02:00
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2014-11-03 16:16:40 +01:00
|
|
|
#ifndef BITCOIN_SCRIPT_STANDARD_H
|
|
|
|
#define BITCOIN_SCRIPT_STANDARD_H
|
2014-08-23 03:35:51 +02:00
|
|
|
|
|
|
|
#include "script/interpreter.h"
|
2014-11-04 14:34:04 +01:00
|
|
|
#include "uint256.h"
|
2014-08-23 03:35:51 +02:00
|
|
|
|
2014-09-25 05:32:36 +02:00
|
|
|
#include <boost/variant.hpp>
|
|
|
|
|
2014-08-23 03:35:51 +02:00
|
|
|
#include <stdint.h>
|
|
|
|
|
2015-11-09 19:16:38 +01:00
|
|
|
static const bool DEFAULT_ACCEPT_DATACARRIER = true;
|
|
|
|
|
2014-10-28 22:47:18 +01:00
|
|
|
class CKeyID;
|
2014-11-04 14:34:04 +01:00
|
|
|
class CScript;
|
2014-08-23 03:35:51 +02:00
|
|
|
|
2014-09-25 04:24:46 +02:00
|
|
|
/** A reference to a CScript: the Hash160 of its serialization (see script.h) */
|
|
|
|
class CScriptID : public uint160
|
|
|
|
{
|
|
|
|
public:
|
2014-12-15 09:11:16 +01:00
|
|
|
CScriptID() : uint160() {}
|
2014-09-25 04:24:46 +02:00
|
|
|
CScriptID(const CScript& in);
|
|
|
|
CScriptID(const uint160& in) : uint160(in) {}
|
|
|
|
};
|
|
|
|
|
2016-04-03 11:49:36 +02:00
|
|
|
static const unsigned int MAX_OP_RETURN_RELAY = 83; //!< bytes (+1 for OP_RETURN, +2 for the pushdata opcodes)
|
2015-06-27 21:21:41 +02:00
|
|
|
extern bool fAcceptDatacarrier;
|
2014-10-11 01:55:14 +02:00
|
|
|
extern unsigned nMaxDatacarrierBytes;
|
2014-08-23 03:35:51 +02:00
|
|
|
|
2014-11-10 07:40:01 +01:00
|
|
|
/**
|
|
|
|
* Mandatory script verification flags that all new blocks must comply with for
|
|
|
|
* them to be valid. (but old blocks may not comply with) Currently just P2SH,
|
|
|
|
* but in the future other flags may be added, such as a soft-fork to enforce
|
|
|
|
* strict DER encoding.
|
|
|
|
*
|
|
|
|
* Failing one of these tests may trigger a DoS ban - see CheckInputs() for
|
|
|
|
* details.
|
|
|
|
*/
|
2014-08-23 03:35:51 +02:00
|
|
|
static const unsigned int MANDATORY_SCRIPT_VERIFY_FLAGS = SCRIPT_VERIFY_P2SH;
|
|
|
|
|
|
|
|
enum txnouttype
|
|
|
|
{
|
|
|
|
TX_NONSTANDARD,
|
|
|
|
// 'standard' transaction types:
|
|
|
|
TX_PUBKEY,
|
|
|
|
TX_PUBKEYHASH,
|
|
|
|
TX_SCRIPTHASH,
|
|
|
|
TX_MULTISIG,
|
|
|
|
TX_NULL_DATA,
|
2016-03-31 14:54:58 +02:00
|
|
|
TX_WITNESS_V0_SCRIPTHASH,
|
|
|
|
TX_WITNESS_V0_KEYHASH,
|
2014-08-23 03:35:51 +02:00
|
|
|
};
|
|
|
|
|
2014-09-11 19:15:29 +02:00
|
|
|
class CNoDestination {
|
|
|
|
public:
|
|
|
|
friend bool operator==(const CNoDestination &a, const CNoDestination &b) { return true; }
|
|
|
|
friend bool operator<(const CNoDestination &a, const CNoDestination &b) { return true; }
|
|
|
|
};
|
|
|
|
|
2014-11-10 07:40:01 +01:00
|
|
|
/**
|
|
|
|
* A txout script template with a specific destination. It is either:
|
2014-09-11 19:15:29 +02:00
|
|
|
* * CNoDestination: no destination set
|
|
|
|
* * CKeyID: TX_PUBKEYHASH destination
|
|
|
|
* * CScriptID: TX_SCRIPTHASH destination
|
|
|
|
* A CTxDestination is the internal data type encoded in a CBitcoinAddress
|
|
|
|
*/
|
|
|
|
typedef boost::variant<CNoDestination, CKeyID, CScriptID> CTxDestination;
|
|
|
|
|
2014-08-23 03:35:51 +02:00
|
|
|
const char* GetTxnOutputType(txnouttype t);
|
|
|
|
|
|
|
|
bool Solver(const CScript& scriptPubKey, txnouttype& typeRet, std::vector<std::vector<unsigned char> >& vSolutionsRet);
|
|
|
|
bool ExtractDestination(const CScript& scriptPubKey, CTxDestination& addressRet);
|
|
|
|
bool ExtractDestinations(const CScript& scriptPubKey, txnouttype& typeRet, std::vector<CTxDestination>& addressRet, int& nRequiredRet);
|
|
|
|
|
2014-09-11 19:15:29 +02:00
|
|
|
CScript GetScriptForDestination(const CTxDestination& dest);
|
2015-06-10 09:03:08 +02:00
|
|
|
CScript GetScriptForRawPubKey(const CPubKey& pubkey);
|
2014-09-11 19:15:29 +02:00
|
|
|
CScript GetScriptForMultisig(int nRequired, const std::vector<CPubKey>& keys);
|
2016-03-31 14:54:58 +02:00
|
|
|
CScript GetScriptForWitness(const CScript& redeemscript);
|
2014-09-11 19:15:29 +02:00
|
|
|
|
2014-11-03 16:16:40 +01:00
|
|
|
#endif // BITCOIN_SCRIPT_STANDARD_H
|