Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Dynamic configuration for the **Dynamic Liquidity Slippage Engine (DLSE)**. The
Modeled on [`jup-ag/dynamic-slippage-config`](https://github.com/jup-ag/dynamic-slippage-config). Differences are Meteora-specific:

- Removed `pump_new_graduate*` and `new_token` (Jupiter / pump.fun specific).
- Added `new_pool` for freshly-created Meteora pools.
- Added `inactive_pool` for pools that haven't seen a swap in the last 15 minutes. This subsumes "newly-created pool" — a pool with no swap activity (whether 1 minute old or 1 month dormant) is illiquid in practice and likely to slip badly.

## Files

Expand All @@ -20,7 +20,7 @@ Per-category `{ min, max }` bps ranges. The engine clamps the live signal-derive
| `lst` | Liquid staking tokens (jitoSOL, mSOL, etc.) | Trade-size reducer eligible |
| `bluechip` | Volume-curated bluechips | Trade-size reducer eligible |
| `default` | Fallback when a mint has no entry | |
| `new_pool` | Freshly-created Meteora pools | Wider tolerance during early price discovery |
| `inactive_pool` | Pool with no swaps in the last 15 minutes | Subsumes "newly-created pool": same risk regardless of why the pool is dormant |
| `degen` | Pair where either side has a slippage-failure track record | |
| `degen_buy` | Tighter degen tolerance when buying | |
| `degen_sell` | Looser degen tolerance when selling (exit liquidity is thinner) | |
Expand Down
2 changes: 1 addition & 1 deletion slippage_config.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
}
},
{
"name": "new_pool",
"name": "inactive_pool",
"range": {
"min": 300,
"max": 2000
Expand Down