4️⃣-Swap Protocol
Overview
Once an order match is found in the taker’s order book, the swap protocol should be initiated. The current swap protocol assumes that the taker and maker are connected via a payment channel network (e.g. Lightning or Connext) with sufficient balance available for the swap. The following is the swap protocol's "happy" flow:
Taker finds a match, e.g. buying 1 BTC for 10k DAI
Taker creates the private
r_preimage
and the publicr_hash
for the atomic swapTaker sends the
SwapRequest
message to the maker, which includesr_hash
Maker confirms full or partial quantity in the
SwapAccepted
messageTaker starts the swap by dispatching the first-leg HTLCs on the DAI payment channel to the maker end, using
r_hash
Maker listens for an incoming HTLC on the DAI payment channel. Once it arrives he verifies price and quantity and then dispatches the second-leg HTLCs on the BTC payment channel to the taker end.
Taker listens for an incoming HTLC on the BTC payment channel. Once it arrives he releases
r_preimage
. This allows both the taker and the maker payments to finalize.Both nodes locally mark the swap as completed once the respective HTLC is resolved and the payment is finalized.
Possible misbehaviors and their outcome:
Swap Protocol
SwapRequest Message (0x0c)
The SwapRequest
message is sent by the taker to the maker to start the swap negotiation.
SwapAccepted Message (0x0d)
The SwapAccepted
message is sent by the maker to the taker to accept the swap request.
SwapFailed Message (0x0f)
The SwapFailed
message can be sent by either side of the swap protocol, at any time, to announce the swap termination.
failure_reason
is an optional parameter for specifying the failure reason:
Last updated