Releases: nyonson/raiju
Releases Β· nyonson/raiju
v0.11.1
v0.10.1
v0.10.0
v0.9.2
v0.9.0
v0.8.0
v0.7.2
v0.7.1
v0.7.0
- A new global flag,
-liquidity-stickiness
, enables fee "stickiness" before it is updated. The idea is to help minimize unnecessary gossip if a channel's liquidity keeps going over a threshold. So if a channel moves from 85% to 75% local liquidity and there is a threshold at 80%, it would normally have its fees updated. But if the stickiness setting is set at 10%, the channel will have to get to 70% (80% - 10%) before its fees are updated. The stickiness setting is only enabled when channel liquidity is heading in a more "balanced" direction.
v0.6.0
- Exposing the local liquidity threshold and fee settings for easier experimentation.
-liquidity-thresholds
flag determines how channels are grouped into liquidity buckets, while the-liquidity-fees
flag determines the fee settings applied to those groups.- For example, if thresholds are set to
80,20
and fees set to5,50,500
, then channels with over 80% local liquidity will have a 5 PPM fee, channels between 80% and 20% local liquidity will have a 50 PPM fee, and channels with less than 20% liquidity will have a 500 PPM fee. -liquidity-thresholds
and-liquidity-fees
are global because they are used in both thefees
and therebalance
commands to help coordinate the right amount of fees to pay in active rebalancing.
Full Changelog: v0.5.0...v0.6.0