mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 04:22:55 +01:00
5323a08afa
fabcee1
Remove copyright header from autogenerated chainparamsseeds.h (MarcoFalke)fa60d05
Add missing copyright headers (MarcoFalke)fa7e4c0
Bump copyright headers to 2014 (MarcoFalke)
45 lines
2.4 KiB
Markdown
45 lines
2.4 KiB
Markdown
Shared Libraries
|
|
================
|
|
|
|
## dashconsensus
|
|
|
|
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.
|
|
|
|
### API
|
|
|
|
The interface is defined in the C header `dashconsensus.h` located in `src/script/dashconsensus.h`.
|
|
|
|
#### Version
|
|
|
|
`dashconsensus_version` returns an `unsigned int` with the API version *(currently at an experimental `0`)*.
|
|
|
|
#### Script Validation
|
|
|
|
`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`.
|
|
|
|
##### 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)*.
|
|
- `dashconsensus_error* err` - Will have the error/success code for the operation *(see below)*.
|
|
|
|
##### Script Flags
|
|
- `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
|
|
|
|
##### Errors
|
|
- `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`
|
|
|
|
### Example Implementations
|
|
- [NBitcoin](https://github.com/NicolasDorier/NBitcoin/blob/master/NBitcoin/Script.cs#L814) (.NET Bindings)
|
|
- [node-libbitcoinconsensus](https://github.com/bitpay/node-libbitcoinconsensus) (Node.js Bindings)
|
|
- [java-libbitcoinconsensus](https://github.com/dexX7/java-libbitcoinconsensus) (Java Bindings)
|
|
- [bitcoinconsensus-php](https://github.com/Bit-Wasp/bitcoinconsensus-php) (PHP Bindings)
|