# EVM ABIs

The following ABIs can be compiled in the [repository](https://github.com/fluidity-money/fluidity-app/) (using `make build`.)

### Token

{% embed url="<https://github.com/fluidity-money/fluidity-app/blob/develop/contracts/ethereum/contracts/Token.sol>" %}
Source code
{% endembed %}

The Token is an ERC20-compatible contract featuring swap-in (`erc20In`) and swap-out (`erc20Out`) .

### LiquidityProvider

{% embed url="<https://github.com/fluidity-money/fluidity-app/blob/develop/contracts/ethereum/contracts/LiquidityProvider.sol>" %}
Source code
{% endembed %}

Interface that contains liquidity tokens to redeem for the underlying based on the implementation.

### AAVE v2 LiquidityProvider

{% embed url="<https://github.com/fluidity-money/fluidity-app/blob/develop/contracts/ethereum/contracts/AaveV2LiquidityProvider.sol>" %}
Source code
{% endembed %}

LiquidityProvider frontend for AAVE.

### AAVE v3 LiquidityProvider

{% embed url="<https://github.com/fluidity-money/fluidity-app/blob/develop/contracts/ethereum/contracts/AaveV3LiquidityProvider.sol>" %}
Source code
{% endembed %}

LiquidityProvider frontend for AAVE, this time for version 3.

### Compound LiquidityProvider

{% embed url="<https://github.com/fluidity-money/fluidity-app/blob/develop/contracts/ethereum/contracts/CompoundLiquidityProvider.sol>" %}

LiquidityProvider frontend for Compound.

### Worker config

{% embed url="<https://github.com/fluidity-money/fluidity-app/blob/develop/contracts/ethereum/contracts/WorkerConfig.sol>" %}
Source code
{% endembed %}

The worker config is a single contract deployed which is referred to by the various deployed Tokens to get information on the RNG oracle and global emergency status.


---

# 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://docs.fluidity.money/docs/developers/evm-abi.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.
