We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1abfa66 commit dcaab33Copy full SHA for dcaab33
src/libs/Parameters.sol
@@ -2,11 +2,11 @@
2
pragma solidity ^0.8.30;
3
4
library Parameters {
5
- /// @notice The total supply of the token.
6
- uint256 internal constant SUPPLY = 1_000_000_000;
+ /// @notice The total supply of the token amounting to 1 bn (10^9) XAN tokens with 18 decimals).
+ uint256 internal constant SUPPLY = 10 ** (9 + 18);
7
8
- /// @notice The minimal locked supply required for upgrades.
9
- uint256 internal constant MIN_LOCKED_SUPPLY = 250_000_000;
+ /// @notice The minimal locked supply required for upgrades amounting to 25% of the total supply.
+ uint256 internal constant MIN_LOCKED_SUPPLY = SUPPLY / 4;
10
11
/// @notice The quorum ration numerator.
12
uint256 internal constant QUORUM_RATIO_NUMERATOR = 1;
0 commit comments