lbcd/txscript
2022-11-23 08:50:17 -08:00
..
data [lbry] test: fixed all current tests and delete three. 2022-05-24 00:01:46 -07:00
bench_test.go [lbry] rename btcd to lbcd 2022-05-23 23:53:30 -07:00
claimscript.go claimtrie: allows '*' in claim name 2022-11-23 08:50:17 -08:00
claimscript_test.go [lbry] txscript: introduce claim script 2022-05-23 23:53:30 -07:00
consensus.go txscript: Implement CheckSequenceVerify (BIP0112) 2016-10-19 12:06:44 -04:00
doc.go ci: gofmt with go 1.19 2022-08-07 23:40:53 -07:00
engine.go [lbry] rename btcd to lbcd 2022-05-23 23:53:30 -07:00
engine_test.go [lbry] rename btcd to lbcd 2022-05-23 23:53:30 -07:00
error.go ci: gofmt with go 1.19 2022-08-07 23:40:53 -07:00
error_test.go txscript: Introduce zero-alloc script tokenizer. 2022-05-23 21:46:20 -07:00
example_test.go [lbry] test: fixed all current tests and delete three. 2022-05-24 00:01:46 -07:00
hashcache.go [lbry] rename btcd to lbcd 2022-05-23 23:53:30 -07:00
hashcache_test.go [lbry] rename btcd to lbcd 2022-05-23 23:53:30 -07:00
log.go all: Remove seelog logger. 2017-06-19 16:46:50 -04:00
opcode.go [lbry] rename btcd to lbcd 2022-05-23 23:53:30 -07:00
opcode_test.go [lbry] test: fixed all current tests and delete three. 2022-05-24 00:01:46 -07:00
pkscript.go [lbry] rename btcd to lbcd 2022-05-23 23:53:30 -07:00
pkscript_test.go [lbry] rename btcd to lbcd 2022-05-23 23:53:30 -07:00
README.md [lbry] docs: update docs for LBRY 2022-05-24 00:01:46 -07:00
reference_test.go [lbry] rename btcd to lbcd 2022-05-23 23:53:30 -07:00
script.go [lbry] rename btcd to lbcd 2022-05-23 23:53:30 -07:00
script_test.go [lbry] rename btcd to lbcd 2022-05-23 23:53:30 -07:00
scriptbuilder.go ci: gofmt with go 1.19 2022-08-07 23:40:53 -07:00
scriptbuilder_test.go [lbry] test: fixed all current tests and delete three. 2022-05-24 00:01:46 -07:00
scriptnum.go ci: gofmt with go 1.19 2022-08-07 23:40:53 -07:00
scriptnum_test.go txscript/scriptnum: add maxscriptnum and maxcltvlength 2022-05-23 21:46:21 -07:00
sigcache.go [lbry] rename btcd to lbcd 2022-05-23 23:53:30 -07:00
sigcache_test.go [lbry] rename btcd to lbcd 2022-05-23 23:53:30 -07:00
sign.go [lbry] rename btcd to lbcd 2022-05-23 23:53:30 -07:00
sign_test.go [lbry] rename btcd to lbcd 2022-05-23 23:53:30 -07:00
stack.go txscript/scriptnum: add maxscriptnum and maxcltvlength 2022-05-23 21:46:21 -07:00
stack_test.go txscript: Significantly improve errors. 2017-01-12 13:12:39 -06:00
standard.go [lbry] rename btcd to lbcd 2022-05-23 23:53:30 -07:00
standard_test.go [lbry] rename btcd to lbcd 2022-05-23 23:53:30 -07:00
tokenizer.go txscript: Introduce zero-alloc script tokenizer. 2022-05-23 21:46:20 -07:00
tokenizer_test.go txscript: Introduce zero-alloc script tokenizer. 2022-05-23 21:46:20 -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