function excludeFromFees(address account, bool excluded) external onlyOwner{
_isExcludedFromFees[account] = excluded;
emit ExcludeFromFees(account, excluded);
}
There is no need specific recommendation for this finding.
function setSwapTokensAtAmount(uint256 newAmount, bool _swapEnabled) external onlyOwner{
require(newAmount > totalSupply() / 1_000_000, "CSLT: SwapTokensAtAmount must be greater than 0.0001% of total supply");
swapTokensAtAmount = newAmount;
swapEnabled = _swapEnabled;
emit SwapTokensAtAmountUpdated(swapTokensAtAmount);
}
There is no need specific recommendation for this finding.
Disclaimer: This smart contract audit report, conducted by SecureWise, is intended for informational purposes only. It does not constitute an endorsement, investment advice, or a guarantee of any kind. The audit involved code analysis, manual review, testing, and risk classification.