> For the complete documentation index, see [llms.txt](https://docs.bancor.network/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.bancor.network/developer-guides/read-functions/liquidity-pool-details/poolfundinglimit.md).

# poolFundingLimit()

### Function poolFundingLimit()

{% code title="NetworkSettings.sol" %}

```
    function poolFundingLimit(Token pool) external view returns (uint256)
```

{% endcode %}

Bancor v3 supports infinity pools and deposits. \
However, the trading liquidity is limited based on the `poolFundingLimit()` function.

{% hint style="info" %}
Funding limit effects the pool liquidity depth and therefore trading slippage
{% endhint %}

### Function Arguments

| Name | Type    | Description |
| ---- | ------- | ----------- |
| pool | Token   |             |
| pool | uint256 |             |

### Return Variables

The read function `Function poolFundingLimit()` provides return variables with the return statement.&#x20;

`The function's`return value is an amount in BNT token units.

| Variable Name            | Returns                                                                                              |
| ------------------------ | ---------------------------------------------------------------------------------------------------- |
| poolFundingLimits\[pool] | The amount of BNT tokens that represent the funding limit of a token pool and the token pool address |
| unit256                  | indicates the returns with be 256 bits in size                                                       |


---

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

```
GET https://docs.bancor.network/developer-guides/read-functions/liquidity-pool-details/poolfundinglimit.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.
