/contracts/farm-manager/src/position/commands.rs#L111-L171
The current implementation of the expand_position function allows users to add more assets to an existing position. However, it doesnt provide the flexibility to modify the unlocking duration during this process.
A user with existing positions wants to increase their investment in a particular asset. Due to constraints (e.g., reaching position limits), they must expand an existing position. If their initial unlocking duration was long (e.g., 1 year), they cannot reduce it (e.g., to 3 months) through expansion.
Consider investigating the feasibility of incorporating unlocking duration modification during position expansion. This could involve:
