本接口包含基金经理可以调用的管理方法。
1. Functions
1.1. setDescriptor
function setDescriptor(
address fund,
bytes _descriptor
) external
设置基金的描述信息,32 bytes的基金名称 + 任意长度的基金描述。
此函数只能由基金经理调用。
Parameters:
Name | Type | Description |
---|---|---|
fund |
address | 基金合约地址 |
_descriptor |
bytes | 32 bytes的基金名称 + 任意长度的基金描述 |
1.2. setDepositDeadline
function setDepositDeadline(
address fund,
uint256 deadline
) external
设置基金可存入的截止时间。
此函数只能由基金经理调用。
Parameters:
Name | Type | Description |
---|---|---|
fund |
address | 基金地址 |
deadline |
uint256 | 截止时间 |
1.3. setPath
function setPath(
address fund,
address distToken,
bytes path
) external
设置基金中的代币交易路径。
目标代币必须是受信任的才可被设置。
此函数只能由基金经理调用。
Parameters:
Name | Type | Description |
---|---|---|
fund |
address | 基金地址 |
distToken |
address | 目标代币 |
path |
bytes | 完整的Uniswap V3 交易路径 |
1.4. init
function init(
address fund,
address token0,
address token1,
uint24 fee,
int24 tickLower,
int24 tickUpper,
uint256 amount,
uint256 deadline
) external returns (uint128 liquidity)
初始化一个基金头寸,investment大于0时会投资该数量的基金本币到该头寸。
此函数只能由基金经理调用。
Parameters:
Name | Type | Description |
---|---|---|
fund |
address | 基金地址 |
token0 |
address | 池子的token0地址 |
token1 |
address | 池子的token1地址 |
fee |
uint24 | 池子fee |
tickLower |
int24 | 头寸的tickLower价格下界 |
tickUpper |
int24 | 头寸的tickUpper价格上界 |
amount |
uint256 | 初始投资金额,允许为0,0表示只初始化仓位,不进行实质性投资 |
deadline |
uint256 | 交易截止时间 |
Return Values:
Name | Type | Description |
---|---|---|
liquidity |
address | 添加头寸获得LP数量 |
1.5. add
function add(
address fund,
uint256 poolIndex,
uint256 positionIndex,
uint256 amount,
bool collect,
uint256 deadline
) external returns (uint128 liquidity)
投资指定头寸,可选择是否复投之前的收益。
此函数只能由基金经理调用。
Parameters:
Name | Type | Description |
---|---|---|
fund |
address | 基金地址 |
poolIndex |
uint256 | 池子索引位置 |
positionIndex |
uint256 | 头寸索引位置 |
amount |
uint256 | 投资基金本币数量 |
collect |
bool | 是否复投 |
deadline |
uint256 | 交易时间戳 |
Return Values:
Name | Type | Description |
---|---|---|
liquidity |
address | 添加头寸获得LP数量 |
1.6. sub
function sub(
address fund,
uint256 poolIndex,
uint256 positionIndex,
uint256 proportionX128,
uint256 deadline
) external returns (uint256 amount)
撤资指定的头寸。
此函数只能由基金经理调用。
Parameters:
Name | Type | Description |
---|---|---|
fund |
address | 基金地址 |
poolIndex |
uint256 | 池子索引位置 |
positionIndex |
uint256 | 头寸索引位置 |
proportionX128 |
uint256 | 撤资百分比,左移 128 位; 0是允许的,0表示只收取手续费 |
deadline |
uint256 | 交易时间戳 |
Return Values:
Name | Type | Description |
---|---|---|
amount |
address | 撤资获得的基金本币金额 |
1.7. move
function move(
address fund,
uint256 poolIndex,
uint256 subIndex,
uint256 addIndex,
uint256 proportionX128,
uint256 deadline
) external returns (uint128 liquidity)
调整头寸资金,从一个头寸移动到另一个头寸。
此函数只能由基金经理调用。
Parameters:
Name | Type | Description |
---|---|---|
fund |
address | 基金地址 |
poolIndex |
uint256 | 池子索引位置 |
subIndex |
uint256 | 要移除资金的头寸索引位置 |
addIndex |
uint256 | 要追加资金的头寸索引位置 |
proportionX128 |
uint256 | 调整比例,左移128位 |
deadline |
uint256 | 交易时间戳 |
Return Values:
Name | Type | Description |
---|---|---|
liquidity |
address | 完成后增加的LP数量 |