Introduction

When designing a limit order system, we wanted to change how people imagine limit orders on-chain and make a system that feels closer to what DeFi can offer. Enter intent based smart conditional orders that execute according to custom logic rather than binary conditions.

The way these work is similar to any other limit order solution, except it can be more thought out as a set of instructions you would pass to an Ai chat bot. An example of the modern limit order solution would be having a take profit order & stoploss order which executes once the binary condition is met.

UniDex limit orders on the other hand, execute based on a set of instructions that keepers can understand and translate.

Want your BTC Long trade to have a stop loss if the SPY dips below a certain value? ETH Short opened if SOL crosses a specific value?

Maybe a BTC short opened if TWAP price hits a particular value, or even TWAP out of your existing trade in set intervals?

Keepers also have a record of every pending limit order and unexecuted market orders. This lets the keeper ALWAYS have perfect execution and the ability to execute missed trades. “Look backs” are possible where the keeper “looks back” at previously un-executed market orders and oracle prices to execute any missed trades in 1 minute intervals.

Plant Store Endpoints

View the OpenAPI specification file

Authentication

All API endpoints are authenticated using Bearer tokens and picked up from the specification file.

"security": [
  {
    "bearerAuth": []
  }
]