2019-03-07 02:20:51 +00:00
|
|
|
package swap
|
2019-03-06 20:13:50 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
2019-04-04 10:20:45 +00:00
|
|
|
"crypto/sha256"
|
2019-03-06 20:13:50 +00:00
|
|
|
"errors"
|
2020-07-20 14:28:08 +00:00
|
|
|
"fmt"
|
2019-03-06 20:13:50 +00:00
|
|
|
|
|
|
|
"github.com/btcsuite/btcd/chaincfg"
|
|
|
|
"github.com/btcsuite/btcd/txscript"
|
|
|
|
"github.com/btcsuite/btcd/wire"
|
|
|
|
"github.com/btcsuite/btcutil"
|
|
|
|
"github.com/lightningnetwork/lnd/input"
|
|
|
|
"github.com/lightningnetwork/lnd/lntypes"
|
|
|
|
)
|
|
|
|
|
2019-04-04 10:20:45 +00:00
|
|
|
// HtlcOutputType defines the output type of the htlc that is published.
|
|
|
|
type HtlcOutputType uint8
|
|
|
|
|
|
|
|
const (
|
|
|
|
// HtlcP2WSH is a pay-to-witness-script-hash output (segwit only)
|
|
|
|
HtlcP2WSH HtlcOutputType = iota
|
|
|
|
|
|
|
|
// HtlcNP2WSH is a nested pay-to-witness-script-hash output that can be
|
|
|
|
// paid to be legacy wallets.
|
|
|
|
HtlcNP2WSH
|
|
|
|
)
|
|
|
|
|
2020-07-20 14:28:08 +00:00
|
|
|
// ScriptVersion defines the HTLC script version.
|
|
|
|
type ScriptVersion uint8
|
|
|
|
|
|
|
|
const (
|
|
|
|
// HtlcV1 refers to the original version of the HTLC script.
|
|
|
|
HtlcV1 ScriptVersion = iota
|
2020-07-20 16:16:28 +00:00
|
|
|
|
|
|
|
// HtlcV2 refers to the improved version of the HTLC script.
|
|
|
|
HtlcV2
|
2020-07-20 14:28:08 +00:00
|
|
|
)
|
|
|
|
|
2020-07-20 16:16:28 +00:00
|
|
|
// htlcScript defines an interface for the different HTLC implementations.
|
|
|
|
type HtlcScript interface {
|
|
|
|
// genSuccessWitness returns the success script to spend this htlc with
|
|
|
|
// the preimage.
|
|
|
|
genSuccessWitness(receiverSig []byte, preimage lntypes.Preimage) wire.TxWitness
|
|
|
|
|
|
|
|
// GenTimeoutWitness returns the timeout script to spend this htlc after
|
|
|
|
// timeout.
|
|
|
|
GenTimeoutWitness(senderSig []byte) wire.TxWitness
|
|
|
|
|
|
|
|
// IsSuccessWitness checks whether the given stack is valid for
|
|
|
|
// redeeming the htlc.
|
|
|
|
IsSuccessWitness(witness wire.TxWitness) bool
|
|
|
|
|
|
|
|
// Script returns the htlc script.
|
|
|
|
Script() []byte
|
|
|
|
|
|
|
|
// MaxSuccessWitnessSize returns the maximum witness size for the
|
|
|
|
// success case witness.
|
|
|
|
MaxSuccessWitnessSize() int
|
|
|
|
|
|
|
|
// MaxTimeoutWitnessSize returns the maximum witness size for the
|
|
|
|
// timeout case witness.
|
|
|
|
MaxTimeoutWitnessSize() int
|
|
|
|
|
|
|
|
// SuccessSequence returns the sequence to spend this htlc in the
|
|
|
|
// success case.
|
|
|
|
SuccessSequence() uint32
|
|
|
|
}
|
|
|
|
|
2019-03-06 20:13:50 +00:00
|
|
|
// Htlc contains relevant htlc information from the receiver perspective.
|
|
|
|
type Htlc struct {
|
2020-07-20 16:16:28 +00:00
|
|
|
HtlcScript
|
|
|
|
|
2020-07-20 14:28:08 +00:00
|
|
|
Version ScriptVersion
|
2019-04-04 10:20:45 +00:00
|
|
|
PkScript []byte
|
|
|
|
Hash lntypes.Hash
|
|
|
|
OutputType HtlcOutputType
|
|
|
|
ChainParams *chaincfg.Params
|
|
|
|
Address btcutil.Address
|
|
|
|
SigScript []byte
|
2019-03-06 20:13:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
|
|
|
quoteKey [33]byte
|
|
|
|
|
|
|
|
quoteHash lntypes.Hash
|
|
|
|
|
|
|
|
// QuoteHtlc is a template script just used for fee estimation. It uses
|
|
|
|
// the maximum value for cltv expiry to get the maximum (worst case)
|
|
|
|
// script size.
|
|
|
|
QuoteHtlc, _ = NewHtlc(
|
2020-07-20 16:16:28 +00:00
|
|
|
HtlcV2,
|
2019-04-04 10:20:45 +00:00
|
|
|
^int32(0), quoteKey, quoteKey, quoteHash, HtlcP2WSH,
|
|
|
|
&chaincfg.MainNetParams,
|
2019-03-06 20:13:50 +00:00
|
|
|
)
|
2020-07-20 16:16:28 +00:00
|
|
|
|
|
|
|
ErrInvalidScriptVersion = fmt.Errorf("invalid script version")
|
2019-03-06 20:13:50 +00:00
|
|
|
)
|
|
|
|
|
2020-04-30 13:37:01 +00:00
|
|
|
// String returns the string value of HtlcOutputType.
|
|
|
|
func (h HtlcOutputType) String() string {
|
|
|
|
switch h {
|
|
|
|
case HtlcP2WSH:
|
|
|
|
return "P2WSH"
|
|
|
|
|
|
|
|
case HtlcNP2WSH:
|
|
|
|
return "NP2WSH"
|
|
|
|
|
|
|
|
default:
|
|
|
|
return "unknown"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-06 20:13:50 +00:00
|
|
|
// NewHtlc returns a new instance.
|
2020-07-20 14:28:08 +00:00
|
|
|
func NewHtlc(version ScriptVersion, cltvExpiry int32,
|
|
|
|
senderKey, receiverKey [33]byte,
|
2019-04-04 10:20:45 +00:00
|
|
|
hash lntypes.Hash, outputType HtlcOutputType,
|
|
|
|
chainParams *chaincfg.Params) (*Htlc, error) {
|
2019-03-06 20:13:50 +00:00
|
|
|
|
2020-07-20 14:28:08 +00:00
|
|
|
var (
|
2020-07-20 16:16:28 +00:00
|
|
|
err error
|
|
|
|
htlc HtlcScript
|
2019-03-06 20:13:50 +00:00
|
|
|
)
|
2020-07-20 14:28:08 +00:00
|
|
|
|
|
|
|
switch version {
|
|
|
|
case HtlcV1:
|
2020-07-20 16:16:28 +00:00
|
|
|
htlc, err = newHTLCScriptV1(
|
|
|
|
cltvExpiry, senderKey, receiverKey, hash,
|
|
|
|
)
|
|
|
|
|
|
|
|
case HtlcV2:
|
|
|
|
htlc, err = newHTLCScriptV2(
|
2020-07-20 14:28:08 +00:00
|
|
|
cltvExpiry, senderKey, receiverKey, hash,
|
|
|
|
)
|
|
|
|
|
|
|
|
default:
|
2020-07-20 16:16:28 +00:00
|
|
|
return nil, ErrInvalidScriptVersion
|
2020-07-20 14:28:08 +00:00
|
|
|
}
|
|
|
|
|
2019-03-06 20:13:50 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2020-07-20 16:16:28 +00:00
|
|
|
p2wshPkScript, err := input.WitnessScriptHash(htlc.Script())
|
2019-03-06 20:13:50 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2019-04-04 10:20:45 +00:00
|
|
|
var pkScript, sigScript []byte
|
|
|
|
var address btcutil.Address
|
|
|
|
|
|
|
|
switch outputType {
|
|
|
|
case HtlcNP2WSH:
|
|
|
|
// Generate p2sh script for p2wsh (nested).
|
2019-05-03 08:52:23 +00:00
|
|
|
p2wshPkScriptHash := sha256.Sum256(p2wshPkScript)
|
2019-04-04 10:20:45 +00:00
|
|
|
hash160 := input.Ripemd160H(p2wshPkScriptHash[:])
|
|
|
|
|
|
|
|
builder := txscript.NewScriptBuilder()
|
|
|
|
|
|
|
|
builder.AddOp(txscript.OP_HASH160)
|
|
|
|
builder.AddData(hash160)
|
|
|
|
builder.AddOp(txscript.OP_EQUAL)
|
|
|
|
|
|
|
|
pkScript, err = builder.Script()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Generate a valid sigScript that will allow us to spend the
|
|
|
|
// p2sh output. The sigScript will contain only a single push of
|
|
|
|
// the p2wsh witness program corresponding to the matching
|
|
|
|
// public key of this address.
|
|
|
|
sigScript, err = txscript.NewScriptBuilder().
|
|
|
|
AddData(p2wshPkScript).
|
|
|
|
Script()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
address, err = btcutil.NewAddressScriptHash(
|
|
|
|
p2wshPkScript, chainParams,
|
|
|
|
)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
case HtlcP2WSH:
|
|
|
|
pkScript = p2wshPkScript
|
|
|
|
|
|
|
|
address, err = btcutil.NewAddressWitnessScriptHash(
|
2019-05-03 08:52:23 +00:00
|
|
|
p2wshPkScript[2:],
|
2019-04-04 10:20:45 +00:00
|
|
|
chainParams,
|
|
|
|
)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
return nil, errors.New("unknown output type")
|
|
|
|
}
|
2019-03-06 20:13:50 +00:00
|
|
|
|
|
|
|
return &Htlc{
|
2020-07-20 16:16:28 +00:00
|
|
|
HtlcScript: htlc,
|
2019-04-04 10:20:45 +00:00
|
|
|
Hash: hash,
|
2020-07-20 14:28:08 +00:00
|
|
|
Version: version,
|
2019-04-04 10:20:45 +00:00
|
|
|
PkScript: pkScript,
|
|
|
|
OutputType: outputType,
|
|
|
|
ChainParams: chainParams,
|
|
|
|
Address: address,
|
|
|
|
SigScript: sigScript,
|
2019-03-06 20:13:50 +00:00
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
2020-07-20 16:16:28 +00:00
|
|
|
// GenSuccessWitness returns the success script to spend this htlc with
|
|
|
|
// the preimage.
|
|
|
|
func (h *Htlc) GenSuccessWitness(receiverSig []byte,
|
|
|
|
preimage lntypes.Preimage) (wire.TxWitness, error) {
|
|
|
|
|
|
|
|
if h.Hash != preimage.Hash() {
|
|
|
|
return nil, errors.New("preimage doesn't match hash")
|
|
|
|
}
|
|
|
|
|
|
|
|
return h.genSuccessWitness(receiverSig, preimage), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// AddSuccessToEstimator adds a successful spend to a weight estimator.
|
|
|
|
func (h *Htlc) AddSuccessToEstimator(estimator *input.TxWeightEstimator) {
|
|
|
|
maxSuccessWitnessSize := h.MaxSuccessWitnessSize()
|
|
|
|
|
|
|
|
switch h.OutputType {
|
|
|
|
case HtlcP2WSH:
|
|
|
|
estimator.AddWitnessInput(maxSuccessWitnessSize)
|
|
|
|
|
|
|
|
case HtlcNP2WSH:
|
|
|
|
estimator.AddNestedP2WSHInput(maxSuccessWitnessSize)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// AddTimeoutToEstimator adds a timeout spend to a weight estimator.
|
|
|
|
func (h *Htlc) AddTimeoutToEstimator(estimator *input.TxWeightEstimator) {
|
|
|
|
maxTimeoutWitnessSize := h.MaxTimeoutWitnessSize()
|
|
|
|
|
|
|
|
switch h.OutputType {
|
|
|
|
case HtlcP2WSH:
|
|
|
|
estimator.AddWitnessInput(maxTimeoutWitnessSize)
|
|
|
|
|
|
|
|
case HtlcNP2WSH:
|
|
|
|
estimator.AddNestedP2WSHInput(maxTimeoutWitnessSize)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// HtlcScriptV1 encapsulates the htlc v1 script.
|
|
|
|
type HtlcScriptV1 struct {
|
|
|
|
script []byte
|
|
|
|
}
|
|
|
|
|
|
|
|
// newHTLCScriptV1 constructs an HtlcScript with the HTLC V1 witness script.
|
2019-03-06 20:13:50 +00:00
|
|
|
//
|
|
|
|
// OP_SIZE 32 OP_EQUAL
|
|
|
|
// OP_IF
|
2020-07-20 14:28:08 +00:00
|
|
|
// OP_HASH160 <ripemd160(swapHash)> OP_EQUALVERIFY
|
|
|
|
// <receiverHtlcKey>
|
2019-03-06 20:13:50 +00:00
|
|
|
// OP_ELSE
|
|
|
|
// OP_DROP
|
|
|
|
// <cltv timeout> OP_CHECKLOCKTIMEVERIFY OP_DROP
|
2020-07-20 14:28:08 +00:00
|
|
|
// <senderHtlcKey>
|
2019-03-06 20:13:50 +00:00
|
|
|
// OP_ENDIF
|
|
|
|
// OP_CHECKSIG
|
2020-07-20 16:16:28 +00:00
|
|
|
func newHTLCScriptV1(cltvExpiry int32, senderHtlcKey,
|
|
|
|
receiverHtlcKey [33]byte, swapHash lntypes.Hash) (*HtlcScriptV1, error) {
|
2019-03-06 20:13:50 +00:00
|
|
|
|
|
|
|
builder := txscript.NewScriptBuilder()
|
|
|
|
|
|
|
|
builder.AddOp(txscript.OP_SIZE)
|
|
|
|
builder.AddInt64(32)
|
|
|
|
builder.AddOp(txscript.OP_EQUAL)
|
|
|
|
|
|
|
|
builder.AddOp(txscript.OP_IF)
|
|
|
|
|
|
|
|
builder.AddOp(txscript.OP_HASH160)
|
|
|
|
builder.AddData(input.Ripemd160H(swapHash[:]))
|
|
|
|
builder.AddOp(txscript.OP_EQUALVERIFY)
|
|
|
|
|
|
|
|
builder.AddData(receiverHtlcKey[:])
|
|
|
|
|
|
|
|
builder.AddOp(txscript.OP_ELSE)
|
|
|
|
|
|
|
|
builder.AddOp(txscript.OP_DROP)
|
|
|
|
|
|
|
|
builder.AddInt64(int64(cltvExpiry))
|
|
|
|
builder.AddOp(txscript.OP_CHECKLOCKTIMEVERIFY)
|
|
|
|
builder.AddOp(txscript.OP_DROP)
|
|
|
|
|
|
|
|
builder.AddData(senderHtlcKey[:])
|
|
|
|
|
|
|
|
builder.AddOp(txscript.OP_ENDIF)
|
|
|
|
|
|
|
|
builder.AddOp(txscript.OP_CHECKSIG)
|
|
|
|
|
2020-07-20 16:16:28 +00:00
|
|
|
script, err := builder.Script()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2019-03-06 20:13:50 +00:00
|
|
|
|
2020-07-20 16:16:28 +00:00
|
|
|
return &HtlcScriptV1{
|
|
|
|
script: script,
|
|
|
|
}, nil
|
|
|
|
}
|
2019-03-06 20:13:50 +00:00
|
|
|
|
2020-07-20 16:16:28 +00:00
|
|
|
// genSuccessWitness returns the success script to spend this htlc with
|
|
|
|
// the preimage.
|
|
|
|
func (h *HtlcScriptV1) genSuccessWitness(receiverSig []byte,
|
|
|
|
preimage lntypes.Preimage) wire.TxWitness {
|
2019-03-06 20:13:50 +00:00
|
|
|
|
|
|
|
witnessStack := make(wire.TxWitness, 3)
|
|
|
|
witnessStack[0] = append(receiverSig, byte(txscript.SigHashAll))
|
|
|
|
witnessStack[1] = preimage[:]
|
2020-07-20 16:16:28 +00:00
|
|
|
witnessStack[2] = h.script
|
2019-03-06 20:13:50 +00:00
|
|
|
|
2020-07-20 16:16:28 +00:00
|
|
|
return witnessStack
|
|
|
|
}
|
|
|
|
|
|
|
|
// GenTimeoutWitness returns the timeout script to spend this htlc after
|
|
|
|
// timeout.
|
|
|
|
func (h *HtlcScriptV1) GenTimeoutWitness(senderSig []byte) wire.TxWitness {
|
|
|
|
|
|
|
|
witnessStack := make(wire.TxWitness, 3)
|
|
|
|
witnessStack[0] = append(senderSig, byte(txscript.SigHashAll))
|
|
|
|
witnessStack[1] = []byte{0}
|
|
|
|
witnessStack[2] = h.script
|
|
|
|
|
|
|
|
return witnessStack
|
2019-03-06 20:13:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// IsSuccessWitness checks whether the given stack is valid for redeeming the
|
|
|
|
// htlc.
|
2020-07-20 16:16:28 +00:00
|
|
|
func (h *HtlcScriptV1) IsSuccessWitness(witness wire.TxWitness) bool {
|
2019-03-06 20:13:50 +00:00
|
|
|
if len(witness) != 3 {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
isTimeoutTx := bytes.Equal([]byte{0}, witness[1])
|
2020-07-20 16:16:28 +00:00
|
|
|
return !isTimeoutTx
|
|
|
|
}
|
|
|
|
|
|
|
|
// Script returns the htlc script.
|
|
|
|
func (h *HtlcScriptV1) Script() []byte {
|
|
|
|
return h.script
|
|
|
|
}
|
|
|
|
|
|
|
|
// MaxSuccessWitnessSize returns the maximum success witness size.
|
|
|
|
func (h *HtlcScriptV1) MaxSuccessWitnessSize() int {
|
|
|
|
// Calculate maximum success witness size
|
|
|
|
//
|
|
|
|
// - number_of_witness_elements: 1 byte
|
|
|
|
// - receiver_sig_length: 1 byte
|
|
|
|
// - receiver_sig: 73 bytes
|
|
|
|
// - preimage_length: 1 byte
|
|
|
|
// - preimage: 32 bytes
|
|
|
|
// - witness_script_length: 1 byte
|
|
|
|
// - witness_script: len(script) bytes
|
|
|
|
return 1 + 1 + 73 + 1 + 32 + 1 + len(h.script)
|
|
|
|
}
|
|
|
|
|
|
|
|
// MaxTimeoutWitnessSize return the maximum timeout witness size.
|
|
|
|
func (h *HtlcScriptV1) MaxTimeoutWitnessSize() int {
|
|
|
|
// Calculate maximum timeout witness size
|
|
|
|
//
|
|
|
|
// - number_of_witness_elements: 1 byte
|
|
|
|
// - sender_sig_length: 1 byte
|
|
|
|
// - sender_sig: 73 bytes
|
|
|
|
// - zero_length: 1 byte
|
|
|
|
// - zero: 1 byte
|
|
|
|
// - witness_script_length: 1 byte
|
|
|
|
// - witness_script: len(script) bytes
|
|
|
|
return 1 + 1 + 73 + 1 + 1 + 1 + len(h.script)
|
|
|
|
}
|
|
|
|
|
|
|
|
// SuccessSequence returns the sequence to spend this htlc in the success case.
|
|
|
|
func (h *HtlcScriptV1) SuccessSequence() uint32 {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
// HtlcScriptV2 encapsulates the htlc v2 script.
|
|
|
|
type HtlcScriptV2 struct {
|
|
|
|
script []byte
|
|
|
|
senderKey [33]byte
|
|
|
|
}
|
|
|
|
|
|
|
|
// newHTLCScriptV2 construct an HtlcScipt with the HTLC V2 witness script.
|
|
|
|
//
|
|
|
|
// <receiverHtlcKey> OP_CHECKSIG OP_NOTIF
|
|
|
|
// OP_DUP OP_HASH160 <HASH160(senderHtlcKey)> OP_EQUALVERIFY OP_CHECKSIGVERIFY
|
|
|
|
// <cltv timeout> OP_CHECKLOCKTIMEVERIFY
|
|
|
|
// OP_ELSE
|
|
|
|
// OP_SIZE <20> OP_EQUALVERIFY OP_HASH160 <ripemd(swapHash)> OP_EQUALVERIFY 1
|
|
|
|
// OP_CHECKSEQUENCEVERIFY
|
|
|
|
// OP_ENDIF
|
|
|
|
func newHTLCScriptV2(cltvExpiry int32, senderHtlcKey,
|
|
|
|
receiverHtlcKey [33]byte, swapHash lntypes.Hash) (*HtlcScriptV2, error) {
|
|
|
|
|
|
|
|
builder := txscript.NewScriptBuilder()
|
|
|
|
builder.AddData(receiverHtlcKey[:])
|
|
|
|
builder.AddOp(txscript.OP_CHECKSIG)
|
|
|
|
|
|
|
|
builder.AddOp(txscript.OP_NOTIF)
|
|
|
|
|
|
|
|
builder.AddOp(txscript.OP_DUP)
|
|
|
|
builder.AddOp(txscript.OP_HASH160)
|
|
|
|
senderHtlcKeyHash := sha256.Sum256(senderHtlcKey[:])
|
|
|
|
builder.AddData(input.Ripemd160H(senderHtlcKeyHash[:]))
|
|
|
|
|
|
|
|
builder.AddOp(txscript.OP_EQUALVERIFY)
|
|
|
|
builder.AddOp(txscript.OP_CHECKSIGVERIFY)
|
|
|
|
|
|
|
|
builder.AddInt64(int64(cltvExpiry))
|
|
|
|
builder.AddOp(txscript.OP_CHECKLOCKTIMEVERIFY)
|
|
|
|
|
|
|
|
builder.AddOp(txscript.OP_ELSE)
|
|
|
|
|
|
|
|
builder.AddOp(txscript.OP_SIZE)
|
|
|
|
builder.AddInt64(0x20)
|
|
|
|
builder.AddOp(txscript.OP_EQUALVERIFY)
|
|
|
|
builder.AddOp(txscript.OP_HASH160)
|
|
|
|
builder.AddData(input.Ripemd160H(swapHash[:]))
|
|
|
|
builder.AddOp(txscript.OP_EQUALVERIFY)
|
|
|
|
builder.AddOp(txscript.OP_1)
|
|
|
|
|
|
|
|
builder.AddOp(txscript.OP_CHECKSEQUENCEVERIFY)
|
|
|
|
|
|
|
|
builder.AddOp(txscript.OP_ENDIF)
|
|
|
|
|
|
|
|
script, err := builder.Script()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return &HtlcScriptV2{
|
|
|
|
script: script,
|
|
|
|
senderKey: senderHtlcKey,
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// genSuccessWitness returns the success script to spend this htlc with
|
|
|
|
// the preimage.
|
|
|
|
func (h *HtlcScriptV2) genSuccessWitness(receiverSig []byte,
|
|
|
|
preimage lntypes.Preimage) wire.TxWitness {
|
|
|
|
|
|
|
|
witnessStack := make(wire.TxWitness, 3)
|
|
|
|
witnessStack[0] = preimage[:]
|
|
|
|
witnessStack[1] = append(receiverSig, byte(txscript.SigHashAll))
|
|
|
|
witnessStack[2] = h.script
|
|
|
|
|
|
|
|
return witnessStack
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsSuccessWitness checks whether the given stack is valid for redeeming the
|
|
|
|
// htlc.
|
|
|
|
func (h *HtlcScriptV2) IsSuccessWitness(witness wire.TxWitness) bool {
|
|
|
|
isTimeoutTx := len(witness) == 4
|
2019-03-06 20:13:50 +00:00
|
|
|
|
|
|
|
return !isTimeoutTx
|
|
|
|
}
|
|
|
|
|
|
|
|
// GenTimeoutWitness returns the timeout script to spend this htlc after
|
|
|
|
// timeout.
|
2020-07-20 16:16:28 +00:00
|
|
|
func (h *HtlcScriptV2) GenTimeoutWitness(senderSig []byte) wire.TxWitness {
|
2019-03-06 20:13:50 +00:00
|
|
|
|
2020-07-20 16:16:28 +00:00
|
|
|
witnessStack := make(wire.TxWitness, 4)
|
2019-03-06 20:13:50 +00:00
|
|
|
witnessStack[0] = append(senderSig, byte(txscript.SigHashAll))
|
2020-07-20 16:16:28 +00:00
|
|
|
witnessStack[1] = h.senderKey[:]
|
|
|
|
witnessStack[2] = []byte{}
|
|
|
|
witnessStack[3] = h.script
|
2019-03-06 20:13:50 +00:00
|
|
|
|
2020-07-20 16:16:28 +00:00
|
|
|
return witnessStack
|
2019-03-06 20:13:50 +00:00
|
|
|
}
|
2019-04-04 10:20:45 +00:00
|
|
|
|
2020-07-20 16:16:28 +00:00
|
|
|
// Script returns the htlc script.
|
|
|
|
func (h *HtlcScriptV2) Script() []byte {
|
|
|
|
return h.script
|
|
|
|
}
|
|
|
|
|
|
|
|
// MaxSuccessWitnessSize returns maximum success witness size.
|
|
|
|
func (h *HtlcScriptV2) MaxSuccessWitnessSize() int {
|
2019-04-04 10:20:45 +00:00
|
|
|
// Calculate maximum success witness size
|
|
|
|
//
|
|
|
|
// - number_of_witness_elements: 1 byte
|
|
|
|
// - receiver_sig_length: 1 byte
|
|
|
|
// - receiver_sig: 73 bytes
|
|
|
|
// - preimage_length: 1 byte
|
2020-07-20 16:16:28 +00:00
|
|
|
// - preimage: 32 bytes
|
2019-04-04 10:20:45 +00:00
|
|
|
// - witness_script_length: 1 byte
|
|
|
|
// - witness_script: len(script) bytes
|
2020-07-20 16:16:28 +00:00
|
|
|
return 1 + 1 + 73 + 1 + 32 + 1 + len(h.script)
|
2019-04-04 10:20:45 +00:00
|
|
|
}
|
|
|
|
|
2020-07-20 16:16:28 +00:00
|
|
|
// MaxTimeoutWitnessSize returns maximum timeout witness size.
|
|
|
|
func (h *HtlcScriptV2) MaxTimeoutWitnessSize() int {
|
2019-04-04 10:20:45 +00:00
|
|
|
// Calculate maximum timeout witness size
|
|
|
|
//
|
|
|
|
// - number_of_witness_elements: 1 byte
|
|
|
|
// - sender_sig_length: 1 byte
|
|
|
|
// - sender_sig: 73 bytes
|
2020-07-20 16:16:28 +00:00
|
|
|
// - sender_key_length: 1 byte
|
|
|
|
// - sender_key: 33 bytes
|
2019-04-04 10:20:45 +00:00
|
|
|
// - zero: 1 byte
|
|
|
|
// - witness_script_length: 1 byte
|
|
|
|
// - witness_script: len(script) bytes
|
2020-07-20 16:16:28 +00:00
|
|
|
return 1 + 1 + 73 + 1 + 33 + 1 + 1 + len(h.script)
|
|
|
|
}
|
2019-04-04 10:20:45 +00:00
|
|
|
|
2020-07-20 16:16:28 +00:00
|
|
|
// SuccessSequence returns the sequence to spend this htlc in the success case.
|
|
|
|
func (h *HtlcScriptV2) SuccessSequence() uint32 {
|
|
|
|
return 1
|
2019-04-04 10:20:45 +00:00
|
|
|
}
|