-
Notifications
You must be signed in to change notification settings - Fork 122
assets swap deposits [1/N]: add asset HTLC helpers #979
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
bhandras
wants to merge
2
commits into
lightninglabs:master
Choose a base branch
from
bhandras:asset-swap-deposits-1
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
package htlc | ||
|
||
import ( | ||
"github.com/btcsuite/btcd/btcec/v2" | ||
"github.com/btcsuite/btcd/btcec/v2/schnorr" | ||
"github.com/btcsuite/btcd/txscript" | ||
"github.com/decred/dcrd/dcrec/secp256k1/v4" | ||
"github.com/lightninglabs/taproot-assets/asset" | ||
"github.com/lightningnetwork/lnd/input" | ||
"github.com/lightningnetwork/lnd/keychain" | ||
"github.com/lightningnetwork/lnd/lntypes" | ||
) | ||
|
||
// GenSuccessPathScript constructs a script for the success path of the HTLC | ||
// payment. Optionally includes a CHECKSEQUENCEVERIFY (CSV) of 1 if `csv` is | ||
// true, to prevent potential pinning attacks when the HTLC is not part of a | ||
// package relay. | ||
func GenSuccessPathScript(receiverHtlcKey *btcec.PublicKey, | ||
swapHash lntypes.Hash, csvOne bool) ([]byte, error) { | ||
|
||
builder := txscript.NewScriptBuilder() | ||
|
||
builder.AddData(schnorr.SerializePubKey(receiverHtlcKey)) | ||
builder.AddOp(txscript.OP_CHECKSIGVERIFY) | ||
builder.AddOp(txscript.OP_SIZE) | ||
builder.AddInt64(32) | ||
builder.AddOp(txscript.OP_EQUALVERIFY) | ||
builder.AddOp(txscript.OP_HASH160) | ||
builder.AddData(input.Ripemd160H(swapHash[:])) | ||
// OP_EQUAL will leave 0 or 1 on the stack depending on whether the hash | ||
// matches. | ||
// - If it matches and CSV is not used, the script will | ||
// evaulate to true. | ||
// - If it matches and CSV is used, we'll have 1 on the stack which is | ||
// used to verify the CSV condition. | ||
// - If it does not match, we'll have 0 on the stack which will cause | ||
// the script to fail even if CSV is used. | ||
builder.AddOp(txscript.OP_EQUAL) | ||
|
||
if csvOne { | ||
// If csvOne is true, we add a CHECKSEQUENCEVERIFY to ensure | ||
// that the HTLC can only be claimed after at least one | ||
// confirmation. | ||
builder.AddOp(txscript.OP_CHECKSEQUENCEVERIFY) | ||
} | ||
|
||
return builder.Script() | ||
} | ||
|
||
// GenTimeoutPathScript constructs an HtlcScript for the timeout payment path. | ||
func GenTimeoutPathScript(senderHtlcKey *btcec.PublicKey, csvExpiry int64) ( | ||
[]byte, error) { | ||
|
||
builder := txscript.NewScriptBuilder() | ||
builder.AddData(schnorr.SerializePubKey(senderHtlcKey)) | ||
builder.AddOp(txscript.OP_CHECKSIGVERIFY) | ||
builder.AddInt64(csvExpiry) | ||
builder.AddOp(txscript.OP_CHECKSEQUENCEVERIFY) | ||
return builder.Script() | ||
} | ||
|
||
// GetOpTrueScript returns a script that always evaluates to true. | ||
func GetOpTrueScript() ([]byte, error) { | ||
return txscript.NewScriptBuilder().AddOp(txscript.OP_TRUE).Script() | ||
} | ||
|
||
// CreateOpTrueLeaf creates a taproot leaf that always evaluates to true. | ||
func CreateOpTrueLeaf() (asset.ScriptKey, txscript.TapLeaf, | ||
*txscript.IndexedTapScriptTree, *txscript.ControlBlock, error) { | ||
|
||
// Create the taproot OP_TRUE script. | ||
tapScript, err := GetOpTrueScript() | ||
if err != nil { | ||
return asset.ScriptKey{}, txscript.TapLeaf{}, nil, nil, err | ||
} | ||
|
||
tapLeaf := txscript.NewBaseTapLeaf(tapScript) | ||
tree := txscript.AssembleTaprootScriptTree(tapLeaf) | ||
rootHash := tree.RootNode.TapHash() | ||
tapKey := txscript.ComputeTaprootOutputKey( | ||
asset.NUMSPubKey, rootHash[:], | ||
) | ||
|
||
merkleRootHash := tree.RootNode.TapHash() | ||
|
||
controlBlock := &txscript.ControlBlock{ | ||
LeafVersion: txscript.BaseLeafVersion, | ||
InternalKey: asset.NUMSPubKey, | ||
} | ||
tapScriptKey := asset.ScriptKey{ | ||
PubKey: tapKey, | ||
TweakedScriptKey: &asset.TweakedScriptKey{ | ||
RawKey: keychain.KeyDescriptor{ | ||
PubKey: asset.NUMSPubKey, | ||
}, | ||
Tweak: merkleRootHash[:], | ||
}, | ||
} | ||
if tapKey.SerializeCompressed()[0] == | ||
secp256k1.PubKeyFormatCompressedOdd { | ||
|
||
controlBlock.OutputKeyYIsOdd = true | ||
} | ||
|
||
return tapScriptKey, tapLeaf, tree, controlBlock, nil | ||
} |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
reminder to think about unit tests for these new scripts, maybe similar to how we do it in
loop/swap/htlc_test.go
Line 94 in 65251e8