PoolDelegateCover

Constructor

    constructor(
        address poolManager_,
        address asset_
    );

Parameters:

Functions

asset

Gets the address of the funds asset.

    function asset()
        view
        returns (
            address
        );

Return Values:

moveFunds

Move funds from this address to another.

    function moveFunds(
        uint256 amount_,
        address recipient_
    )
        nonpayable;

Parameters:

poolManager

Gets the address of the pool manager.

    function poolManager()
        view
        returns (
            address
        );

Return Values:

Last updated