Pool
Source Code: sources/pool.move
The Pool module stands as the cornerstone of Liquidswap V1, encompassing the essential functionalities such as swap, mint, burn logic, and core checks. These operations are efficiently executed with the assistance of helper libraries. Central to this module is the 'Pool resource', a pivotal component of the contracts. It serves as a repository for crucial data including reserves, bin information, fee parameters, and events.
This resource is defined with three generics, a design choice that facilitates the determination of the appropriate pool during iterative processes:
The generics are primarily defined by two coins, X and Y, which establish the trading pair.
For instance, X could be represented as
And Y could be represented as:
BinStep: This type is crucial as it determines the step between bins in Liquidswap V1, essentially representing the price difference between adjacent bins
it is important to note that the coin generics X and Y must be sorted correctly. This sorting ensures proper functioning within the protocol's framework.
Liquidswap V1 operates by creating pools within a designated resource account. Each pool is unique, ensuring there are no duplicates with the same combination of coins and bin size. This principle of uniqueness also applies to LB tokens, where each collection is distinct and non-replicable.
Bins
Source Code: bin_steps/
All potential bin steps, ranging from 1 to 100, are defined within the 'BinSteps' module of Liquidswap V1. They can be utilized in the following manner:
Each bin step is indicative of the price difference between bins, measured in basis points. For instance, one basis point, which is equivalent to 0.0001 or 0.01%, corresponds to the X1 bin step. For a more comprehensive understanding, please refer to the Protocol Overview section.
Functions
The module offers an extensive array of functions and getters that can be highly useful. We recommend exploring the source code to gain a deeper understanding.
These functions enable you to retrieve information about bins, the active bin step, current fee parameters, calculate fees, perform flashloans, and more. Some functions are marked as #[view]
, indicating that they can be queried off-chain
Pool Creation
At present, pool creation in Liquidswap V1 is a permissioned process. This decision is driven by the fact that the project is in its early stages, and there is a need for time to comprehensively evaluate and determine the most optimal pre-configurations to offer. Misconfigurations during pool creation can potentially lead to unpredictable consequences, and this precautionary approach helps mitigate such risks.
Add Liquidity
To contribute liquidity to existing pools, you can utilize the mint
function:
To add liquidity, you'll need to specify the IDs of the bins where you intend to contribute liquidity, along with the respective amounts for each bin. It's important to note that when adding liquidity, you can only add both X and Y coins to the active bin. Specifically, on the left side of the active bin, you can only use X coins, and on the right side, you can only use Y coins
After you would get the LB tokens which would represent your position in bins of the pools, and leftovers coins if there is something left.
Remove Liquidity
It's much pretty simple, just use the function burn
and provide LB tokens you are willing to burn:
You will get reedemed liquidity and collected fees.
Swap
You can swap coin X in pair for coin Y or vise versa. To do swap use the following two functions:
If the amount to swap is greater than provided liquidity in the pool, the function would abort, so always be sure your swap can be covered.
Flashloans
The implementation is based on Move's loan concept, where a Move object containing the loan data is issued by flashloan
function but cannot be stored, copied, cloned or dropped, the only available action being to return the object back to the pay_flashloan
function, which would verify that payout contains enough fees.
The concept was explained early on by the Pontem team in this Medium article.
Take a flashloan:
Pay flashloan:
The dynamic fees is not applying to the flashloan, the flashloan fee can be changed by DAO account.
Read more in the integration section.
Getters
Almost all getters are marked as #[view]
functions which allows to query data of the pools, include query active bin, current bin step as number, fees, get amount you will get after swap, or get amount you need to perfom a swap, pools parameters and many more.
For more details look at source code.
Events
Each operation, include pool creation, covered by events.
Last updated