Swing Pricing Calculations
Swing Pricing
Swing pricing adjusts share price to maintain healthy reserve levels by incentivizing deposits when reserves are low and penalizing withdrawals that would deplete reserves.
Core Mechanism
Each Node has a
targetReserveRatio
(e.g., 10%)When reserves fall below target:
Withdrawals receive progressively worse pricing (up to
maxSwingFactor
)Deposits receive bonus shares (up to
maxSwingFactor/2
)
Pricing adjusts exponentially based on distance from target ratio
Swing Pricing in Node Contract
Enable/Disable Swing Pricing
Node owner can enable swing pricing and set the maximum factor. Factor cannot exceed protocol maximum.
Share Price Calculation
Used during deposits to determine shares to mint. Applies bonus when reserves are below target.
Redemption Price Calculation
Applied when users request redemptions. Reduces assets returned when reserves are low.
Reserve Status Check
Returns available reserve after accounting for pending redemptions.
Node and Quoter Interaction
The Node delegates all swing pricing calculations to its Quoter to keep pricing logic upgradeable. When a user deposits or requests a redemption, the Node checks if swing pricing is enabled and reserves are below target. If so, it calls the Quoter with current Node state (reserves, total assets, target ratio) and configured maxSwingFactor. The Quoter returns adjusted values that either increase shares for helpful deposits or decrease assets for harmful withdrawals.
QuoterV1 Functions
External Functions
Calculates bonus shares for deposits when reserves are low:
Takes deposit amount and Node state
Returns increased shares based on how much deposit helps restore reserve ratio
MaxSwingFactor is halved for deposits vs withdrawals
Calculates penalty for withdrawals that would reduce reserves:
Takes shares to redeem and Node state
Returns reduced assets based on impact to reserve ratio
Full maxSwingFactor can be applied
Internal Functions
Calculates how much a deposit helps restore reserve ratio:
Calculates shortfall from target reserve
Returns percentage of shortfall that deposit closes
Lower return = higher bonus (inverse relationship)
Calculates actual swing factor to apply:
Uses exponential curve based on reserve impact
Scales from 0 to maxSwingFactor
Returns 0 if reserves exceed target
Uses formula: maxSwingFactor * exp(SCALING_FACTOR * reserveImpact / targetReserveRatio)
Last updated