#include <string>
#include <vector>
Go to the source code of this file.
|
| CScript | ParseScript (std::string s) |
| |
| std::string | ScriptToAsmStr (const CScript &script, const bool fAttemptSighashDecode=false) |
| | Create the assembly string representation of a CScript object. More...
|
| |
| bool | DecodeHexTx (CMutableTransaction &tx, const std::string &strHexTx) |
| |
| bool | DecodeHexBlk (CBlock &, const std::string &strHexBlk) |
| |
| uint256 | ParseHashUV (const UniValue &v, const std::string &strName) |
| |
| uint256 | ParseHashStr (const std::string &, const std::string &strName) |
| |
| bool | ParseHashStr (const std::string &strReq, uint256 &v) |
| |
| std::vector< unsigned char > | ParseHexUV (const UniValue &v, const std::string &strName) |
| |
| std::string | FormatScript (const CScript &script) |
| |
| std::string | EncodeHexTx (const CTransaction &tx) |
| |
| void | ScriptPubKeyToUniv (const CScript &scriptPubKey, UniValue &out, bool fIncludeHex) |
| |
| void | TxToUniv (const CTransaction &tx, const uint256 &hashBlock, UniValue &entry) |
| |
◆ DecodeHexBlk()
| bool DecodeHexBlk |
( |
CBlock & |
block, |
|
|
const std::string & |
strHexBlk |
|
) |
| |
◆ DecodeHexTx()
◆ EncodeHexTx()
◆ FormatScript()
| std::string FormatScript |
( |
const CScript & |
script | ) |
|
◆ ParseHashStr() [1/2]
| uint256 ParseHashStr |
( |
const std::string & |
strHex, |
|
|
const std::string & |
strName |
|
) |
| |
◆ ParseHashStr() [2/2]
| bool ParseHashStr |
( |
const std::string & |
strReq, |
|
|
uint256 & |
v |
|
) |
| |
◆ ParseHashUV()
◆ ParseHexUV()
| std::vector<unsigned char> ParseHexUV |
( |
const UniValue & |
v, |
|
|
const std::string & |
strName |
|
) |
| |
◆ ParseScript()
| CScript ParseScript |
( |
std::string |
s | ) |
|
◆ ScriptPubKeyToUniv()
| void ScriptPubKeyToUniv |
( |
const CScript & |
scriptPubKey, |
|
|
UniValue & |
out, |
|
|
bool |
fIncludeHex |
|
) |
| |
◆ ScriptToAsmStr()
| std::string ScriptToAsmStr |
( |
const CScript & |
script, |
|
|
const bool |
fAttemptSighashDecode |
|
) |
| |
Create the assembly string representation of a CScript object.
- Parameters
-
| [in] | script | CScript object to convert into the asm string representation. |
| [in] | fAttemptSighashDecode | Whether to attempt to decode sighash types on data within the script that matches the format of a signature. Only pass true for scripts you believe could contain signatures. For example, pass false, or omit the this argument (defaults to false), for scriptPubKeys. |
Definition at line 72 of file core_write.cpp.
◆ TxToUniv()