logoalt Hacker News

greyface-today at 6:01 AM2 repliesview on HN

Of course there's a script; every bitcoin tx output has a script. These challenges use the standard P2PKH script, i.e.:

  scriptPubKey: OP_DUP OP_HASH160 <pubKeyHash> OP_EQUALVERIFY OP_CHECKSIG
  scriptSig: <sig> <pubKey>
https://en.bitcoin.it/wiki/Script

Replies

LiamPowelltoday at 10:43 AM

You know what I mean, there's no clever on-chain reward script.

tromptoday at 7:34 AM

Not every bitcoin tx output.

With taproot (P2TR), scripts are optional, and outputs can be based solely on Schnorr signatures.

show 1 reply