Skip to main content

Offer Lists

An "offer list" corresponds to either the "asks" or "bids" side of an order book. Mangrove has no explicit on-chain representation of an order book, only offer lists.

Hence, a full market will always feature two offer lists. For instance, a WETH/DAI market consists of:

  • a WETH-DAI offer list (where WETH is offered in exchange for DAI)
  • a DAI-WETH offer list (where DAI is offered in exchange for WETH)
market abstractions over offer lists

Mangrove's SDK offers Market abstractions that allows liquidity providers and takers to interact with Mangrove using standard trading concepts such as order book, base, and quote.

An offer list is identified by a struct OLKey(outbound_tkn, inbound_tkn, tickSpacing). For example, for a WETH-DAI offer list, the struct values would be:

  • outbound_tkn: the address of the WETH token (i.e., sent by the offer)
  • inbound_tkn: the address of the DAI token (i.e., wanted by the offer)
  • tickSpacing: typically 1 meaning that all ticks are allowed (see the previous page for details).

Offers are grouped by tick. The offers for a given tick are stored in a FIFO, doubly linked-list (an offer points to the previous and to the next one).

Note

If you haven't done it yet, we strongly suggest that you first get familiar with the Ticks, ratios, and prices page.

Example: WETH/DAI market​

Let's take a WETH/DAI market and look at its two corresponding offer lists, WETH-DAI and DAI-WETH, with tickSpacing = 1:

Offer list #1: WETH-DAI ("asks")​

For a WETH/DAI market, the WETH-DAI offer list corresponds to the "asks" of the order book:

  • WETH is the outbound token, i.e, offers give WETH
  • DAI is the inbound token, i.e, offers want DAI
  • The unit of ratios is DAI/WETH and price = ratio.

Here's an example of such an offer list:

TickRatio (DAI/WETH)Offer IDGives (WETH)Gas requiredMaker ContractOffer Gas Price
751711838.53420.7220,0000x2468xyz...160
751711838.53961.3280,0000x1357klm...140
752001843.8770.6210,0000x3287opq...190

Understanding the table​

  • Tick: The discrete "price" tick of the offer which corresponds to a ratio and price. Offers at the same tick are stored in FIFO order.
  • Ratio: The amount of inbound token to be paid per outbound token. This is not stored on-chain, but is derived from the tick.
  • Offer ID: An ID for the offer which is assigned by Mangrove when the offer is first created. The ID is unique only on that offer list.
  • Gives: The amount of outbound token offered.
  • Gas required: The amount of gas needed to execute the offer and its posthook.
  • Maker contract: The address of the make who posted the offer. Either an EOA or a maker contract (for smart offers).
  • Offer gas price: Gas price used to compute the order's provision (see also offer bounties). Must be at least Mangrove's gas price when the offer is posted.
Beware Decimals

We display human-readable amounts in the examples for readability, but on-chain Mangrove only works with raw token values and never uses the decimals a token.

For simplicity, the tokens used in these examples have the same number of decimals (18). When that's not the case, care must be taken to handle decimals, especially for ratios.

See the Ticks, ratios, and prices page for a detailed discussion of decimals.

Offer list #2: DAI-WETH ("bids")​

For a WETH/DAI market, the DAI-WETH offer list corresponds to the "bids" of the order book:

  • DAI is the outbound token, i.e, offers give DAI
  • WETH is the inbound token, i.e, offers want WETH
  • The unit of ratios is WETH/DAI and price = ratioβˆ’1^{-1}.

Here's an example of such an offer list:

TickRatio (WETH/DAI)Offer IDGives (DAI)Gas requiredMaker ContractOffer Gas Price
-751030.000547677925.26250,0000x5678def...150
-751030.0005476177916.47270,0000x9101ghi...170
-750410.000551042871.76300,0000x1234abc...200

Some terminology​

Offer ID​

The identifier of the offer in the offer list.

Important

Two offers may have the same ID as long as they belong to different offer lists. For instance, in the example above, both offer lists contain offers with ID 42.

Gas required​

The maximum amount of gas the maker contract managing the offer will be allowed to spend if called by Mangrove. This includes both makerExecute and makerPosthook.

Example

The offer with ID 77 in the DAI-WETH offer list above may consume up to 250K gas units.

Maker Contract​

The address of the maker contract bound to the offer. The makerExecute function of this contract's offer logic will be called when one of its offers is executed, and the corresponding makerPosthook will be called immediately after trade settlement.

An offer may also be posted from EOA with no logic attached - see On-the-fly offers.

Gas Price​

Gas price that was used to compute the offer provision. If the offer fails to deliver the promised outbound tokens, it will be charged based on this gasprice.

The gas price of an offer must be at least Mangrove's gas price at the time when the offer is posted.

Offer list configuration​

Several configuration parameters determine how new offers are inserted. Some are global to Mangrove, some are offer list specific. See Governance section for details.

Gas cost of posting, updating, and retracting offers​

The gas cost for posting, updating, and retracting offers is bounded by a constant thanks to ticks being organized internally in a fixed tree structure. The details are described in the annotated code of the Mangrove protocol.