1
0
mirror of https://github.com/bitcoinbook/bitcoinbook synced 2024-11-29 11:28:20 +00:00
bitcoinbook/images/alt_script.dot
David A. Harding 114d7bf25a Auth&Auth: explain differerence between MAST and Merklized Alt Script Trees
Inspired by a comment from Roasbeef about how we shouldn't described
MAST because that's not what taproot implements.
2023-09-01 13:21:39 +02:00

13 lines
227 B
Plaintext

digraph AST {
node [shape=box];
// Main Script
script [label="Script"];
op1 [ label = "<pubKey1> OP_CHECKSIG" ]
op2 [ label = "<pubKey2> OP_CHECKSIG" ]
// Script Structure
script -> {op1, op2};
}