Strategy Orders
Learn how to use LIMIT & DCA orders
Essential knowledge
All of swap.coffee’s orders, regardless of their type, utilize the same Strategy Orders Service API (available both at our Rest API endpoint or within our SDK).
To start your integration journey throughout our SDK, here’s a useful code snippet:
Our service of working with strategy orders is organized in a fairly simple way:
- For each user we deploy a so-called Strategies Wallet that is being administrated by our backend systems.
- Whenever user decides to create a new order or edit an existing one, he transfers funds and sends an associated message to that contract. Therefore, all the information about user’s orders and interactions is stored within blockchain: not as a separate contract for each order, but in a single contract for all of them.
- Our backend systems perform strategies-related logic and build routes off-chain, then initiate both exchange- and order-ending transactions on the wallet contract deployed in step (1).
Strategies wallet
First of all, in order to interact with strategies service, user needs to create his very own Strategies Wallet. This is a one-time action.
Wallet verification token
Many of our API methods may require a mandatory parameter xVerify
. This is a special json-formatted string that
confirms ownership of the associated wallet.
The easiest way to obtain it is to authorize with your wallet at our website and to steal it from within browser’s network profiling page (it will be in sent-headers section).
The manual way to generate it is to authenticate swap.coffee
domain using Ton Connect. More details about it
available in their documentation.
Creating your first order
After strategies wallet has been created, you are free to use the full power of our strategies service any way you want it.
Firstly, you need to decide for which pair of assets you are going to create an order. Unlike regular route building, orders can not be created for an arbitrary set of pairs. What we do instead is:
After you checked that the pair of assets you wanted to create the order for is indeed supported, it is time to create the order itself:
Order settings
There are some non-obvious parameters in this request that require further explanation:
max_suborders
- maximum amount of sub-orders this order may be split into. Must be within bounds[1; 255]
.max_invocations
- maximum amount of sub-orders execution tries. Must be within bounds[max_suborders; 255]
. What we mean by try here is as follows:- If sub-order executes successfully, it consumes one try, and order execution continues as planned;
- Otherwise (if sub-order couldn’t be fulfilled due to slippage toleration, deadline exceeding, etc), - it also consumes one try, but checks if there are any available tries left: if yes, sub-order will be retried (consuming one more try); if no, the whole order will be cancelled at the current stage of execution (possibly marked as only partially fulfilled).
slippage
- this term means the same as in normal routing construction, but for LIMIT orders (when the system must guarantee that the order will be filled at no less than the user’s requested price) it also affects how much the price must exceed the user’s requested price before the order will be attempted to be filled. For example,0.001
(0.1%) value set for LIMIT order, in which user wants to exchange 1 TON for at least 10 USDT, means that order will be executed when price reaches at least10 * (1 + 0.001) = 10 * 1.001 = 10.01
USDT for 1 TON. Must be within bounds(0; 1]
.settings
is the only field that is truly unique for each order type. Below it is analyzed in detail.
For limit orders:
For DCA orders:
Looking after existing orders
There are 2 methods for retrieving your orders information: getStrategyOrder
that looks for specific order identifier,
and getStrategyOrders
that supports filtering and allows to get data for multiple orders at once.
Both of those methods return structure known as StrategyOrder
, which looks as follows:
Meaning of the fields:
Field name | Field type | Meaning |
---|---|---|
id | int32 | Order’s identifier. Unique for every order. |
type | enum (string) | Order’s type. |
wallet | string | Address of strategies wallet associated with the order. Wallets of orders of the same user are always identical. |
status | enum (string) | Current status of the order:
|
creation_timestamp | int64 | Order’s creation timestamp in unix time seconds. |
initial_input_amount | string | Absolute amount of the input asset (token_from ) when this order was created. |
current_input_amount | string | Absolute amount of the input asset (token_from ) as for now. May be zero if the whole input asset amount was consumed. This field does not always decrease: it may decrease when our service sends exchange transaction, but increase back if that transaction fails. |
current_output_amount | string | Absolute amount of the output asset (token_to ) as for now. Starts at zero. Never decreases. |
settings | structure | Order’s settings that are unique for each strategy. May include some additional (technical) fields, that were not present at the time order was created. |
max_suborders | int8 | Maximum amount of order’s suborders. Order was created with that value. |
suborders_executed | int8 | Amount of order’s suborders that were successfully executed as for now. |
max_invocations | int8 | Maximum amount of order’s invocations (tries). Order was created with that value. |
invocations_executed | int8 | Amount of order’s invocations (_tries) that were executed (not necessarily successfully). |
slippage | float | Slippage with which order was created. |
max_path_length | int3 | Maximum length of routes for which transactions may be executed within this order, in tokens. So, for example, 2 means that only routes such as A -> B may be executed, and so on. This field is being set internally and therefore could not be modified in any way. |
active_transactions | int8 | Amount of order’s transactions that were sent to the blockchain and which execution status still was not handled by our service. |
close_timestamp | int64 | Optional field that is present for orders in terminal status only. Signifies order’s closing timestamp in unix time seconds. |
Please, keep in mind that both current_input_amount
and current_output_amount
include fees to be withdrawn by our service (if any).
Currently, there is no API functionality that allows to distinct funds to be sent to the user and service fees.
Order cancellation
Given an existing order in active
status, user is able to cancel it by calling appropriate method: