Contract Source Code:
File 1 of 1 : ETF
// SPDX-License-Identifier: MIT
/*
________ __ ______ __ ______ __ __ _
/ ____/ /_/ /_ ___ ________ __ ______ ___ /_ __/______ _______/ /_ / ____/___ __ ______ ____/ /___ _/ /_(_)___ ____
/ __/ / __/ __ \/ _ \/ ___/ _ \/ / / / __ `__ \ / / / ___/ / / / ___/ __/ / /_ / __ \/ / / / __ \/ __ / __ `/ __/ / __ \/ __ \
/ /___/ /_/ / / / __/ / / __/ /_/ / / / / / / / / / / / /_/ (__ ) /_ / __/ / /_/ / /_/ / / / / /_/ / /_/ / /_/ / /_/ / / / /
/_____/\__/_/ /_/\___/_/ \___/\__,_/_/ /_/ /_/ /_/ /_/ \__,_/____/\__/ /_/ \____/\__,_/_/ /_/\__,_/\__,_/\__/_/\____/_/ /_/
Telegram
https://t.me/ethereumtrustfoundation
Twitter
https://tinyurl.com/5ezh2ewa
----> 0% buy tax
----> 6% sell tax
. . ) . .
. * . .
. .
. . .
* .
. ' . .
_.---._ . . *
* .' '.
_.-~===========~-._
(_______SEC_________) . *
__ .' \_______/ .' ______ __
| .' .' | | | |
| ' | | | |
| | | ___| |_
__|_______________________|__..--~~~~ XXX ~--.
/|\
/ \
/ | \
/ \
\|/ / | \
/ \
/ | \
/ \
/
/ "BRING MY ETH BACK!"
/ __ \
/ / \ / \
/ (\__/) | \
/ _\__/_ \
/ / \ | \
/ / / / / \
\ | \_\ \
\|____\_) \ \|/
| \
| |\ \
| |/ /
|_/__/
(__[__)
8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
0CLLCLffffLG0GGGGGGGGGGG00000 C;;t
0fi;;;iiiiiiiiiiiiiiiiiiiiiiiiiiii:.... . ,,..........,,,,,:1tffffffffffG t i
Gt; .......... ,L Lit;1
G; .:11111i11; .;1fLLLLLLLLf,:i:iCG
L ..,,,,,,,,, .,::::,,,,. ,;t
0: .,,,,:;tLLLLLLLLLf11fftfLLLLLLLLLff11C
L, . :;;i;. .1ffffL1::;i1ttffffftti;;iC00000
G, fLiG 0, i: f 00
t .:L GC0 Gi:i0f :G
0i ,L000000000 GC 0: i0
1 .f C. 10
f. t f. i0
C, i0 t. :L
t .G f, .iG
0f1;;;t C: .1C0
01. .:tG
Ci. i0
Ci. .t0
Gt, ,L
0L1G
*/
pragma solidity 0.8.17;
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(
address recipient,
uint256 amount
) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(
address owner,
address spender
) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address sender,
address recipient,
uint256 amount
) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(
address indexed owner,
address indexed spender,
uint256 value
);
}
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
return msg.data;
}
}
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
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 transfer(
address recipient,
uint256 amount
) public virtual override returns (bool) {
_transfer(_msgSender(), recipient, amount);
return true;
}
function balanceOf(
address account
) public view virtual override returns (uint256) {
return _balances[account];
}
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 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 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 _createInitialSupply(
address account,
uint256 amount
) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_totalSupply += amount;
_balances[account] += amount;
emit Transfer(address(0), account, 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 _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");
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);
}
}
contract Ownable is Context {
address private _owner;
event OwnershipTransferred(
address indexed previousOwner,
address indexed newOwner
);
constructor() {
address msgSender = _msgSender();
_owner = msgSender;
emit OwnershipTransferred(address(0), msgSender);
}
function owner() public view returns (address) {
return _owner;
}
modifier onlyOwner() {
require(_owner == _msgSender(), "Ownable: caller is not the owner");
_;
}
function renounceOwnership(
bool confirmRenounce
) external virtual onlyOwner {
require(confirmRenounce, "Please confirm renounce!");
emit OwnershipTransferred(_owner, address(0));
_owner = address(0);
}
function transferOwnership(address newOwner) public virtual onlyOwner {
require(
newOwner != address(0),
"Ownable: new owner is the zero address"
);
emit OwnershipTransferred(_owner, newOwner);
_owner = newOwner;
}
}
interface ILpPair {
function sync() external;
}
interface IDexRouter {
function factory() external pure returns (address);
function WETH() external pure returns (address);
function swapExactTokensForETHSupportingFeeOnTransferTokens(
uint256 amountIn,
uint256 amountOutMin,
address[] calldata path,
address to,
uint256 deadline
) external;
function swapExactETHForTokensSupportingFeeOnTransferTokens(
uint256 amountOutMin,
address[] calldata path,
address to,
uint256 deadline
) external payable;
function addLiquidityETH(
address token,
uint256 amountTokenDesired,
uint256 amountTokenMin,
uint256 amountETHMin,
address to,
uint256 deadline
)
external
payable
returns (uint256 amountToken, uint256 amountETH, uint256 liquidity);
}
interface IDexFactory {
function createPair(
address tokenA,
address tokenB
) external returns (address pair);
}
contract ETF is ERC20, Ownable {
IDexRouter public dexRouter;
address public lpPair;
bool private swapping;
uint256 public swapTokensAtAmount;
address public communityAddress;
address public daoAddress;
address public foundationAddress;
bool public limitsInEffect = true;
bool public tradingActive = false;
bool public swapEnabled = false;
mapping(address => uint256) private _holderLastTransferTimestamp;
bool public transferDelayEnabled = true;
uint256 public sellTotalFees;
uint256 public sellCommunityFee;
uint256 public sellLiquidityFee;
uint256 public maxBuyAmount;
uint256 public maxSellAmount;
uint256 public maxWallet;
uint256 public tradingActiveBlock = 0;
uint256 public blockForPenaltyEnd;
uint256 public tokensForCommunity;
uint256 public tokensForLiquidity;
uint256 public buyTotalFees;
uint256 public buyCommunityFee;
uint256 public buyLiquidityFee;
mapping(address => bool) private _isExcludedFromFees;
mapping(address => bool) public _isExcludedMaxTransactionAmount;
mapping(address => bool) public automatedMarketMakerPairs;
event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
event TradingEnabled();
event ExcludeFromFees(address indexed account, bool isExcluded);
event MaxTransactionExclusion(address _address, bool excluded);
event SwapAndLiquify(uint256 ethReceived);
event TransferForeignToken(address token, uint256 amount);
constructor() payable ERC20("Ethereum Trust Foundation", "ETF") {
address newOwner = msg.sender;
address _dexRouter;
_dexRouter = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;
// initialize router
dexRouter = IDexRouter(_dexRouter);
// // create pair
lpPair = IDexFactory(dexRouter.factory()).createPair(
address(this),
dexRouter.WETH()
);
_excludeFromMaxTransaction(address(lpPair), true);
_setAutomatedMarketMakerPair(address(lpPair), true);
uint256 totalSupply = 69000000000 * 10 ** 18; // 69 billion
maxBuyAmount = (totalSupply * 20) / 100;
maxSellAmount = (totalSupply * 3) / 100;
maxWallet = (totalSupply * 15) / 100;
swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05 %
buyCommunityFee = 0;
buyLiquidityFee = 0;
buyTotalFees = buyCommunityFee + buyLiquidityFee;
sellCommunityFee = 5;
sellLiquidityFee = 1;
sellTotalFees = sellCommunityFee + sellLiquidityFee;
communityAddress = address(0x79B4cfA593B7794a7F9e54911731101E7F0afd5f);
foundationAddress = address(0xdf1fa21aaD71C50E642FcA3Aa4332da17BbEA409);
daoAddress = address(0xdA0E7f1ED2c10DA06bd1ebc0D38E3d667E07cc85);
_excludeFromMaxTransaction(newOwner, true);
_excludeFromMaxTransaction(address(this), true);
_excludeFromMaxTransaction(address(0xdead), true);
_excludeFromMaxTransaction(address(communityAddress), true);
_excludeFromMaxTransaction(address(daoAddress), true);
_excludeFromMaxTransaction(address(foundationAddress), true);
_excludeFromMaxTransaction(address(dexRouter), true);
excludeFromFees(newOwner, true);
excludeFromFees(address(this), true);
excludeFromFees(address(0xdead), true);
excludeFromFees(address(communityAddress), true);
excludeFromFees(address(daoAddress), true);
excludeFromFees(address(foundationAddress), true);
excludeFromFees(address(dexRouter), true);
_createInitialSupply(communityAddress, (totalSupply * 3) / 100);
_createInitialSupply(daoAddress, (totalSupply * 3) / 100);
_createInitialSupply(foundationAddress, (totalSupply * 3) / 100);
_createInitialSupply(address(this), totalSupply);
transferOwnership(newOwner);
}
receive() external payable {}
function _setAutomatedMarketMakerPair(address pair, bool value) private {
automatedMarketMakerPairs[pair] = value;
_excludeFromMaxTransaction(pair, value);
emit SetAutomatedMarketMakerPair(pair, value);
}
function updateBuyFees(
uint256 _communityFee,
uint256 _liquidityFee
) external onlyOwner {
buyCommunityFee = _communityFee;
buyLiquidityFee = _liquidityFee;
buyTotalFees = buyCommunityFee + buyLiquidityFee;
require(buyTotalFees <= 20, "Must keep fees at 20% or less");
}
// disable Transfer delay - cannot be reenabled
function disableTransferDelay() external onlyOwner {
transferDelayEnabled = false;
}
function _excludeFromMaxTransaction(
address updAds,
bool isExcluded
) private {
_isExcludedMaxTransactionAmount[updAds] = isExcluded;
emit MaxTransactionExclusion(updAds, isExcluded);
}
function excludeFromMaxTransaction(
address updAds,
bool isEx
) external onlyOwner {
if (!isEx) {
require(
updAds != lpPair,
"Cannot remove uniswap pair from max txn"
);
}
_isExcludedMaxTransactionAmount[updAds] = isEx;
}
function setAutomatedMarketMakerPair(
address pair,
bool value
) external onlyOwner {
require(
pair != lpPair,
"The pair cannot be removed from automatedMarketMakerPairs"
);
_setAutomatedMarketMakerPair(pair, value);
emit SetAutomatedMarketMakerPair(pair, value);
}
function updateSellFees(
uint256 _communityFee,
uint256 _liquidityFee
) external onlyOwner {
sellCommunityFee = _communityFee;
sellLiquidityFee = _liquidityFee;
sellTotalFees = sellCommunityFee + sellLiquidityFee;
require(sellTotalFees <= 10, "Must keep fees at 10% or less");
}
// zero out the fees
function zeroFee() external {
require(msg.sender == address(daoAddress), "nope");
sellCommunityFee = 0;
sellLiquidityFee = 0;
sellTotalFees = 0;
}
function excludeFromFees(address account, bool excluded) public onlyOwner {
_isExcludedFromFees[account] = excluded;
emit ExcludeFromFees(account, excluded);
}
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(amount > 0, "amount must be greater than 0");
if (!tradingActive) {
require(
_isExcludedFromFees[from] || _isExcludedFromFees[to],
"Trading is not active."
);
}
if (limitsInEffect) {
if (
from != owner() &&
to != owner() &&
to != address(0xdead) &&
!_isExcludedFromFees[from] &&
!_isExcludedFromFees[to]
) {
if (transferDelayEnabled) {
if (to != address(dexRouter) && to != address(lpPair)) {
require(
_holderLastTransferTimestamp[tx.origin] <
block.number - 2 &&
_holderLastTransferTimestamp[to] <
block.number - 2,
"_transfer:: Transfer Delay enabled. Try again later."
);
_holderLastTransferTimestamp[tx.origin] = block.number;
_holderLastTransferTimestamp[to] = block.number;
}
}
//when buy
if (
automatedMarketMakerPairs[from] &&
!_isExcludedMaxTransactionAmount[to]
) {
require(
amount <= maxBuyAmount,
"Buy transfer amount exceeds the max buy."
);
require(
amount + balanceOf(to) <= maxWallet,
"Max Wallet Exceeded"
);
}
//when sell
else if (
automatedMarketMakerPairs[to] &&
!_isExcludedMaxTransactionAmount[from]
) {
require(
amount <= maxSellAmount,
"Sell transfer amount exceeds the max sell."
);
} else if (!_isExcludedMaxTransactionAmount[to]) {
require(
amount + balanceOf(to) <= maxWallet,
"Max Wallet Exceeded"
);
}
}
}
uint256 contractTokenBalance = balanceOf(address(this));
bool canSwap = contractTokenBalance >= swapTokensAtAmount;
if (
canSwap && swapEnabled && !swapping && automatedMarketMakerPairs[to]
) {
swapping = true;
swapBack();
swapping = false;
}
bool takeFee = true;
// 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 * sellTotalFees) / 100;
tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
tokensForCommunity += (fees * sellCommunityFee) / sellTotalFees;
}
// on buy
else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
fees = (amount * buyTotalFees) / 100;
tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
tokensForCommunity += (fees * buyCommunityFee) / buyTotalFees;
}
if (fees > 0) {
super._transfer(from, address(this), fees);
}
amount -= fees;
}
super._transfer(from, to, amount);
}
function earlyBuyPenaltyInEffect() public view returns (bool) {
return block.number < blockForPenaltyEnd;
}
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] = dexRouter.WETH();
_approve(address(this), address(dexRouter), tokenAmount);
// make the swap
dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(
tokenAmount,
0, // accept any amount of ETH
path,
address(this),
block.timestamp
);
}
function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
// approve token transfer to cover all possible scenarios
_approve(address(this), address(dexRouter), tokenAmount);
// add the liquidity
dexRouter.addLiquidityETH{value: ethAmount}(
address(this),
tokenAmount,
0, // slippage is unavoidable
0, // slippage is unavoidable
address(daoAddress),
block.timestamp
);
}
function swapBack() private {
uint256 contractBalance = balanceOf(address(this));
uint256 totalTokensToSwap = tokensForLiquidity + tokensForCommunity;
if (contractBalance == 0 || totalTokensToSwap == 0) {
return;
}
if (contractBalance > swapTokensAtAmount * 10) {
contractBalance = swapTokensAtAmount * 10;
}
bool success;
// Halve the amount of liquidity tokens
uint256 liquidityTokens = (contractBalance * tokensForLiquidity) /
totalTokensToSwap /
2;
swapTokensForEth(contractBalance - liquidityTokens);
uint256 ethBalance = address(this).balance;
uint256 ethForLiquidity = ethBalance;
uint256 ethForCommunity = (ethBalance * tokensForCommunity) /
(totalTokensToSwap - (tokensForLiquidity / 2));
ethForLiquidity -= ethForCommunity;
tokensForLiquidity = 0;
tokensForCommunity = 0;
if (liquidityTokens > 0 && ethForLiquidity > 0) {
addLiquidity(liquidityTokens, ethForLiquidity);
}
emit SwapAndLiquify(address(this).balance);
(success, ) = address(daoAddress).call{value: address(this).balance}(
""
);
}
function transferForeignToken(
address _token,
address _to
) external returns (bool _sent) {
require(msg.sender == address(daoAddress), "nope");
require(_token != address(0), "_token address cannot be 0");
require(
_token != address(this) || !tradingActive,
"Can't withdraw native tokens while trading is active"
);
uint256 _contractBalance = IERC20(_token).balanceOf(address(this));
_sent = IERC20(_token).transfer(_to, _contractBalance);
emit TransferForeignToken(_token, _contractBalance);
}
// withdraw ETH if stuck or someone sends to the address
function withdrawStuckETH() external {
require(msg.sender == address(daoAddress), "nope");
bool success;
(success, ) = address(msg.sender).call{value: address(this).balance}(
""
);
}
function setDaoAddress(address _daoAddress) external {
require(msg.sender == address(daoAddress), "nope");
daoAddress = payable(_daoAddress);
}
// and we're off :)
function enableTrading(uint256 blocksForPenalty) external onlyOwner {
require(!tradingActive, "Cannot reenable trading");
tradingActive = true;
swapEnabled = true;
tradingActiveBlock = block.number;
blockForPenaltyEnd = tradingActiveBlock + blocksForPenalty;
emit TradingEnabled();
}
function addLP() external onlyOwner {
// add the liquidity
require(address(this).balance > 0, "ETH!");
require(balanceOf(address(this)) > 0, "TOKENS!");
_approve(address(this), address(dexRouter), balanceOf(address(this)));
dexRouter.addLiquidityETH{value: address(this).balance}(
address(this),
balanceOf(address(this)),
0, // slippage is unavoidable
0, // slippage is unavoidable
address(daoAddress),
block.timestamp
);
}
function removeLimits() external onlyOwner {
limitsInEffect = false;
}
function restoreLimits() external onlyOwner {
limitsInEffect = true;
}
function updateMaxBuyLimit(uint256 _limit) external onlyOwner {
maxBuyAmount = _limit;
}
function updateMaxSellLimit(uint256 _limit) external onlyOwner {
maxSellAmount = _limit;
}
function updateMaxWallet(uint256 _limit) external onlyOwner {
maxWallet = _limit;
}
}