Post
Topic
Board Mining (Altcoins)
Re: [TW][CPU MINER] TeamWork decentralized cloud platform
by
vmahina
on 20/12/2023, 12:57:52 UTC
The statistics have been reset, we are calculating rewards for the past week. Payment of manners for the past week will be on December 21st.
New mint 507,300,000 TW https://bscscan.com/tx/0x98d1c18cf8751a70007c2ce57c0c2ef92f14cfa1c9db072582efd63841aee429
To pay miners and increase liquidity.

Mint algorithm https://bscscan.com/token/0xffeDC525736B8b761ba3168e21E960daF44CbAe9#code#L2222
Code:
function mint(address to) public onlyMinter {
    uint256 amount = (block.timestamp - lastMint) * 1000;
    if (amount > 604800000) amount = 604800000;
   
    _mint(to, amount * 1e18);
    lastMint = block.timestamp;
}