This is the scale factor for accumulated interest rate:
BLOCKS_PER_YEAR * 2 ^ 80
.
The actual accumulate interest rate stored will be
accumulate_interest_rate / INTEREST_RATE_SCALE
.
The collaterals in drips for one key/value pair in storage.
This is the unit of storage collateral to deposit
This is the initial interest rate per block with scale:
4% / BLOCKS_PER_YEAR * INTEREST_RATE_PER_BLOCK_SCALE
.
The initial annual interest is 4%, which means the initial interest
rate per block will be
4% / BLOCKS_PER_YEAR
. We will multiply it with scale factor and
store it as an integer.
This is the scale factor of initial interest rate per block.
This controls the tokens required for one PoS vote
This is the service charge rate for withdraw,
SERVICE_CHARGE_RATE / SERVICE_CHARGE_RATE_SCALE = 0.05%