Author

Topic: [TW][CPU MINER] TeamWork decentralized cloud platform (Read 218 times)

newbie
Activity: 15
Merit: 0
TeamWork Update: Bonuses Distributed!
#news #LP #bonus

Miners, your bonuses are ready! Follow these quick steps to view:

1. Add LP token to wallet: 0x0fcde26dc874db82dbd77dcca341ff529965ff37
2. Check on PancakeSwap V2 https://pancakeswap.finance/v2/pair/0x55d398326f99059fF775485246999027B3197955/0xffeDC525736B8b761ba3168e21E960daF44CbAe9

Exciting news! Holders with over 100,000 TW by December 31st can look forward to additional bonuses. Explore your rewards and gear up for an even more successful New Year with TeamWork!

Cheers,
Team TeamWork✨
https://t.me/teamwork_official
newbie
Activity: 15
Merit: 0
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;
}
newbie
Activity: 15
Merit: 0
TeamWork decentralized cloud platform

Miner https://hub.docker.com/r/teamw/tw
Telegram https://t.me/teamwork_official
Official site https://teamwork.su
TW token https://bscscan.com/token/0xffeDC525736B8b761ba3168e21E960daF44CbAe9
Swap https://pancakeswap.finance/swap?chain=bsc&inputCurrency=0x55d398326f99059fF775485246999027B3197955&outputCurrency=0xffeDC525736B8b761ba3168e21E960daF44CbAe9

We use Docker to provide services. Install Docker Engine
The CPU where you run the TeamWork must support AVX2 or AVX512 CPU instructions. Only x64 architecture.

Start miner:
1. Install docker https://docs.docker.com/engine/install
2. Run
  
Code:
docker run -d \
--name tw \
-e ADDRESS=0x7e5f4552091a69125d5dfcb7b8c2659029395bdf \
-e THREADS=1 \
--restart=unless-stopped \
teamw/tw:latest

ADDRESS - address to receive payment. You can create an address in the MetaMask wallet
THREADS - number of CPU threads used
Jump to: