lbcd/txscript
2021-08-31 15:53:55 -04:00
..
data txscript: update reference tests to include new segwit related cases 2017-08-13 23:17:40 -05: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] txscript: change MaxScriptSize from 10,000 to 20,005 2021-08-19 14:19:20 -04: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
hashcache.go BIP0143+txscript: add segwit sighash, signing, and HashCache integration 2017-08-13 23:17:40 -05:00
hashcache_test.go txscript/hashcache_test: call rand.Seed once in init 2021-02-02 13:31:47 -08:00
log.go all: Remove seelog logger. 2017-06-19 16:46:50 -04:00
nameclaim.go [lbry] txscript: initial porting of claim script 2021-08-19 14:19:20 -04:00
nameclaim_test.go [lbry] txscript: initial porting of claim script 2021-08-19 14:19:20 -04:00
opcode.go [lbry] txscript: recognize LBRY claim script OPCODES 2021-08-19 14:19:20 -04:00
pkscript.go txscript: refactor ComputePkScript 2019-06-03 13:55:28 -07:00
pkscript_test.go build: replace travis-ci with github actions. 2020-05-13 08:52:05 -04:00
README.md sanitizing readmes for lbcd 2021-08-31 15:53:55 -04:00
script.go [lbry] blockchain, txscript: change maxScriptElementSize from 520 t0 20,000 bytes 2021-08-19 14:19:20 -04:00
scriptbuilder.go txscript: Significantly improve errors. 2017-01-12 13:12:39 -06: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 txscript: Drop the mutex before doing crypto 2017-01-31 13:47:41 -05:00
sigcache_test.go chainhash: Abstract hash logic to new package. (#729) 2016-08-08 14:04:33 -05:00
sign.go [lbry] remove claim prefix for addr calculation 2021-08-19 14:19:21 -04:00
sign_test.go BIP0141+txscript: implement witness program validation 2017-08-13 23:17:40 -05: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] remove claim prefix for addr calculation 2021-08-19 14:19:21 -04: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