Climb Token . Finance
  • Climb Token Finance Intro ๐Ÿ“„
  • tokenomics
    • CLIMB TOKEN
      • CLIMB CONTRACT
    • MARS TOKEN
    • MOUNTAIN TOKEN
      • MOUNTAIN CONTRACT
  • Ways to get profits with CLIMB:
    • ๐Ÿ“ŠWays to get profits with CLIMB:
  • How does CLIMB work?
    • Introduction๐Ÿ“‘
    • About CLIMB token ๐Ÿช™
    • Why the price is going up?๐Ÿ†™๐Ÿ“ˆ
    • Penalty fees and rewards
    • Biweekly dividends in BUSD๐Ÿ“Š
    • BuyBacks And Burns (Deflationary mechanism)๐Ÿ“Š ๐Ÿ”ฅ
  • How to send BNB to metamask
  • How to add CLIMB to metamask
  • How to add Binance Smart Chain on metamask
  • Lottery
    • Lottery
  • Security
  • Security Contracts
  • Audit
  • Rugpull Migrator Code
  • RoadMap ๐Ÿ“
  • Future projects
    • NFT
  • Social Media
    • Links of social media
  • Presale
    • Presale of CLIMB ๐Ÿงพ
    • How to participate in the presale
  • How to participate in the MARS presale
  • CLIMB TOKEN FINANCE V2 LAUCH
  • MARS TOKEN PRESALE
  • Team
  • More
Powered by GitBook
On this page

Was this helpful?

Security Contracts

PreviousLotteryNextAudit

Last updated 3 years ago

Was this helpful?

Master Chef:

Master Chef V2:

CLIMB:

MNTN:

MARS: (coming soon)

LP Burn:

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:


    // 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.

https://bscscan.com/address/0xc79e59c8755F56b29228586754203EAF9FD00C87#code
https://bscscan.com/address/0x2556fDd7c00f17C211ec56D16055FaF5E8656590
https://bscscan.com/token/0x2a1d286ed5edad78befd6e0d8beb38791e8cd69d#balances
https://bscscan.com/token/0xa7fcb2baabda9db593e24b25a1a32bfb5168018b
https://bscscan.com/tx/0x936db89529dc7c293621b9a1dbaf54e0aa707be28375f34b96e9f95beec5058e
https://github.com/pancakeswap/pancake-farm/blob/master/contracts/MasterChef.sol