2015-07-13 18:22:55 +02:00
Shared Libraries
================
2017-04-15 09:29:09 +02:00
## dashconsensus
2015-07-13 18:22:55 +02:00
2017-04-15 09:29:09 +02:00
The purpose of this library is to make the verification functionality that is critical to Dash's consensus available to other applications, e.g. to language bindings.
2015-07-13 18:22:55 +02:00
### API
2017-04-15 09:29:09 +02:00
The interface is defined in the C header `dashconsensus.h` located in `src/script/dashconsensus.h` .
2015-07-13 18:22:55 +02:00
#### Version
2017-04-15 09:29:09 +02:00
`dashconsensus_version` returns an `unsigned int` with the the API version *(currently at an experimental `0`)* .
2015-07-13 18:22:55 +02:00
#### Script Validation
2017-04-15 09:29:09 +02:00
`dashconsensus_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` .
2015-07-13 18:22:55 +02:00
##### Parameters
- `const unsigned char *scriptPubKey` - The previous output script that encumbers spending.
- `unsigned int scriptPubKeyLen` - The number of bytes for the `scriptPubKey` .
- `const unsigned char *txTo` - The transaction with the input that is spending the previous output.
- `unsigned int txToLen` - The number of bytes for the `txTo` .
- `unsigned int nIn` - The index of the input in `txTo` that spends the `scriptPubKey` .
- `unsigned int flags` - The script validation flags *(see below)* .
2017-04-15 09:29:09 +02:00
- `dashconsensus_error* err` - Will have the error/success code for the operation *(see below)* .
2015-07-13 18:22:55 +02:00
##### Script Flags
2017-04-15 09:29:09 +02:00
- `dashconsensus_SCRIPT_FLAGS_VERIFY_NONE`
- `dashconsensus_SCRIPT_FLAGS_VERIFY_P2SH` - Evaluate P2SH ([BIP16](https://github.com/bitcoin/bips/blob/master/bip-0016.mediawiki)) subscripts
- `dashconsensus_SCRIPT_FLAGS_VERIFY_DERSIG` - Enforce strict DER ([BIP66](https://github.com/bitcoin/bips/blob/master/bip-0066.mediawiki)) compliance
2015-07-13 18:22:55 +02:00
##### Errors
2017-04-15 09:29:09 +02:00
- `dashconsensus_ERR_OK` - No errors with input parameters *(see the return value of `dashconsensus_verify_script` for the verification status)*
- `dashconsensus_ERR_TX_INDEX` - An invalid index for `txTo`
- `dashconsensus_ERR_TX_SIZE_MISMATCH` - `txToLen` did not match with the size of `txTo`
- `dashconsensus_ERR_DESERIALIZE` - An error deserializing `txTo`
2015-07-13 18:22:55 +02:00
### Example Implementations
2015-07-15 14:40:18 +02:00
- [NBitcoin ](https://github.com/NicolasDorier/NBitcoin/blob/master/NBitcoin/Script.cs#L814 ) (.NET Bindings)
2015-07-13 18:22:55 +02:00
- [node-libbitcoinconsensus ](https://github.com/bitpay/node-libbitcoinconsensus ) (Node.js Bindings)
2015-09-24 19:12:36 +02:00
- [java-libbitcoinconsensus ](https://github.com/dexX7/java-libbitcoinconsensus ) (Java Bindings)
2015-10-18 20:04:14 +02:00
- [bitcoinconsensus-php ](https://github.com/Bit-Wasp/bitcoinconsensus-php ) (PHP Bindings)