• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..13-May-2020-

data/H13-May-2020-3,9773,649

README.mdH A D13-May-20202.3 KiB6445

consensus.goH A D13-May-2020446 144

doc.goH A D13-May-20201.9 KiB431

engine.goH A D13-May-202033.6 KiB1,005583

engine_test.goH A D13-May-202010.6 KiB428383

error.goH A D13-May-202017.6 KiB454158

error_test.goH A D13-May-20204.2 KiB131115

example_test.goH A D13-May-20205.9 KiB183107

hashcache.goH A D13-May-20202.8 KiB9049

hashcache_test.goH A D13-May-20204.5 KiB183119

log.goH A D13-May-20201.1 KiB4421

opcode.goH A D13-May-202081.8 KiB2,4481,675

opcode_test.goH A D13-May-20206.9 KiB206150

pkscript.goH A D13-May-20208 KiB280163

pkscript_test.goH A D13-May-202010.9 KiB442346

reference_test.goH A D13-May-202024.3 KiB876669

script.goH A D13-May-202028.5 KiB861507

script_test.goH A D13-May-202089.9 KiB4,3154,207

scriptbuilder.goH A D13-May-20208.9 KiB275152

scriptbuilder_test.goH A D13-May-202015 KiB412328

scriptnum.goH A D13-May-20208 KiB22681

scriptnum_test.goH A D13-May-202010.6 KiB274220

sigcache.goH A D13-May-20204 KiB10041

sigcache_test.goH A D13-May-20204.6 KiB14188

sign.goH A D13-May-202015.1 KiB465287

sign_test.goH A D13-May-202042.8 KiB1,7171,484

stack.goH A D13-May-20208.6 KiB362216

stack_test.goH A D13-May-202016.5 KiB951893

standard.goH A D13-May-202022.4 KiB708449

standard_test.goH A D13-May-202035.1 KiB1,2161,033

README.md

1txscript
2========
3
4[![Build Status](https://travis-ci.org/btcsuite/btcd.png?branch=master)](https://travis-ci.org/btcsuite/btcd)
5[![ISC License](http://img.shields.io/badge/license-ISC-blue.svg)](http://copyfree.org)
6[![GoDoc](https://godoc.org/github.com/btcsuite/btcd/txscript?status.png)](http://godoc.org/github.com/btcsuite/btcd/txscript)
7
8Package txscript implements the bitcoin transaction script language.  There is
9a comprehensive test suite.
10
11This package has intentionally been designed so it can be used as a standalone
12package for any projects needing to use or validate bitcoin transaction scripts.
13
14## Bitcoin Scripts
15
16Bitcoin provides a stack-based, FORTH-like language for the scripts in
17the bitcoin transactions.  This language is not turing complete
18although it is still fairly powerful.  A description of the language
19can be found at https://en.bitcoin.it/wiki/Script
20
21## Installation and Updating
22
23```bash
24$ go get -u github.com/btcsuite/btcd/txscript
25```
26
27## Examples
28
29* [Standard Pay-to-pubkey-hash Script](http://godoc.org/github.com/btcsuite/btcd/txscript#example-PayToAddrScript)
30  Demonstrates creating a script which pays to a bitcoin address.  It also
31  prints the created script hex and uses the DisasmString function to display
32  the disassembled script.
33
34* [Extracting Details from Standard Scripts](http://godoc.org/github.com/btcsuite/btcd/txscript#example-ExtractPkScriptAddrs)
35  Demonstrates extracting information from a standard public key script.
36
37* [Manually Signing a Transaction Output](http://godoc.org/github.com/btcsuite/btcd/txscript#example-SignTxOutput)
38  Demonstrates manually creating and signing a redeem transaction.
39
40## GPG Verification Key
41
42All official release tags are signed by Conformal so users can ensure the code
43has not been tampered with and is coming from the btcsuite developers.  To
44verify the signature perform the following:
45
46- Download the public key from the Conformal website at
47  https://opensource.conformal.com/GIT-GPG-KEY-conformal.txt
48
49- Import the public key into your GPG keyring:
50  ```bash
51  gpg --import GIT-GPG-KEY-conformal.txt
52  ```
53
54- Verify the release tag with the following command where `TAG_NAME` is a
55  placeholder for the specific tag:
56  ```bash
57  git tag -v TAG_NAME
58  ```
59
60## License
61
62Package txscript is licensed under the [copyfree](http://copyfree.org) ISC
63License.
64