> 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/surplus-whitelist/protectedtokenwhitelist.md).

# protectedTokenWhitelist()

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

```solidity
    function protectedTokenWhitelist() external view returns (Token[] memory);

```

{% endcode %}

This function allows to identify which tokens/pools are part of the DAO approved whitelist ([view votes](https://vote.bancor.network/#/?q=disable)).

### Example

{% code overflow="wrap" %}

```solidity
protectedTokenWhitelist()
returns (
0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48, //array of token addresses
0xdAC17F958D2ee523a2206206994597C13D831ec7
)
```

{% endcode %}
