Summary
TL;DR
- Set the base swap fee to 1 bp on key Curve pools that include DOLA or sDOLA.
- Increase the off-peg fee multiplier (OPM) to 20× on the same pools.
- Objective: boost router competitiveness and utilization by making DOLA paths cheaper for non-DOLA trades while keeping manipulation resistance via higher off-peg fees.
Fee & OPM Changes
| Pool | Current Fee | Proposed Fee | Current OPM | Proposed OPM |
|---|---|---|---|---|
| DOLA/sUSDe | 4 bps | 1 bps | 2× | 20× |
| DOLA/USR | 4 bps | 1 bps | 3× | 20× |
| DOLA/sUSDS | 4 bps | 1 bps | 2× | 20× |
| scrvUSD/sDOLA | 2 bps | 1 bps | 5× | 20× |
| DOLA/scrvUSD | 4 bps | 1 bps | 5× | 20× |
| DOLA/deUSD | 4 bps | 1 bps | 2× | 20× |
| DOLA/2pool | 2 bps | 1 bps | 5× | 20× |
Background
- DOLA is among the deepest stable assets on Curve Ethereum, and many DOLA-containing LP tokens are enabled as collateral on Inverse Finance’s fixed-rate market (FiRM), allowing LPs to scale positions efficiently.
- Despite this depth, utilization (volume/TVL) underperforms, partly because DOLA is not a high-churn retail asset every day and because router paths for non-DOLA trades often traverse two DOLA pools, compounding fees.
Motivation & Rationale
-
Make DOLA routes router-competitive for non-DOLA swaps
- A typical two-hop route (Asset A → DOLA → Asset B) currently incurs ~8 bps when each leg is 4 bps.
- Reducing base fees to 1 bp makes two-hop DOLA routes ~2 bps total, greatly improving competitiveness.
- Expected outcomes: higher path selection share, increased gross volume (stealing flow from competitors like Uniswap), and ultimately higher total fees for LPs and veCRV (despite lower per-trade fee).
-
Reduce costs for users leveraging on FiRM
- Leveraged LP loops compound the 4 bps fee, creating onboarding friction.
- Dropping the base fee to 1 bp reduces this friction 4×, making it easier to scale TVL.
-
Preserve manipulation resistance with a higher off-peg multiplier
- Raising OPM to 20× means effective fees climb quickly as imbalance grows.
- At 1 bp base and 20× OPM, fees reach ~0.20 % (20 bps) under extreme imbalance—deterring large directional pushes while keeping near-peg trades around 1 bp.
- Balances router competitiveness near peg with security off-peg, crucial because LP tokens are used for asset pricing.
Specification
NEW_FEE = 1000000
NEW_MULTIPLIER = 200000000000
ACTIONS = [
# DOLA/sUSDe reduce fee to 1 bps and increase off-peg multiplier to 20
("0x744793B5110f6ca9cC7CDfe1CE16677c3Eb192ef", "set_new_fee", NEW_FEE, NEW_MULTIPLIER),
# DOLA/USR reduce fee to 1 bps and increase off-peg multiplier to 20
("0x38De22a3175708D45E7c7c64CD78479C8B56f76E", "set_new_fee", NEW_FEE, NEW_MULTIPLIER),
# DOLA/sUSDS reduce fee to 1 bps and increase off-peg multiplier to 20
("0x8b83c4aA949254895507D09365229BC3a8c7f710", "set_new_fee", NEW_FEE, NEW_MULTIPLIER),
# sDOLA/scrvUSD reduce fee to 1 bps and increase off-peg multiplier to 20
("0x76A962BA6770068bCF454D34dDE17175611e6637", "set_new_fee", NEW_FEE, NEW_MULTIPLIER),
# DOLA/scrvUSD reduce fee to 1 bps and increase off-peg multiplier to 20
("0xff17dAb22F1E61078aBa2623c89cE6110E878B3c", "set_new_fee", NEW_FEE, NEW_MULTIPLIER),
# DOLA/deUSD reduce fee to 1 bps and increase off-peg multiplier to 20
("0x6691DBb44154A9f23f8357C56FC9ff5548A8bdc4", "set_new_fee", NEW_FEE, NEW_MULTIPLIER),
# DOLA/2crv reduce fee to 1 bps and increase off-peg multiplier to 20
("0x7d10A8734d985dBB3aD91Fce9c48CcC78b9F8B94", "set_new_fee", NEW_FEE, NEW_MULTIPLIER),
]




