Live Policy Snapshot
3.25) Current On-Chain Rebalance Policy
These values are read directly from the on-chain config account when available. If the page cannot reach Solana RPC, the last known defaults are shown.
Base Threshold
500 bps
Tax Buffer
250 bps
Effective Trigger
750 bps (7.5%)
Config Status
Loading…
Source: awaiting on-chain config lookup.
3) Core Decision Math
The keeper records implied price snapshots and compares observed daily movement to target. When growth lags, it raises sell burn pressure. When growth is ahead, it reduces sell burn pressure.
error = targetDailyPct - observedDailyPct
rawCorrectionBps = round(error * 30)
newSellBurnBps = clamp(prevSellBurnBps + rawCorrectionBps, 0, 90)
A minimum 5 bps change threshold is used to avoid noisy churn.
3.5) Rebalance Trigger Math (Tax-Aware)
Rebalancing is now tax-aware and configurable. The protocol combines a base rebalance threshold with a tax buffer to reduce low-value churn from frequent vault swaps.
effectiveRebalanceThresholdBps = baseRebalanceThresholdBps + rebalanceTaxBufferBps
default: 500 + 250 = 750 bps (7.5%)
Both base threshold and tax buffer are admin-configurable on-chain.
6) Adjustment Flow, End To End
Step 1Fetch market data and classify regime signal.
Step 2Compute implied price trend and daily error versus target.
Step 3Compute sell burn target plus buy-routing defense parameters.
Step 4If policy changed, submit one on-chain adaptive policy update transaction.