Skip to content

Commit

Permalink
Add treasury burn
Browse files Browse the repository at this point in the history
  • Loading branch information
Ivshti committed May 31, 2022
1 parent dc2bd07 commit d71d7f8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions contracts/SupplyController.sol
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@ contract ADXSupplyController {
enum GovernanceLevel { None, Mint, All }

uint public constant CAP = 150000000 * 1e18;
// This amount was burned on purpose when migrating from Tom pool 2 (Staking with token 0xade) to Tom pool 3 (StakingPool with token 0xade)
uint public immutable BURNED_MIN = 35000000 * 1e18;
// This amount was burned on purpose when migrating from Tom pool 2 (Staking with token 0xade) to Tom pool 3 (StakingPool with token 0xade) - 35m
// another 10m burned from treasury
uint public immutable BURNED_MIN = 45000000 * 1e18;
IADXToken public immutable ADX;

mapping (address => uint8) public governance;
Expand Down

0 comments on commit d71d7f8

Please sign in to comment.