# IAssetManagerController

> FAssets IAssetManagerController interface reference.

> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

Source: https://dev.flare.network/fassets/reference/IAssetManagerController

Command line reference for interacting with the FAssets `AssetManagerController` contract.

Sourced from `IAssetManagerController.sol` on [GitHub](https://github.com/flare-foundation/fassets/blob/main/contracts/userInterfaces/IAssetManagerController.sol).

## Functions[​](#functions "Direct link to Functions")

### `getAssetManagers`[​](#getassetmanagers "Direct link to getassetmanagers")

Returns the list of all asset managers managed by this controller. To interact with the asset manager, follow [IAssetManager](/fassets/reference/IAssetManager) reference.

```
function getAssetManagers()    external view    returns (IAssetManager[] memory);
```

### `assetManagerExists`[​](#assetmanagerexists "Direct link to assetmanagerexists")

Check if the asset manager is managed by this asset manager controller.

Parameters:

-   `_assetManager`: Address of the asset manager

Returns:

-   `bool`: `true` if the asset manager is managed by this controller, `false` otherwise.

```
function assetManagerExists(address _assetManager)    external view    returns (bool);
```
