🌌
DarkMatter (DMD) Tokenomics
- Ticker: DMD
- Chain: FTM (ERC20)
- Maximum Supply = 85,000,000
contract DarkMatter is DelegateERC20, Ownable {
uint256 private constant _initialSupply = = 9350000 * 1e18; // initial supply minted 10.000.000 DMD (650k is minted for presale.)
uint256 private constant _maxSupply = 85000000 * 1e18; // the maxSupply is 85.000.000 DMD
uint256 private _burnTotal;
address public deflationController;
address public MasterChef;
address public lockliquidity;
event SetDeflationController(address indexed _address);
event SetMarterChef(address indexed _address);
event Setlockliquidity(address indexed _address);
using EnumerableSet for EnumerableSet.AddressSet;
EnumerableSet.AddressSet private _minters;
constructor() public ERC20("DarkMatter", "DMD"){
_mint(msg.sender, _initialSupply);
}
function mint(address _to, uint256 _amount) public onlyMinter returns (bool) {
if (_amount.add(totalSupply()) > _maxSupply) { // mint with max supply ---> only 85.000.000 DMD
return false;
}
_mint(_to, _amount);
return true;
}
- Stake it in DMD Pools to earn tokens
- Use it in Yield Farms to earn more DMD
- Use it to get benefits in the vault.
- burn it to get NFTs
Metric | Emission/sec (DMD) |
Per Sec | 0.50 |
Per Minute | 30 |
Per Day | 43,200 |
Per Month | 1,296,000 |
Per Year | 15,768,000 |
Estimated time of the farm 4 years, 7 months and a few days.
Note: Emissions can be reduced or increased, through governance.
Distributed to | Reward/Sec (% of emission) | Reward/Sec (total DMD) | Reward/day |
Farms | 90% | 0.5 | 38,880 (approx) |
Dev | 10% | 0.05 | 4,320 (approx) |
- 10% of the newly minted DMD Tokens will go to the Dev address for use in future airdrops, contests, Staking pool and supply burns.
Metric | Emission/sec (DMD) |
Per Sec | 0.069 |
Per Minute | 4.14 |
Per Day | 5961,6 |
Per Month | 178.848 |
Per Year | 2.175.984 |
6.9% of this pool will be burned. approximately 507.150 DMD
Dark Matter has a rules-based deflationary mechanism, in the future it will become a deflationary token by burning a number of tokens for each transaction. The deflationary controller is the contract in charge of executing burns, up to 10% maximum and .25% minimum. The contract remains off for now until activated for future use cases. This feature will never be turned on without notification to the community far in advance.
Last modified 1yr ago