Security Contracts

Master Chef: https://bscscan.com/address/0xc79e59c8755F56b29228586754203EAF9FD00C87#code

Master Chef V2: https://bscscan.com/address/0x2556fDd7c00f17C211ec56D16055FaF5E8656590

CLIMB: https://bscscan.com/token/0x2a1d286ed5edad78befd6e0d8beb38791e8cd69d#balances

MNTN: https://bscscan.com/token/0xa7fcb2baabda9db593e24b25a1a32bfb5168018b

MARS: (coming soon)

LP Burn: https://bscscan.com/tx/0x936db89529dc7c293621b9a1dbaf54e0aa707be28375f34b96e9f95beec5058e

Rugpull Migrator Code: We have published an article about Pancake swap can take all your money within 6 hours. That is why we have eliminated this code to not be like them and to give our users the greatest security.

Although they might not do it, the code is still present in their contract and this code is exactly how all the rug pulls were done. We have removed the following migrator code from our contract which was forked out from Pancake swap. You can see the following code is still present in pancake swapโ€™s contract and github.

You can see the following migrator code is still present in the following link Link: https://github.com/pancakeswap/pancake-farm/blob/master/contracts/MasterChef.sol


    // Migrate lp token to another lp contract. Can be called by anyone. We trust that migrator contract is good.
    function migrate(uint256 _pid) public {
        require(address(migrator) != address(0), "migrate: no migrator");
        PoolInfo storage pool = poolInfo[_pid];
        IBEP20 lpToken = pool.lpToken;
        uint256 bal = lpToken.balanceOf(address(this));
        lpToken.safeApprove(address(migrator), bal);
        IBEP20 newLpToken = migrator.migrate(lpToken);
        require(bal == newLpToken.balanceOf(address(this)), "migrate: bad");
        pool.lpToken = newLpToken;
    }

Emergency Withdraw:

Ownership burn:

The CLIMB contractowner is: 0x000000000000000000000000000000000000dead

This means that ownership is burned and there will be no possibilities to manipulate the blockchain in any way.

We cannot burn tokens from users wallets (only those that we buy back to burn), also we cannot remove them (tokens) from users' wallets.

Last updated