lbcd/txscript
2021-10-19 22:08:01 -07:00
..
data [lbry] fixed all current tests and delete three. 2021-10-19 22:07:35 -07:00
consensus.go txscript: Implement CheckSequenceVerify (BIP0112) 2016-10-19 12:06:44 -04:00
doc.go txscript: Significantly improve errors. 2017-01-12 13:12:39 -06:00
engine.go [lbry] rename btcd to lbcd 2021-10-19 21:42:12 -07:00
engine_test.go [lbry] rename btcd to lbcd 2021-10-19 21:42:12 -07:00
error.go txscript: Cleanup strict signature enforcement. 2018-08-23 11:56:28 -05:00
error_test.go txscript: Cleanup strict signature enforcement. 2018-08-23 11:56:28 -05:00
example_test.go [lbry] fixed all current tests and delete three. 2021-10-19 22:07:35 -07:00
hashcache.go [lbry] rename btcd to lbcd 2021-10-19 21:42:12 -07:00
hashcache_test.go [lbry] rename btcd to lbcd 2021-10-19 21:42:12 -07:00
log.go all: Remove seelog logger. 2017-06-19 16:46:50 -04:00
nameclaim.go [lbry] rename btcd to lbcd 2021-10-19 21:42:12 -07:00
nameclaim_test.go [lbry] txscript: initial porting of claim script 2021-10-18 16:36:42 -07:00
opcode.go [lbry] rename btcd to lbcd 2021-10-19 21:42:12 -07:00
opcode_test.go [lbry] fixed all current tests and delete three. 2021-10-19 22:07:35 -07:00
pkscript.go [lbry] rename btcd to lbcd 2021-10-19 21:42:12 -07:00
pkscript_test.go [lbry] rename btcd to lbcd 2021-10-19 21:42:12 -07:00
README.md [lbry] docs: update docs for LBRY 2021-10-19 22:08:01 -07:00
reference_test.go [lbry] rename btcd to lbcd 2021-10-19 21:42:12 -07:00
script.go [lbry] rename btcd to lbcd 2021-10-19 21:42:12 -07:00
script_test.go [lbry] fixed all current tests and delete three. 2021-10-19 22:07:35 -07:00
scriptbuilder.go txscript: Significantly improve errors. 2017-01-12 13:12:39 -06:00
scriptbuilder_test.go [lbry] fixed all current tests and delete three. 2021-10-19 22:07:35 -07:00
scriptnum.go txscript: Significantly improve errors. 2017-01-12 13:12:39 -06:00
scriptnum_test.go txscript: Significantly improve errors. 2017-01-12 13:12:39 -06:00
sigcache.go [lbry] rename btcd to lbcd 2021-10-19 21:42:12 -07:00
sigcache_test.go [lbry] rename btcd to lbcd 2021-10-19 21:42:12 -07:00
sign.go [lbry] rename btcd to lbcd 2021-10-19 21:42:12 -07:00
sign_test.go [lbry] rename btcd to lbcd 2021-10-19 21:42:12 -07:00
stack.go multi: Simplify code per gosimple linter. 2017-03-22 15:34:13 -05:00
stack_test.go txscript: Significantly improve errors. 2017-01-12 13:12:39 -06:00
standard.go [lbry] rename btcd to lbcd 2021-10-19 21:42:12 -07:00
standard_test.go [lbry] rename btcd to lbcd 2021-10-19 21:42:12 -07:00

txscript

Package txscript implements the bitcoin transaction script language. There is a comprehensive test suite.

This package has been augmented to include support for LBRY's custom claim operations. See https://lbry.tech/spec

Bitcoin Scripts

Bitcoin provides a stack-based, FORTH-like language for the scripts in the bitcoin transactions. This language is not turing complete although it is still fairly powerful. A description of the language can be found at https://en.bitcoin.it/wiki/Script