0 reply
0 recast
0 reaction
0 reply
0 recast
0 reaction
0 reply
0 recast
1 reaction
0 reply
0 recast
0 reaction
0 reply
0 recast
1 reaction
0 reply
0 recast
0 reaction
0 reply
0 recast
1 reaction
0 reply
0 recast
0 reaction
Here is some of the code
contract Henlo is Ownable, ERC20 {
using SafeMath for uint256;
address WETH;
string public constant richieHenlo = "Henlo, is it me you're looking for?";
string public constant adeleHenlo = "Henlo, it's me";
string constant _name = "Henlo";
string constant _symbol = "HENLO";
uint8 constant _decimals = 18;
event AutoLiquify(uint256 amountETH, uint256 amountTokens);
event EditTax(uint8 Buy, uint8 Sell, uint8 Transfer);
event user_exemptfromfees(address Wallet, bool Exempt);
event user_TxExempt(address Wallet, bool Exempt);
event ClearStuck(uint256 amount);
event ClearToken(address TokenAddressCleared, uint256 Amount);
event set_Receivers(address marketingFeeReceiver, address buybackFeeReceiver,address burnFeeReceiver,address devFeeReceiver);
event set_MaxWallet(uint256 maxWallet);
event set_MaxTX(uint256 maxTX);
event set_SwapBack(uint256 Amount, bool Enabled);
event Lyrics(string lyric); 0 reply
0 recast
1 reaction