# Protocol Overview

The Phantazm Protocol repository can be found on our Github, with an [NPM package available here](https://www.npmjs.com/package/@aave/protocol-v2).

## Main contracts

{% hint style="info" %}
Both `LendingPoolAddressesProvider` and `LendingPoolAddressesProviderRegistry` control the upgradeability of the protocol, including asset listings and changes to protocol parameters. Phantazm holders will be in control of both, via Phantazm Protocol Governance.
{% endhint %}

The main contracts in Phantazm v2 and their purposes are:

### LendingPool

The main entry point into the Phantazm Protocol. Most interactions with Phantazm will happen via the LendingPool, including:

* [deposit()](https://phantazm.gitbook.io/phantazm-1/lendingpool#deposit)
* [borrow()](https://phantazm.gitbook.io/phantazm-1/lendingpool#borrow)
* [repay()](https://phantazm.gitbook.io/phantazm-1/lendingpool#repay)
* [swapBorrowRateMode()](https://phantazm.gitbook.io/phantazm-1/lendingpool#swapborrowratemode)
* [setUserUseReserveAsCollateral()](https://phantazm.gitbook.io/phantazm-1/lendingpool#setuserusereserveascollateral)
* [withdraw()](https://phantazm.gitbook.io/phantazm-1/lendingpool#withdraw)
* [flashloan()](https://phantazm.gitbook.io/phantazm-1/lendingpool#flashloan)
* [liquidationCall()](https://phantazm.gitbook.io/phantazm-1/lendingpool#liquidationcall)

### LendingPoolAddressesProvider

The main addresses register of the protocol, for particular markets. The latest contract addresses should be retrieved from this contract by making the appropriate calls.

### LendingPoolAddressesProviderRegistry

Contains a list of active `LendingPoolAddressesProvider` addresses, for different markets.

### aTokens

The yield-generating, tokenised deposits used throughout the Phantazm protocol. They implement most of the standard EIP-20/ERC20 token methods with slight modifications, as well as Phantazm specific methods including:

* [scaledBalanceOf()](https://phantazm.gitbook.io/phantazm-1/atokens#scaledbalanceof)
* [getScaledUserBalanceAndSupply()](https://phantazm.gitbook.io/phantazm-1/atokens#getscaleduserbalanceandsupply)
* [scaledTotalSupply()](https://phantazm.gitbook.io/phantazm-1/atokens#scaledtotalsupply)

All aTokens also implement [EIP-2612](https://github.com/ethereum/EIPs/blob/8a34d644aacf0f9f8f00815307fd7dd5da07655f/EIPS/eip-2612.md), which via the [`permit()`](https://phantazm.gitbook.io/phantazm-1/atokens#permit) function enables gas-less transfers and single transaction approve + actions.

### Stable and Variable Debt Tokens

The tokenised borrow positions used throughout the Phantazm protocol. Most of the standard EIP-20/ERC20 methods are disabled, since debt tokens are non-transferrable.

For more information, see the [Debt Tokens](https://phantazm.gitbook.io/phantazm-1/the-core-protocol/debt-tokens) section.

## Supporting contracts

The following contracts should generally not be interacted with directly, but are used throughout the Phantazm Protocol via contract calls.

### LendingPoolCollateralManager

Using `delegatecall` via the LendingPool contract, the LendingPoolCollateralManager implements actions involving management of collateral in the protocol, including:

* `liquidationCall()`

The above function should only be called via the main `LendingPool` contract.

### Lending Pool Configurator

Provides configuration functions for the `LendingPool` contracts. It also has a number of important functions:

* Activates / Deactivates reserves,
* Enables / Disables borrowing for a reserve,
* Enables / Disables using a reserve as collateral,
* Enables / Disables stable rate borrowing for a reserve,
* Freezes / Unfreezes reserves,
* Updates a reserve's Loan to Value,
* Updates a reserve's liquidation threshold,
* Updates a reserve's liquidation bonus,
* Updates a reserve's decimals,
* Updates a reserve's interest rate strategy address,
* Activates / Deactivates all functions of a LendingPool in emergencies.

For all of the above functions, relevant events are emitted to the blockchain. Anyone can monitor these changes to know when values have been modified or added/removed.

### Interest Rate Strategy

Holds the information needed to calculate and update the interest rates of specific reserves.

Each contract stores the optimised base curves using the corresponding parameters of each currency. This means that there is a mathematical function which determines the interest rate of each asset pool, with the interest rate changing based on the amount of borrowed funds and the total liquidity (i.e. utilisation) of the asset pool.

The parameters for the optimised base curves are:

* `baseVariableBorrowRate`
* `variableRateSlope1`
* `variableRateSlope2`
* `stableRateSlope1`
* `stableRateSlope2`

The interest rates are calculated depending on the available liquidity and the total borrowed amount.

### Price Oracle Provider

Provides asset price data required throughout the Phantazm protocol, using Chainlink and a fallback when necessary. More details on the [Price Oracle](https://phantazm.gitbook.io/phantazm-1/the-core-protocol/price-oracle) page.

### Library contracts

Various libraries are also used throughout the Phantazm Protocol, which can be found on our Github


---

# Agent Instructions: 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:

```
GET https://phantazm.gitbook.io/phantazm-1/the-core-protocol/protocol-overview.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
