mirror of
https://github.com/lightninglabs/loop
synced 2024-11-08 01:10:29 +00:00
78 lines
2.1 KiB
Go
78 lines
2.1 KiB
Go
package utils
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/btcsuite/btcd/chaincfg"
|
|
"github.com/lightninglabs/loop/loopdb"
|
|
"github.com/lightninglabs/loop/swap"
|
|
"github.com/lightningnetwork/lnd/input"
|
|
"github.com/lightningnetwork/lnd/lntypes"
|
|
"github.com/lightningnetwork/lnd/zpay32"
|
|
)
|
|
|
|
// GetHtlc composes and returns the on-chain swap script.
|
|
func GetHtlc(hash lntypes.Hash, contract *loopdb.SwapContract,
|
|
chainParams *chaincfg.Params) (*swap.Htlc, error) {
|
|
|
|
switch GetHtlcScriptVersion(contract.ProtocolVersion) {
|
|
case swap.HtlcV2:
|
|
return swap.NewHtlcV2(
|
|
contract.CltvExpiry, contract.HtlcKeys.SenderScriptKey,
|
|
contract.HtlcKeys.ReceiverScriptKey, hash,
|
|
chainParams,
|
|
)
|
|
|
|
case swap.HtlcV3:
|
|
// Swaps that implement the new MuSig2 protocol will be expected
|
|
// to use the 1.0RC2 MuSig2 key derivation scheme.
|
|
muSig2Version := input.MuSig2Version040
|
|
if contract.ProtocolVersion >= loopdb.ProtocolVersionMuSig2 {
|
|
muSig2Version = input.MuSig2Version100RC2
|
|
}
|
|
|
|
return swap.NewHtlcV3(
|
|
muSig2Version,
|
|
contract.CltvExpiry,
|
|
contract.HtlcKeys.SenderInternalPubKey,
|
|
contract.HtlcKeys.ReceiverInternalPubKey,
|
|
contract.HtlcKeys.SenderScriptKey,
|
|
contract.HtlcKeys.ReceiverScriptKey,
|
|
hash, chainParams,
|
|
)
|
|
}
|
|
|
|
return nil, swap.ErrInvalidScriptVersion
|
|
}
|
|
|
|
// GetHtlcScriptVersion returns the correct HTLC script version for the passed
|
|
// protocol version.
|
|
func GetHtlcScriptVersion(
|
|
protocolVersion loopdb.ProtocolVersion) swap.ScriptVersion {
|
|
|
|
// If the swap was initiated before we had our v3 script, use v2.
|
|
if protocolVersion < loopdb.ProtocolVersionHtlcV3 ||
|
|
protocolVersion == loopdb.ProtocolVersionUnrecorded {
|
|
|
|
return swap.HtlcV2
|
|
}
|
|
|
|
return swap.HtlcV3
|
|
}
|
|
|
|
// ObtainSwapPaymentAddr will retrieve the payment addr from the passed invoice.
|
|
func ObtainSwapPaymentAddr(swapInvoice string, chainParams *chaincfg.Params) (
|
|
*[32]byte, error) {
|
|
|
|
swapPayReq, err := zpay32.Decode(swapInvoice, chainParams)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if swapPayReq.PaymentAddr == nil {
|
|
return nil, fmt.Errorf("expected payment address for invoice")
|
|
}
|
|
|
|
return swapPayReq.PaymentAddr, nil
|
|
}
|