2015-01-30 00:03:01 -06:00
|
|
|
txscript
|
|
|
|
========
|
2013-06-12 16:22:01 -05:00
|
|
|
|
2015-01-30 00:03:01 -06:00
|
|
|
Package txscript implements the bitcoin transaction script language. There is
|
2015-10-23 11:34:50 -05:00
|
|
|
a comprehensive test suite.
|
2013-06-12 16:35:27 -05:00
|
|
|
|
2021-08-31 15:53:55 -04:00
|
|
|
This package has been augmented to include support for LBRY's custom claim operations.
|
|
|
|
See https://lbry.tech/spec
|
2013-06-12 16:35:27 -05:00
|
|
|
|
|
|
|
## Bitcoin Scripts
|
|
|
|
|
2016-01-29 01:11:21 -08:00
|
|
|
Bitcoin provides a stack-based, FORTH-like language for the scripts in
|
2013-06-12 16:35:27 -05:00
|
|
|
the bitcoin transactions. This language is not turing complete
|
|
|
|
although it is still fairly powerful. A description of the language
|
2021-08-31 15:53:55 -04:00
|
|
|
can be found at https://en.bitcoin.it/wiki/Script
|