IFundingManager_v1.sol
Last updated
Returns the token.
function token() external view returns (IERC20);Returns
<none>
IERC20
The token.
Transfer a specified amount of Tokens to a designated receiver address.
This function MUST be restricted to be called only by the {Orchestrator_v1}.
This function CAN update internal user balances to account for the new token balance.
function transferOrchestratorToken(address to, uint amount) external;Parameters
to
address
The address that will receive the tokens.
amount
uint256
The amount of tokens to be transfered.
Event emitted when a transferal of orchestrator tokens takes place.
Parameters
_to
address
The address that will receive the underlying tokens.
_amount
uint256
The amount of underlying tokens transfered.
Event emitted when collateral token has been set.
Parameters
token
address
The token that serves as collateral token making up the curve's reserve.
decimals
uint8
Last updated
event TransferOrchestratorToken(address indexed _to, uint _amount);event OrchestratorTokenSet(address indexed token, uint8 decimals);