PoolDelegateCover

Constructor

    constructor(
        address poolManager_,
        address asset_
    );

Parameters:

IndexNameTypeInternal TypeDescription

0

poolManager_

address

address

1

asset_

address

address

Functions

asset

Gets the address of the funds asset.

    function asset()
        view
        returns (
            address
        );

Return Values:

IndexNameTypeInternal TypeDescription

0

address

address

moveFunds

Move funds from this address to another.

    function moveFunds(
        uint256 amount_,
        address recipient_
    )
        nonpayable;

Parameters:

IndexNameTypeInternal TypeDescription

0

amount_

uint256

uint256

The amount to move.

1

recipient_

address

address

The address of the recipient.

poolManager

Gets the address of the pool manager.

    function poolManager()
        view
        returns (
            address
        );

Return Values:

IndexNameTypeInternal TypeDescription

0

address

address

Last updated