> 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/pool-token-information/pooltoken.md).

# poolToken()

### Function poolToken()

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

```javascript
    function poolToken(Token pool) external view returns (IPoolToken)
```

{% endcode %}

{% hint style="success" %}
This function is located in the [BancorNetworkInfo](/developer-guides/contracts.md#bancor-v3-contracts) contract
{% endhint %}

This function is used to get the contract address of the pool token for a given token.

### Function Arguments

| Name | Type  | Description                                                                                                                                                                                                                         |
| ---- | ----- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| pool | Token | <p>Input the contract address of a token. </p><p></p><p>For example for the <a href="https://etherscan.io/token/0x514910771af9ca656af840dff83e8264ecf986ca">LINK</a> token: <em>0x514910771AF9Ca656af840dff83E8264EcF986CA</em></p> |

### Return Variables

The function returns the contract address of the Bancor pool token (bnToken) for a given token.

| Type             | Description                                                                                                                                                                                                                             |
| ---------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Contract address | <p>The contract address for a Bancor pool token.<br><br>For example, the <a href="https://etherscan.io/address/0x516c164a879892a156920a215855c3416616c46e">bnLINK </a>token:<br><em>0x516c164A879892A156920A215855C3416616C46E</em></p> |
