Strategy Pair
event CreateOrderEvent(
bytes32 indexed pair,
uint8 indexed strategyId,
uint256 indexed orderId,
address user,
uint256 stableAmount,
uint256 createTime,
uint256 netWorthIndex
);
pair: Trading pair(weth:cusd)
strategyDetail : Trading strategy (1,2,3,4)
orderId: Order id
user: Owner of the order
stableAmount: Amount of stablecoins deposited
createTime: Creation time
netWorthIndex:ID of the corresponding fund net valueevent RequestWithdrawalEvent(
bytes32 indexed pair,
uint8 indexed strategyId,
uint256 indexed orderId,
uint256 preWithdrawalTime,
uint256 lpAmount,
uint256 withdrawTime,
uint256 netWorthIndex
);
pair: Trading pair(weth:cusd)
strategyDetail : Trading strategy (1,2,3,4)
orderId: Order id
preWithdrawalTime: Submission time (time of this transaction)
lpAmount: Amount of LP tokens submitted
withdrawTime: Time when the withdrawal is allowed (prewithrawal Time + freeze time)
netWorthIndex:Index of the pre-withdrawal fund net valueLast updated