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