Last active
October 5, 2016 13:25
-
-
Save maraoz/d781393c0bd5b9f70c1f to your computer and use it in GitHub Desktop.
Hashed Timelock Contract (HTLC) as proposed in lightning.network paper
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
OP_DEPTH 3 OP_EQUAL | |
OP_IF | |
OP_HASH160 <hash160(R)> OP_EQUALVERIFY | |
OP_0 2 <AlicePubkey1> <BobPubkey1> 2 OP_CHECKMULTISIG | |
OP_ELSE | |
OP_0 2 <AlicePubkey2> <BobPubkey2> 2 OP_CHECKMULTISIG | |
OP_END |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
OP_IF | |
OP_HASH160 <hash160(R)> OP_EQUALVERIFY | |
OP_0 2 <AlicePubkey1> <BobPubkey1> | |
OP_ELSE | |
OP_0 2 <AlicePubkey2> <BobPubkey2> | |
OP_END | |
2 OP_CHECKMULTISIG |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
OP_DEPTH 3 OP_EQUAL
is not needed as party spending the script can include a0
or1
in the scriptSig to choose to enter through if or else branch.2 OP_CHECKMULTISIG
was factored out of theOP_IF