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?

Rugpull Migrator Code

PreviousAuditNextRoadMap ๐Ÿ“

Last updated 4 years ago

Was this helpful?

Rugpull Migrator Code: 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;
    }
https://github.com/pancakeswap/pancake-farm/blob/master/contracts/MasterChef.sol