> For the complete documentation index, see [llms.txt](https://vesselfinance.gitbook.io/vessel/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://vesselfinance.gitbook.io/vessel/vaelob/terminology.md).

# Terminology

* **Pool:** Vessel’s AMM pool consists of two assets, the base asset and the quote asset, aligning with trading pair terminology. For example, in an ETH/USDT pool, ETH is the base asset while USDT is the quote asset.
* **Tick:** A tick represents discrete prices used in the AMM pool. Each pool is instantiated with a predefined set of ticks that remain unchanged throughout its lifecycle. In Vessel, ticks are defined in an arithmetic sequence, represented as a tuple $$\<Tick\_0, TotalTicks, TickSpacing>$$:

  ▪ $$Tick\_0=MinPrice$$

  ▪ $$Tick\_i=Tick\_0+TickSpacing \times (i-1), 0 \le i < TotalTicks$$
* **Interval:** An interval is the minimal divisible price range in the AMM pool. $$Interval\_i$$ covers the price range $$\[Tick\_i, Tick\_{i+1}]$$, managing buy orders at $$Tick\_i$$ and sell orders at $$Tick\_{i+1}$$.
* **Liquidity:** Liquidity is the total size in base asset of orders managed by the AMM within a specific range. The liquidity of $$Interval\_i$$ is the sum of buy order sizes at $$Tick\_i$$ and sell order sizes at $$Tick\_{i+1}$$. The pool's total liquidity is the sum across all intervals.
* **Position:** A position indicates how an LP provides liquidity within a specific range, defined by $$\<Tick\_L, Tick\_R,L>$$, covering $$\[Tick\_L, Tick\_R]$$, with $$L$$ liquidity in each interval.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://vesselfinance.gitbook.io/vessel/vaelob/terminology.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
