2019-03-07 02:22:46 +00:00
|
|
|
package loop
|
2019-03-06 20:13:50 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/btcsuite/btcutil"
|
2019-03-07 04:32:24 +00:00
|
|
|
"github.com/lightninglabs/loop/loopdb"
|
2019-10-09 10:36:16 +00:00
|
|
|
"github.com/lightninglabs/loop/swap"
|
2019-03-06 20:13:50 +00:00
|
|
|
"github.com/lightningnetwork/lnd/lntypes"
|
2020-02-11 12:25:03 +00:00
|
|
|
"github.com/lightningnetwork/lnd/routing/route"
|
2019-03-06 20:13:50 +00:00
|
|
|
)
|
|
|
|
|
2019-03-07 04:32:24 +00:00
|
|
|
// OutRequest contains the required parameters for a loop out swap.
|
|
|
|
type OutRequest struct {
|
2019-03-06 20:13:50 +00:00
|
|
|
// Amount specifies the requested swap amount in sat. This does not
|
|
|
|
// include the swap and miner fee.
|
|
|
|
Amount btcutil.Amount
|
|
|
|
|
|
|
|
// Destination address for the swap.
|
|
|
|
DestAddr btcutil.Address
|
|
|
|
|
|
|
|
// MaxSwapRoutingFee is the maximum off-chain fee in msat that may be
|
|
|
|
// paid for payment to the server. This limit is applied during path
|
|
|
|
// finding. Typically this value is taken from the response of the
|
2019-03-07 04:32:24 +00:00
|
|
|
// LoopOutQuote call.
|
2019-03-06 20:13:50 +00:00
|
|
|
MaxSwapRoutingFee btcutil.Amount
|
|
|
|
|
|
|
|
// MaxPrepayRoutingFee is the maximum off-chain fee in msat that may be
|
|
|
|
// paid for payment to the server. This limit is applied during path
|
|
|
|
// finding. Typically this value is taken from the response of the
|
2019-03-07 04:32:24 +00:00
|
|
|
// LoopOutQuote call.
|
2019-03-06 20:13:50 +00:00
|
|
|
MaxPrepayRoutingFee btcutil.Amount
|
|
|
|
|
|
|
|
// MaxSwapFee is the maximum we are willing to pay the server for the
|
2019-03-07 02:22:46 +00:00
|
|
|
// swap. This value is not disclosed in the swap initiation call, but
|
|
|
|
// if the server asks for a higher fee, we abort the swap. Typically
|
2019-03-07 04:32:24 +00:00
|
|
|
// this value is taken from the response of the LoopOutQuote call. It
|
2019-03-06 20:13:50 +00:00
|
|
|
// includes the prepay amount.
|
|
|
|
MaxSwapFee btcutil.Amount
|
|
|
|
|
|
|
|
// MaxPrepayAmount is the maximum amount of the swap fee that may be
|
|
|
|
// charged as a prepayment.
|
|
|
|
MaxPrepayAmount btcutil.Amount
|
|
|
|
|
|
|
|
// MaxMinerFee is the maximum in on-chain fees that we are willing to
|
|
|
|
// spent. If we want to sweep the on-chain htlc and the fee estimate
|
|
|
|
// turns out higher than this value, we cancel the swap. If the fee
|
|
|
|
// estimate is lower, we publish the sweep tx.
|
|
|
|
//
|
|
|
|
// If the sweep tx isn't confirmed, we are forced to ratchet up fees
|
|
|
|
// until it is swept. Possibly even exceeding MaxMinerFee if we get
|
|
|
|
// close to the htlc timeout. Because the initial publication revealed
|
|
|
|
// the preimage, we have no other choice. The server may already have
|
|
|
|
// pulled the off-chain htlc. Only when the fee becomes higher than the
|
|
|
|
// swap amount, we can only wait for fees to come down and hope - if we
|
|
|
|
// are past the timeout - that the server isn't publishing the
|
|
|
|
// revocation.
|
|
|
|
//
|
|
|
|
// MaxMinerFee is typically taken from the response of the
|
2019-03-07 04:32:24 +00:00
|
|
|
// LoopOutQuote call.
|
2019-03-06 20:13:50 +00:00
|
|
|
MaxMinerFee btcutil.Amount
|
|
|
|
|
|
|
|
// SweepConfTarget specifies the targeted confirmation target for the
|
|
|
|
// client sweep tx.
|
|
|
|
SweepConfTarget int32
|
|
|
|
|
2020-08-04 14:37:24 +00:00
|
|
|
// HtlcConfirmations specifies the number of confirmations we require
|
|
|
|
// for on chain loop out htlcs.
|
|
|
|
HtlcConfirmations int32
|
|
|
|
|
2020-05-19 07:54:27 +00:00
|
|
|
// OutgoingChanSet optionally specifies the short channel ids of the
|
|
|
|
// channels that may be used to loop out.
|
|
|
|
OutgoingChanSet loopdb.ChannelSet
|
2019-11-14 09:35:32 +00:00
|
|
|
|
|
|
|
// SwapPublicationDeadline can be set by the client to allow the server
|
|
|
|
// delaying publication of the swap HTLC to save on chain fees.
|
|
|
|
SwapPublicationDeadline time.Time
|
2020-07-14 12:54:06 +00:00
|
|
|
|
|
|
|
// Expiry is the absolute expiry height of the on-chain htlc.
|
|
|
|
Expiry int32
|
2020-08-03 08:55:58 +00:00
|
|
|
|
|
|
|
// Label contains an optional label for the swap.
|
|
|
|
Label string
|
2020-11-06 09:43:03 +00:00
|
|
|
|
|
|
|
// Initiator is an optional string that identifies what software
|
|
|
|
// initiated the swap (loop CLI, autolooper, LiT UI and so on) and is
|
|
|
|
// appended to the user agent string.
|
|
|
|
Initiator string
|
2019-03-06 20:13:50 +00:00
|
|
|
}
|
|
|
|
|
2019-03-07 04:32:24 +00:00
|
|
|
// Out contains the full details of a loop out request. This includes things
|
|
|
|
// like the payment hash, the total value, and the final CTLV delay of the
|
|
|
|
// swap. We'll use this to track an active swap throughout that various swap
|
|
|
|
// stages.
|
|
|
|
type Out struct {
|
|
|
|
// LoopOutContract describes the details of this loop.Out. Using these
|
|
|
|
// details,the full swap can be executed.
|
|
|
|
loopdb.LoopOutContract
|
2019-03-06 20:13:50 +00:00
|
|
|
|
2019-03-07 04:32:24 +00:00
|
|
|
// State is the current state of the target swap.
|
|
|
|
State loopdb.SwapState
|
2019-03-06 20:13:50 +00:00
|
|
|
|
2019-03-07 04:32:24 +00:00
|
|
|
// SwapInfoKit contains shared data amongst all swap types.
|
|
|
|
SwapInfoKit
|
2019-03-06 20:13:50 +00:00
|
|
|
}
|
|
|
|
|
2019-03-07 04:32:24 +00:00
|
|
|
// LoopOutQuoteRequest specifies the swap parameters for which a quote is
|
2019-03-06 20:13:50 +00:00
|
|
|
// requested.
|
2019-03-07 04:32:24 +00:00
|
|
|
type LoopOutQuoteRequest struct {
|
2019-03-06 20:13:50 +00:00
|
|
|
// Amount specifies the requested swap amount in sat. This does not
|
|
|
|
// include the swap and miner fee.
|
|
|
|
Amount btcutil.Amount
|
|
|
|
|
|
|
|
// SweepConfTarget specifies the targeted confirmation target for the
|
|
|
|
// client sweep tx.
|
|
|
|
SweepConfTarget int32
|
|
|
|
|
2020-01-07 12:52:42 +00:00
|
|
|
// SwapPublicationDeadline can be set by the client to allow the server
|
|
|
|
// delaying publication of the swap HTLC to save on chain fees.
|
|
|
|
SwapPublicationDeadline time.Time
|
|
|
|
|
2019-03-06 20:13:50 +00:00
|
|
|
// TODO: Add argument to specify confirmation target for server
|
|
|
|
// publishing htlc. This may influence the swap fee quote, because the
|
|
|
|
// server needs to pay more for faster confirmations.
|
|
|
|
//
|
|
|
|
// TODO: Add arguments to specify maximum total time locks for the
|
|
|
|
// off-chain swap payment and prepayment. This may influence the
|
|
|
|
// available routes and off-chain fee estimates. To apply these maximum
|
|
|
|
// values properly, the server needs to be queried for its required
|
|
|
|
// final cltv delta values for the off-chain payments.
|
|
|
|
}
|
|
|
|
|
2019-10-08 20:28:20 +00:00
|
|
|
// LoopOutTerms are the server terms on which it executes swaps.
|
|
|
|
type LoopOutTerms struct {
|
|
|
|
// MinSwapAmount is the minimum amount that the server requires for a
|
|
|
|
// swap.
|
|
|
|
MinSwapAmount btcutil.Amount
|
|
|
|
|
|
|
|
// MaxSwapAmount is the maximum amount that the server accepts for a
|
|
|
|
// swap.
|
|
|
|
MaxSwapAmount btcutil.Amount
|
2020-07-15 11:00:27 +00:00
|
|
|
|
|
|
|
// MinCltvDelta is the minimum expiry delta for loop out swaps.
|
|
|
|
MinCltvDelta int32
|
|
|
|
|
|
|
|
// MaxCltvDelta is the maximum expiry delta for loop out swaps.
|
|
|
|
MaxCltvDelta int32
|
2019-10-08 20:28:20 +00:00
|
|
|
}
|
|
|
|
|
2019-03-07 04:32:24 +00:00
|
|
|
// LoopOutQuote contains estimates for the fees making up the total swap cost
|
2019-03-06 20:13:50 +00:00
|
|
|
// for the client.
|
2019-03-07 04:32:24 +00:00
|
|
|
type LoopOutQuote struct {
|
2019-03-06 20:13:50 +00:00
|
|
|
// SwapFee is the fee that the swap server is charging for the swap.
|
|
|
|
SwapFee btcutil.Amount
|
|
|
|
|
|
|
|
// PrepayAmount is the part of the swap fee that is requested as a
|
|
|
|
// prepayment.
|
|
|
|
PrepayAmount btcutil.Amount
|
|
|
|
|
|
|
|
// MinerFee is an estimate of the on-chain fee that needs to be paid to
|
|
|
|
// sweep the htlc.
|
|
|
|
MinerFee btcutil.Amount
|
|
|
|
|
|
|
|
// SwapPaymentDest is the node pubkey where to swap payment needs to be
|
|
|
|
// sent to.
|
|
|
|
SwapPaymentDest [33]byte
|
|
|
|
}
|
|
|
|
|
2019-03-12 15:10:37 +00:00
|
|
|
// LoopInRequest contains the required parameters for the swap.
|
|
|
|
type LoopInRequest struct {
|
|
|
|
// Amount specifies the requested swap amount in sat. This does not
|
|
|
|
// include the swap and miner fee.
|
|
|
|
Amount btcutil.Amount
|
|
|
|
|
|
|
|
// MaxSwapFee is the maximum we are willing to pay the server for the
|
|
|
|
// swap. This value is not disclosed in the swap initiation call, but if
|
|
|
|
// the server asks for a higher fee, we abort the swap. Typically this
|
2019-11-14 09:35:32 +00:00
|
|
|
// value is taken from the response of the LoopInQuote call. It
|
2019-03-12 15:10:37 +00:00
|
|
|
// includes the prepay amount.
|
|
|
|
MaxSwapFee btcutil.Amount
|
|
|
|
|
|
|
|
// MaxMinerFee is the maximum in on-chain fees that we are willing to
|
|
|
|
// spent. If we publish the on-chain htlc and the fee estimate turns out
|
|
|
|
// higher than this value, we cancel the swap.
|
|
|
|
//
|
2019-11-14 09:35:32 +00:00
|
|
|
// MaxMinerFee is typically taken from the response of the LoopInQuote
|
2019-03-12 15:10:37 +00:00
|
|
|
// call.
|
|
|
|
MaxMinerFee btcutil.Amount
|
|
|
|
|
|
|
|
// HtlcConfTarget specifies the targeted confirmation target for the
|
|
|
|
// client htlc tx.
|
|
|
|
HtlcConfTarget int32
|
|
|
|
|
2020-02-11 12:25:03 +00:00
|
|
|
// LastHop optionally specifies the last hop to use for the loop in
|
|
|
|
// payment.
|
|
|
|
LastHop *route.Vertex
|
2019-03-28 12:29:21 +00:00
|
|
|
|
|
|
|
// ExternalHtlc specifies whether the htlc is published by an external
|
|
|
|
// source.
|
|
|
|
ExternalHtlc bool
|
2020-08-03 08:55:58 +00:00
|
|
|
|
|
|
|
// Label contains an optional label for the swap.
|
|
|
|
Label string
|
2020-11-06 09:43:03 +00:00
|
|
|
|
|
|
|
// Initiator is an optional string that identifies what software
|
|
|
|
// initiated the swap (loop CLI, autolooper, LiT UI and so on) and is
|
|
|
|
// appended to the user agent string.
|
|
|
|
Initiator string
|
2019-03-12 15:10:37 +00:00
|
|
|
}
|
|
|
|
|
2019-11-14 09:35:32 +00:00
|
|
|
// LoopInTerms are the server terms on which it executes loop in swaps.
|
2019-03-12 15:10:37 +00:00
|
|
|
type LoopInTerms struct {
|
|
|
|
// MinSwapAmount is the minimum amount that the server requires for a
|
|
|
|
// swap.
|
|
|
|
MinSwapAmount btcutil.Amount
|
|
|
|
|
|
|
|
// MaxSwapAmount is the maximum amount that the server accepts for a
|
|
|
|
// swap.
|
|
|
|
MaxSwapAmount btcutil.Amount
|
|
|
|
}
|
|
|
|
|
|
|
|
// In contains status information for a loop in swap.
|
|
|
|
type In struct {
|
|
|
|
loopdb.LoopInContract
|
|
|
|
|
|
|
|
SwapInfoKit
|
|
|
|
|
|
|
|
// State where the swap is in.
|
|
|
|
State loopdb.SwapState
|
|
|
|
}
|
|
|
|
|
|
|
|
// LoopInQuoteRequest specifies the swap parameters for which a quote is
|
|
|
|
// requested.
|
|
|
|
type LoopInQuoteRequest struct {
|
|
|
|
// Amount specifies the requested swap amount in sat. This does not
|
|
|
|
// include the swap and miner fee.
|
|
|
|
Amount btcutil.Amount
|
|
|
|
|
|
|
|
// HtlcConfTarget specifies the targeted confirmation target for the
|
|
|
|
// client sweep tx.
|
|
|
|
HtlcConfTarget int32
|
2019-09-23 08:08:34 +00:00
|
|
|
|
|
|
|
// ExternalHtlc specifies whether the htlc is published by an external
|
|
|
|
// source.
|
|
|
|
ExternalHtlc bool
|
2019-03-12 15:10:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// LoopInQuote contains estimates for the fees making up the total swap cost
|
|
|
|
// for the client.
|
|
|
|
type LoopInQuote struct {
|
|
|
|
// SwapFee is the fee that the swap server is charging for the swap.
|
|
|
|
SwapFee btcutil.Amount
|
|
|
|
|
|
|
|
// MinerFee is an estimate of the on-chain fee that needs to be paid to
|
|
|
|
// sweep the htlc.
|
|
|
|
MinerFee btcutil.Amount
|
2019-10-08 20:28:20 +00:00
|
|
|
|
|
|
|
// Time lock delta relative to current block height that swap server
|
|
|
|
// will accept on the swap initiation call.
|
|
|
|
CltvDelta int32
|
2019-03-12 15:10:37 +00:00
|
|
|
}
|
|
|
|
|
2020-04-29 16:30:44 +00:00
|
|
|
// LoopInSwapInfo contains essential information of a loop-in swap after the
|
|
|
|
// swap is initiated.
|
|
|
|
type LoopInSwapInfo struct { // nolint
|
|
|
|
// SwapHash contains the sha256 hash of the swap preimage.
|
|
|
|
SwapHash lntypes.Hash
|
|
|
|
|
2020-04-24 15:35:32 +00:00
|
|
|
// HtlcAddressP2WSH contains the native segwit swap htlc address,
|
|
|
|
// where the loop-in funds may be paid.
|
|
|
|
HtlcAddressP2WSH btcutil.Address
|
|
|
|
|
|
|
|
// HtlcAddressNP2WSH contains the nested segwit swap htlc address,
|
|
|
|
// where the loop-in funds may be paid.
|
|
|
|
HtlcAddressNP2WSH btcutil.Address
|
2020-06-30 12:10:33 +00:00
|
|
|
|
|
|
|
// ServerMessages is the human-readable message received from the loop
|
|
|
|
// server.
|
|
|
|
ServerMessage string
|
2020-04-29 16:30:44 +00:00
|
|
|
}
|
|
|
|
|
2020-06-30 11:45:12 +00:00
|
|
|
// LoopOutSwapInfo contains essential information of a loop-out swap after the
|
|
|
|
// swap is initiated.
|
|
|
|
type LoopOutSwapInfo struct { // nolint:golint
|
|
|
|
// SwapHash contains the sha256 hash of the swap preimage.
|
|
|
|
SwapHash lntypes.Hash
|
|
|
|
|
|
|
|
// HtlcAddressP2WSH contains the native segwit swap htlc address that
|
|
|
|
// the server will publish to.
|
|
|
|
HtlcAddressP2WSH btcutil.Address
|
2020-06-30 12:10:33 +00:00
|
|
|
|
|
|
|
// ServerMessages is the human-readable message received from the loop
|
|
|
|
// server.
|
|
|
|
ServerMessage string
|
2020-06-30 11:45:12 +00:00
|
|
|
}
|
|
|
|
|
2019-03-06 20:13:50 +00:00
|
|
|
// SwapInfoKit contains common swap info fields.
|
|
|
|
type SwapInfoKit struct {
|
2019-03-07 02:22:46 +00:00
|
|
|
// Hash is the sha256 hash of the preimage that unlocks the htlcs. It
|
|
|
|
// is used to uniquely identify this swap.
|
2019-03-06 20:13:50 +00:00
|
|
|
Hash lntypes.Hash
|
|
|
|
|
|
|
|
// LastUpdateTime is the time of the last update of this swap.
|
|
|
|
LastUpdateTime time.Time
|
|
|
|
}
|
|
|
|
|
2019-03-07 04:32:24 +00:00
|
|
|
// SwapInfo exposes common info fields for loop in and loop out swaps.
|
2019-03-06 20:13:50 +00:00
|
|
|
type SwapInfo struct {
|
2019-05-15 11:55:41 +00:00
|
|
|
loopdb.SwapStateData
|
|
|
|
|
2020-04-30 13:54:48 +00:00
|
|
|
loopdb.SwapContract
|
|
|
|
|
|
|
|
// LastUpdateTime is the time of the last state change.
|
2019-03-06 20:13:50 +00:00
|
|
|
LastUpdate time.Time
|
|
|
|
|
2020-04-30 13:54:48 +00:00
|
|
|
// SwapHash stores the swap preimage hash.
|
2019-03-07 04:32:24 +00:00
|
|
|
SwapHash lntypes.Hash
|
|
|
|
|
2020-04-30 13:54:48 +00:00
|
|
|
// SwapType describes whether this is a loop in or loop out swap.
|
2019-10-09 10:36:16 +00:00
|
|
|
SwapType swap.Type
|
2019-03-07 04:32:24 +00:00
|
|
|
|
2020-04-24 15:35:32 +00:00
|
|
|
// HtlcAddressP2WSH stores the address of the P2WSH (native segwit)
|
|
|
|
// swap htlc. This is used for both loop-in and loop-out.
|
|
|
|
HtlcAddressP2WSH btcutil.Address
|
|
|
|
|
|
|
|
// HtlcAddressNP2WSH stores the address of the NP2WSH (nested segwit)
|
|
|
|
// swap htlc. This is only used for external loop-in.
|
|
|
|
HtlcAddressNP2WSH btcutil.Address
|
2020-04-30 13:54:48 +00:00
|
|
|
|
|
|
|
// ExternalHtlc is set to true for external loop-in swaps.
|
|
|
|
ExternalHtlc bool
|
2019-03-06 20:13:50 +00:00
|
|
|
}
|
2019-03-12 15:10:37 +00:00
|
|
|
|
|
|
|
// LastUpdate returns the last update time of the swap
|
|
|
|
func (s *In) LastUpdate() time.Time {
|
|
|
|
return s.LastUpdateTime
|
|
|
|
}
|
|
|
|
|
|
|
|
// SwapHash returns the swap hash.
|
|
|
|
func (s *In) SwapHash() lntypes.Hash {
|
|
|
|
return s.Hash
|
|
|
|
}
|