|
1 |
| -# Programming Bitcoin Script Transaction (Crypto) Contracts Step-by-Step |
| 1 | +# Programming Bitcoin Script Transaction (Crypto) Contracts Step-by-Step |
2 | 2 |
|
3 |
| -Let's start with building your own bitcoin stack machine from zero / scratch and let's run your own bitcoin ops (operations)... |
| 3 | +_Let's start with building your own bitcoin stack machine from zero / scratch and let's run your own bitcoin ops (operations)..._ |
4 | 4 |
|
5 | 5 |
|
| 6 | +Did you know? Every (yes, every) bitcoin transaction (payment) runs |
| 7 | +a contract script (one half coming from the "output" or "lock" transaction and the |
| 8 | +other half coming from the "input" or "unlock" transaction). |
| 9 | +The programming language is called simply (bitcoin) script. |
6 | 10 |
|
| 11 | +> Bitcoin uses a scripting system for transactions. |
| 12 | +> Forth-like, Script is simple, stack-based, and processed from left to right. |
| 13 | +> It is intentionally not Turing-complete, with no loops. |
| 14 | +> |
| 15 | +> (Source: [Script @ Bitcoin Wiki](https://en.bitcoin.it/wiki/Script)) |
| 16 | +
|
| 17 | + |
| 18 | +First impression. Adding 2+2 in Bitcoin Script starting from zero / scratch: |
| 19 | + |
| 20 | +``` ruby |
| 21 | +## A simple stack machine |
| 22 | +def op_add( stack ) |
| 23 | + left = stack.pop |
| 24 | + right = stack.pop |
| 25 | + stack.push( left + right ) |
| 26 | +end |
| 27 | + |
| 28 | +def op_2( stack ) |
| 29 | + stack.push( 2 ) |
| 30 | +end |
| 31 | + |
| 32 | +## Let's run! |
| 33 | + |
| 34 | +stack = [] |
| 35 | +op_2( stack ) #=> stack = [2] |
| 36 | +op_2( stack ) #=> stack = [2,2] |
| 37 | +op_add( stack ) #=> stack = [4] |
| 38 | +``` |
| 39 | + |
| 40 | +Yes, that's all the magic! You have built your own stack machine with |
| 41 | +two operations / ops, that is, `op_add` and `op_2`. |
| 42 | + |
| 43 | +Push and Pop |
| 44 | + |
| 45 | +The `op_2` operation pushes the number `2` onto the stack. |
| 46 | +The `op_add` operation pops the top two numbers from the stack |
| 47 | +and pushes the result onto the stack. |
| 48 | + |
| 49 | + |
| 50 | +In "real world" bitcoin the script has two parts / halves in two transactions |
| 51 | +that get combined. |
| 52 | +The "lock" or "output" or "ScriptSig" script |
| 53 | +that locks the "unspent transaction output (UTXO)" |
| 54 | +and the "unlock" or "input" or "ScriptPubKey" script that unlocks |
| 55 | +the bitcoins. |
| 56 | + |
| 57 | + |
| 58 | +Anyone Can Spend (Unlock) the Outputs (Bitcoins) |
| 59 | + |
| 60 | +The bitcoins are yours if the bitcoins haven't been spent yet - |
| 61 | +see blockchain and how it solves the double-spending problem :-) - |
| 62 | +AND if the script returns with true, that is, `1` is on top of the stack. |
| 63 | + |
| 64 | +``` ruby |
| 65 | +## A simple stack machine |
| 66 | +def op_true( stack ) |
| 67 | + stack.push( 1 ) |
| 68 | +end |
| 69 | + |
| 70 | +## Let's run! |
| 71 | + |
| 72 | +stack = [] |
| 73 | +## scriptPubKey part |
| 74 | +## - Empty |
| 75 | + |
| 76 | +## scriptSig part |
| 77 | +op_true( stack ) #=> stack = [1] |
| 78 | +``` |
| 79 | + |
| 80 | +Bingo! Yes, that's all the magic! |
| 81 | +The `op_true` operation pushes the number `1`, that is, `true` onto the stack. |
| 82 | + |
| 83 | +The "official" bitcoin script notation reads: |
| 84 | + |
| 85 | +``` |
| 86 | +scriptPubKey: (empty) |
| 87 | +scriptSig: OP_TRUE |
| 88 | +``` |
| 89 | + |
| 90 | +Now let's split the adding `2+2` script into a two part puzzle, |
| 91 | +that is, `?+2=4` |
| 92 | +or into `scriptSig` and `scriptPubKey`. |
| 93 | + If you know the answer you can "unlock" the bounty, |
| 94 | +that is, the bitcoin are yours! |
| 95 | +Here's the challenge: |
| 96 | + |
| 97 | +``` ruby |
| 98 | +## A simple stack machine |
| 99 | +def op_add( stack ) |
| 100 | + left = stack.pop |
| 101 | + right = stack.pop |
| 102 | + stack.push( left + right ) |
| 103 | +end |
| 104 | + |
| 105 | +def op_2( stack ) |
| 106 | + stack.push( 2 ) |
| 107 | +end |
| 108 | + |
| 109 | +def op_4( stack ) |
| 110 | + stack.push( 4 ) |
| 111 | +end |
| 112 | + |
| 113 | +def op_equal( stack ) |
| 114 | + left = stack.pop |
| 115 | + right = stack.pop |
| 116 | + stack.push( left == right ? 1 : 0 ) |
| 117 | +end |
| 118 | + |
| 119 | +## Let's run! |
| 120 | + |
| 121 | +stack = [] |
| 122 | +## scriptPubKey part |
| 123 | +## - add your "unlock" stack operation / operations here |
| 124 | + |
| 125 | +## scriptSig part |
| 126 | +op_2( stack ) #=> stack = [?, 2] |
| 127 | +op_add( stack ) #=> stack = [4] |
| 128 | +op_4( stack ) #=> stack = [4,4] |
| 129 | +op_equal( stack ) #=> stack = [1] |
| 130 | +``` |
| 131 | + |
| 132 | +The "official" bitcoin script notation reads: |
| 133 | + |
| 134 | +``` |
| 135 | +scriptPubKey: ? |
| 136 | +scriptSig: OP_2 OP_ADD OP_4 OP_EQUAL |
| 137 | +``` |
| 138 | + |
| 139 | + |
| 140 | +To be continued ... |
| 141 | + |
| 142 | + |
| 143 | + |
| 144 | + |
| 145 | + |
| 146 | +## Standard Scripts |
| 147 | + |
| 148 | + |
| 149 | +| Short Name | Long Name | |
| 150 | +|------------|------------| |
| 151 | +| p2pk | Pay-to-pubkey | |
| 152 | +| p2pkh | Pay-to-pubkey-hash | |
| 153 | +| p2sh | Pay-to-script-hash | |
| 154 | +| p2wpkh | Pay-to-witness-pubkey-hash | |
| 155 | +| p2wsh | Pay-to-witness-script-hash | |
| 156 | + |
| 157 | + |
| 158 | + |
| 159 | + |
| 160 | +## Resources |
| 161 | + |
| 162 | +Articles |
| 163 | + |
| 164 | +- [Bitcoin Script @ Bitcoin Wiki](https://en.bitcoin.it/wiki/Script) |
| 165 | + |
| 166 | + |
| 167 | +Books |
| 168 | + |
| 169 | +- [Programming Bitcoin from Scratch](https://github.com/jimmysong/programmingbitcoin) by Jimmy Song |
| 170 | + - [Chapter 6 - Script](https://github.com/jimmysong/programmingbitcoin/blob/master/ch06.asciidoc) - How Script Works • Example Operations • Parsing the Script Fields • Combining the Script Fields • Standard Scripts • p2pk • Problems with p2pk • Solving the Problems with p2pkh • Scripts Can Be Arbitrarily Constructed • Conclusion |
| 171 | + - [Chapter 8 - Pay-to-Script Hash](https://github.com/jimmysong/programmingbitcoin/blob/master/ch08.asciidoc) - Bare Multisig • Coding OP_CHECKMULTISIG • Problems with Bare Multisig • Pay-to-Script-Hash (p2sh) • Coding p2sh • Conclusion |
| 172 | + |
| 173 | + |
| 174 | +Talk Notes |
| 175 | + |
| 176 | +- [Contracts, Contracts, Contracts - Code Your Own (Crypto Blockchain) Contracts w/ Ruby (sruby), Universum & Co](https://github.com/geraldb/talks/blob/master/contracts.md) |
| 177 | + - Genesis - Bitcoin Script |
| 178 | + - Ivy - Higher-Level Bitcoin Script |
| 179 | + - History Corner - Bitcoin - The World's Worst Database for Everything? - Bitcoin Maximalism in Action |
| 180 | + - Turing Complete and the Halting Problem |
| 181 | + - Fees, Fees, Fees - $$$ - There's No Free Lunch |
| 182 | + |
| 183 | + |
| 184 | + |
| 185 | +## License |
| 186 | + |
| 187 | + |
| 188 | + |
| 189 | +The Programming Bitcoin Script Step-by-Step book / guide |
| 190 | +is dedicated to the public domain. |
| 191 | +Use it as you please with no restrictions whatsoever. |
0 commit comments