updateStrategy
function updateStrategy(
uint256 strategyId,
Order[2] calldata currentOrders,
Order[2] calldata newOrders
) external payable nonReentrant whenNotPaused greaterThanZero(strategyId) onlyProxyDelegate Function Arguments
Name
Type
Description
Example
updateStrategy(
712, //strategyId
[{y, z, A, B},{y, z, A, B}], //current orders
[{y, z, A, B},{y, z, A, B}] // updated orders
)Last updated