DBC Fee Scheduler Formula
When in Linear feeSchedulerMode:
fee = cliff_fee_numerator - (period * reduction_factor)
When in Exponential feeSchedulerMode:
fee = cliff_fee_numerator * (1 - reduction_factor/10_000)^period
Example
This starts the fees at 50%, then reduces exponentially to 4% after 120 slots or seconds (depending on your config key activation type)
Using the Exponential mode formula:
Last updated