Max Deposit Limits
Maximum Deposit Limits
Maximum deposit limits protect Nodes from excessive capital inflows that could impact strategy execution. Each Node enforces a configurable maximum deposit size that applies to all depositors, and automatically prevents deposits when pricing data is stale. This ensures fair and accurate pricing for depositors and incentivizes rebalancers to rebalance the Node in order to accept deposits.
Default Setting
In Node.sol, set during initialization:
Configuration
Node owner can update:
Implementation
Deposit limits are enforced through ERC4626 max functions:
Key behaviors:
Returns 0 if cache is invalid (prevents deposits with stale pricing)
Cache validity checked via:
Deposit and mint functions revert if amount exceeds max
Applied uniformly to all depositors
No minimum deposit size enforced
Last updated