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

# Developers

- [Concept Overview](https://pangeaswap.gitbook.io/pangeaswap/en/developers/concept-overview.md): A brief overview on the concept of the Pangea Protocol
- [Problem : Lazy Liquidity](https://pangeaswap.gitbook.io/pangeaswap/en/developers/concept-overview/problem-lazy-liquidity.md)
- [Liquidity Concentration](https://pangeaswap.gitbook.io/pangeaswap/en/developers/concept-overview/liquidity-concentration.md)
- [Position & Risk](https://pangeaswap.gitbook.io/pangeaswap/en/developers/concept-overview/position-and-risk.md)
- [Price Tick](https://pangeaswap.gitbook.io/pangeaswap/en/developers/concept-overview/price-tick.md)
- [Position NFT](https://pangeaswap.gitbook.io/pangeaswap/en/developers/concept-overview/position-nft.md)
- [Fees](https://pangeaswap.gitbook.io/pangeaswap/en/developers/concept-overview/fees.md)
- [Flash Loan](https://pangeaswap.gitbook.io/pangeaswap/en/developers/concept-overview/flash-loan.md)
- [Contracts](https://pangeaswap.gitbook.io/pangeaswap/en/developers/contracts.md)
- [Core Contracts](https://pangeaswap.gitbook.io/pangeaswap/en/developers/contracts/core-contracts.md)
- [MasterDeployer](https://pangeaswap.gitbook.io/pangeaswap/en/developers/contracts/core-contracts/masterdeployer.md): A contract that distributes the Concentrated Liquidity Pool, which manages the permission of the factory that creates the pool.
- [ConcentratedLiquidityPoolFactory](https://pangeaswap.gitbook.io/pangeaswap/en/developers/contracts/core-contracts/concentratedliquiditypoolfactory.md): Factory contract responsible for creating Concentrated Liquidity Pool
- [ConcentratedLiquidityPool](https://pangeaswap.gitbook.io/pangeaswap/en/developers/contracts/core-contracts/concentratedliquiditypool.md): It is an AMM Pool contract implemented with concentrated liquidity, and provides low-level methods for liquidity supply / removal / fee receipt / swap.
- [ConcentratedLiquidityPoolManager](https://pangeaswap.gitbook.io/pangeaswap/en/developers/contracts/core-contracts/concentratedliquiditypoolmanager.md): Contract that creates and burns liquidity positions in the concentrated liquidity pool, and manages the pool's fee collection.
- [PoolRouter](https://pangeaswap.gitbook.io/pangeaswap/en/developers/contracts/core-contracts/poolrouter.md): A contract that routes tokens to be swapped in various pools of Pangea.
- [PoolLogger](https://pangeaswap.gitbook.io/pangeaswap/en/developers/contracts/core-contracts/poollogger.md)
- [AirdropDistributor](https://pangeaswap.gitbook.io/pangeaswap/en/developers/contracts/core-contracts/airdropdistributor.md)
- [Contribution Point NFT](https://pangeaswap.gitbook.io/pangeaswap/en/developers/contracts/contribution-point-nft.md)
- [Price Oracle](https://pangeaswap.gitbook.io/pangeaswap/en/developers/contracts/price-oracle.md)
- [Interacting with the Protocol](https://pangeaswap.gitbook.io/pangeaswap/en/developers/interacting-with-the-protocol.md)
- [Setting up Local Test Environment](https://pangeaswap.gitbook.io/pangeaswap/en/developers/interacting-with-the-protocol/setting-up-local-test-environment.md)
- [Test env. commands](https://pangeaswap.gitbook.io/pangeaswap/en/developers/interacting-with-the-protocol/setting-up-local-test-environment/test-env.-commands.md)
- [Getting Pangea Pool Info](https://pangeaswap.gitbook.io/pangeaswap/en/developers/interacting-with-the-protocol/getting-pangea-pool-info.md)
- [Creating Pangea Pool](https://pangeaswap.gitbook.io/pangeaswap/en/developers/interacting-with-the-protocol/creating-pangea-pool.md)
- [Mint Position (add liquidity)](https://pangeaswap.gitbook.io/pangeaswap/en/developers/interacting-with-the-protocol/mint-position-add-liquidity.md)
- [Burn Position (remove liquidity)](https://pangeaswap.gitbook.io/pangeaswap/en/developers/interacting-with-the-protocol/burn-position-remove-liquidity.md)
- [Claim Fee](https://pangeaswap.gitbook.io/pangeaswap/en/developers/interacting-with-the-protocol/claim-fee.md)
- [Swap](https://pangeaswap.gitbook.io/pangeaswap/en/developers/interacting-with-the-protocol/swap.md)


---

# 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://pangeaswap.gitbook.io/pangeaswap/en/developers.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.
