# depositingEnabled()

### Function depositingEnabled()

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

```
function depositingEnabled(Token pool) external view returns (bool);
```

{% endcode %}

This function is used to determine if deposits are enabled for a specific token.&#x20;

### Function Arguments

| Name | Type  | Description                                                                                                                                                                                                                  |
| ---- | ----- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| pool | Token | <p>The contract address of the token to check.<br><br>For example, <a href="https://etherscan.io/address/0x6b175474e89094c44da98b954eedeac495271d0f">DAI</a>:<br><code>0x6B175474E89094C44Da98b954EedeAC495271d0F</code></p> |

### Return Variables

This function returns true or false to indicate if pool deposits are enabled.

| Variable Type | Returns                                                                                                                                                |
| ------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------ |
| boolean       | <p><strong>True:</strong> Deposits are enabled for the specified token.<br><strong>False:</strong> Deposits are disabled for the specified token. </p> |
