The purpose of this library is to make the verification functionality that is critical to Devcoin's consensus available to other applications, e.g. to language bindings.
The interface is defined in the C header devcoinconsensus.h
located in src/script/devcoinconsensus.h
.
devcoinconsensus_version
returns an unsigned int
with the API version (currently 1
).
devcoinconsensus_verify_script
returns an int
with the status of the verification. It will be 1
if the input script correctly spends the previous output scriptPubKey
.
const unsigned char *scriptPubKey
- The previous output script that encumbers spending.unsigned int scriptPubKeyLen
- The number of bytes for thescriptPubKey
.const unsigned char *txTo
- The transaction with the input that is spending the previous output.unsigned int txToLen
- The number of bytes for thetxTo
.unsigned int nIn
- The index of the input intxTo
that spends thescriptPubKey
.unsigned int flags
- The script validation flags (see below).devcoinconsensus_error* err
- Will have the error/success code for the operation (see below).
devcoinconsensus_SCRIPT_FLAGS_VERIFY_NONE
devcoinconsensus_SCRIPT_FLAGS_VERIFY_P2SH
- Evaluate P2SH (BIP16) subscriptsdevcoinconsensus_SCRIPT_FLAGS_VERIFY_DERSIG
- Enforce strict DER (BIP66) compliancedevcoinconsensus_SCRIPT_FLAGS_VERIFY_NULLDUMMY
- Enforce NULLDUMMY (BIP147)devcoinconsensus_SCRIPT_FLAGS_VERIFY_CHECKLOCKTIMEVERIFY
- Enable CHECKLOCKTIMEVERIFY (BIP65)devcoinconsensus_SCRIPT_FLAGS_VERIFY_CHECKSEQUENCEVERIFY
- Enable CHECKSEQUENCEVERIFY (BIP112)devcoinconsensus_SCRIPT_FLAGS_VERIFY_WITNESS
- Enable WITNESS (BIP141)
devcoinconsensus_ERR_OK
- No errors with input parameters (see the return value ofdevcoinconsensus_verify_script
for the verification status)devcoinconsensus_ERR_TX_INDEX
- An invalid index fortxTo
devcoinconsensus_ERR_TX_SIZE_MISMATCH
-txToLen
did not match with the size oftxTo
devcoinconsensus_ERR_DESERIALIZE
- An error deserializingtxTo
devcoinconsensus_ERR_AMOUNT_REQUIRED
- Input amount is required if WITNESS is useddevcoinconsensus_ERR_INVALID_FLAGS
- Script verificationflags
are invalid (i.e. not part of the libconsensus interface)
- NDevcoin (.NET Bindings)
- node-libdevcoinconsensus (Node.js Bindings)
- java-libdevcoinconsensus (Java Bindings)
- devcoinconsensus-php (PHP Bindings)