Code is as followed: https://github.com/web5inu/development/blob/main/web5x.sol
Need improvement and added feature:
- Ability to change
uint8 public transfertimeout = 15;
Able to change the value to any number (only for contract owner)
- Ability to prevent "transfer/sell" of the token back to uniswap/pancakeswap, mainly to do anything to the token based on the transfertimeout for example 60 seconds after buy.
This is to prevent robot from buying and transfer/sell right away.
-
Add burn function (owner only) Input parameter: origin address Input token: token value
-
Add transfer function (owner only) Input parameter: origin address Input token: Token value Input parameter: recipient address
The above function need to able to not working / null / void once contract ownership is renounced. The function above can only be run by owner .
Thanks!