Rebalancing a Node
Rebalancing Process
Pre-Rebalance
Ensure cooldown period has passed
Pay any pending management fees (must be outside window)
Verify component ratios sum to 100% with reserve
Start Rebalance
During Window
Process pending redemptions from reserve or components
Invest excess reserve into components when:
Reserve is above target ratio
Component deviation exceeds maxDelta
Following target weights
Following liquidation queue order
Window Closure
Automatically ends after
rebalanceWindow
Next window cannot start until
rebalanceCooldown
passes
Example Flow
This timing mechanism allows for controlled, periodic portfolio adjustments while maintaining flexibility for the rebalancer to choose optimal execution times.
Rebalance Timing
The cooldown period sets a minimum time that must pass between rebalance windows
Once the cooldown period has passed, the rebalance window doesn't automatically start
The rebalancer must explicitly call startRebalance() to begin a new window
The rebalancer has discretion over when to start the window, as long as the cooldown has passed
Rebalance Start Conditions
startRebalance()
will revert if:
Component target weights plus reserve ratio don't sum to 100%
Cooldown period hasn't passed since last rebalance window
Caller is not a whitelisted rebalancer
Additional Notes
Rebalancer decides optimal timing
Management fees must be paid outside window
totalAssets can be updated anytime
Execution fees apply to investments, not withdrawals
Node owner can optimize fees by:
Setting longer cooldown periods
Increasing maxDelta tolerances
This timing mechanism allows for controlled, periodic portfolio adjustments while maintaining flexibility for the rebalancer to choose optimal execution times.
Last updated