Transaction Hash:
Block:
23479052 at Sep-30-2025 11:21:47 PM +UTC
Transaction Fee:
0.0000124144914059 ETH
$0.04
Gas Used:
56,788 Gas / 0.218611175 Gwei
Emitted Events:
| 507 |
Messiah.Transfer( from=[Sender] 0x3027fa52a65cfdefa7846ae76a97a18d06e07f75, to=0x1c89093a4dA967794e3b5514558013949781b554, value=652381740324157125002 )
|
Account State Difference:
| Address | Before | After | State Difference | ||
|---|---|---|---|---|---|
| 0x3027fA52...D06e07F75 |
0.000495411337691 Eth
Nonce: 121
|
0.0004829968462851 Eth
Nonce: 122
| 0.0000124144914059 | ||
|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 11.950876032075754711 Eth | 11.950876036012298871 Eth | 0.00000000393654416 | |
| 0x4B6D6036...1bC261a7a |
Execution Trace
Messiah.transfer( recipient=0x1c89093a4dA967794e3b5514558013949781b554, amount=652381740324157125002 ) => ( True )
transfer[ERC20 (ln:232)]
_transfer[ERC20 (ln:236)]_beforeTokenTransfer[ERC20 (ln:300)]Transfer[ERC20 (ln:310)]_afterTokenTransfer[ERC20 (ln:311)]
_msgSender[ERC20 (ln:236)]
pragma solidity >=0.6.2;
interface IUniswapV2Router01 {
function factory() external pure returns (address);
function WETH() external pure returns (address);
function addLiquidity(
address tokenA,
address tokenB,
uint amountADesired,
uint amountBDesired,
uint amountAMin,
uint amountBMin,
address to,
uint deadline
) external returns (uint amountA, uint amountB, uint liquidity);
function addLiquidityETH(
address token,
uint amountTokenDesired,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline
) external payable returns (uint amountToken, uint amountETH, uint liquidity);
function removeLiquidity(
address tokenA,
address tokenB,
uint liquidity,
uint amountAMin,
uint amountBMin,
address to,
uint deadline
) external returns (uint amountA, uint amountB);
function removeLiquidityETH(
address token,
uint liquidity,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline
) external returns (uint amountToken, uint amountETH);
function removeLiquidityWithPermit(
address tokenA,
address tokenB,
uint liquidity,
uint amountAMin,
uint amountBMin,
address to,
uint deadline,
bool approveMax, uint8 v, bytes32 r, bytes32 s
) external returns (uint amountA, uint amountB);
function removeLiquidityETHWithPermit(
address token,
uint liquidity,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline,
bool approveMax, uint8 v, bytes32 r, bytes32 s
) external returns (uint amountToken, uint amountETH);
function swapExactTokensForTokens(
uint amountIn,
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external returns (uint[] memory amounts);
function swapTokensForExactTokens(
uint amountOut,
uint amountInMax,
address[] calldata path,
address to,
uint deadline
) external returns (uint[] memory amounts);
function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
external
payable
returns (uint[] memory amounts);
function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
external
returns (uint[] memory amounts);
function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
external
returns (uint[] memory amounts);
function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
external
payable
returns (uint[] memory amounts);
function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}
pragma solidity >=0.6.2;
import './IUniswapV2Router01.sol';
interface IUniswapV2Router02 is IUniswapV2Router01 {
function removeLiquidityETHSupportingFeeOnTransferTokens(
address token,
uint liquidity,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline
) external returns (uint amountETH);
function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
address token,
uint liquidity,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline,
bool approveMax, uint8 v, bytes32 r, bytes32 s
) external returns (uint amountETH);
function swapExactTokensForTokensSupportingFeeOnTransferTokens(
uint amountIn,
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external;
function swapExactETHForTokensSupportingFeeOnTransferTokens(
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external payable;
function swapExactTokensForETHSupportingFeeOnTransferTokens(
uint amountIn,
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external;
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.28;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(
address indexed previousOwner,
address indexed newOwner
);
constructor() {
_transferOwnership(_msgSender());
}
function owner() public view virtual returns (address) {
return _owner;
}
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
function transferOwnership(address newOwner) public virtual onlyOwner {
require(
newOwner != address(0),
"Ownable: new owner is the zero address"
);
_transferOwnership(newOwner);
}
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
interface IERC20 {
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view returns (uint256);
function transfer(
address recipient,
uint256 amount
) external returns (bool);
function allowance(
address owner,
address spender
) external view returns (uint256);
function approve(address spender, uint256 amount) external returns (bool);
function transferFrom(
address sender,
address recipient,
uint256 amount
) external returns (bool);
event Transfer(address indexed from, address indexed to, uint256 value);
event Approval(
address indexed owner,
address indexed spender,
uint256 value
);
}
interface IERC20Metadata is IERC20 {
function name() external view returns (string memory);
function symbol() external view returns (string memory);
function decimals() external view returns (uint8);
}
contract ERC20 is Context, IERC20, IERC20Metadata {
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
function name() public view virtual override returns (string memory) {
return _name;
}
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
function decimals() public view virtual override returns (uint8) {
return 18;
}
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
function balanceOf(
address account
) public view virtual override returns (uint256) {
return _balances[account];
}
function transfer(
address recipient,
uint256 amount
) public virtual override returns (bool) {
_transfer(_msgSender(), recipient, amount);
return true;
}
function allowance(
address owner,
address spender
) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
function approve(
address spender,
uint256 amount
) public virtual override returns (bool) {
_approve(_msgSender(), spender, amount);
return true;
}
function transferFrom(
address sender,
address recipient,
uint256 amount
) public virtual override returns (bool) {
_transfer(sender, recipient, amount);
uint256 currentAllowance = _allowances[sender][_msgSender()];
require(
currentAllowance >= amount,
"ERC20: transfer amount exceeds allowance"
);
unchecked {
_approve(sender, _msgSender(), currentAllowance - amount);
}
return true;
}
function increaseAllowance(
address spender,
uint256 addedValue
) public virtual returns (bool) {
_approve(
_msgSender(),
spender,
_allowances[_msgSender()][spender] + addedValue
);
return true;
}
function decreaseAllowance(
address spender,
uint256 subtractedValue
) public virtual returns (bool) {
uint256 currentAllowance = _allowances[_msgSender()][spender];
require(
currentAllowance >= subtractedValue,
"ERC20: decreased allowance below zero"
);
unchecked {
_approve(_msgSender(), spender, currentAllowance - subtractedValue);
}
return true;
}
function _transfer(
address sender,
address recipient,
uint256 amount
) internal virtual {
require(sender != address(0), "ERC20: transfer from the zero address");
require(recipient != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(sender, recipient, amount);
uint256 senderBalance = _balances[sender];
require(
senderBalance >= amount,
"ERC20: transfer amount exceeds balance"
);
unchecked {
_balances[sender] = senderBalance - amount;
}
_balances[recipient] += amount;
emit Transfer(sender, recipient, amount);
_afterTokenTransfer(sender, recipient, amount);
}
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply += amount;
_balances[account] += amount;
emit Transfer(address(0), account, amount);
_afterTokenTransfer(address(0), account, amount);
}
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
uint256 accountBalance = _balances[account];
require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
unchecked {
_balances[account] = accountBalance - amount;
}
_totalSupply -= amount;
emit Transfer(account, address(0), amount);
_afterTokenTransfer(account, address(0), amount);
}
function _approve(
address owner,
address spender,
uint256 amount
) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
function _beforeTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
function _afterTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
}
library SafeMath {
function tryAdd(
uint256 a,
uint256 b
) internal pure returns (bool, uint256) {
unchecked {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
}
function trySub(
uint256 a,
uint256 b
) internal pure returns (bool, uint256) {
unchecked {
if (b > a) return (false, 0);
return (true, a - b);
}
}
function tryMul(
uint256 a,
uint256 b
) internal pure returns (bool, uint256) {
unchecked {
if (a == 0) return (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
}
function tryDiv(
uint256 a,
uint256 b
) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a / b);
}
}
function tryMod(
uint256 a,
uint256 b
) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a % b);
}
}
function add(uint256 a, uint256 b) internal pure returns (uint256) {
return a + b;
}
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return a - b;
}
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
return a * b;
}
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return a / b;
}
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return a % b;
}
function sub(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b <= a, errorMessage);
return a - b;
}
}
function div(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a / b;
}
}
function mod(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a % b;
}
}
}
interface IUniswapV2Factory {
event PairCreated(
address indexed token0,
address indexed token1,
address pair,
uint256
);
function feeTo() external view returns (address);
function feeToSetter() external view returns (address);
function getPair(
address tokenA,
address tokenB
) external view returns (address pair);
function allPairs(uint256) external view returns (address pair);
function allPairsLength() external view returns (uint256);
function createPair(
address tokenA,
address tokenB
) external returns (address pair);
function setFeeTo(address) external;
function setFeeToSetter(address) external;
}
interface IUniswapV2Pair {
event Approval(
address indexed owner,
address indexed spender,
uint256 value
);
event Transfer(address indexed from, address indexed to, uint256 value);
function name() external pure returns (string memory);
function symbol() external pure returns (string memory);
function decimals() external pure returns (uint8);
function totalSupply() external view returns (uint256);
function balanceOf(address owner) external view returns (uint256);
function allowance(
address owner,
address spender
) external view returns (uint256);
function approve(address spender, uint256 value) external returns (bool);
function transfer(address to, uint256 value) external returns (bool);
function transferFrom(
address from,
address to,
uint256 value
) external returns (bool);
function DOMAIN_SEPARATOR() external view returns (bytes32);
function PERMIT_TYPEHASH() external pure returns (bytes32);
function nonces(address owner) external view returns (uint256);
function permit(
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) external;
event Mint(address indexed sender, uint256 amount0, uint256 amount1);
event Burn(
address indexed sender,
uint256 amount0,
uint256 amount1,
address indexed to
);
event Swap(
address indexed sender,
uint256 amount0In,
uint256 amount1In,
uint256 amount0Out,
uint256 amount1Out,
address indexed to
);
event Sync(uint112 reserve0, uint112 reserve1);
function MINIMUM_LIQUIDITY() external pure returns (uint256);
function factory() external view returns (address);
function token0() external view returns (address);
function token1() external view returns (address);
function getReserves()
external
view
returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
function price0CumulativeLast() external view returns (uint256);
function price1CumulativeLast() external view returns (uint256);
function kLast() external view returns (uint256);
function mint(address to) external returns (uint256 liquidity);
function burn(
address to
) external returns (uint256 amount0, uint256 amount1);
function swap(
uint256 amount0Out,
uint256 amount1Out,
address to,
bytes calldata data
) external;
function skim(address to) external;
function sync() external;
function initialize(address, address) external;
}
import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol";
contract Messiah is ERC20, Ownable {
using SafeMath for uint256;
IUniswapV2Router02 public immutable uniswapV2Router;
address public uniswapV2Pair;
address public constant deadAddress = address(0xdead);
bool private swapping;
address public marketingWallet;
address public devWallet;
/**
* @notice Address authorized to blacklist malicious accounts during the launch phase.
* @dev This role is a temporary security measure to protect against sniper bots and coordinated dumps.
* The authority is strictly time-limited and will be PERMANENTLY renounced by setting this address
* to address(0) once launch volatility has stabilized. An appeal process for any accounts
* mistakenly blacklisted is detailed in our official documentation.
*/
address public blacklister;
uint256 public maxTx;
uint256 public swapTokensAtAmount;
uint256 public maxWallets;
bool public limitsInEffect = true;
bool public tradingActive = false;
bool public swapEnabled = false;
// Anti-bot and anti-whale mappings and variables
mapping(address => uint256) private _holderLastTransferTimestamp;
bool public transferDelayEnabled = true;
uint256 public buyTotalFees;
uint256 public buyMarketingFee;
uint256 public buyDevFee;
uint256 public sellTotalFees;
uint256 public sellMarketingFee;
uint256 public sellDevFee;
/**
* @notice The maximum possible fee rate.
* @dev This is set high initially (99%) to allow for a temporary anti-sniper tax at launch.
* It will be PERMANENTLY lowered to 10% via the ceilMaxFee() function shortly after launch
* to protect long-term holders.
*/
uint256 public maxPossibleFee = 99;
uint256 public tokensForMarkets;
uint256 public tokensForDev;
mapping(address => bool) private _isBlackList;
mapping(address => bool) private _isExcludedFromFees;
mapping(address => bool) public _isExcludedmaxTx;
mapping(address => bool) public automatedMarketMakerPairs;
event UpdateUniswapV2Router(
address indexed newAddress,
address indexed oldAddress
);
event ExcludeFromFees(address indexed account, bool isExcluded);
event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
event MarketingWalletUpdated(
address indexed newWallet,
address indexed oldWallet
);
event DevWalletUpdated(
address indexed newWallet,
address indexed oldWallet
);
constructor(
address _blacklister,
address _marketingWallet,
address _devWallet,
address _uniswapV2RouterAddress
) ERC20("Messiah", unicode"MSIA") {
IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
_uniswapV2RouterAddress
);
excludeFrommaxTx(address(_uniswapV2Router), true);
uniswapV2Router = _uniswapV2Router;
// one time approve router for later tax swaps
_approve(address(this), address(uniswapV2Router), type(uint256).max);
uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
.createPair(address(this), _uniswapV2Router.WETH());
excludeFrommaxTx(address(uniswapV2Pair), true);
_setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
/**
* @dev LAUNCH STRATEGY: Sets a high initial tax (95%) to deter sniper bots and ensure a fair launch.
*
* POST-LAUNCH PLAN:
* 1. These fees will be lowered to 4% for buys and 4% for sells shortly after trading begins.
* 2. The maximum possible fee will be permanently locked at 10% via the `ceilMaxFee` function.
*/
uint256 _buyMarketingFee = 5;
uint256 _buyDevFee = 90;
uint256 _sellMarketingFee = 5;
uint256 _sellDevFee = 90;
uint256 totalSupply = 100_000_000 * 1e18; // 100 Million tokens
/**
* @dev Sets the maximum transaction amount to 0.35% of the total supply.
* This anti-whale measure prevents single large buys from dominating the launch.
*/
maxTx = 350_000 * 1e18; // 0.35% of total supply
/**
* @dev Sets the maximum wallet size to 1% of the total supply.
* This further protects against whales accumulating a large portion of the supply early on.
*/
maxWallets = 1_000_000 * 1e18; // 1% of total supply
/**
* @dev The contract will automatically swap collected tax tokens for ETH when the
* balance reaches this threshold (0.05% of total supply).
*/
swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swap wallet
buyMarketingFee = _buyMarketingFee;
buyDevFee = _buyDevFee;
buyTotalFees = buyMarketingFee + buyDevFee;
sellMarketingFee = _sellMarketingFee;
sellDevFee = _sellDevFee;
sellTotalFees = sellMarketingFee + sellDevFee;
blacklister = _blacklister; // will be renounced once the sniping danger is mitigated
marketingWallet = _marketingWallet;
devWallet = _devWallet;
// exclude from paying fees or having max transaction amount
excludeFromFees(owner(), true);
excludeFromFees(address(this), true);
excludeFromFees(address(0xdead), true);
excludeFrommaxTx(owner(), true);
excludeFrommaxTx(address(this), true);
excludeFrommaxTx(address(0xdead), true);
_mint(msg.sender, totalSupply);
}
receive() external payable {}
function enableTrading() external onlyOwner {
tradingActive = true;
swapEnabled = true;
}
// remove limits after token is stable
function removeLimits() external onlyOwner returns (bool) {
limitsInEffect = false;
return true;
}
// disable Transfer delay - cannot be reenabled
function disableTransferDelay() external onlyOwner returns (bool) {
transferDelayEnabled = false;
return true;
}
// change the minimum amount of tokens to sell from fees
function updateSwapTokensAtAmount(
uint256 newAmount
) external onlyOwner returns (bool) {
require(
newAmount >= (totalSupply() * 1) / 100000,
"Swap amount cannot be lower than 0.001% total supply."
);
require(
newAmount <= (totalSupply() * 5) / 1000,
"Swap amount cannot be higher than 0.5% total supply."
);
swapTokensAtAmount = newAmount;
return true;
}
function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
require(
newNum >= ((totalSupply() * 1) / 1000) / 1e18,
"Cannot set maxTx lower than 0.1%"
);
maxTx = newNum * (10 ** 18);
}
function updatemaxWalletsAmount(uint256 newNum) external onlyOwner {
require(
newNum >= ((totalSupply() * 5) / 1000) / 1e18,
"Cannot set maxWallets lower than 0.5%"
);
maxWallets = newNum * (10 ** 18);
}
function excludeFrommaxTx(address updAds, bool isEx) public onlyOwner {
_isExcludedmaxTx[updAds] = isEx;
}
// only use to disable contract sales if absolutely necessary (emergency use only)
function updateSwapEnabled(bool enabled) external onlyOwner {
swapEnabled = enabled;
}
event MaxPossibleFeeRateReduced(uint256 newRate);
function ceilMaxFee(uint256 _newMaxRate) external onlyOwner {
require(_newMaxRate <= 10, "New max rate must not exceed 10%");
require(
_newMaxRate <= maxPossibleFee,
"New max rate must be lower than current."
);
require(_newMaxRate >= 0, "New max rate must be greater than or equal to 0.");
require(
_newMaxRate >= buyTotalFees,
"New max rate cannot be less than current buy total fees."
);
require(
_newMaxRate >= sellTotalFees,
"New max rate cannot be less than current sell total fees."
);
maxPossibleFee = _newMaxRate;
emit MaxPossibleFeeRateReduced(_newMaxRate);
}
function updateBuyFees(
uint256 _marketingFee,
uint256 _devFee
) external onlyOwner {
buyMarketingFee = _marketingFee;
buyDevFee = _devFee;
buyTotalFees = buyMarketingFee + buyDevFee;
require(
buyTotalFees <= maxPossibleFee,
"Must keep fees at 10% or less"
);
}
function updateSellFees(
uint256 _marketingFee,
uint256 _devFee
) external onlyOwner {
sellMarketingFee = _marketingFee;
sellDevFee = _devFee;
sellTotalFees = sellMarketingFee + sellDevFee;
require(
sellTotalFees <= maxPossibleFee,
"Must keep fees at 10% or less"
);
}
function excludeFromFees(address account, bool excluded) public onlyOwner {
_isExcludedFromFees[account] = excluded;
emit ExcludeFromFees(account, excluded);
}
/**
* @dev Returns all fee information in a single view
* @return buyMarketingFee_ The marketing fee percentage for buys
* @return buyDevFee_ The dev fee percentage for buys
* @return sellMarketingFee_ The marketing fee percentage for sells
* @return sellDevFee_ The dev fee percentage for sells
*/
function viewFees()
external
view
returns (
uint256 buyMarketingFee_,
uint256 buyDevFee_,
uint256 sellMarketingFee_,
uint256 sellDevFee_
)
{
return (
buyMarketingFee,
buyDevFee,
sellMarketingFee,
sellDevFee
);
}
function setAutomatedMarketMakerPair(
address pair,
bool value
) public onlyOwner {
require(
pair != uniswapV2Pair,
"The pair cannot be removed from automatedMarketMakerPairs"
);
_setAutomatedMarketMakerPair(pair, value);
}
function _setAutomatedMarketMakerPair(address pair, bool value) private {
automatedMarketMakerPairs[pair] = value;
emit SetAutomatedMarketMakerPair(pair, value);
}
function updateMarketingWallet(address newWallet) external onlyOwner {
emit MarketingWalletUpdated(newWallet, marketingWallet);
marketingWallet = newWallet;
}
function updateDevWallet(address newWallet) external onlyOwner {
emit DevWalletUpdated(newWallet, devWallet);
devWallet = newWallet;
}
function isExcludedFromFees(address account) public view returns (bool) {
return _isExcludedFromFees[account];
}
function isBlacklisted(address account) public view returns (bool) {
return _isBlackList[account];
}
// Function to set the blacklister, only the owner can call this
function setBlacklister(address _newBlacklister) public onlyOwner {
require(
blacklister != address(0),
"Blacklister can not be set, because it was renounced"
); // This check prevents setting a new blacklister if it was previously renounced
require(_newBlacklister != address(0), "Invalid address"); // Check for non-zero address
blacklister = _newBlacklister;
}
function renounceBlacklister() public onlyOwner {
blacklister = address(0); // Properly terminated with a semicolon
}
// function to blacklist multiple accounts
function addToBlacklist(
address[] calldata accounts
) public onlyBlacklister {
uint length = accounts.length;
for (uint i = 0; i < length; i++) {
_isBlackList[accounts[i]] = true;
}
}
// function to remove addresses from the blacklist
function removeFromBlacklist(
address[] calldata accounts
) public onlyBlacklister {
uint length = accounts.length;
for (uint i = 0; i < length; i++) {
_isBlackList[accounts[i]] = false;
}
}
/**
* @dev Emitted during transfers when `transferDelayEnabled` is active,
* primarily to monitor early trading activity immediately post-launch.
* This event facilitates off-chain analysis to identify and investigate
* potential sniping bots or other suspicious transaction patterns that
* might occur before full trading stability is achieved.
*
* Parameters:
* - `sniperOrigin`: The `tx.origin` of the transaction. This is the externally owned account (EOA)
* that initiated the transaction chain. It's crucial for identifying the ultimate source
* of early buy activity, even if transactions are routed through multiple contracts (e.g., a sniper bot).
* - `from`: The immediate sender of the tokens in this specific transfer (e.g., the Uniswap pair address if it's a buy).
* - `to`: The immediate recipient of the tokens in this specific transfer (e.g., the buyer's address).
* - `amount`: The quantity of tokens being transferred.
*
* The `transferDelayEnabled` mechanism, which triggers this event, also imposes a one-transaction-per-block
* limit per `tx.origin`, further aiding in mitigating rapid automated buying.
*/
event BoughtEarly(address indexed sniperOrigin, address from, address to, uint256 amount);
function _transfer(
address from,
address to,
uint256 amount
) internal override {
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
require(!_isBlackList[from], "Sender is blacklisted");
require(!_isBlackList[to], "Recipient is blacklisted");
if (amount == 0) {
super._transfer(from, to, 0);
return;
}
if (limitsInEffect) {
if (
from != owner() &&
to != owner() &&
to != address(0) &&
to != address(0xdead) &&
!swapping
) {
if (!tradingActive) {
require(
_isExcludedFromFees[from] || _isExcludedFromFees[to],
"Trading is not active."
);
}
// at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
if (transferDelayEnabled) {
if (
to != owner() &&
to != address(uniswapV2Router) &&
to != address(uniswapV2Pair)
) {
require(
_holderLastTransferTimestamp[tx.origin] <
block.number,
"_transfer:: Transfer Delay enabled. Only one purchase per block allowed."
);
_holderLastTransferTimestamp[tx.origin] = block.number;
}
emit BoughtEarly(tx.origin, from, to, amount);
}
//when buy
if (automatedMarketMakerPairs[from] && !_isExcludedmaxTx[to]) {
require(
amount <= maxTx,
"Buy transfer amount exceeds the maxTx."
);
require(
amount + balanceOf(to) <= maxWallets,
"Max wallet exceeded"
);
}
//when sell
else if (
automatedMarketMakerPairs[to] && !_isExcludedmaxTx[from]
) {
require(
amount <= maxTx,
"Sell transfer amount exceeds the maxTx."
);
} else if (!_isExcludedmaxTx[to]) {
require(
amount + balanceOf(to) <= maxWallets,
"Max wallet exceeded"
);
}
}
}
uint256 contractTokenBalance = balanceOf(address(this));
bool canSwap = contractTokenBalance >= swapTokensAtAmount;
if (
canSwap &&
swapEnabled &&
!swapping &&
!automatedMarketMakerPairs[from] &&
!_isExcludedFromFees[from] &&
!_isExcludedFromFees[to]
) {
swapping = true;
swapBack();
swapping = false;
}
bool takeFee = !swapping;
// if any account belongs to _isExcludedFromFee account then remove the fee
if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
takeFee = false;
}
uint256 fees = 0;
// only take fees on buys/sells, do not take on wallet transfers
if (takeFee) {
// on sell
if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
fees = amount.mul(sellTotalFees).div(100);
tokensForDev += (fees * sellDevFee) / sellTotalFees;
tokensForMarkets += (fees * sellMarketingFee) / sellTotalFees;
}
// on buy
else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
fees = amount.mul(buyTotalFees).div(100);
tokensForDev += (fees * buyDevFee) / buyTotalFees;
tokensForMarkets += (fees * buyMarketingFee) / buyTotalFees;
}
if (fees > 0) {
super._transfer(from, address(this), fees);
}
amount -= fees;
}
super._transfer(from, to, amount);
}
function _swapTokensForEthWithSlippage(
uint256 tokenAmount,
uint256 minAmountOut
) private {
address[] memory path = new address[](2);
path[0] = address(this);
path[1] = uniswapV2Router.WETH();
uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
tokenAmount,
minAmountOut, // Use the slippage parameter
path,
address(this), // The contract receives the ETH
block.timestamp
);
}
function manualSwap(uint256 amount, uint256 minAmountOut) external {
require(
_msgSender() == marketingWallet || _msgSender() == devWallet,
"Only dev/marketing wallet can swapback manually"
);
require(
amount <= balanceOf(address(this)) && amount > 0,
"Wrong amount"
);
require(minAmountOut > 0, "Must specify a minimum amount out");
uint256 initialETHBalance = address(this).balance;
// Call the new swap function with slippage control
_swapTokensForEthWithSlippage(amount, minAmountOut);
uint256 newETH = address(this).balance - initialETHBalance;
// Distribute the newly acquired ETH.
// If there are no fee tokens to account for (e.g., from a previous failed swap),
// default to a 50/50 split or another predefined ratio.
uint256 totalTokensToSwap = tokensForMarkets + tokensForDev;
uint256 ethForDev;
uint256 ethForMarketing;
if (totalTokensToSwap > 0 && newETH > 0) {
// If fee tokens exist, use them for a proportional split
ethForDev = newETH.mul(tokensForDev).div(totalTokensToSwap);
ethForMarketing = newETH.sub(ethForDev);
// Since we are distributing based on these counters, we should reset them.
tokensForMarkets = 0;
tokensForDev = 0;
} else if (newETH > 0) {
// Fallback: If no fee tokens are tracked, split the ETH 50/50.
// This ensures manual swaps always distribute funds.
ethForDev = newETH / 2;
ethForMarketing = newETH - ethForDev;
}
// Send the funds.
if (ethForDev > 0) {
(bool sentDev, ) = address(devWallet).call{value: ethForDev}("");
require(sentDev, "Dev wallet transfer failed");
}
if (ethForMarketing > 0) {
(bool sentMarketing, ) = address(marketingWallet).call{value: ethForMarketing}("");
require(sentMarketing, "Marketing wallet transfer failed");
}
}
function swapTokensForEth(uint256 tokenAmount) private {
// generate the uniswap pair path of token -> weth
address[] memory path = new address[](2);
path[0] = address(this);
path[1] = uniswapV2Router.WETH();
// make the swap
uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
tokenAmount,
0, // accept any amount of ETH
path,
address(this),
block.timestamp
);
}
function swapBack() private {
uint256 contractBalance = balanceOf(address(this));
uint256 totalTokensToSwap = tokensForMarkets + tokensForDev;
// If there are no tokens to swap for fees, or if the contract has no tokens, exit.
if (totalTokensToSwap == 0 || contractBalance == 0) {
return;
}
if (contractBalance > swapTokensAtAmount * 20) {
contractBalance = swapTokensAtAmount * 20;
}
// Capture the ETH balance *before* the swap to calculate the delta.
uint256 initialETHBalance = address(this).balance;
swapTokensForEth(contractBalance);
// Capture the amount of ETH received from this specific swap.
uint256 newETH = address(this).balance - initialETHBalance;
uint256 ethForDev = newETH.mul(tokensForDev).div(totalTokensToSwap);
uint256 ethForMarketing = newETH.sub(ethForDev);
// Reset the fee token counters
tokensForMarkets = 0;
tokensForDev = 0;
// Send the calculated amounts. Use a temporary variable for success to avoid shadowing.
bool sent;
(sent, ) = address(devWallet).call{value: ethForDev}("");
(sent, ) = address(marketingWallet).call{value: ethForMarketing}("");
}
modifier onlyBlacklister() {
require(
msg.sender == blacklister,
"Not authorized: caller is not the blacklister"
);
_;
}
}