Understanding the various states an order can go through during the swap process
This page outlines the various states an order can go through during the swap process, helping you manage integration logic effectively.
The tables below classify all the order statuses, providing descriptions and the corresponding actions.
Status | Description | Action |
---|---|---|
Created | The order is created and waiting for a solver to match. | — |
Matched | A solver has matched the order. | The user has to initiate the transaction on their source chain. |
Status | Description | Action |
---|---|---|
InitiateDetected | The user’s initiation transaction is detected on-chain but not confirmed yet. | — |
Initiated | The user’s initiation is confirmed. The solver must now initiate the transaction on the destination chain. | Wait for the solver to initiate. |
CounterPartyInitiateDetected | The solver’s initiation transaction is detected on-chain but not confirmed. | — |
CounterPartyInitiated | The solver’s initiation is confirmed, and the user must redeem their funds on the destination chain. | The user has to redeem their funds. |
Status | Description | Action |
---|---|---|
RedeemDetected | The user’s redeem transaction is detected on-chain but not confirmed yet. | — |
Redeemed | The user has redeemed their funds. The solver will now redeem their funds on the source chain. | — |
CounterPartyRedeemDetected | The solver’s redeem transaction is detected on-chain but not confirmed. | — |
CounterPartyRedeemed / Completed | The solver has redeemed their funds, marking the entire order as completed. | — |
Status | Description | Action |
---|---|---|
CounterPartySwapExpired | The solver’s HTLC has expired. | The user must wait for their HTLC to expire to claim a refund. |
Expired | The user’s HTLC has expired. | The user has to refund their funds. |
RefundDetected | The user’s refund transaction is detected on-chain but not confirmed. | — |
Refunded | The user’s refund is confirmed, and they have reclaimed their funds. | — |
DeadLineExceeded | 1. Initiate transaction is not detected within 1 hour. 2. Initiate transaction is not confirmed within 12 hours. | — |
Each swap (user or solver side) transitions through the following states:
Status | Description |
---|---|
Idle | The swap is not yet initiated. |
InitiateDetected | Initiation transaction is detected but not confirmed. |
Initiated | The initiation transaction is confirmed. |
RedeemDetected | Redemption transaction is detected but not confirmed. |
Redeemed | Redemption transaction is confirmed. |
RefundDetected | Refund transaction is detected but not confirmed. |
Refunded | Refund transaction is confirmed. |
Expired | The swap expired, and a refund is required. |
The order progresses through these states sequentially, with some states allowing for parallel execution between user and solver actions.