IAssetManagerController
Command line reference for interacting with the FAssets AssetManagerController contract.
Sourced from IAssetManagerController.sol on GitHub.
Functions
getAssetManagers
Returns the list of all asset managers managed by this controller. To interact with the asset manager, follow IAssetManager reference.
function getAssetManagers()
external view
returns (IAssetManager[] memory);
assetManagerExists
Check if the asset manager is managed by this asset manager controller.
Parameters:
_assetManager: Address of the asset manager
Returns:
bool:trueif the asset manager is managed by this controller,falseotherwise.
function assetManagerExists(address _assetManager)
external view
returns (bool);