ErosProtocol

Description:

Decentralized Finance (DeFi) protocol contract providing Swap, Liquidity functionality.

Blockchain: Ethereum

Source Code: View Code On The Blockchain

Solidity Source Code:

// SPDX-License-Identifier: MIT

/*
*   Eros Protocol
*   Extended Robot Operating System
*
*   The fastest EVM blockchain for robotics. 
*   Zero gas fees for robots. 
*   The missing blockchain layer for ROS/ROS2.
*
*   Website:    https://eros.tools
*   Telegram:   https://t.me/erosprotocol
*   Twitter:    https://x.com/eros_protocol
*   Email:      info@eros.tools
*/

pragma solidity 0.8.28;

abstract contract Context {
    function caller() internal view virtual returns (address) {
        return msg.sender;
    }
}

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
    );
}

library SafeMath {
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow detected");
        return c;
    }

    function subtract(uint256 a, uint256 b) internal pure returns (uint256) {
        return subtract(a, b, "SafeMath: subtraction overflow detected");
    }

    function subtract(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;
        return c;
    }

    function multiply(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow detected");
        return c;
    }

    function divide(uint256 a, uint256 b) internal pure returns (uint256) {
        return divide(a, b, "SafeMath: division by zero detected");
    }

    function divide(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        return c;
    }
}

contract Owner is Context {
    address private _owner;
    event OwnerUpdated(address indexed previousOwner, address indexed newOwner);

    constructor() {
        address msgSender = caller();
        _owner = msgSender;
        emit OwnerUpdated(address(0), msgSender);
    }

    function owner() public view returns (address) {
        return _owner;
    }

    modifier onlyOwner() {
        require(_owner == caller(), "Owner: caller is not the owner");
        _;
    }

    function renounceOwnership() public virtual onlyOwner {
        emit OwnerUpdated(_owner, address(0));
        _owner = address(0);
    }
}

interface FactoryInterface {
    function createPair(address tokenA, address tokenB) external returns (address pair);
    function getPair(address tokenA, address tokenB) external view returns (address pair);
}

interface RouterInterface {
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    )
        external
        payable
        returns (uint amountToken, uint amountETH, uint liquidity);
}

