The script consists of a list of operators, which come from the raw hex contained in scriptSig and pubKey.
Use J and K to navigate.
The Bitcoin Script Explorer is a tool to help programmers learn about Bitcoin Script. It shows all of the steps involved in executing a Bitcoin Script program.
The Bitcoin blockchain consists of a sequence of transactions, where each transaction may spend the outputs of a previous transaction.
Bitcoin Script is a minimal stack-based programming language. Each Bitcoin transaction has an associated Bitcoin Script program, and the result of running this program determines whether this transaction is valid or not.
A Bitcoin Script program is assembled from two sections. The pubKey, which comes from the previous transaction, specifies what conditions must be met in order to spend the bitcoins from that transaction. The scriptSig, which comes from the spending transaction, satisfies these conditions. These two sources are concatenated together to form the complete Bitcoin Script program, which can then be run.
The script consists of a list of operators, which come from the raw hex contained in scriptSig and pubKey.
Use J and K to navigate.