Skip to main content

What is the Strat Library?

The Mangrove strat library is a repository of Solidity code that will help you write a custom maker contracts able to post smart offers on Mangrove.

The strat library provides several good starting points for writing your own custom maker contract for providing liquidity on Mangrove, but the library should be used responsibly.

Note

The mangrove-strats repository is separate from mangrove-core.

Open source and free to use - on your own responsibility​

The strat library is open source, and is provided freely to the community as a starting point for writing maker contracts. However, do note that the strat library as a whole may still contain bugs, and should be used responsibly and with care (see also Safety first).

If you have questions about how to use the Strat library, which are not answered sufficiently in this documentation, do reach out on the Mangrove Discord. And pull requests to the strategy library are, of course, welcome!

How do I use the Strat Library?​

Choosing the right starting point​

Depending on the complexity of the offer logic your contract implements, you need to choose from which building block you will start to build your maker contract from. At the very least your logic must provide an implementation of the IMaker interface required by Mangrove.

However, we suggest utilizing the building blocks in the strat lib. The first design choice is to decide whether owning offers posted by your contract is the sole privilege of the contract's admin or whether your contract's logic wishes to support multiple offer owners, in a permissionless fashion. In the first case, you want your contract to inherit Direct, in the latter you want to start from a Forwarder contract which has a pre-established code infrastructure to handle multiple ownership.

To get an idea of what it is all about, you can try out the smart offer tutorial to make a simple Direct maker contract.

Customizing the strat using hooks​

Default behavior of maker contracts built on top of Mangrove's strat library can be modified by overriding various hooks, see how-to's for some concrete examples.

Advanced cash management​

The strat library also provides router building blocks and example of router contracts, which are convenient when the offer logic of your maker contract handles multiple offer owners funds or involves some interaction with other DeFi bricks (such as a lender).

Safety first​

Writing a maker contract that will post and update offers on Mangrove exposes you to smart contract risks. We recommend reading some important developer guidelines on the topic to understand better important design principles you should follow.