contract ErosProtocol is Context, IERC20, Owner {
    using SafeMath for uint256;

    mapping(address => bool) private _excludedFromFees;
    mapping(address => uint256) private _accountBalances;
    mapping(address => mapping(address => uint256)) private _tokenAllowances;

    uint256 private _initialBuyFee = 20;
    uint256 private _initialSellFee = 20;
    uint256 private _finalBuyFee = 5;
    uint256 private _finalSellFee = 10;
    uint256 private _buyCountForFeeReduction = 30;
    uint256 private _buyCountForSwapActivation = 30;
    uint256 private _buyCount = 0;

    uint8 private constant DECIMALS = 18;
    uint256 private constant TOTAL_SUPPLY = 1_000_000 * 10 ** DECIMALS;
    string private constant NAME = "Eros";
    string private constant SYMBOL = "EROS";

    uint256 public maxTxAmount = 20_000 * 10 ** DECIMALS;
    uint256 public maxWalletAmount = 50_000 * 10 ** DECIMALS;
    uint256 public swapThreshold = 8_000 * 10 ** DECIMALS;
    uint256 public maxSwap = 20_000 * 10 ** DECIMALS;

    address payable private _feeWallet;

    RouterInterface private dexRouter;
    address private dexPair;
    bool private inSwap = false;
    bool private swapEnabled = false;
    bool private tradingOpen = false;

    event MaxTxAmountUpdated(uint _maxTransaction);
    modifier lockTheSwap() {
        inSwap = true;
        _;
        inSwap = false;
    }

    constructor() {
        _feeWallet = payable(caller());
        _accountBalances[caller()] = TOTAL_SUPPLY;
        _excludedFromFees[owner()] = true;
        _excludedFromFees[address(this)] = true;
        _excludedFromFees[_feeWallet] = true;

        emit Transfer(address(0), caller(), TOTAL_SUPPLY);
    }

    function name() public pure returns (string memory) {
        return NAME;
    }

    function symbol() public pure returns (string memory) {
        return SYMBOL;
    }

    function decimals() public pure returns (uint8) {
        return DECIMALS;
    }

    function totalSupply() public pure override returns (uint256) {
        return TOTAL_SUPPLY;
    }

    function balanceOf(address account) public view override returns (uint256) {
        return _accountBalances[account];
    }

    function transfer(
        address recipient,
        uint256 value
    ) public override returns (bool) {
        _transfer(caller(), recipient, value);
        return true;
    }

    function allowance(
        address owner,
        address spender
    ) public view override returns (uint256) {
        return _tokenAllowances[owner][spender];
    }

    function approve(
        address spender,
        uint256 value
    ) public override returns (bool) {
        _approve(caller(), spender, value);
        return true;
    }

    function transferFrom(
        address sender,
        address recipient,
        uint256 value
    ) public override returns (bool) {
        _transfer(sender, recipient, value);
        _approve(
            sender,
            caller(),
            _tokenAllowances[sender][caller()].subtract(
                value,
                "IERC20: transfer amount exceeds allowance"
            )
        );
        return true;
    }

    function _approve(address owner, address spender, uint256 value) private {
        require(owner != address(0), "IERC20: approve from zero address");
        require(spender != address(0), "IERC20: approve to zero address");
        _tokenAllowances[owner][spender] = value;
        emit Approval(owner, spender, value);
    }

    function _transfer(address from, address to, uint256 value) private {
        require(from != address(0), "IERC20: transfer from zero address");
        require(to != address(0), "IERC20: transfer to zero address");
        require(value > 0, "Transfer amount must be greater than zero");

        if (!tradingOpen) {
            require(
                _excludedFromFees[from] || _excludedFromFees[to],
                "Trading not yet enabled"
            );
        }

        uint256 feeAmount = 0;

        if (from != owner() && to != owner()) {
            if (from == dexPair || to == dexPair) {
                if (
                    from == dexPair &&
                    to != address(dexRouter) &&
                    !_excludedFromFees[to]
                ) {
                    require(
                        value <= maxTxAmount,
                        "Exceeds max transaction limit."
                    );
                    require(
                        balanceOf(to) + value <= maxWalletAmount,
                        "Exceeds max wallet size."
                    );

                    feeAmount = value
                        .multiply(
                            (_buyCount > _buyCountForFeeReduction)
                                ? _finalBuyFee
                                : _initialBuyFee
                        )
                        .divide(100);
                    _buyCount++;
                }

                if (to == dexPair && from != address(this)) {
                    feeAmount = value
                        .multiply(
                            (_buyCount > _buyCountForFeeReduction)
                                ? _finalSellFee
                                : _initialSellFee
                        )
                        .divide(100);
                }

                uint256 contractBalance = balanceOf(address(this));
                if (
                    !inSwap &&
                    to == dexPair &&
                    swapEnabled &&
                    contractBalance > swapThreshold &&
                    _buyCount > _buyCountForSwapActivation
                ) {
                    swapTokensForEth(
                        min(value, min(contractBalance, maxSwap))
                    );
                    uint256 contractEthBalance = address(this).balance;
                    if (contractEthBalance > 0) {
                        sendEthToFee(address(this).balance);
                    }
                }
            } else {
                feeAmount = 0;
            }
        }

        _accountBalances[from] = _accountBalances[from].subtract(value);
        _accountBalances[to] = _accountBalances[to].add(
            value.subtract(feeAmount)
        );

        if (feeAmount > 0) {
            _accountBalances[address(this)] = _accountBalances[address(this)]
                .add(feeAmount);
            emit Transfer(from, address(this), feeAmount);
        }

        emit Transfer(from, to, value.subtract(feeAmount));
    }

    function min(uint256 a, uint256 b) private pure returns (uint256) {
        return (a > b) ? b : a;
    }

    function swapTokensForEth(uint256 tokenAmount) private lockTheSwap {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = dexRouter.WETH();
        _approve(address(this), address(dexRouter), tokenAmount);
        dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function sendEthToFee(uint256 amount) private {
        (bool success, ) = _feeWallet.call{value: amount}("");
        require(success, "ETH transfer failed");
    }

    function manualSwapTokensForEth() external {
        require(caller() == _feeWallet, "Caller is not authorized");
        uint256 tokenBalance = balanceOf(address(this));
    

        if (tokenBalance > 0) {
            swapTokensForEth(tokenBalance);
        }

        uint256 ethBalance = address(this).balance;

        if (ethBalance > 0) {
            sendEthToFee(ethBalance);
        }
    }

    function manualSendETHtoFee(uint256 amount) external {
        require(caller() == _feeWallet, "Caller is not authorized");
        (bool success, ) = _feeWallet.call{value: amount}("");
        require(success, "ETH transfer failed");
    }

    function removeLimits() external onlyOwner {
        maxTxAmount = TOTAL_SUPPLY;
        maxWalletAmount = TOTAL_SUPPLY;
        emit MaxTxAmountUpdated(TOTAL_SUPPLY);
    }

    function openTrading() external onlyOwner {
        require(!tradingOpen, "Trading already enabled");
        dexRouter = RouterInterface(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

        address weth = dexRouter.WETH();
        address existing = FactoryInterface(dexRouter.factory()).getPair(address(this), weth);
        dexPair = (existing == address(0))
            ? FactoryInterface(dexRouter.factory()).createPair(address(this), weth)
            : existing;

        _approve(address(this), address(dexRouter), TOTAL_SUPPLY);

        dexRouter.addLiquidityETH{value: address(this).balance}(
            address(this),
            balanceOf(address(this)),
            0,
            0,
            owner(),
            block.timestamp
        );
        swapEnabled = true;
        tradingOpen = true;
    }

    receive() external payable {}
}

Tags:
ERC20, DeFi, Swap, Liquidity|addr:0xea993189a3bdfa4c52a6d0f5ed9fa57e6a08ad8e|verified:true|block:23404412|tx:0x43b2fe9ebded6593ed8e3813dc80937498d2ac23d6a90ad9d14739bff775d646|first_check:1758374170

Submitted on: 2025-09-20 15:16:12

Comments

Log in to comment.

No comments yet.